diff --git a/.gitignore b/.gitignore
index 8d86b9587..9e6504184 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,6 +9,7 @@ include/jquery-1.4.2.min.js
favicon.*
home.html
addon
+*.orig
*~
robots.txt
@@ -57,4 +58,4 @@ venv/
/view/asset
#ignore config files from JetBrains
-/.idea
\ No newline at end of file
+/.idea
diff --git a/.travis.yml b/.travis.yml
index d3fffc693..d68b7727e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,4 +1,10 @@
---
language: php
-php: 5.6
+## Friendica supports PHP version >= 5.6
+php:
+ - 5.6
+ - 7.0
+ - 7.1
+ - 7.2
+
install: composer install
diff --git a/boot.php b/boot.php
index 217a5f4e1..ba12f86d2 100644
--- a/boot.php
+++ b/boot.php
@@ -232,10 +232,11 @@ define('ACCOUNT_TYPE_RELAY', 4);
* Type of the community page
* @{
*/
-define('CP_NO_COMMUNITY_PAGE', -1);
-define('CP_USERS_ON_SERVER', 0);
-define('CP_GLOBAL_COMMUNITY', 1);
-define('CP_USERS_AND_GLOBAL', 2);
+define('CP_NO_INTERNAL_COMMUNITY', -2);
+define('CP_NO_COMMUNITY_PAGE', -1);
+define('CP_USERS_ON_SERVER', 0);
+define('CP_GLOBAL_COMMUNITY', 1);
+define('CP_USERS_AND_GLOBAL', 2);
/**
* @}
*/
@@ -1291,7 +1292,7 @@ function get_server()
$server = Config::get("system", "directory");
if ($server == "") {
- $server = "http://dir.friendica.social";
+ $server = "https://dir.friendica.social";
}
return($server);
diff --git a/doc/Account-Basics.md b/doc/Account-Basics.md
index 7883a346f..da865ad2b 100644
--- a/doc/Account-Basics.md
+++ b/doc/Account-Basics.md
@@ -16,19 +16,19 @@ If you'd like to have your own server, you can do that too.
Visit [the Friendica website](http://friendi.ca/) to download the code with setup instructions.
It's a very simple installation process that anybody experienced in hosting websites, or with basic Linux experience can handle easily.
-###OpenID
+### OpenID
The first field on the Registration page is for an OpenID address.
If you do not have an OpenID address or do not wish to use OpenID, leave this field blank.
If you have an OpenID account elsewhere and wish to use it, enter the address into this field and click 'Register'.
Friendica will attempt to extract as much information as possible from your OpenID provider and return to this page with those items already filled in.
-###Your Full Name
+### Your Full Name
Please provide your full name **as you would like it to be displayed on this system**.
Most people use their real name for this, but you're under no obligation to do so yourself.
-###Email Address
+### Email Address
Please provide a valid email address.
Your email address is **never** published.
@@ -38,7 +38,7 @@ This doesn't have to be your primary email address, but it does need to be a rea
You can't get your initial password, or reset a lost password later without it.
This is the only bit of personal information that has to be accurate.
-###Nickname
+### Nickname
A nickname is used to generate web addresses for many of your personal pages, and is also treated like an email address when establishing communications with others.
Due to the way that the nickname is used, it has some limitations.
@@ -47,7 +47,7 @@ It also must be unique on this system.
This is used in many places to identify your account, and once set it cannot be changed.
-###Directory Publishing
+### Directory Publishing
The registration form also allows you to choose whether or not to list your account in the online directory of your node.
This is like a "phone book" and you may choose to be unlisted.
@@ -55,7 +55,7 @@ We recommend that you select 'Yes' so that other people (friends, family, etc.)
If you choose 'No', you will essentially be invisible and have few opportunities for interaction.
Whichever you choose, this can be changed any time from your Settings page after you login.
-###Register
+### Register
Once you have provided the necessary details, click the 'Register' button.
An email will be sent to you providing your account login details.
diff --git a/doc/Addons.md b/doc/Addons.md
index 4df91864b..f7d93aac7 100644
--- a/doc/Addons.md
+++ b/doc/Addons.md
@@ -126,8 +126,8 @@ $b contains the $a->user array.
'display_item' is called when formatting a post for display.
$b is an array:
- 'item' => The item (array) details pulled from the database
- 'output' => the (string) HTML representation of this item prior to adding it to the page
+ 'item' => The item (array) details pulled from the database
+ 'output' => the (string) HTML representation of this item prior to adding it to the page
### 'post_local'
* called when a status post or comment is entered on the local system
@@ -167,8 +167,8 @@ $b is an array:
'profile_edit' is called prior to output of profile edit page.
$b is an array containing:
- 'profile' => profile (array) record from the database
- 'entry' => the (string) HTML of the generated entry
+ 'profile' => profile (array) record from the database
+ 'entry' => the (string) HTML of the generated entry
### 'profile_advanced'
* called when the HTML is generated for the 'Advanced profile', corresponding to the 'Profile' tab within a person's profile page
@@ -179,7 +179,7 @@ $b is an array containing:
'directory_item' is called from the Directory page when formatting an item for display.
$b is an array:
- 'contact' => contact (array) record for the person from the database
+ 'contact' => contact (array) record for the person from the database
'entry' => the (string) HTML of the generated entry
### 'profile_sidebar_enter'
@@ -190,15 +190,15 @@ $b is an array:
'profile_sidebar is called when generating the sidebar "short" profile for a page.
$b is an array:
- 'profile' => profile (array) record for the person from the database
- 'entry' => the (string) HTML of the generated entry
+ 'profile' => profile (array) record for the person from the database
+ 'entry' => the (string) HTML of the generated entry
### 'contact_block_end'
is called when formatting the block of contacts/friends on a profile sidebar has completed.
$b is an array:
- 'contacts' => array of contacts
- 'output' => the (string) generated HTML of the contact block
+ 'contacts' => array of contacts
+ 'output' => the (string) generated HTML of the contact block
### 'bbcode'
* called during conversion of bbcode to html
@@ -216,8 +216,8 @@ $b is an array:
'personal_xrd' is called prior to output of personal XRD file.
$b is an array:
- 'user' => the user record for the person
- 'xml' => the complete XML to be output
+ 'user' => the user record for the person
+ 'xml' => the complete XML to be output
### 'home_content'
* called prior to output home page content, shown to unlogged users
@@ -227,8 +227,8 @@ $b is an array:
is called when editing contact details on an individual from the Contacts page.
$b is an array:
- 'contact' => contact record (array) of target contact
- 'output' => the (string) generated HTML of the contact edit page
+ 'contact' => contact record (array) of target contact
+ 'output' => the (string) generated HTML of the contact edit page
### 'contact_edit_post'
* called when posting the contact edit page.
@@ -246,9 +246,9 @@ $b is an array:
'avatar_lookup' is called when looking up the avatar.
$b is an array:
- 'size' => the size of the avatar that will be looked up
- 'email' => email to look up the avatar for
- 'url' => the (string) generated URL of the avatar
+ 'size' => the size of the avatar that will be looked up
+ 'email' => email to look up the avatar for
+ 'url' => the (string) generated URL of the avatar
### 'emailer_send_prepare'
'emailer_send_prepare' called from Emailer::send() before building the mime message.
@@ -306,199 +306,315 @@ Hook data:
Called after the HTML conversion in prepare_body.
Hook data:
'item' => item array (input)
- 'html' => converted item body (input/output)
- 'is_preview' => post preview flag (input)
+ 'html' => converted item body (input/output)
+ 'is_preview' => post preview flag (input)
'filter_reasons' => reasons array (input)
### 'prepare_body_final'
Called at the end of prepare_body.
Hook data:
'item' => item array (input)
- 'html' => converted item body (input/output)
+ 'html' => converted item body (input/output)
Complete list of hook callbacks
---
Here is a complete list of all hook callbacks with file locations (as of 01-Apr-2018). Please see the source for details of any hooks not documented above.
-index.php: Addon::callHooks('init_1');
-index.php: Addon::callHooks('app_menu', $arr);
-index.php: Addon::callHooks('page_content_top', $a->page['content']);
-index.php: Addon::callHooks($a->module.'_mod_init', $placeholder);
-index.php: Addon::callHooks($a->module.'_mod_init', $placeholder);
-index.php: Addon::callHooks($a->module.'_mod_post', $_POST);
-index.php: Addon::callHooks($a->module.'_mod_afterpost', $placeholder);
-index.php: Addon::callHooks($a->module.'_mod_content', $arr);
-index.php: Addon::callHooks($a->module.'_mod_aftercontent', $arr);
-index.php: Addon::callHooks('page_end', $a->page['content']);
+### index.php
-include/api.php: Addon::callHooks('logged_in', $a->user);
-include/api.php: Addon::callHooks('authenticate', $addon_auth);
-include/api.php: Addon::callHooks('logged_in', $a->user);
+ Addon::callHooks('init_1');
+ Addon::callHooks('app_menu', $arr);
+ Addon::callHooks('page_content_top', $a->page['content']);
+ Addon::callHooks($a->module.'_mod_init', $placeholder);
+ Addon::callHooks($a->module.'_mod_init', $placeholder);
+ Addon::callHooks($a->module.'_mod_post', $_POST);
+ Addon::callHooks($a->module.'_mod_afterpost', $placeholder);
+ Addon::callHooks($a->module.'_mod_content', $arr);
+ Addon::callHooks($a->module.'_mod_aftercontent', $arr);
+ Addon::callHooks('page_end', $a->page['content']);
+
+### include/api.php
-include/enotify.php: Addon::callHooks('enotify', $h);
-include/enotify.php: Addon::callHooks('enotify_store', $datarray);
-include/enotify.php: Addon::callHooks('enotify_mail', $datarray);
-include/enotify.php: Addon::callHooks('check_item_notification', $notification_data);
+ Addon::callHooks('logged_in', $a->user);
+ Addon::callHooks('authenticate', $addon_auth);
+ Addon::callHooks('logged_in', $a->user);
-include/conversation.php: Addon::callHooks('conversation_start', $cb);
-include/conversation.php: Addon::callHooks('render_location', $locate);
-include/conversation.php: Addon::callHooks('display_item', $arr);
-include/conversation.php: Addon::callHooks('display_item', $arr);
-include/conversation.php: Addon::callHooks('item_photo_menu', $args);
-include/conversation.php: Addon::callHooks('jot_tool', $jotplugins);
+### include/enotify.php
+
+ Addon::callHooks('enotify', $h);
+ Addon::callHooks('enotify_store', $datarray);
+ Addon::callHooks('enotify_mail', $datarray);
+ Addon::callHooks('check_item_notification', $notification_data);
+
+### include/conversation.php
-include/security.php: Addon::callHooks('logged_in', $a->user);
+ Addon::callHooks('conversation_start', $cb);
+ Addon::callHooks('render_location', $locate);
+ Addon::callHooks('display_item', $arr);
+ Addon::callHooks('display_item', $arr);
+ Addon::callHooks('item_photo_menu', $args);
+ Addon::callHooks('jot_tool', $jotplugins);
-include/text.php: Addon::callHooks('contact_block_end', $arr);
-include/text.php: Addon::callHooks('poke_verbs', $arr);
-include/text.php: Addon::callHooks('prepare_body_init', $item);
-include/text.php: Addon::callHooks('prepare_body_content_filter', $hook_data);
-include/text.php: Addon::callHooks('prepare_body', $hook_data);
-include/text.php: Addon::callHooks('prepare_body_final', $hook_data);
+### include/security.php
-include/items.php: Addon::callHooks('page_info_data', $data);
+ Addon::callHooks('logged_in', $a->user);
-mod/directory.php: Addon::callHooks('directory_item', $arr);
+### include/text.php
-mod/xrd.php: Addon::callHooks('personal_xrd', $arr);
+ Addon::callHooks('contact_block_end', $arr);
+ Addon::callHooks('poke_verbs', $arr);
+ Addon::callHooks('prepare_body_init', $item);
+ Addon::callHooks('prepare_body_content_filter', $hook_data);
+ Addon::callHooks('prepare_body', $hook_data);
+ Addon::callHooks('prepare_body_final', $hook_data);
-mod/ping.php: Addon::callHooks('network_ping', $arr);
+### include/items.php
-mod/parse_url.php: Addon::callHooks("parse_link", $arr);
+ Addon::callHooks('page_info_data', $data);
-mod/manage.php: Addon::callHooks('home_init', $ret);
+### mod/directory.php
-mod/acl.php: Addon::callHooks('acl_lookup_end', $results);
+ Addon::callHooks('directory_item', $arr);
-mod/network.php: Addon::callHooks('network_content_init', $arr);
-mod/network.php: Addon::callHooks('network_tabs', $arr);
+### mod/xrd.php
-mod/friendica.php: Addon::callHooks('about_hook', $o);
-mod/subthread.php: Addon::callHooks('post_local_end', $arr);
+ Addon::callHooks('personal_xrd', $arr);
-mod/profiles.php: Addon::callHooks('profile_post', $_POST);
-mod/profiles.php: Addon::callHooks('profile_edit', $arr);
+### mod/ping.php
-mod/settings.php: Addon::callHooks('addon_settings_post', $_POST);
-mod/settings.php: Addon::callHooks('connector_settings_post', $_POST);
-mod/settings.php: Addon::callHooks('display_settings_post', $_POST);
-mod/settings.php: Addon::callHooks('settings_post', $_POST);
-mod/settings.php: Addon::callHooks('addon_settings', $settings_addons);
-mod/settings.php: Addon::callHooks('connector_settings', $settings_connectors);
-mod/settings.php: Addon::callHooks('display_settings', $o);
-mod/settings.php: Addon::callHooks('settings_form', $o);
+ Addon::callHooks('network_ping', $arr);
-mod/photos.php: Addon::callHooks('photo_post_init', $_POST);
-mod/photos.php: Addon::callHooks('photo_post_file', $ret);
-mod/photos.php: Addon::callHooks('photo_post_end', $foo);
-mod/photos.php: Addon::callHooks('photo_post_end', $foo);
-mod/photos.php: Addon::callHooks('photo_post_end', $foo);
-mod/photos.php: Addon::callHooks('photo_post_end', $foo);
-mod/photos.php: Addon::callHooks('photo_post_end', intval($item_id));
-mod/photos.php: Addon::callHooks('photo_upload_form', $ret);
+### mod/parse_url.php
-mod/profile.php: Addon::callHooks('profile_advanced', $o);
+ Addon::callHooks("parse_link", $arr);
-mod/home.php: Addon::callHooks('home_init', $ret);
-mod/home.php: Addon::callHooks("home_content", $content);
+### mod/manage.php
-mod/poke.php: Addon::callHooks('post_local_end', $arr);
+ Addon::callHooks('home_init', $ret);
-mod/contacts.php: Addon::callHooks('contact_edit_post', $_POST);
-mod/contacts.php: Addon::callHooks('contact_edit', $arr);
+### mod/acl.php
-mod/tagger.php: Addon::callHooks('post_local_end', $arr);
+ Addon::callHooks('acl_lookup_end', $results);
-mod/lockview.php: Addon::callHooks('lockview_content', $item);
+### mod/network.php
-mod/uexport.php: Addon::callHooks('uexport_options', $options);
+ Addon::callHooks('network_content_init', $arr);
+ Addon::callHooks('network_tabs', $arr);
-mod/register.php: Addon::callHooks('register_post', $arr);
-mod/register.php: Addon::callHooks('register_form', $arr);
+### mod/friendica.php
-mod/item.php: Addon::callHooks('post_local_start', $_REQUEST);
-mod/item.php: Addon::callHooks('post_local', $datarray);
-mod/item.php: Addon::callHooks('post_local_end', $datarray);
+ Addon::callHooks('about_hook', $o);
+
+### mod/subthread.php
-mod/editpost.php: Addon::callHooks('jot_tool', $jotplugins);
+ Addon::callHooks('post_local_end', $arr);
-src/Network/FKOAuth1.php: Addon::callHooks('logged_in', $a->user);
+### mod/profiles.php
-src/Render/FriendicaSmartyEngine.php: Addon::callHooks("template_vars", $arr);
+ Addon::callHooks('profile_post', $_POST);
+ Addon::callHooks('profile_edit', $arr);
-src/Model/Item.php: Addon::callHooks('post_local', $item);
-src/Model/Item.php: Addon::callHooks('post_remote', $item);
-src/Model/Item.php: Addon::callHooks('post_local_end', $posted_item);
-src/Model/Item.php: Addon::callHooks('post_remote_end', $posted_item);
-src/Model/Item.php: Addon::callHooks('tagged', $arr);
-src/Model/Item.php: Addon::callHooks('post_local_end', $new_item);
+### mod/settings.php
-src/Model/Contact.php: Addon::callHooks('contact_photo_menu', $args);
-src/Model/Contact.php: Addon::callHooks('follow', $arr);
+ Addon::callHooks('addon_settings_post', $_POST);
+ Addon::callHooks('connector_settings_post', $_POST);
+ Addon::callHooks('display_settings_post', $_POST);
+ Addon::callHooks('settings_post', $_POST);
+ Addon::callHooks('addon_settings', $settings_addons);
+ Addon::callHooks('connector_settings', $settings_connectors);
+ Addon::callHooks('display_settings', $o);
+ Addon::callHooks('settings_form', $o);
-src/Model/Profile.php: Addon::callHooks('profile_sidebar_enter', $profile);
-src/Model/Profile.php: Addon::callHooks('profile_sidebar', $arr);
-src/Model/Profile.php: Addon::callHooks('profile_tabs', $arr);
-src/Model/Profile.php: Addon::callHooks('zrl_init', $arr);
+### mod/photos.php
-src/Model/Event.php: Addon::callHooks('event_updated', $event['id']);
-src/Model/Event.php: Addon::callHooks("event_created", $event['id']);
+ Addon::callHooks('photo_post_init', $_POST);
+ Addon::callHooks('photo_post_file', $ret);
+ Addon::callHooks('photo_post_end', $foo);
+ Addon::callHooks('photo_post_end', $foo);
+ Addon::callHooks('photo_post_end', $foo);
+ Addon::callHooks('photo_post_end', $foo);
+ Addon::callHooks('photo_post_end', intval($item_id));
+ Addon::callHooks('photo_upload_form', $ret);
-src/Model/User.php: Addon::callHooks('register_account', $uid);
-src/Model/User.php: Addon::callHooks('remove_user', $user);
+### mod/profile.php
-src/Content/Text/BBCode.php: Addon::callHooks('bbcode', $text);
-src/Content/Text/BBCode.php: Addon::callHooks('bb2diaspora', $text);
+ Addon::callHooks('profile_advanced', $o);
-src/Content/Text/HTML.php: Addon::callHooks('html2bbcode', $message);
+### mod/home.php
-src/Content/Smilies.php: Addon::callHooks('smilie', $params);
+ Addon::callHooks('home_init', $ret);
+ Addon::callHooks("home_content", $content);
-src/Content/Feature.php: Addon::callHooks('isEnabled', $arr);
-src/Content/Feature.php: Addon::callHooks('get', $arr);
+### mod/poke.php
-src/Content/ContactSelector.php: Addon::callHooks('network_to_name', $nets);
-src/Content/ContactSelector.php: Addon::callHooks('gender_selector', $select);
-src/Content/ContactSelector.php: Addon::callHooks('sexpref_selector', $select);
-src/Content/ContactSelector.php: Addon::callHooks('marital_selector', $select);
+ Addon::callHooks('post_local_end', $arr);
-src/Content/OEmbed.php: Addon::callHooks('oembed_fetch_url', $embedurl, $j);
+### mod/contacts.php
-src/Content/Nav.php: Addon::callHooks('page_header', $a->page['nav']);
-src/Content/Nav.php: Addon::callHooks('nav_info', $nav);
+ Addon::callHooks('contact_edit_post', $_POST);
+ Addon::callHooks('contact_edit', $arr);
-src/Worker/Directory.php: Addon::callHooks('globaldir_update', $arr);
-src/Worker/Notifier.php: Addon::callHooks('notifier_end', $target_item);
-src/Worker/Queue.php: Addon::callHooks('queue_predeliver', $r);
-src/Worker/Queue.php: Addon::callHooks('queue_deliver', $params);
+### mod/tagger.php
-src/Module/Login.php: Addon::callHooks('authenticate', $addon_auth);
-src/Module/Login.php: Addon::callHooks('login_hook', $o);
-src/Module/Logout.php: Addon::callHooks("logging_out");
+ Addon::callHooks('post_local_end', $arr);
-src/Object/Post.php: Addon::callHooks('render_location', $locate);
-src/Object/Post.php: Addon::callHooks('display_item', $arr);
+### mod/lockview.php
-src/Core/ACL.php: Addon::callHooks('contact_select_options', $x);
-src/Core/ACL.php: Addon::callHooks($a->module.'_pre_'.$selname, $arr);
-src/Core/ACL.php: Addon::callHooks($a->module.'_post_'.$selname, $o);
-src/Core/ACL.php: Addon::callHooks($a->module.'_pre_'.$selname, $arr);
-src/Core/ACL.php: Addon::callHooks($a->module.'_post_'.$selname, $o);
-src/Core/ACL.php: Addon::callHooks('jot_networks', $jotnets);
+ Addon::callHooks('lockview_content', $item);
-src/Core/Worker.php: Addon::callHooks("proc_run", $arr);
+### mod/uexport.php
-src/Util/Emailer.php: Addon::callHooks('emailer_send_prepare', $params);
-src/Util/Emailer.php: Addon::callHooks("emailer_send", $hookdata);
+ Addon::callHooks('uexport_options', $options);
-src/Util/Map.php: Addon::callHooks('generate_map', $arr);
-src/Util/Map.php: Addon::callHooks('generate_named_map', $arr);
-src/Util/Map.php: Addon::callHooks('Map::getCoordinates', $arr);
+### mod/register.php
-src/Util/Network.php: Addon::callHooks('avatar_lookup', $avatar);
+ Addon::callHooks('register_post', $arr);
+ Addon::callHooks('register_form', $arr);
-src/Util/ParseUrl.php: Addon::callHooks("getsiteinfo", $siteinfo);
+### mod/item.php
-src/Protocol/DFRN.php: Addon::callHooks('atom_feed_end', $atom);
-src/Protocol/DFRN.php: Addon::callHooks('atom_feed_end', $atom);
+ Addon::callHooks('post_local_start', $_REQUEST);
+ Addon::callHooks('post_local', $datarray);
+ Addon::callHooks('post_local_end', $datarray);
+
+### mod/editpost.php
+
+ Addon::callHooks('jot_tool', $jotplugins);
+
+### src/Network/FKOAuth1.php
+
+ Addon::callHooks('logged_in', $a->user);
+
+### src/Render/FriendicaSmartyEngine.php
+
+ Addon::callHooks("template_vars", $arr);
+
+### src/Model/Item.php
+
+ Addon::callHooks('post_local', $item);
+ Addon::callHooks('post_remote', $item);
+ Addon::callHooks('post_local_end', $posted_item);
+ Addon::callHooks('post_remote_end', $posted_item);
+ Addon::callHooks('tagged', $arr);
+ Addon::callHooks('post_local_end', $new_item);
+
+### src/Model/Contact.php
+
+ Addon::callHooks('contact_photo_menu', $args);
+ Addon::callHooks('follow', $arr);
+
+### src/Model/Profile.php
+
+ Addon::callHooks('profile_sidebar_enter', $profile);
+ Addon::callHooks('profile_sidebar', $arr);
+ Addon::callHooks('profile_tabs', $arr);
+ Addon::callHooks('zrl_init', $arr);
+
+### src/Model/Event.php
+
+ Addon::callHooks('event_updated', $event['id']);
+ Addon::callHooks("event_created", $event['id']);
+
+### src/Model/User.php
+
+ Addon::callHooks('register_account', $uid);
+ Addon::callHooks('remove_user', $user);
+
+### src/Content/Text/BBCode.php
+
+ Addon::callHooks('bbcode', $text);
+ Addon::callHooks('bb2diaspora', $text);
+
+### src/Content/Text/HTML.php
+
+ Addon::callHooks('html2bbcode', $message);
+
+### src/Content/Smilies.php
+
+ Addon::callHooks('smilie', $params);
+
+### src/Content/Feature.php
+
+ Addon::callHooks('isEnabled', $arr);
+ Addon::callHooks('get', $arr);
+
+### src/Content/ContactSelector.php
+
+ Addon::callHooks('network_to_name', $nets);
+ Addon::callHooks('gender_selector', $select);
+ Addon::callHooks('sexpref_selector', $select);
+ Addon::callHooks('marital_selector', $select);
+
+### src/Content/OEmbed.php
+
+ Addon::callHooks('oembed_fetch_url', $embedurl, $j);
+
+### src/Content/Nav.php
+
+ Addon::callHooks('page_header', $a->page['nav']);
+ Addon::callHooks('nav_info', $nav);
+
+### src/Worker/Directory.php
+
+ Addon::callHooks('globaldir_update', $arr);
+
+### src/Worker/Notifier.php
+
+ Addon::callHooks('notifier_end', $target_item);
+
+### src/Worker/Queue.php
+
+ Addon::callHooks('queue_predeliver', $r);
+ Addon::callHooks('queue_deliver', $params);
+
+### src/Module/Login.php
+
+ Addon::callHooks('authenticate', $addon_auth);
+ Addon::callHooks('login_hook', $o);
+
+### src/Module/Logout.php
+
+ Addon::callHooks("logging_out");
+
+### src/Object/Post.php
+
+ Addon::callHooks('render_location', $locate);
+ Addon::callHooks('display_item', $arr);
+
+### src/Core/ACL.php
+
+ Addon::callHooks('contact_select_options', $x);
+ Addon::callHooks($a->module.'_pre_'.$selname, $arr);
+ Addon::callHooks($a->module.'_post_'.$selname, $o);
+ Addon::callHooks($a->module.'_pre_'.$selname, $arr);
+ Addon::callHooks($a->module.'_post_'.$selname, $o);
+ Addon::callHooks('jot_networks', $jotnets);
+
+### src/Core/Worker.php
+
+ Addon::callHooks("proc_run", $arr);
+
+### src/Util/Emailer.php
+
+ Addon::callHooks('emailer_send_prepare', $params);
+ Addon::callHooks("emailer_send", $hookdata);
+
+### src/Util/Map.php
+
+ Addon::callHooks('generate_map', $arr);
+ Addon::callHooks('generate_named_map', $arr);
+ Addon::callHooks('Map::getCoordinates', $arr);
+
+### src/Util/Network.php
+
+ Addon::callHooks('avatar_lookup', $avatar);
+
+### src/Util/ParseUrl.php
+
+ Addon::callHooks("getsiteinfo", $siteinfo);
+
+### src/Protocol/DFRN.php
+
+ Addon::callHooks('atom_feed_end', $atom);
+ Addon::callHooks('atom_feed_end', $atom);
diff --git a/doc/Chats.md b/doc/Chats.md
index b7557944f..29067e128 100644
--- a/doc/Chats.md
+++ b/doc/Chats.md
@@ -37,7 +37,7 @@ You can use several servers to create an account:
* [https://jappix.com](https://jappix.com)
* [http://xmpp.net](http://xmpp.net)
-###1. Basics
+### 1. Basics
At first you have to get the current version. You can either pull it from [Github](https://github.com) like so:
@@ -54,7 +54,7 @@ The following page shows the settings of this addon.
Activate the BOSH proxy.
-###2. Settings
+### 2. Settings
Go to your user account settings next and choose the addon page.
Scroll down until you find the Jappix Mini addon settings.
diff --git a/doc/Improve-Performance.md b/doc/Improve-Performance.md
index 48ac9e798..79490c257 100644
--- a/doc/Improve-Performance.md
+++ b/doc/Improve-Performance.md
@@ -29,7 +29,7 @@ Active the following addons:
rendertime
-###rendertime
+### rendertime
This addon doesn't speed up your system.
It helps to analyze your bottlenecks.
@@ -52,7 +52,7 @@ Apache Webserver
The following Apache modules are recommended:
-###Cache-Control
+### Cache-Control
This module tells the client to cache the content of static files so that they aren't fetched with every request.
Enable the module "mod_expires" by typing in "a2enmod expires" as root.
@@ -62,7 +62,7 @@ Please add the following lines to your site configuration in the "directory" con
Also see the Apache [2.2](http://httpd.apache.org/docs/2.2/mod/mod_expires.html) / [2.4](https://httpd.apache.org/docs/2.4/mod/mod_expires.html) documentation.
-###Compress content
+### Compress content
This module compresses the traffic between the web server and the client.
Enable the module "mod_deflate" by typing in "a2enmod deflate" as root.
@@ -72,14 +72,14 @@ Also see the Apache [2.2](http://httpd.apache.org/docs/2.2/mod/mod_deflate.html)
PHP
--------
-###FCGI
+### FCGI
When using Apache think about using FCGI.
In a Debian-based distribution you will need to install the packages named "php5-cgi" and "libapache2-mod-fcgid".
Please refer to external documentation for a more detailed explanation how to set up a system based upon FCGI.
-###Database
+### Database
There are scripts like [tuning-primer.sh](http://www.day32.com/MySQL/) and [mysqltuner.pl](http://mysqltuner.pl) that analyze your database server and give hints on values that could be changed.
diff --git a/doc/Install.md b/doc/Install.md
index b9b2debb4..2a80cf72a 100644
--- a/doc/Install.md
+++ b/doc/Install.md
@@ -2,6 +2,7 @@ Friendica Installation
===============
We've tried very hard to ensure that Friendica will run on commodity hosting platforms - such as those used to host Wordpress blogs and Drupal websites.
+We offer a manual and an automatic installation.
But be aware that Friendica is more than a simple web application.
It is a complex communications system which more closely resembles an email server than a web server.
For reliability and performance, messages are delivered in the background and are queued for later delivery when sites are down.
@@ -27,10 +28,10 @@ Requirements
* Apache with mod-rewrite enabled and "Options All" so you can use a local .htaccess file
* PHP 5.6+ (PHP 7 is recommended for performance)
-* PHP *command line* access with register_argc_argv set to true in the php.ini file
-* Curl, GD, PDO, MySQLi, hash, xml, zip and OpenSSL extensions
-* The POSIX module of PHP needs to be activated (e.g. [RHEL, CentOS](http://www.bigsoft.co.uk/blog/index.php/2014/12/08/posix-php-commands-not-working-under-centos-7) have disabled it)
-* some form of email server or email gateway such that PHP mail() works
+ * PHP *command line* access with register_argc_argv set to true in the php.ini file
+ * Curl, GD, PDO, MySQLi, hash, xml, zip and OpenSSL extensions
+ * The POSIX module of PHP needs to be activated (e.g. [RHEL, CentOS](http://www.bigsoft.co.uk/blog/index.php/2014/12/08/posix-php-commands-not-working-under-centos-7) have disabled it)
+ * some form of email server or email gateway such that PHP mail() works
* Mysql 5.5.3+ or an equivalant alternative for MySQL (MariaDB, Percona Server etc.)
* the ability to schedule jobs with cron (Linux/Mac) or Scheduled Tasks (Windows) (Note: other options are presented in Section 7 of this document.)
* Installation into a top-level domain or sub-domain (without a directory/path component in the URL) is preferred. Directory paths will not be as convenient to use and have not been thoroughly tested.
@@ -79,24 +80,49 @@ In this case find the [mysqld] section in your my.cnf file and add the line :
Restart mysql and you should be fine.
-
-### Run the installer
+### Option A: Run the manual installer
Point your web browser to the new site and follow the instructions.
Please note any error messages and correct these before continuing.
If you need to specify a port for the connection to the database, you can do so in the host name setting for the database.
-*If* the automated installation fails for any reason, check the following:
+*If* the manual installation fails for any reason, check the following:
* Does ".htconfig.php" exist? If not, edit htconfig.php and change the system settings. Rename to .htconfig.php
-* Is the database is populated? If not, import the contents of "database.sql" with phpmyadmin or mysql command line.
+* Is the database is populated? If not, import the contents of "database.sql" with phpmyadmin or the mysql command line.
At this point visit your website again, and register your personal account.
Registration errors should all be recoverable automatically.
If you get any *critical* failure at this point, it generally indicates the database was not installed correctly.
You might wish to move/rename .htconfig.php to another name and empty (called 'dropping') the database tables, so that you can start fresh.
+### Option B: Run the automatic install script
+
+Open the file htconfig.php in the main Friendica directory with a text editor.
+Remove the `die('...');` line and edit the lines to suit your installation (MySQL, language, theme etc.).
+Then save the file (do not rename it).
+
+Navigate to the main Friendica directory and execute the following command:
+
+ bin/console autoinstall
+
+Or if you wish to include all optional checks, execute this statement instead:
+
+ bin/console autoinstall -a
+
+At this point visit your website again, and register your personal account.
+
+*If* the automatic installation fails for any reason, check the following:
+
+* Does ".htconfig.php" already exist? If yes, the automatic installation won't start
+* Are the settings inside "htconfig.php" correct? If not, edit the file again.
+* Is the empty MySQL-database created? If not, create it.
+
+For more information during the installation, you can use this command line option
+
+ bin/console autoinstall -v
+
### Set up the worker
Set up a cron job or scheduled task to run the worker once every 5-10 minutes in order to perform background processing.
diff --git a/doc/Installing-Connectors.md b/doc/Installing-Connectors.md
index 1d83f0742..5ea34d473 100644
--- a/doc/Installing-Connectors.md
+++ b/doc/Installing-Connectors.md
@@ -32,7 +32,7 @@ Twitter Addon for Friendica
* tobias.diekershoff@gmx.net
* License: 3-clause BSD license
-###Configuration
+### Configuration
To use this addon you need a OAuth Consumer key pair (key & secret).
You can get it from [Twitter](https://twitter.com/apps).
@@ -46,7 +46,7 @@ Add this key pair to your global .htconfig.php:
After this, your users can configure their Twitter account settings from "Settings -> Connector Settings".
-###More documentation
+### More documentation
Find the author's documentation here: [http://diekershoff.homeunix.net/redmine/wiki/friendikaplugin/Twitter_Plugin](http://diekershoff.homeunix.net/redmine/wiki/friendikaplugin/Twitter_Plugin)
@@ -58,7 +58,7 @@ GNU Social Addon for Friendica
* tobias.diekershoff@gmx.net
* License: 3-clause BSD license
-###Configuration
+### Configuration
When the addon is activated the user has to acquire the following in order to connect to the GNU Social account of choice.
diff --git a/doc/Making-Friends.md b/doc/Making-Friends.md
index d7f18298c..e435dc7a4 100644
--- a/doc/Making-Friends.md
+++ b/doc/Making-Friends.md
@@ -50,7 +50,7 @@ This will take you through a similar process.
Connect to users of alternate networks
---
-###Across the Federation and Fedivese
+### Across the Federation and Fedivese
You can also use your Identity Address or other people's Identity Addresses to become friends across the so-called Federation/Fedivese of open source social media.
Currently, Friendica supports connections with people on diaspora*, Red, Hubzilla, GNU Social, StatusNet, Mastodon, Pleroma, socialhome, and ganggo platforms.
@@ -60,13 +60,13 @@ Note: Some versions of GNU Social software may require the full URL to your prof
People on these networks can also initiate contact with you, if they know your contact details.
-###Other social media
+### Other social media
If you server provides this functionality, you can also connect with people one
Twitter or important feeds from Tumblr, Wordpress, and many more.
To connect, enter their contact details in the "connect" box on your "Contacts" page.
-###Email
+### Email
If you have supplied your mailbox connection information on your Settings page, you can enter the email address of anybody that has sent you a message recently and have their email messages show up in your social stream.
You can also reply to them from within Friendica.
@@ -76,7 +76,7 @@ In order to avoid abuse or spam, you must have an email from Alice with the corr
Subscribing to mailing lists is done in the same way, but without the use of the "mailto:" prefix.
To subscribe to a mailing list, enter the email in following example format "mailling-list@list-server.net".
-###Syndication feeds
+### Syndication feeds
You can "follow" almost anybody or any website that produces a syndication feed (RSS/Atom,etc.).
If we can find an information stream and a name to attach to the contact, we'll try to connect with them.
diff --git a/doc/Profiles.md b/doc/Profiles.md
index 715d27d95..aceb94da3 100644
--- a/doc/Profiles.md
+++ b/doc/Profiles.md
@@ -4,35 +4,32 @@ Profiles
* [Home](help)
Friendica has unlimited profiles.
-You may use different profiles to show different "sides of yourself" to different audiences.
+You may use different profiles to present different aspects of yourself to different audiences.
Default / public profile
---
You always have a profile known as your "default" or "public" profile.
-This profile is always available to the general public and cannot be hidden (there may be rare exceptions on privately run or disconnected sites).
-You may, and probably should restrict the information you make available on your public profile.
+This profile is always available to the general public and usually cannot be hidden.
+You may, and probably should restrict the personal information you make available on your public profile.
That said, if you want other friends to be able to find you, it helps to have the following information in your public profile:
* Your real name
* A photo of **you**
-* Your location on the planet, at least to a country level.
+* Your location, preferably at least the country.
-Without this basic information, you could get very lonely here.
-Most people (even your best friends) will not try and connect with somebody that has a fake name or doesn't contain a real photo.
-
-In addition, if you'd like to meet people that share some general interests with you, please take a moment and add some "Public Keywords" to your profile.
+In addition, if you'd like to meet people that share some general interests with you, add some "Public Keywords" to your profile.
Such as "music, linux, photography" or whatever.
You can add as many keywords as you like.
Your default or public profile is also shown to contacts on other networks, since they do not have the ability to view your private profiles.
-Only members of the Friendica network can see alternate/private profiles.
+Only members of the Friendica network can see alternate/ private profiles.
-Alternate profiles
+Alternate/ private profiles
---
To create an alternate profile, select "Profiles" from the menu of your Friendica site.
You may edit an existing profile, change the profile photo, or create a new profile.
-You may also create a "clone" of an existing profile if you only wish to change a few items but don't wish to enter all the information again.
+You may also "clone" your existing profile if you only wish to change a few items but don't wish to enter all the information again.
To assign a profile to specific persons, select the person from your "Contacts" page and click the pencil "Edit" icon.
You will find a dropdown box listing the various profiles available.
@@ -51,17 +48,13 @@ You may also be able to comment directly on posts from while visiting the other
There are two settings which allow you to publish your profile to a directory and ensure that it can be found by others.
You can change these through settings on the "Settings" page.
One setting allows you to publish your profile in the site directory of this Friendica server.
-Another option (this may have been disabled by the site creator) allows you to publish your profile in the "Global Directory".
-This is a mega directory which contains people from many other Friendica installations world-wide.
+Another option (this may have been disabled by the site admin) allows you to publish your profile in a [Global Directory](Making-Friends.md#the-directories).
-If you do not wish to be visible to any of these sites, you may leave your profile unpublished.
+If you do not wish to be visible to any of these directories, do not published your profile.
Although you may have multiple profiles, you only have one profile photo.
-This is intentional.
-In early tests we experimented with different photos for each profile and found it was very confusing for people.
-They might see a different picture depending on what website they visited or what conversation they were in, and often alerted them to the fact that other people might be able to see different profiles of you than they could see.
-
-(But you can use the rich-text information boxes within a profile such as "Tell us about yourself" and link other photos onto the page.)
+This is intentional; it avoids confusion by potentially seeing different profile pictures of a contact depending on what website you visit or conversation you participate in.
+You can always can use the free text information boxes within a profile such as "Tell us about yourself" and link other photos for yourself.
Keywords and Directory Search
---
@@ -70,8 +63,7 @@ The search is typically for your nickname or part of your full name.
However this search will also match against other profile fields - such as gender, location, "about", work, and education.
You may also include "Keywords" in your default profile - which may be used to search for common interests with other members.
You have two sets of keywords available - public and private.
-Private keywords are *not* visible to anybody.
-You could use these keywords to locate people who share membership in secret societies, or that share a love of fishing (for example) - without making this information visible on your public profile.
+Private keywords are *not* visible on your profile, but will bring up your profile when matched in a search of the site directory.
Public keywords are used in the friend suggestion tool and although they aren't readily visible, they may be seen by viewing the HTML of your profile page.
Directory searches are also able to use "boolean" logic so that you can search for "+lesbian +Florida" and find those who's sexual preference (or keywords) contain the world "lesbian" and that live in Florida.
@@ -79,7 +71,7 @@ See the section on "Topical Tags" on the [Tags-and-Mentions](help/Tags-and-Menti
On your Contacts page is a link to "Find People with Shared Interests" (unless your site administrator has disabled the global directory).
This will combine both your public and private keywords, and find people in the global directory who have matching and/or similar keywords.
-(Your private keywords are not identified or stored on the global directory).
+Private keywords are not identified or stored on the global directory.
The more keywords you provide, the more relevant the search results that are returned.
These are sorted by relevance.
You may discover that you are the first person on the list - because you are very likely the most relevant match for your keywords in the directory.
diff --git a/doc/de/Addons.md b/doc/de/Addons.md
index 7651840f4..02be19e30 100644
--- a/doc/de/Addons.md
+++ b/doc/de/Addons.md
@@ -101,7 +101,7 @@ Derzeitige Hooks
**'post_remote'** - wird aufgerufen, wenn ein Beitrag aus einer anderen Quelle empfangen wird. Dies kann auch genutzt werden, um lokale Aktivitäten oder systemgenerierte Nachrichten zu veröffentlichen/posten.
$b ist das Item-Array einer Information, die in der Datenbank und im Item gespeichert ist.
- {Bitte beachte: der Seiteninhalt ist bbcode - nicht HTML)
+ {Bitte beachte: der Seiteninhalt ist bbcode - nicht HTML)
**'settings_form'** - wird aufgerufen, wenn die HTML-Ausgabe für die Einstellungsseite generiert wird.
$b ist die HTML-Ausgabe (String) der Einstellungsseite vor dem finalen ""-Tag.
@@ -191,184 +191,300 @@ Komplette Liste der Hook-Callbacks
Eine komplette Liste aller Hook-Callbacks mit den zugehörigen Dateien (am 01-Apr-2018 generiert): Bitte schau in die Quellcodes für Details zu Hooks, die oben nicht dokumentiert sind.
-index.php: Addon::callHooks('init_1');
-index.php: Addon::callHooks('app_menu', $arr);
-index.php: Addon::callHooks('page_content_top', $a->page['content']);
-index.php: Addon::callHooks($a->module.'_mod_init', $placeholder);
-index.php: Addon::callHooks($a->module.'_mod_init', $placeholder);
-index.php: Addon::callHooks($a->module.'_mod_post', $_POST);
-index.php: Addon::callHooks($a->module.'_mod_afterpost', $placeholder);
-index.php: Addon::callHooks($a->module.'_mod_content', $arr);
-index.php: Addon::callHooks($a->module.'_mod_aftercontent', $arr);
-index.php: Addon::callHooks('page_end', $a->page['content']);
+### index.php
-include/api.php: Addon::callHooks('logged_in', $a->user);
-include/api.php: Addon::callHooks('authenticate', $addon_auth);
-include/api.php: Addon::callHooks('logged_in', $a->user);
+ Addon::callHooks('init_1');
+ Addon::callHooks('app_menu', $arr);
+ Addon::callHooks('page_content_top', $a->page['content']);
+ Addon::callHooks($a->module.'_mod_init', $placeholder);
+ Addon::callHooks($a->module.'_mod_init', $placeholder);
+ Addon::callHooks($a->module.'_mod_post', $_POST);
+ Addon::callHooks($a->module.'_mod_afterpost', $placeholder);
+ Addon::callHooks($a->module.'_mod_content', $arr);
+ Addon::callHooks($a->module.'_mod_aftercontent', $arr);
+ Addon::callHooks('page_end', $a->page['content']);
+
+### include/api.php
-include/enotify.php: Addon::callHooks('enotify', $h);
-include/enotify.php: Addon::callHooks('enotify_store', $datarray);
-include/enotify.php: Addon::callHooks('enotify_mail', $datarray);
-include/enotify.php: Addon::callHooks('check_item_notification', $notification_data);
+ Addon::callHooks('logged_in', $a->user);
+ Addon::callHooks('authenticate', $addon_auth);
+ Addon::callHooks('logged_in', $a->user);
-include/conversation.php: Addon::callHooks('conversation_start', $cb);
-include/conversation.php: Addon::callHooks('render_location', $locate);
-include/conversation.php: Addon::callHooks('display_item', $arr);
-include/conversation.php: Addon::callHooks('display_item', $arr);
-include/conversation.php: Addon::callHooks('item_photo_menu', $args);
-include/conversation.php: Addon::callHooks('jot_tool', $jotplugins);
+### include/enotify.php
-include/security.php: Addon::callHooks('logged_in', $a->user);
+ Addon::callHooks('enotify', $h);
+ Addon::callHooks('enotify_store', $datarray);
+ Addon::callHooks('enotify_mail', $datarray);
+ Addon::callHooks('check_item_notification', $notification_data);
+
+### include/conversation.php
-include/text.php: Addon::callHooks('contact_block_end', $arr);
-include/text.php: Addon::callHooks('poke_verbs', $arr);
-include/text.php: Addon::callHooks('prepare_body_init', $item);
-include/text.php: Addon::callHooks('prepare_body_content_filter', $hook_data);
-include/text.php: Addon::callHooks('prepare_body', $hook_data);
-include/text.php: Addon::callHooks('prepare_body_final', $hook_data);
+ Addon::callHooks('conversation_start', $cb);
+ Addon::callHooks('render_location', $locate);
+ Addon::callHooks('display_item', $arr);
+ Addon::callHooks('display_item', $arr);
+ Addon::callHooks('item_photo_menu', $args);
+ Addon::callHooks('jot_tool', $jotplugins);
-include/items.php: Addon::callHooks('page_info_data', $data);
+### include/security.php
-mod/directory.php: Addon::callHooks('directory_item', $arr);
+ Addon::callHooks('logged_in', $a->user);
-mod/xrd.php: Addon::callHooks('personal_xrd', $arr);
+### include/text.php
-mod/ping.php: Addon::callHooks('network_ping', $arr);
+ Addon::callHooks('contact_block_end', $arr);
+ Addon::callHooks('poke_verbs', $arr);
+ Addon::callHooks('prepare_body_init', $item);
+ Addon::callHooks('prepare_body_content_filter', $hook_data);
+ Addon::callHooks('prepare_body', $hook_data);
+ Addon::callHooks('prepare_body_final', $hook_data);
-mod/parse_url.php: Addon::callHooks("parse_link", $arr);
+### include/items.php
-mod/manage.php: Addon::callHooks('home_init', $ret);
+ Addon::callHooks('page_info_data', $data);
-mod/acl.php: Addon::callHooks('acl_lookup_end', $results);
+### mod/directory.php
-mod/network.php: Addon::callHooks('network_content_init', $arr);
-mod/network.php: Addon::callHooks('network_tabs', $arr);
+ Addon::callHooks('directory_item', $arr);
-mod/friendica.php: Addon::callHooks('about_hook', $o);
-mod/subthread.php: Addon::callHooks('post_local_end', $arr);
+### mod/xrd.php
-mod/profiles.php: Addon::callHooks('profile_post', $_POST);
-mod/profiles.php: Addon::callHooks('profile_edit', $arr);
+ Addon::callHooks('personal_xrd', $arr);
-mod/settings.php: Addon::callHooks('addon_settings_post', $_POST);
-mod/settings.php: Addon::callHooks('connector_settings_post', $_POST);
-mod/settings.php: Addon::callHooks('display_settings_post', $_POST);
-mod/settings.php: Addon::callHooks('settings_post', $_POST);
-mod/settings.php: Addon::callHooks('addon_settings', $settings_addons);
-mod/settings.php: Addon::callHooks('connector_settings', $settings_connectors);
-mod/settings.php: Addon::callHooks('display_settings', $o);
-mod/settings.php: Addon::callHooks('settings_form', $o);
+### mod/ping.php
-mod/photos.php: Addon::callHooks('photo_post_init', $_POST);
-mod/photos.php: Addon::callHooks('photo_post_file', $ret);
-mod/photos.php: Addon::callHooks('photo_post_end', $foo);
-mod/photos.php: Addon::callHooks('photo_post_end', $foo);
-mod/photos.php: Addon::callHooks('photo_post_end', $foo);
-mod/photos.php: Addon::callHooks('photo_post_end', $foo);
-mod/photos.php: Addon::callHooks('photo_post_end', intval($item_id));
-mod/photos.php: Addon::callHooks('photo_upload_form', $ret);
+ Addon::callHooks('network_ping', $arr);
-mod/profile.php: Addon::callHooks('profile_advanced', $o);
+### mod/parse_url.php
-mod/home.php: Addon::callHooks('home_init', $ret);
-mod/home.php: Addon::callHooks("home_content", $content);
+ Addon::callHooks("parse_link", $arr);
-mod/poke.php: Addon::callHooks('post_local_end', $arr);
+### mod/manage.php
-mod/contacts.php: Addon::callHooks('contact_edit_post', $_POST);
-mod/contacts.php: Addon::callHooks('contact_edit', $arr);
+ Addon::callHooks('home_init', $ret);
-mod/tagger.php: Addon::callHooks('post_local_end', $arr);
+### mod/acl.php
-mod/lockview.php: Addon::callHooks('lockview_content', $item);
+ Addon::callHooks('acl_lookup_end', $results);
-mod/uexport.php: Addon::callHooks('uexport_options', $options);
+### mod/network.php
-mod/register.php: Addon::callHooks('register_post', $arr);
-mod/register.php: Addon::callHooks('register_form', $arr);
+ Addon::callHooks('network_content_init', $arr);
+ Addon::callHooks('network_tabs', $arr);
-mod/item.php: Addon::callHooks('post_local_start', $_REQUEST);
-mod/item.php: Addon::callHooks('post_local', $datarray);
-mod/item.php: Addon::callHooks('post_local_end', $datarray);
+### mod/friendica.php
-mod/editpost.php: Addon::callHooks('jot_tool', $jotplugins);
+ Addon::callHooks('about_hook', $o);
+
+### mod/subthread.php
-src/Network/FKOAuth1.php: Addon::callHooks('logged_in', $a->user);
+ Addon::callHooks('post_local_end', $arr);
-src/Render/FriendicaSmartyEngine.php: Addon::callHooks("template_vars", $arr);
+### mod/profiles.php
-src/Model/Item.php: Addon::callHooks('post_local', $item);
-src/Model/Item.php: Addon::callHooks('post_remote', $item);
-src/Model/Item.php: Addon::callHooks('post_local_end', $posted_item);
-src/Model/Item.php: Addon::callHooks('post_remote_end', $posted_item);
-src/Model/Item.php: Addon::callHooks('tagged', $arr);
-src/Model/Item.php: Addon::callHooks('post_local_end', $new_item);
+ Addon::callHooks('profile_post', $_POST);
+ Addon::callHooks('profile_edit', $arr);
-src/Model/Contact.php: Addon::callHooks('contact_photo_menu', $args);
-src/Model/Contact.php: Addon::callHooks('follow', $arr);
+### mod/settings.php
-src/Model/Profile.php: Addon::callHooks('profile_sidebar_enter', $profile);
-src/Model/Profile.php: Addon::callHooks('profile_sidebar', $arr);
-src/Model/Profile.php: Addon::callHooks('profile_tabs', $arr);
-src/Model/Profile.php: Addon::callHooks('zrl_init', $arr);
+ Addon::callHooks('addon_settings_post', $_POST);
+ Addon::callHooks('connector_settings_post', $_POST);
+ Addon::callHooks('display_settings_post', $_POST);
+ Addon::callHooks('settings_post', $_POST);
+ Addon::callHooks('addon_settings', $settings_addons);
+ Addon::callHooks('connector_settings', $settings_connectors);
+ Addon::callHooks('display_settings', $o);
+ Addon::callHooks('settings_form', $o);
-src/Model/Event.php: Addon::callHooks('event_updated', $event['id']);
-src/Model/Event.php: Addon::callHooks("event_created", $event['id']);
+### mod/photos.php
-src/Model/User.php: Addon::callHooks('register_account', $uid);
-src/Model/User.php: Addon::callHooks('remove_user', $user);
+ Addon::callHooks('photo_post_init', $_POST);
+ Addon::callHooks('photo_post_file', $ret);
+ Addon::callHooks('photo_post_end', $foo);
+ Addon::callHooks('photo_post_end', $foo);
+ Addon::callHooks('photo_post_end', $foo);
+ Addon::callHooks('photo_post_end', $foo);
+ Addon::callHooks('photo_post_end', intval($item_id));
+ Addon::callHooks('photo_upload_form', $ret);
-src/Content/Text/BBCode.php: Addon::callHooks('bbcode', $text);
-src/Content/Text/BBCode.php: Addon::callHooks('bb2diaspora', $text);
+### mod/profile.php
-src/Content/Text/HTML.php: Addon::callHooks('html2bbcode', $message);
+ Addon::callHooks('profile_advanced', $o);
-src/Content/Smilies.php: Addon::callHooks('smilie', $params);
+### mod/home.php
-src/Content/Feature.php: Addon::callHooks('isEnabled', $arr);
-src/Content/Feature.php: Addon::callHooks('get', $arr);
+ Addon::callHooks('home_init', $ret);
+ Addon::callHooks("home_content", $content);
-src/Content/ContactSelector.php: Addon::callHooks('network_to_name', $nets);
-src/Content/ContactSelector.php: Addon::callHooks('gender_selector', $select);
-src/Content/ContactSelector.php: Addon::callHooks('sexpref_selector', $select);
-src/Content/ContactSelector.php: Addon::callHooks('marital_selector', $select);
+### mod/poke.php
-src/Content/OEmbed.php: Addon::callHooks('oembed_fetch_url', $embedurl, $j);
+ Addon::callHooks('post_local_end', $arr);
-src/Content/Nav.php: Addon::callHooks('page_header', $a->page['nav']);
-src/Content/Nav.php: Addon::callHooks('nav_info', $nav);
+### mod/contacts.php
-src/Worker/Directory.php: Addon::callHooks('globaldir_update', $arr);
-src/Worker/Notifier.php: Addon::callHooks('notifier_end', $target_item);
-src/Worker/Queue.php: Addon::callHooks('queue_predeliver', $r);
-src/Worker/Queue.php: Addon::callHooks('queue_deliver', $params);
+ Addon::callHooks('contact_edit_post', $_POST);
+ Addon::callHooks('contact_edit', $arr);
-src/Module/Login.php: Addon::callHooks('authenticate', $addon_auth);
-src/Module/Login.php: Addon::callHooks('login_hook', $o);
-src/Module/Logout.php: Addon::callHooks("logging_out");
+### mod/tagger.php
-src/Object/Post.php: Addon::callHooks('render_location', $locate);
-src/Object/Post.php: Addon::callHooks('display_item', $arr);
+ Addon::callHooks('post_local_end', $arr);
-src/Core/ACL.php: Addon::callHooks('contact_select_options', $x);
-src/Core/ACL.php: Addon::callHooks($a->module.'_pre_'.$selname, $arr);
-src/Core/ACL.php: Addon::callHooks($a->module.'_post_'.$selname, $o);
-src/Core/ACL.php: Addon::callHooks($a->module.'_pre_'.$selname, $arr);
-src/Core/ACL.php: Addon::callHooks($a->module.'_post_'.$selname, $o);
-src/Core/ACL.php: Addon::callHooks('jot_networks', $jotnets);
+### mod/lockview.php
-src/Core/Worker.php: Addon::callHooks("proc_run", $arr);
+ Addon::callHooks('lockview_content', $item);
-src/Util/Emailer.php: Addon::callHooks('emailer_send_prepare', $params);
-src/Util/Emailer.php: Addon::callHooks("emailer_send", $hookdata);
+### mod/uexport.php
-src/Util/Map.php: Addon::callHooks('generate_map', $arr);
-src/Util/Map.php: Addon::callHooks('generate_named_map', $arr);
-src/Util/Map.php: Addon::callHooks('Map::getCoordinates', $arr);
+ Addon::callHooks('uexport_options', $options);
-src/Util/Network.php: Addon::callHooks('avatar_lookup', $avatar);
+### mod/register.php
-src/Util/ParseUrl.php: Addon::callHooks("getsiteinfo", $siteinfo);
+ Addon::callHooks('register_post', $arr);
+ Addon::callHooks('register_form', $arr);
-src/Protocol/DFRN.php: Addon::callHooks('atom_feed_end', $atom);
-src/Protocol/DFRN.php: Addon::callHooks('atom_feed_end', $atom);
+### mod/item.php
+
+ Addon::callHooks('post_local_start', $_REQUEST);
+ Addon::callHooks('post_local', $datarray);
+ Addon::callHooks('post_local_end', $datarray);
+
+### mod/editpost.php
+
+ Addon::callHooks('jot_tool', $jotplugins);
+
+### src/Network/FKOAuth1.php
+
+ Addon::callHooks('logged_in', $a->user);
+
+### src/Render/FriendicaSmartyEngine.php
+
+ Addon::callHooks("template_vars", $arr);
+
+### src/Model/Item.php
+
+ Addon::callHooks('post_local', $item);
+ Addon::callHooks('post_remote', $item);
+ Addon::callHooks('post_local_end', $posted_item);
+ Addon::callHooks('post_remote_end', $posted_item);
+ Addon::callHooks('tagged', $arr);
+ Addon::callHooks('post_local_end', $new_item);
+
+### src/Model/Contact.php
+
+ Addon::callHooks('contact_photo_menu', $args);
+ Addon::callHooks('follow', $arr);
+
+### src/Model/Profile.php
+
+ Addon::callHooks('profile_sidebar_enter', $profile);
+ Addon::callHooks('profile_sidebar', $arr);
+ Addon::callHooks('profile_tabs', $arr);
+ Addon::callHooks('zrl_init', $arr);
+
+### src/Model/Event.php
+
+ Addon::callHooks('event_updated', $event['id']);
+ Addon::callHooks("event_created", $event['id']);
+
+### src/Model/User.php
+
+ Addon::callHooks('register_account', $uid);
+ Addon::callHooks('remove_user', $user);
+
+### src/Content/Text/BBCode.php
+
+ Addon::callHooks('bbcode', $text);
+ Addon::callHooks('bb2diaspora', $text);
+
+### src/Content/Text/HTML.php
+
+ Addon::callHooks('html2bbcode', $message);
+
+### src/Content/Smilies.php
+
+ Addon::callHooks('smilie', $params);
+
+### src/Content/Feature.php
+
+ Addon::callHooks('isEnabled', $arr);
+ Addon::callHooks('get', $arr);
+
+### src/Content/ContactSelector.php
+
+ Addon::callHooks('network_to_name', $nets);
+ Addon::callHooks('gender_selector', $select);
+ Addon::callHooks('sexpref_selector', $select);
+ Addon::callHooks('marital_selector', $select);
+
+### src/Content/OEmbed.php
+
+ Addon::callHooks('oembed_fetch_url', $embedurl, $j);
+
+### src/Content/Nav.php
+
+ Addon::callHooks('page_header', $a->page['nav']);
+ Addon::callHooks('nav_info', $nav);
+
+### src/Worker/Directory.php
+
+ Addon::callHooks('globaldir_update', $arr);
+
+### src/Worker/Notifier.php
+
+ Addon::callHooks('notifier_end', $target_item);
+
+### src/Worker/Queue.php
+
+ Addon::callHooks('queue_predeliver', $r);
+ Addon::callHooks('queue_deliver', $params);
+
+### src/Module/Login.php
+
+ Addon::callHooks('authenticate', $addon_auth);
+ Addon::callHooks('login_hook', $o);
+
+### src/Module/Logout.php
+
+ Addon::callHooks("logging_out");
+
+### src/Object/Post.php
+
+ Addon::callHooks('render_location', $locate);
+ Addon::callHooks('display_item', $arr);
+
+### src/Core/ACL.php
+
+ Addon::callHooks('contact_select_options', $x);
+ Addon::callHooks($a->module.'_pre_'.$selname, $arr);
+ Addon::callHooks($a->module.'_post_'.$selname, $o);
+ Addon::callHooks($a->module.'_pre_'.$selname, $arr);
+ Addon::callHooks($a->module.'_post_'.$selname, $o);
+ Addon::callHooks('jot_networks', $jotnets);
+
+### src/Core/Worker.php
+
+ Addon::callHooks("proc_run", $arr);
+
+### src/Util/Emailer.php
+
+ Addon::callHooks('emailer_send_prepare', $params);
+ Addon::callHooks("emailer_send", $hookdata);
+
+### src/Util/Map.php
+
+ Addon::callHooks('generate_map', $arr);
+ Addon::callHooks('generate_named_map', $arr);
+ Addon::callHooks('Map::getCoordinates', $arr);
+
+### src/Util/Network.php
+
+ Addon::callHooks('avatar_lookup', $avatar);
+
+### src/Util/ParseUrl.php
+
+ Addon::callHooks("getsiteinfo", $siteinfo);
+
+### src/Protocol/DFRN.php
+
+ Addon::callHooks('atom_feed_end', $atom);
+ Addon::callHooks('atom_feed_end', $atom);
diff --git a/doc/de/Chats.md b/doc/de/Chats.md
index fc46af650..77dfdeb44 100644
--- a/doc/de/Chats.md
+++ b/doc/de/Chats.md
@@ -8,7 +8,7 @@ Du hast derzeit zwei Möglichkeiten, einen Chat auf Deiner Friendica-Seite zu be
* IRC - Internet Relay Chat
* Jappix
-##IRC Addon
+## IRC Addon
Sobald das Addon aktiviert ist, kannst Du den Chat unter [deineSeite.de/irc](../irc) finden.
Beachte aber, dass dieser Chat auch ohne Anmeldung auf Deiner Seite zugänglich ist und somit auch Fremde diesen Chat mitnutzen können.
@@ -27,7 +27,7 @@ Unten hast Du ein Eingabefeld, um Beiträge zu schreiben.
Weiter Informationen zu IRC findest Du zum Beispiel auf ubuntuusers.de , in Wikipedia oder bei icrhelp.org (in Englisch).
-##Jappix Mini
+## Jappix Mini
Das Jappix Mini Addon erlaubt das Erstellen einer Chatbox für Jabber/XMPP-Kontakte.
Ein Jabber/XMPP Account sollte vor der Installation bereits vorhanden sein.
diff --git a/doc/de/Improve-Performance.md b/doc/de/Improve-Performance.md
index c1f0a54fa..d9be4fca6 100644
--- a/doc/de/Improve-Performance.md
+++ b/doc/de/Improve-Performance.md
@@ -35,7 +35,7 @@ Aktiviere die folgenden Addons:
rendertime
-###rendertime
+### rendertime
**Beschreibung**
@@ -60,7 +60,7 @@ Webserver
Wenn du einen Apache-Webserver nutzt, aktiviere bitte die folgenden Module:
-###Cache-Control
+### Cache-Control
**Beschreibung**
@@ -74,7 +74,7 @@ ExpiresActive on ExpiresDefault "access plus 1 week"
Weitere Informationen findest du hier: http://httpd.apache.org/docs/2.2/mod/mod_expires.html.
-###Compress content
+### Compress content
**Beschreibung**
@@ -85,7 +85,7 @@ Aktiviere das Modul "mod_deflate" durch die Eingabe "a2enmod deflate" als root.
Weitere Informationen findest du hier: http://httpd.apache.org/docs/2.2/mod/mod_deflate.html
-###PHP
+### PHP
**FCGI**
@@ -93,7 +93,7 @@ Wenn du Apache nutzt, dann denk darüber nach, FCGI zu nutzen.
Wenn du eine Debian-basierte Distribution nutzt, dann wirst du die Pakete "php5-cgi" und "libapache2-mod-fcgid" benötigen.
Nutze externe Dokumente, um eine detailiertere Erklärung für die Einrichtung eines Systems auf FCGI-Basis zu erhalten.
-###Database
+### Database
Es gibt Skripte wie [tuning-primer.sh](http://www.day32.com/MySQL/) und [mysqltuner.pl](http://mysqltuner.pl), die den Datenbankserver analysieren und Hinweise darauf geben, welche Werte verändert werden könnten.
diff --git a/doc/de/Install.md b/doc/de/Install.md
index 1842306c5..ff077351b 100644
--- a/doc/de/Install.md
+++ b/doc/de/Install.md
@@ -4,6 +4,7 @@ Friendica Installation
* [Zur Startseite der Hilfe](help)
Wir haben hart daran gearbeitet, um Friendica auf vorgefertigten Hosting-Plattformen zum Laufen zu bringen - solche, auf denen auch Wordpress Blogs und Drupal-Installationen laufen.
+Wir bieten eine manuelle und eine automatische Installation an.
Aber bedenke, dass Friendica mehr als eine einfache Webanwendung ist.
Es handelt sich um ein komplexes Kommunikationssystem, das eher an einen Email-Server erinnert als an einen Webserver.
Um die Verfügbarkeit und Performance zu gewährleisten, werden Nachrichten im Hintergrund verschickt und gespeichert, um sie später zu verschicken, wenn eine Webseite gerade nicht erreichbar ist.
@@ -11,83 +12,124 @@ Diese Funktionalität benötigt ein wenig mehr als die normalen Blogs.
Nicht jeder PHP/MySQL-Hosting-Anbieter kann Friendica unterstützen.
Viele hingegen können es. Aber **bitte** prüfe die Voraussetzungen deines Servers vor der Installation.
-Wenn dir Fehler während der Installation auffallen, sag uns bitte über [github](https://github.com/friendica/issues) Bescheid.
+Wenn dir Fehler während der Installation auffallen, sag uns bitte über [Helper](http://forum.friendi.ca/profile/helpers) oder das [Entwickler Forum](https://forum.friendi.ca/profile/developers) Bescheid oder [erstelle ein Issue](https://github.com/friendica/friendica/issues).
Gib uns bitte so viele Infos zu deinem System, wie du kannst, und beschreibe den Fehler mit allen Details und Fehlermeldungen, so dass wir den Fehler zukünftig verhindern können.
Aufgrund der großen Anzahl an verschiedenen Betriebssystemen und PHP-Plattformen haben wir nur geringe Kapazitäten, um deine PHP-Installation zu debuggen oder fehlende Module zu ersetzen, aber wir tun unser Bestes, um allgemeine Code-Fehler zu beheben.
+Falls du noch keinen Friendica-Account hast, kannst du dir einen temporären Account hier erstellen: [tryfriendica.de](https://tryfriendica.de).
+Darüber kannst du den genannten Forum beitreten.
+Der Account wird nach 7 Tagen ablaufen, aber du kannst einen Server-Admin fragen, diesen Account länger zu erhalten, sollte das Problem nicht innerhalb dieser Zeit gelöst sein.
Bevor du anfängst: suche dir einen Domain- oder Subdomainnamen für deinen Server.
Dinge verändern sich und einige deiner Freunde haben möglicherweise Probleme, mit dir zu kommunizieren.
Wir planen, diese Einschränkung in einer zukünftigen Version zu beheben.
-1. Voraussetzungen
- - Apache mit einer aktiverten mod-rewrite-Funktion und dem Eintrag "Options All", so dass du die lokale .htaccess-Datei nutzen kannst
- - PHP 5.6+. Je neuer, desto besser.
- - PHP *Kommandozeilen*-Zugang mit register_argc_argv auf "true" gesetzt in der php.ini-Datei
- - Curl, GD, PDO, MySQLi, xml, zip und OpenSSL-Erweiterung
- - etwas in der Art eines Email-Servers oder eines Gateways wie PHP mail()
- - Das POSIX Modul muss aktiviert sein ([CentOS, RHEL](http://www.bigsoft.co.uk/blog/index.php/2014/12/08/posix-php-commands-not-working-under-centos-7http://www.bigsoft.co.uk/blog/index.php/2014/12/08/posix-php-commands-not-working-under-centos-7) haben dies z.B. deaktiviert)
- - Mysql 5.5.3+
- - die Möglichkeit, wiederkehrende Aufgaben mit cron (Linux/Mac) oder "Scheduled Tasks" einzustellen (Windows) [Beachte: andere Optionen sind in Abschnitt 7 dieser Dokumentation zu finden]
- - Installation in einer Top-Level-Domain oder Subdomain (ohne eine Verzeichnis/Pfad-Komponente in der URL) wird bevorzugt. Verzeichnispfade sind für diesen Zweck nicht so günstig und wurden auch nicht ausführlich getestet.
+Requirements
+---
+* Apache mit einer aktiverten mod-rewrite-Funktion und dem Eintrag "Options All", so dass du die lokale .htaccess-Datei nutzen kannst
+* PHP 5.6+ (PHP 7 ist aufgrund der Performance empfohlen)
+ * PHP *Kommandozeilen*-Zugang mit register_argc_argv auf "true" gesetzt in der php.ini-Datei
+ * Curl, GD, PDO, MySQLi, xml, zip und OpenSSL-Erweiterung
+ * Das POSIX Modul muss aktiviert sein ([CentOS, RHEL](http://www.bigsoft.co.uk/blog/index.php/2014/12/08/posix-php-commands-not-working-under-centos-7http://www.bigsoft.co.uk/blog/index.php/2014/12/08/posix-php-commands-not-working-under-centos-7) haben dies z.B. deaktiviert)
+ * etwas in der Art eines Email-Servers oder eines Gateways wie PHP mail()
+* Mysql 5.5.3+ (oder eine äquivalente Alternative: MariaDB, Percona Server etc.)
+* die Möglichkeit, wiederkehrende Aufgaben mit cron (Linux/Mac) oder "Scheduled Tasks" einzustellen (Windows) [Beachte: andere Optionen sind in Abschnitt 7 dieser Dokumentation zu finden]
+* Installation in einer Top-Level-Domain oder Subdomain (ohne eine Verzeichnis/Pfad-Komponente in der URL) wird bevorzugt. Verzeichnispfade sind für diesen Zweck nicht so günstig und wurden auch nicht ausführlich getestet.
- [Dreamhost.com bietet ein ausreichendes Hosting-Paket mit den nötigen Features zu einem annehmbaren Preis. Wenn dein Hosting-Anbieter keinen Unix-Zugriff erlaubt, kannst du Schwierigkeiten mit der Einrichtung der Webseite haben.
+Installation
+---
- 1.1. APT-Pakete
- - Apache: sudo apt-get install apache2
- - PHP5: sudo apt-get install php5
- - PHP5-Zusätzliche Pakete: sudo apt-get install php5-curl php5-gd php5-mysql
- - MySQL: sudo apt-get install mysql-server
+### Friendica
-2. Entpacke die Friendica-Daten in das Quellverzeichnis (root) des Dokumentenbereichs deines Webservers.
+Entpacke die Friendica-Daten in das Quellverzeichnis (root) des Dokumentenbereichs deines Webservers.
+Wenn du die Möglichkeit hierzu hast, empfehlen wir dir "git" zu nutzen, um die Daten direkt von der Quelle zu klonen, statt die gepackte .tar- oder .zip-Datei zu nutzen.
+Das macht die Aktualisierung wesentlich einfacher.
+Der Linux-Code, mit dem man die Dateien direkt in ein Verzeichnis wie "meinewebseite" kopiert, ist
- - Wenn du die Möglichkeit hierzu hast, empfehlen wir dir "git" zu nutzen, um die Daten direkt von der Quelle zu klonen, statt die gepackte .tar- oder .zip-Datei zu nutzen. Das macht die Aktualisierung wesentlich einfacher. Der Linux-Code, mit dem man die Dateien direkt in ein Verzeichnis wie "meinewebseite" kopiert, ist
+ git clone https://github.com/friendica/friendica.git mywebsite
+ cd mywebsite
+ bin/composer.phar install
- `git clone https://github.com/friendica/friendica.git meinewebseite`
+Stelle sicher, dass der Ordner *view/smarty3* existiert and von dem Webserver-Benutzer beschreibbar ist
- - und dann kannst du die letzten Änderungen immer mit dem folgenden Code holen
+ mkdir view/smarty3
+ chmod 777 view/smarty3
- `cd meinewebseite`
- `git pull`
- `bin/composer.phar install`
+Falls Addons installiert werden sollen: Gehe in den Friendica-Ordner
- - Addons installieren
- - zunächst solltest du **in** deinem Webseitenordner sein
+ cd mywebsite
- `cd meinewebseite`
+Und die Addon Repository klonst:
- - dann kannst du das Addon-Verzeichnis seperat kopieren
+ git clone https://github.com/friendica/friendica-addons.git addon
- `git clone https://github.com/friendica/friendica-addons.git addon`
+Um das Addon-Verzeichnis aktuell zu halten, solltest du in diesem Pfad ein "git pull"-Befehl eintragen
- - Um das Addon-Verzeichnis aktuell zu halten, solltest du in diesem Pfad ein "git pull"-Befehl eintragen
+ cd meinewebseite/addon
+ git pull
- `cd meinewebseite/addon`
+Wenn du den Verzeichnispfad auf deinen Webserver kopierst, dann stelle sicher, dass du auch die .htaccess kopierst, da "Punkt"-Dateien oft versteckt sind und normalerweise nicht direkt kopiert werden.
- `git pull`
+### Erselle eine Datenbank
- - Wenn du den Verzeichnispfad auf deinen Webserver kopierst, dann stelle sicher, dass du auch die .htaccess kopierst, da "Punkt"-Dateien oft versteckt sind und normalerweise nicht direkt kopiert werden.
-
-
-3. Erstelle eine leere Datenbank und notiere alle Zugangsdaten (Adresse der Datenbank, Nutzername, Passwort, Datenbankname).
+Erstelle eine leere Datenbank und notiere alle Zugangsdaten (Adresse der Datenbank, Nutzername, Passwort, Datenbankname).
Friendica benötigt die Berechtigungen um neue Felder in dieser Datenbank zu ertellen (create) und zu löschen (delete).
-4. Besuche deine Webseite mit deinem Browser und befolge die Anleitung. Bitte beachte jeden Fehler und korrigiere diese, bevor du fortfährst.
+Mit neueren Versionen von MySQL (5.7.17+) musst du den `sql_mode` zu `''` (blank) setzen.
+Benutze diese Einstellung, wenn der Installer nicht in der Lage ist, die Tabellen aufgrund eines Timestamp-Format Problems zu erstellen.
+Falls dem so ist, finde den `[mysqld]` Bereich in deiner `my.conf` Datei und füge diese Zeile hinzu:
-5. *Wenn* die automatisierte Installation aus irgendeinem Grund fehlschlägt, dann prüfe das Folgende:
+ sql_mode = ''
- - ".htconfig.php" existiert ... wenn nicht, bearbeite die „htconfig.php“ und ändere die Systemeinstellungen. Benenne sie um in „.htconfig.php"
-“
- - die Datenbank beinhaltet Daten. ... wenn nicht, importiere den Inhalt der Datei "database.sql" mit phpmyadmin oder per mysql-Kommandozeile.
+Starte MySQL dann neu und es sollte klappen.
-6. Besuche deine Seite an diesem Punkt wieder und registriere deinen persönlichen Account. Alle Registrierungsprobleme sollten automatisch behebbar sein.
-Wenn du irgendwelche **kritischen** Fehler zu diesen Zeitpunkt erhalten solltest, deutet das darauf hin, dass die Datenbank nicht korrekt installiert wurde. Du kannst bei Bedarf die Datei .htconfig.php verschieben/umbenennen und die Datenbank leeren (als „Dropping“ bezeichnet), so dass du mit einem sauberen System neu starten kannst.
+### Option A: Der manuelle Installer
-7. Erstelle einen Cron job oder einen regelmäßigen Task, um den Poller alle 5-10 Minuten im Hintergrund ablaufen zu lassen. Beispiel:
+Besuche deine Webseite mit deinem Browser und befolge die Anleitung.
+Bitte beachte jeden Fehler und korrigiere diese, bevor du fortfährst.
- `cd /base/directory; /path/to/php bin/worker.php`
+Falls du einen Port für die Datenbankverbindung angeben musst, kannst du diesen in der Host-Eingabe Zeile angeben.
+
+*Wenn* die manuelle Installation aus irgendeinem Grund fehlschlägt, dann prüfe das Folgende:
+* ".htconfig.php" existiert ... wenn nicht, bearbeite die „htconfig.php“ und ändere die Systemeinstellungen. Benenne sie um in „.htconfig.php".
+* die Datenbank beinhaltet Daten. ... wenn nicht, importiere den Inhalt der Datei "database.sql" mit phpmyadmin oder per mysql-Kommandozeile.
+
+Besuche deine Seite an diesem Punkt wieder und registriere deinen persönlichen Account.
+Alle Registrierungsprobleme sollten automatisch behebbar sein.
+Wenn du irgendwelche **kritischen** Fehler zu diesen Zeitpunkt erhalten solltest, deutet das darauf hin, dass die Datenbank nicht korrekt installiert wurde.
+Du kannst bei Bedarf die Datei .htconfig.php verschieben/umbenennen und die Datenbank leeren (als „Dropping“ bezeichnet), so dass du mit einem sauberen System neu starten kannst.
+
+### Option B: Starte das manuelle Installationsscript
+
+Öffne die Datei htconfig.php im Friendica-Hauptordner mit einem Text-Editor.
+Entferne die `die('...');` Zeile und bearbeite die Einstellungen so, das sie zu deinem System passen (MySQL, Sprache, Theme etc.).
+Dann speichere die Datei (jedoch nicht umbenennen).
+
+Gehe in den Friendica-Hauptordner und führe den Kommandozeilen Befehl aus:
+
+ bin/console autoinstall
+
+Oder falls du alle optionalen Checks ausfürehn lassen möchtest, benutze diese Option:
+
+ bin/console autoinstall -a
+
+*Wenn* die automatisierte Installation aus irgendeinem Grund fehlschlägt, dann prüfe das Folgende:
+* Existiert die `.htconfig.php`? Falls ja, wird die automatisierte Installation nicht gestartet.
+* Sind Einstellungen in der `.htconfig.php` korrekt? Falls nicht, bitte bearbeite diese Datei erneut.
+* Ist die leere MySQL-Datenbank erstellt? Falls nicht, erstelle diese.
+
+Für mehr Informationen kannst du diese Option verwenden:
+
+ bin/console autoinstall -v
+
+### Einen Worker einrichten
+
+Erstelle einen Cron job oder einen regelmäßigen Task, um den Poller alle 5-10 Minuten im Hintergrund ablaufen zu lassen.
+Beispiel:
+
+ cd /base/directory; /path/to/php bin/worker.php
Ändere "/base/directory" und "/path/to/php" auf deine Systemvorgaben.
@@ -101,10 +143,11 @@ Friendica wird nicht korrekt laufen, wenn dieser Schritt nicht erfolgreich abges
Falls das Einrichten des cron nicht möglich ist, kannst Du alternativ den "frontend worker" vom Administrationsinterface aus aktivieren.
-###Erstelle einen Backup Plan
+### Erstelle einen Backup Plan
+
Es werden schlimme Dinge geschehen.
-Sei es nun ein Hardwareversage oder eine korrumpierte Datenbank.
-Deshalb solltest du dir nachdem die Installation deines Friendica Knotens abgeschlossen ist einen Backup Plan erstellen.
+Sei es nun ein Hardwareversagen oder eine kaputte Datenbank.
+Deshalb solltest du dir, nachdem die Installation deines Friendica Knotens abgeschlossen ist, einen Backup Plan erstellen.
Die wichtigste Datei ist die `.htconfig.php` im Stammverzeichnis deiner Friendica Installation.
Und da alle Daten in der Datenbank gespeichert werden, solltest du einen nicht all zu alten Dump der Friendica Datenbank zur Hand haben, solltest du deinen Knoten wieder herstellen müssen.
diff --git a/include/dba.php b/include/dba.php
index 6446bb444..1d3b43214 100644
--- a/include/dba.php
+++ b/include/dba.php
@@ -860,12 +860,15 @@ class dba {
*
* @param string $table Table name
* @param array $conditions Field condition(s)
+ * @param array $options
+ * - cascade: If true we delete records in other tables that depend on the one we're deleting through
+ * relations (default: true)
* @param boolean $in_process Internal use: Only do a commit after the last delete
* @param array $callstack Internal use: prevent endless loops
*
* @return boolean|array was the delete successful? When $in_process is set: deletion data
*/
- public static function delete($table, array $conditions, $in_process = false, array &$callstack = [])
+ public static function delete($table, array $conditions, array $options = [], $in_process = false, array &$callstack = [])
{
if (empty($table) || empty($conditions)) {
logger('Table and conditions have to be set');
@@ -888,13 +891,15 @@ class dba {
$commands[$key] = ['table' => $table, 'conditions' => $conditions];
+ $cascade = defaults($options, 'cascade', true);
+
// To speed up the whole process we cache the table relations
- if (count(self::$relation) == 0) {
+ if ($cascade && count(self::$relation) == 0) {
self::buildRelationData();
}
// Is there a relation entry for the table?
- if (isset(self::$relation[$table])) {
+ if ($cascade && isset(self::$relation[$table])) {
// We only allow a simple "one field" relation.
$field = array_keys(self::$relation[$table])[0];
$rel_def = array_values(self::$relation[$table])[0];
@@ -907,7 +912,7 @@ class dba {
if ((count($conditions) == 1) && ($field == array_keys($conditions)[0])) {
foreach ($rel_def AS $rel_table => $rel_fields) {
foreach ($rel_fields AS $rel_field) {
- $retval = self::delete($rel_table, [$rel_field => array_values($conditions)[0]], true, $callstack);
+ $retval = self::delete($rel_table, [$rel_field => array_values($conditions)[0]], $options, true, $callstack);
$commands = array_merge($commands, $retval);
}
}
@@ -921,7 +926,7 @@ class dba {
while ($row = self::fetch($data)) {
// Now we accumulate the delete commands
- $retval = self::delete($table, [$field => $row[$field]], true, $callstack);
+ $retval = self::delete($table, [$field => $row[$field]], $options, true, $callstack);
$commands = array_merge($commands, $retval);
}
@@ -968,7 +973,7 @@ class dba {
// Split the SQL queries in chunks of 100 values
// We do the $i stuff here to make the code better readable
$i = $counter[$key_table][$key_condition];
- if (count($compacted[$key_table][$key_condition][$i]) > 100) {
+ if (isset($compacted[$key_table][$key_condition][$i]) && count($compacted[$key_table][$key_condition][$i]) > 100) {
++$i;
}
diff --git a/include/text.php b/include/text.php
index a37d5815d..040ac4ce0 100644
--- a/include/text.php
+++ b/include/text.php
@@ -1411,18 +1411,13 @@ function prepare_body(array &$item, $attach = false, $is_preview = false)
function apply_content_filter($html, array $reasons)
{
if (count($reasons)) {
- $rnd = random_string(8);
- $content_filter_html = '
';
- foreach ($reasons as $reason) {
- $content_filter_html .= '' . htmlspecialchars($reason) . ' ' . PHP_EOL;
- }
- $content_filter_html .= '
- ' .
- L10n::t('Click to open/close') .
- '
- ';
-
- $html = $content_filter_html . $html . '
';
+ $tpl = get_markup_template('wall/content_filter.tpl');
+ $html = replace_macros($tpl, [
+ '$reasons' => $reasons,
+ '$rnd' => random_string(8),
+ '$openclose' => L10n::t('Click to open/close'),
+ '$html' => $html
+ ]);
}
return $html;
diff --git a/mod/admin.php b/mod/admin.php
index 3debb57be..3090376be 100644
--- a/mod/admin.php
+++ b/mod/admin.php
@@ -1120,6 +1120,7 @@ function admin_page_site_post(App $a)
}
Config::set('system', 'language', $language);
Config::set('system', 'theme', $theme);
+ Theme::install($theme);
if ($theme_mobile == '---') {
Config::delete('system', 'mobile-theme');
@@ -1262,6 +1263,7 @@ function admin_page_site(App $a)
/* Community page style */
$community_page_style_choices = [
+ CP_NO_INTERNAL_COMMUNITY => L10n::t("No community page for local users"),
CP_NO_COMMUNITY_PAGE => L10n::t("No community page"),
CP_USERS_ON_SERVER => L10n::t("Public postings from users of this site"),
CP_GLOBAL_COMMUNITY => L10n::t("Public postings from the federated network"),
diff --git a/mod/babel.php b/mod/babel.php
index cafd06556..3352366bd 100644
--- a/mod/babel.php
+++ b/mod/babel.php
@@ -23,6 +23,12 @@ function babel_content()
'content' => visible_lf($bbcode)
];
+ $plain = Text\BBCode::toPlaintext($bbcode, false);
+ $results[] = [
+ 'title' => L10n::t('BBCode::toPlaintext'),
+ 'content' => visible_lf($plain)
+ ];
+
$html = Text\BBCode::convert($bbcode);
$results[] = [
'title' => L10n::t("BBCode::convert \x28raw HTML\x29"),
diff --git a/mod/community.php b/mod/community.php
index 40ebdbb6e..876339dea 100644
--- a/mod/community.php
+++ b/mod/community.php
@@ -30,6 +30,11 @@ function community_content(App $a, $update = 0)
$page_style = Config::get('system', 'community_page_style');
+ if ($page_style == CP_NO_INTERNAL_COMMUNITY) {
+ notice(L10n::t('Access denied.') . EOL);
+ return;
+ }
+
if ($a->argc > 1) {
$content = $a->argv[1];
} else {
diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php
index 7eddd4f3d..e2f0336db 100644
--- a/mod/dfrn_notify.php
+++ b/mod/dfrn_notify.php
@@ -25,42 +25,13 @@ function dfrn_notify_post(App $a) {
$data = json_decode($postdata);
if (is_object($data)) {
$nick = defaults($a->argv, 1, '');
+
$user = dba::selectFirst('user', [], ['nickname' => $nick, 'account_expired' => false, 'account_removed' => false]);
if (!DBM::is_result($user)) {
System::httpExit(500);
}
- $msg = Diaspora::decodeRaw($user, $postdata);
-
- // Check if the user has got this contact
- $cid = Contact::getIdForURL($msg['author'], $user['uid']);
- if (!$cid) {
- // Otherwise there should be a public contact
- $cid = Contact::getIdForURL($msg['author']);
- if (!$cid) {
- logger('Contact not found for address ' . $msg['author']);
- System::xmlExit(3, 'Contact not found');
- }
- }
-
- // We now have some contact, so we fetch it
- $importer = dba::fetch_first("SELECT *, `name` as `senderName`
- FROM `contact`
- WHERE NOT `blocked` AND `id` = ? LIMIT 1",
- $cid);
-
- // This should never fail
- if (!DBM::is_result($importer)) {
- logger('Contact not found for address ' . $msg['author']);
- System::xmlExit(3, 'Contact not found');
- }
-
- // Set the user id. This is important if this is a public contact
- $importer['importer_uid'] = $user['uid'];
-
- // Now we should be able to import it
- $ret = DFRN::import($msg['message'], $importer);
- System::xmlExit($ret, 'Done');
- } else {
+ dfrn_dispatch_private($user, $postdata);
+ } elseif (!dfrn_dispatch_public($postdata)) {
require_once 'mod/salmon.php';
salmon_post($a, $postdata);
}
@@ -91,19 +62,12 @@ function dfrn_notify_post(App $a) {
$dfrn_id = substr($dfrn_id, 2);
}
- $r = q("SELECT * FROM `challenge` WHERE `dfrn-id` = '%s' AND `challenge` = '%s' LIMIT 1",
- dbesc($dfrn_id),
- dbesc($challenge)
- );
- if (! DBM::is_result($r)) {
- logger('dfrn_notify: could not match challenge to dfrn_id ' . $dfrn_id . ' challenge=' . $challenge);
+ if (!dba::exists('challenge', ['dfrn-id' => $dfrn_id, 'challenge' => $challenge])) {
+ logger('could not match challenge to dfrn_id ' . $dfrn_id . ' challenge=' . $challenge);
System::xmlExit(3, 'Could not match challenge');
}
- $r = q("DELETE FROM `challenge` WHERE `dfrn-id` = '%s' AND `challenge` = '%s'",
- dbesc($dfrn_id),
- dbesc($challenge)
- );
+ dba::delete('challenge', ['dfrn-id' => $dfrn_id, 'challenge' => $challenge]);
// find the local user who owns this relationship.
@@ -143,8 +107,8 @@ function dfrn_notify_post(App $a) {
dbesc($a->argv[1])
);
- if (! DBM::is_result($r)) {
- logger('dfrn_notify: contact not found for dfrn_id ' . $dfrn_id);
+ if (!DBM::is_result($r)) {
+ logger('contact not found for dfrn_id ' . $dfrn_id);
System::xmlExit(3, 'Contact not found');
//NOTREACHED
}
@@ -153,15 +117,11 @@ function dfrn_notify_post(App $a) {
$importer = $r[0];
- logger("Remote rino version: ".$rino_remote." for ".$importer["url"], LOGGER_DEBUG);
-
if ((($writable != (-1)) && ($writable != $importer['writable'])) || ($importer['forum'] != $forum) || ($importer['prv'] != $prv)) {
- q("UPDATE `contact` SET `writable` = %d, forum = %d, prv = %d WHERE `id` = %d",
- intval(($writable == (-1)) ? $importer['writable'] : $writable),
- intval($forum),
- intval($prv),
- intval($importer['id'])
- );
+ $fields = ['writable' => ($writable == (-1)) ? $importer['writable'] : $writable,
+ 'forum' => $forum, 'prv' => $prv];
+ dba::update('contact', $fields, ['id' => $importer['id']]);
+
if ($writable != (-1)) {
$importer['writable'] = $writable;
}
@@ -173,8 +133,7 @@ function dfrn_notify_post(App $a) {
$importer = Contact::updateSslPolicy($importer, $ssl_policy);
- logger('dfrn_notify: received notify from ' . $importer['name'] . ' for ' . $importer['username']);
- logger('dfrn_notify: data: ' . $data, LOGGER_DATA);
+ logger('data: ' . $data, LOGGER_DATA);
if ($dissolve == 1) {
// Relationship is dissolved permanently
@@ -186,8 +145,6 @@ function dfrn_notify_post(App $a) {
$rino = Config::get('system', 'rino_encrypt');
$rino = intval($rino);
- logger("Local rino version: " . $rino, LOGGER_DEBUG);
-
if (strlen($key)) {
// if local rino is lower than remote rino, abort: should not happen!
@@ -198,24 +155,25 @@ function dfrn_notify_post(App $a) {
}
$rawkey = hex2bin(trim($key));
- logger('rino: md5 raw key: ' . md5($rawkey));
+ logger('rino: md5 raw key: ' . md5($rawkey), LOGGER_DATA);
+
$final_key = '';
if ($dfrn_version >= 2.1) {
- if ((($importer['duplex']) && strlen($importer['cprvkey'])) || (! strlen($importer['cpubkey']))) {
+ if (($importer['duplex'] && strlen($importer['cprvkey'])) || !strlen($importer['cpubkey'])) {
openssl_private_decrypt($rawkey, $final_key, $importer['cprvkey']);
} else {
openssl_public_decrypt($rawkey, $final_key, $importer['cpubkey']);
}
} else {
- if ((($importer['duplex']) && strlen($importer['cpubkey'])) || (! strlen($importer['cprvkey']))) {
+ if (($importer['duplex'] && strlen($importer['cpubkey'])) || !strlen($importer['cprvkey'])) {
openssl_public_decrypt($rawkey, $final_key, $importer['cpubkey']);
} else {
openssl_private_decrypt($rawkey, $final_key, $importer['cprvkey']);
}
}
- switch($rino_remote) {
+ switch ($rino_remote) {
case 0:
case 1:
// we got a key. old code send only the key, without RINO version.
@@ -230,16 +188,93 @@ function dfrn_notify_post(App $a) {
logger('rino: decrypted data: ' . $data, LOGGER_DATA);
}
+ logger('Importing post from ' . $importer['addr'] . ' to ' . $importer['nickname'] . ' with the RINO ' . $rino_remote . ' encryption.', LOGGER_DEBUG);
+
$ret = DFRN::import($data, $importer);
System::xmlExit($ret, 'Processed');
// NOTREACHED
}
+function dfrn_dispatch_public($postdata)
+{
+ $msg = Diaspora::decodeRaw([], $postdata);
+ if (!$msg) {
+ // We have to fail silently to be able to hand it over to the salmon parser
+ return false;
+ }
+
+ // Fetch the corresponding public contact
+ $contact = Contact::getDetailsByAddr($msg['author'], 0);
+ if (!$contact) {
+ logger('Contact not found for address ' . $msg['author']);
+ System::xmlExit(3, 'Contact not found');
+ }
+
+ // We now have some contact, so we fetch it
+ $importer = dba::fetch_first("SELECT *, `name` as `senderName`
+ FROM `contact`
+ WHERE NOT `blocked` AND `id` = ? LIMIT 1",
+ $contact['id']);
+
+ $importer['importer_uid'] = 0;
+
+ // This should never fail
+ if (!DBM::is_result($importer)) {
+ logger('Contact not found for address ' . $msg['author']);
+ System::xmlExit(3, 'Contact not found');
+ }
+
+ logger('Importing post from ' . $msg['author'] . ' with the public envelope.', LOGGER_DEBUG);
+
+ // Now we should be able to import it
+ $ret = DFRN::import($msg['message'], $importer);
+ System::xmlExit($ret, 'Done');
+}
+
+function dfrn_dispatch_private($user, $postdata)
+{
+ $msg = Diaspora::decodeRaw($user, $postdata);
+ if (!$msg) {
+ System::xmlExit(4, 'Unable to parse message');
+ }
+
+ // Check if the user has got this contact
+ $cid = Contact::getIdForURL($msg['author'], $user['uid']);
+ if (!$cid) {
+ // Otherwise there should be a public contact
+ $cid = Contact::getIdForURL($msg['author']);
+ if (!$cid) {
+ logger('Contact not found for address ' . $msg['author']);
+ System::xmlExit(3, 'Contact not found');
+ }
+ }
+
+ // We now have some contact, so we fetch it
+ $importer = dba::fetch_first("SELECT *, `name` as `senderName`
+ FROM `contact`
+ WHERE NOT `blocked` AND `id` = ? LIMIT 1",
+ $cid);
+
+ // This should never fail
+ if (!DBM::is_result($importer)) {
+ logger('Contact not found for address ' . $msg['author']);
+ System::xmlExit(3, 'Contact not found');
+ }
+
+ // Set the user id. This is important if this is a public contact
+ $importer['importer_uid'] = $user['uid'];
+
+ logger('Importing post from ' . $msg['author'] . ' to ' . $user['nickname'] . ' with the private envelope.', LOGGER_DEBUG);
+
+ // Now we should be able to import it
+ $ret = DFRN::import($msg['message'], $importer);
+ System::xmlExit($ret, 'Done');
+}
function dfrn_notify_content(App $a) {
- if(x($_GET,'dfrn_id')) {
+ if (x($_GET,'dfrn_id')) {
/*
* initial communication from external contact, $direction is their direction.
@@ -252,10 +287,10 @@ function dfrn_notify_content(App $a) {
$type = "";
$last_update = "";
- logger('dfrn_notify: new notification dfrn_id=' . $dfrn_id);
+ logger('new notification dfrn_id=' . $dfrn_id);
$direction = (-1);
- if(strpos($dfrn_id,':') == 1) {
+ if (strpos($dfrn_id,':') == 1) {
$direction = intval(substr($dfrn_id,0,1));
$dfrn_id = substr($dfrn_id,2);
}
@@ -264,23 +299,18 @@ function dfrn_notify_content(App $a) {
$status = 0;
- $r = q("DELETE FROM `challenge` WHERE `expire` < " . intval(time()));
+ dba::delete('challenge', ["`expire` < ?", time()]);
- $r = q("INSERT INTO `challenge` ( `challenge`, `dfrn-id`, `expire` , `type`, `last_update` )
- VALUES( '%s', '%s', %d, '%s', '%s' ) ",
- dbesc($hash),
- dbesc($dfrn_id),
- intval(time() + 90 ),
- dbesc($type),
- dbesc($last_update)
- );
+ $fields = ['challenge' => $hash, 'dfrn-id' => $dfrn_id, 'expire' => time() + 90,
+ 'type' => $type, 'last_update' => $last_update];
+ dba::insert('challenge', $fields);
- logger('dfrn_notify: challenge=' . $hash, LOGGER_DEBUG);
+ logger('challenge=' . $hash, LOGGER_DATA);
$sql_extra = '';
switch($direction) {
case (-1):
- $sql_extra = sprintf(" AND ( `issued-id` = '%s' OR `dfrn-id` = '%s' ) ", dbesc($dfrn_id), dbesc($dfrn_id));
+ $sql_extra = sprintf(" AND (`issued-id` = '%s' OR `dfrn-id` = '%s') ", dbesc($dfrn_id), dbesc($dfrn_id));
$my_id = $dfrn_id;
break;
case 0:
@@ -302,11 +332,11 @@ function dfrn_notify_content(App $a) {
dbesc($a->argv[1])
);
- if (! DBM::is_result($r)) {
+ if (!DBM::is_result($r)) {
$status = 1;
}
- logger("Remote rino version: ".$rino_remote." for ".$r[0]["url"], LOGGER_DEBUG);
+ logger("Remote rino version: ".$rino_remote." for ".$r[0]["url"], LOGGER_DATA);
$challenge = '';
$encrypted_id = '';
@@ -316,7 +346,7 @@ function dfrn_notify_content(App $a) {
$pub_key = trim($r[0]['pubkey']);
$dplx = intval($r[0]['duplex']);
- if ((($dplx) && (strlen($prv_key))) || ((strlen($prv_key)) && (!(strlen($pub_key))))) {
+ if (($dplx && strlen($prv_key)) || (strlen($prv_key) && !strlen($pub_key))) {
openssl_private_encrypt($hash, $challenge, $prv_key);
openssl_private_encrypt($id_str, $encrypted_id, $prv_key);
} elseif (strlen($pub_key)) {
@@ -334,7 +364,7 @@ function dfrn_notify_content(App $a) {
$rino = Config::get('system', 'rino_encrypt');
$rino = intval($rino);
- logger("Local rino version: ". $rino, LOGGER_DEBUG);
+ logger("Local rino version: ". $rino, LOGGER_DATA);
// if requested rino is lower than enabled local rino, lower local rino version
// if requested rino is higher than enabled local rino, reply with local rino
@@ -342,7 +372,7 @@ function dfrn_notify_content(App $a) {
$rino = $rino_remote;
}
- if((($r[0]['rel']) && ($r[0]['rel'] != CONTACT_IS_SHARING)) || ($r[0]['page-flags'] == PAGE_COMMUNITY)) {
+ if (($r[0]['rel'] && ($r[0]['rel'] != CONTACT_IS_SHARING)) || ($r[0]['page-flags'] == PAGE_COMMUNITY)) {
$perm = 'rw';
} else {
$perm = 'r';
@@ -362,5 +392,4 @@ function dfrn_notify_content(App $a) {
killme();
}
-
}
diff --git a/mod/friendica.php b/mod/friendica.php
index 6c143634c..1929150f2 100644
--- a/mod/friendica.php
+++ b/mod/friendica.php
@@ -116,14 +116,14 @@ function friendica_content(App $a)
} else {
$o .= '' . L10n::t('No installed addons/apps') . '
' . PHP_EOL;
}
-
+
if (Config::get('system', 'tosdisplay'))
{
$o .= ''.L10n::t('Read about the Terms of Service of this node.', System::baseurl()).'
';
}
- $blocklist = Config::get('system', 'blocklist');
- if (count($blocklist)) {
+ $blocklist = Config::get('system', 'blocklist', []);
+ if (!empty($blocklist)) {
$o .= '' . L10n::t('On this server the following remote servers are blocked.') . '
' . PHP_EOL;
$o .= '
' . L10n::t('Blocked domain') . ' ' . L10n::t('Reason for the block') . ' ' . PHP_EOL;
foreach ($blocklist as $b) {
diff --git a/mod/install.php b/mod/install.php
index 4596f9a25..323cb31fd 100644
--- a/mod/install.php
+++ b/mod/install.php
@@ -51,7 +51,7 @@ function install_post(App $a) {
$phpath = notags(trim($_POST['phpath']));
require_once("include/dba.php");
- if (!dba::connect($dbhost, $dbuser, $dbpass, $dbdata)) {
+ if (!dba::connect($dbhost, $dbuser, $dbpass, $dbdata, true)) {
$a->data['db_conn_failed'] = true;
}
@@ -140,11 +140,37 @@ function install_content(App $a) {
switch ($install_wizard_pass) {
case 1: { // System check
+
+ $checks = [];
+
+ check_funcs($checks);
+
+ check_imagik($checks);
+
+ check_htconfig($checks);
+
+ check_smarty3($checks);
+
+ check_keys($checks);
+
if (x($_POST, 'phpath')) {
$phpath = notags(trim($_POST['phpath']));
}
- list($checks, $checkspassed) = Install::check($phpath);
+ check_php($phpath, $checks);
+
+ check_htaccess($checks);
+
+ /// @TODO Maybe move this out?
+ function check_passed($v, $c) {
+ if ($c['required']) {
+ $v = $v && $c['status'];
+ }
+ return $v;
+ }
+ $checkspassed = array_reduce($checks, "check_passed", true);
+
+
$tpl = get_markup_template('install_checks.tpl');
$o .= replace_macros($tpl, [
diff --git a/mod/invite.php b/mod/invite.php
index 6807ff2c1..813dbf704 100644
--- a/mod/invite.php
+++ b/mod/invite.php
@@ -144,14 +144,13 @@ function invite_content(App $a) {
$o = replace_macros($tpl, [
'$form_security_token' => get_form_security_token("send_invite"),
- '$invite' => L10n::t('Send invitations'),
- '$addr_text' => L10n::t('Enter email addresses, one per line:'),
- '$msg_text' => L10n::t('Your message:'),
- '$default_message' => L10n::t('You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.') . "\r\n" . "\r\n"
+ '$title' => L10n::t('Send invitations'),
+ '$recipients' => ['recipients', L10n::t('Enter email addresses, one per line:')],
+ '$message' => ['message', L10n::t('Your message:'),L10n::t('You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.') . "\r\n" . "\r\n"
. $linktxt
. "\r\n" . "\r\n" . (($invonly) ? L10n::t('You will need to supply this invitation code: $invite_code') . "\r\n" . "\r\n" : '') .L10n::t('Once you have registered, please connect with me via my profile page at:')
. "\r\n" . "\r\n" . System::baseUrl() . '/profile/' . $a->user['nickname']
- . "\r\n" . "\r\n" . L10n::t('For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca') . "\r\n" . "\r\n" ,
+ . "\r\n" . "\r\n" . L10n::t('For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca') . "\r\n" . "\r\n"],
'$submit' => L10n::t('Submit')
]);
diff --git a/mod/noscrape.php b/mod/noscrape.php
index 9efaeb2bf..20936929d 100644
--- a/mod/noscrape.php
+++ b/mod/noscrape.php
@@ -23,9 +23,18 @@ function noscrape_init(App $a)
Profile::load($a, $which, $profile);
+ $json_info = [
+ 'addr' => $a->profile['addr'],
+ 'nick' => $which,
+ 'guid' => $a->profile['guid'],
+ 'key' => $a->profile['pubkey'],
+ 'homepage' => System::baseUrl()."/profile/{$which}",
+ 'comm' => ($a->profile['account-type'] == ACCOUNT_TYPE_COMMUNITY),
+ ];
+
if (!$a->profile['net-publish'] || $a->profile['hidewall']) {
header('Content-type: application/json; charset=utf-8');
- $json_info = ["hide" => true];
+ $json_info["hide"] = true;
echo json_encode($json_info);
exit;
}
@@ -36,17 +45,9 @@ function noscrape_init(App $a)
$contactPhoto = dba::selectFirst('contact', ['photo'], ['self' => true, 'uid' => $a->profile['uid']]);
- $json_info = [
- 'fn' => $a->profile['name'],
- 'addr' => $a->profile['addr'],
- 'nick' => $which,
- 'guid' => $a->profile['guid'],
- 'key' => $a->profile['pubkey'],
- 'homepage' => System::baseUrl()."/profile/{$which}",
- 'comm' => (x($a->profile, 'page-flags')) && ($a->profile['page-flags'] == PAGE_COMMUNITY),
- 'photo' => $contactPhoto["photo"],
- 'tags' => $keywords
- ];
+ $json_info['fn'] = $a->profile['name'];
+ $json_info['photo'] = $contactPhoto["photo"];
+ $json_info['tags'] = $keywords;
if (is_array($a->profile) && !$a->profile['hide-friends']) {
/// @todo What should this value tell us?
diff --git a/mod/profile.php b/mod/profile.php
index ab11b4d5f..d6cbd276f 100644
--- a/mod/profile.php
+++ b/mod/profile.php
@@ -191,7 +191,7 @@ function profile_content(App $a, $update = 0)
$o .= Widget::commonFriendsVisitor($a->profile['profile_uid']);
if (x($_SESSION, 'new_member') && $is_owner) {
- $o .= '' . L10n::t('Tips for New Members') . ' ' . EOL;
+ $o .= '';
}
$commpage = $a->profile['page-flags'] == PAGE_COMMUNITY;
diff --git a/mod/settings.php b/mod/settings.php
index aec2b2a05..3102fef23 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -12,6 +12,7 @@ use Friendica\Core\Config;
use Friendica\Core\L10n;
use Friendica\Core\PConfig;
use Friendica\Core\System;
+use Friendica\Core\Theme;
use Friendica\Core\Worker;
use Friendica\Database\DBM;
use Friendica\Model\Contact;
@@ -354,6 +355,7 @@ function settings_post(App $a)
theme_post($a);
}
}
+ Theme::install($theme);
$r = q("UPDATE `user` SET `theme` = '%s' WHERE `uid` = %d",
dbesc($theme),
diff --git a/src/Content/ForumManager.php b/src/Content/ForumManager.php
index 4f09b8a11..cfd083f9f 100644
--- a/src/Content/ForumManager.php
+++ b/src/Content/ForumManager.php
@@ -49,7 +49,7 @@ class ForumManager
"SELECT `contact`.`id`, `contact`.`url`, `contact`.`name`, `contact`.`micro`, `contact`.`thumb`
FROM `contact`
WHERE `network`= 'dfrn' AND $select AND `uid` = ?
- AND NOT `blocked` AND NOT `hidden` AND NOT `pending` AND NOT `archive`
+ AND NOT `blocked` AND NOT `pending` AND NOT `archive`
AND `success_update` > `failure_update`
$order ",
$uid
diff --git a/src/Content/Nav.php b/src/Content/Nav.php
index c7dfd447c..cd2cfb363 100644
--- a/src/Content/Nav.php
+++ b/src/Content/Nav.php
@@ -28,23 +28,23 @@ class Nav
if (!(x($a->page, 'nav'))) {
$a->page['nav'] = '';
}
-
+
$a->page['htmlhead'] .= replace_macros(get_markup_template('nav_head.tpl'), []);
-
+
/*
* Placeholder div for popup panel
*/
-
+
$a->page['nav'] .= '
' ;
-
+
$nav_info = self::getInfo($a);
-
+
/*
* Build the page
*/
-
+
$tpl = get_markup_template('nav.tpl');
-
+
$a->page['nav'] .= replace_macros($tpl, [
'$baseurl' => System::baseUrl(),
'$sitelocation' => $nav_info['sitelocation'],
@@ -57,10 +57,10 @@ class Nav
'$clear_notifs' => L10n::t('Clear notifications'),
'$search_hint' => L10n::t('@name, !forum, #tags, content')
]);
-
+
Addon::callHooks('page_header', $a->page['nav']);
}
-
+
/**
* Prepares a list of navigation links
*
@@ -75,27 +75,27 @@ class Nav
private static function getInfo(App $a)
{
$ssl_state = ((local_user()) ? true : false);
-
+
/*
* Our network is distributed, and as you visit friends some of the
* sites look exactly the same - it isn't always easy to know where you are.
* Display the current site location as a navigation aid.
*/
-
+
$myident = ((is_array($a->user) && isset($a->user['nickname'])) ? $a->user['nickname'] . '@' : '');
-
+
$sitelocation = $myident . substr(System::baseUrl($ssl_state), strpos(System::baseUrl($ssl_state), '//') + 2);
-
+
// nav links: array of array('href', 'text', 'extra css classes', 'title')
$nav = [];
-
+
// Display login or logout
$nav['usermenu'] = [];
$userinfo = null;
-
+
if (local_user()) {
$nav['logout'] = ['logout', L10n::t('Logout'), '', L10n::t('End this session')];
-
+
// user menu
$nav['usermenu'][] = ['profile/' . $a->user['nickname'], L10n::t('Status'), '', L10n::t('Your posts and conversations')];
$nav['usermenu'][] = ['profile/' . $a->user['nickname'] . '?tab=profile', L10n::t('Profile'), '', L10n::t('Your profile page')];
@@ -103,7 +103,7 @@ class Nav
$nav['usermenu'][] = ['videos/' . $a->user['nickname'], L10n::t('Videos'), '', L10n::t('Your videos')];
$nav['usermenu'][] = ['events/', L10n::t('Events'), '', L10n::t('Your events')];
$nav['usermenu'][] = ['notes/', L10n::t('Personal notes'), '', L10n::t('Your personal notes')];
-
+
// user info
$contact = dba::selectFirst('contact', ['micro'], ['uid' => $a->user['uid'], 'self' => true]);
$userinfo = [
@@ -113,120 +113,117 @@ class Nav
} else {
$nav['login'] = ['login', L10n::t('Login'), ($a->module == 'login' ? 'selected' : ''), L10n::t('Sign in')];
}
-
+
// "Home" should also take you home from an authenticated remote profile connection
$homelink = Profile::getMyURL();
if (! $homelink) {
$homelink = ((x($_SESSION, 'visitor_home')) ? $_SESSION['visitor_home'] : '');
}
-
+
if (($a->module != 'home') && (! (local_user()))) {
$nav['home'] = [$homelink, L10n::t('Home'), '', L10n::t('Home Page')];
}
-
+
if (($a->config['register_policy'] == REGISTER_OPEN) && (! local_user()) && (! remote_user())) {
$nav['register'] = ['register', L10n::t('Register'), '', L10n::t('Create an account')];
}
-
+
$help_url = 'help';
-
+
if (!Config::get('system', 'hide_help')) {
$nav['help'] = [$help_url, L10n::t('Help'), '', L10n::t('Help and documentation')];
}
-
+
if (count($a->apps) > 0) {
$nav['apps'] = ['apps', L10n::t('Apps'), '', L10n::t('Addon applications, utilities, games')];
}
-
+
if (local_user() || !Config::get('system', 'local_search')) {
$nav['search'] = ['search', L10n::t('Search'), '', L10n::t('Search site content')];
-
+
$nav['searchoption'] = [
L10n::t('Full Text'),
L10n::t('Tags'),
L10n::t('Contacts')
];
-
+
if (Config::get('system', 'poco_local_search')) {
$nav['searchoption'][] = L10n::t('Forums');
}
}
-
+
$gdirpath = 'directory';
-
+
if (strlen(Config::get('system', 'singleuser'))) {
$gdir = Config::get('system', 'directory');
if (strlen($gdir)) {
$gdirpath = Profile::zrl($gdir, true);
}
}
-
- if (local_user() || Config::get('system', 'community_page_style') != CP_NO_COMMUNITY_PAGE) {
+
+ if ((local_user() || Config::get('system', 'community_page_style') != CP_NO_COMMUNITY_PAGE) &&
+ !(Config::get('system', 'community_page_style') == CP_NO_INTERNAL_COMMUNITY)) {
$nav['community'] = ['community', L10n::t('Community'), '', L10n::t('Conversations on this and other servers')];
}
-
+
if (local_user()) {
$nav['events'] = ['events', L10n::t('Events'), '', L10n::t('Events and Calendar')];
}
-
+
$nav['directory'] = [$gdirpath, L10n::t('Directory'), '', L10n::t('People directory')];
-
+
$nav['about'] = ['friendica', L10n::t('Information'), '', L10n::t('Information about this friendica instance')];
-
+
// The following nav links are only show to logged in users
if (local_user()) {
$nav['network'] = ['network', L10n::t('Network'), '', L10n::t('Conversations from your friends')];
$nav['net_reset'] = ['network/0?f=&order=comment&nets=all', L10n::t('Network Reset'), '', L10n::t('Load Network page with no filters')];
-
+
$nav['home'] = ['profile/' . $a->user['nickname'], L10n::t('Home'), '', L10n::t('Your posts and conversations')];
-
- if (in_array($_SESSION['page_flags'], [PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE, PAGE_PRVGROUP])) {
- // only show friend requests for normal pages. Other page types have automatic friendship.
- if (in_array($_SESSION['page_flags'], [PAGE_NORMAL, PAGE_SOAPBOX, PAGE_PRVGROUP])) {
- $nav['introductions'] = ['notifications/intros', L10n::t('Introductions'), '', L10n::t('Friend Requests')];
- }
- if (in_array($_SESSION['page_flags'], [PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE])) {
- $nav['notifications'] = ['notifications', L10n::t('Notifications'), '', L10n::t('Notifications')];
- $nav['notifications']['all'] = ['notifications/system', L10n::t('See all notifications'), '', ''];
- $nav['notifications']['mark'] = ['', L10n::t('Mark as seen'), '', L10n::t('Mark all system notifications seen')];
- }
+
+ // Don't show notifications for public communities
+ if ($_SESSION['page_flags'] != PAGE_COMMUNITY) {
+ $nav['introductions'] = ['notifications/intros', L10n::t('Introductions'), '', L10n::t('Friend Requests')];
+ $nav['notifications'] = ['notifications', L10n::t('Notifications'), '', L10n::t('Notifications')];
+ $nav['notifications']['all'] = ['notifications/system', L10n::t('See all notifications'), '', ''];
+ $nav['notifications']['mark'] = ['', L10n::t('Mark as seen'), '', L10n::t('Mark all system notifications seen')];
}
-
+
$nav['messages'] = ['message', L10n::t('Messages'), '', L10n::t('Private mail')];
$nav['messages']['inbox'] = ['message', L10n::t('Inbox'), '', L10n::t('Inbox')];
$nav['messages']['outbox'] = ['message/sent', L10n::t('Outbox'), '', L10n::t('Outbox')];
$nav['messages']['new'] = ['message/new', L10n::t('New Message'), '', L10n::t('New Message')];
-
+
if (is_array($a->identities) && count($a->identities) > 1) {
$nav['manage'] = ['manage', L10n::t('Manage'), '', L10n::t('Manage other pages')];
}
-
+
$nav['delegations'] = ['delegate', L10n::t('Delegations'), '', L10n::t('Delegate Page Management')];
-
+
$nav['settings'] = ['settings', L10n::t('Settings'), '', L10n::t('Account settings')];
-
+
if (Feature::isEnabled(local_user(), 'multi_profiles')) {
$nav['profiles'] = ['profiles', L10n::t('Profiles'), '', L10n::t('Manage/Edit Profiles')];
}
-
+
$nav['contacts'] = ['contacts', L10n::t('Contacts'), '', L10n::t('Manage/edit friends and contacts')];
}
-
+
// Show the link to the admin configuration page if user is admin
if (is_site_admin()) {
$nav['admin'] = ['admin/', L10n::t('Admin'), '', L10n::t('Site setup and configuration')];
}
-
+
$nav['navigation'] = ['navigation/', L10n::t('Navigation'), '', L10n::t('Site map')];
-
+
// Provide a banner/logo/whatever
$banner = Config::get('system', 'banner');
if (is_null($banner)) {
$banner = 'Friendica ';
}
-
+
Addon::callHooks('nav_info', $nav);
-
+
return [
'sitelocation' => $sitelocation,
'nav' => $nav,
@@ -234,7 +231,7 @@ class Nav
'userinfo' => $userinfo,
];
}
-
+
/**
* Set a menu item in navbar as selected
*/
diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php
index 375559346..6c441bac6 100644
--- a/src/Content/Text/BBCode.php
+++ b/src/Content/Text/BBCode.php
@@ -343,159 +343,20 @@ class BBCode extends BaseObject
}
/**
- * @brief Convert a message into plaintext for connectors to other networks
+ * @brief Converts a BBCode text into plaintext
*
- * @param array $b The message array that is about to be posted
- * @param int $limit The maximum number of characters when posting to that network
- * @param bool $includedlinks Has an attached link to be included into the message?
- * @param int $htmlmode This triggers the behaviour of the bbcode conversion
- * @param string $target_network Name of the network where the post should go to.
+ * @param bool $keep_urls Whether to keep URLs in the resulting plaintext
*
- * @return string The converted message
+ * @return string
*/
- public static function toPlaintext($b, $limit = 0, $includedlinks = false, $htmlmode = 2, $target_network = "")
+ public static function toPlaintext($text, $keep_urls = true)
{
- // Remove the hash tags
- $URLSearchString = "^\[\]";
- $body = preg_replace("/([#@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '$1$3', $b["body"]);
-
- // Add an URL element if the text contains a raw link
- $body = preg_replace("/([^\]\='".'"'."]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url]$2[/url]', $body);
-
- // Remove the abstract
- $body = self::stripAbstract($body);
-
- // At first look at data that is attached via "type-..." stuff
- // This will hopefully replaced with a dedicated bbcode later
- //$post = self::getAttachedData($b["body"]);
- $post = self::getAttachedData($body, $b);
-
- if (($b["title"] != "") && ($post["text"] != "")) {
- $post["text"] = trim($b["title"]."\n\n".$post["text"]);
- } elseif ($b["title"] != "") {
- $post["text"] = trim($b["title"]);
+ $naked_text = preg_replace('/\[(.+?)\]/','', $text);
+ if (!$keep_urls) {
+ $naked_text = preg_replace('#https?\://[^\s<]+[^\s\.\)]#i', '', $naked_text);
}
- $abstract = "";
-
- // Fetch the abstract from the given target network
- if ($target_network != "") {
- $default_abstract = self::getAbstract($b["body"]);
- $abstract = self::getAbstract($b["body"], $target_network);
-
- // If we post to a network with no limit we only fetch
- // an abstract exactly for this network
- if (($limit == 0) && ($abstract == $default_abstract)) {
- $abstract = "";
- }
- } else {// Try to guess the correct target network
- switch ($htmlmode) {
- case 8:
- $abstract = self::getAbstract($b["body"], NETWORK_TWITTER);
- break;
- case 7:
- $abstract = self::getAbstract($b["body"], NETWORK_STATUSNET);
- break;
- case 6:
- $abstract = self::getAbstract($b["body"], NETWORK_APPNET);
- break;
- default: // We don't know the exact target.
- // We fetch an abstract since there is a posting limit.
- if ($limit > 0) {
- $abstract = self::getAbstract($b["body"]);
- }
- }
- }
-
- if ($abstract != "") {
- $post["text"] = $abstract;
-
- if ($post["type"] == "text") {
- $post["type"] = "link";
- $post["url"] = $b["plink"];
- }
- }
-
- $html = self::convert($post["text"].$post["after"], false, $htmlmode);
- $msg = HTML::toPlaintext($html, 0, true);
- $msg = trim(html_entity_decode($msg, ENT_QUOTES, 'UTF-8'));
-
- $link = "";
- if ($includedlinks) {
- if ($post["type"] == "link") {
- $link = $post["url"];
- } elseif ($post["type"] == "text") {
- $link = $post["url"];
- } elseif ($post["type"] == "video") {
- $link = $post["url"];
- } elseif ($post["type"] == "photo") {
- $link = $post["image"];
- }
-
- if (($msg == "") && isset($post["title"])) {
- $msg = trim($post["title"]);
- }
-
- if (($msg == "") && isset($post["description"])) {
- $msg = trim($post["description"]);
- }
-
- // If the link is already contained in the post, then it neeedn't to be added again
- // But: if the link is beyond the limit, then it has to be added.
- if (($link != "") && strstr($msg, $link)) {
- $pos = strpos($msg, $link);
-
- // Will the text be shortened in the link?
- // Or is the link the last item in the post?
- if (($limit > 0) && ($pos < $limit) && (($pos + 23 > $limit) || ($pos + strlen($link) == strlen($msg)))) {
- $msg = trim(str_replace($link, "", $msg));
- } elseif (($limit == 0) || ($pos < $limit)) {
- // The limit has to be increased since it will be shortened - but not now
- // Only do it with Twitter (htmlmode = 8)
- if (($limit > 0) && (strlen($link) > 23) && ($htmlmode == 8)) {
- $limit = $limit - 23 + strlen($link);
- }
-
- $link = "";
-
- if ($post["type"] == "text") {
- unset($post["url"]);
- }
- }
- }
- }
-
- if ($limit > 0) {
- // Reduce multiple spaces
- // When posted to a network with limited space, we try to gain space where possible
- while (strpos($msg, " ") !== false) {
- $msg = str_replace(" ", " ", $msg);
- }
-
- // Twitter is using its own limiter, so we always assume that shortened links will have this length
- if (iconv_strlen($link, "UTF-8") > 0) {
- $limit = $limit - 23;
- }
-
- if (iconv_strlen($msg, "UTF-8") > $limit) {
- if (($post["type"] == "text") && isset($post["url"])) {
- $post["url"] = $b["plink"];
- } elseif (!isset($post["url"])) {
- $limit = $limit - 23;
- $post["url"] = $b["plink"];
- // Which purpose has this line? It is now uncommented, but left as a reminder
- //} elseif (strpos($b["body"], "[share") !== false) {
- // $post["url"] = $b["plink"];
- } elseif (PConfig::get($b["uid"], "system", "no_intelligent_shortening")) {
- $post["url"] = $b["plink"];
- }
- $msg = Plaintext::shorten($msg, $limit);
- }
- }
-
- $post["text"] = trim($msg);
-
- return($post);
+ return $naked_text;
}
public static function scaleExternalImages($srctext, $include_link = true, $scale_replace = false)
@@ -1947,7 +1808,7 @@ class BBCode extends BaseObject
* @param string $addon The addon for which the abstract is meant for
* @return string The abstract
*/
- private static function getAbstract($text, $addon = "")
+ public static function getAbstract($text, $addon = "")
{
$abstract = "";
$abstracts = [];
diff --git a/src/Content/Widget.php b/src/Content/Widget.php
index 058a7a1fb..04dfbb8e0 100644
--- a/src/Content/Widget.php
+++ b/src/Content/Widget.php
@@ -55,19 +55,24 @@ class Widget
}
}
- return replace_macros(get_markup_template('peoplefind.tpl'), array(
- '$findpeople' => L10n::t('Find People'),
- '$desc' => L10n::t('Enter name or interest'),
- '$label' => L10n::t('Connect/Follow'),
- '$hint' => L10n::t('Examples: Robert Morgenstein, Fishing'),
- '$findthem' => L10n::t('Find'),
- '$suggest' => L10n::t('Friend Suggestions'),
- '$similar' => L10n::t('Similar Interests'),
- '$random' => L10n::t('Random Profile'),
- '$inv' => L10n::t('Invite Friends'),
- '$directory' => L10n::t('View Global Directory'),
- '$global_dir' => $global_dir
- ));
+ $nv = [];
+ $nv['findpeople'] = L10n::t('Find People');
+ $nv['desc'] = L10n::t('Enter name or interest');
+ $nv['label'] = L10n::t('Connect/Follow');
+ $nv['hint'] = L10n::t('Examples: Robert Morgenstein, Fishing');
+ $nv['findthem'] = L10n::t('Find');
+ $nv['suggest'] = L10n::t('Friend Suggestions');
+ $nv['similar'] = L10n::t('Similar Interests');
+ $nv['random'] = L10n::t('Random Profile');
+ $nv['inv'] = L10n::t('Invite Friends');
+ $nv['directory'] = L10n::t('Global Directory');
+ $nv['global_dir'] = $global_dir;
+ $nv['local_directory'] = L10n::t('Local Directory');
+
+ $aside = [];
+ $aside['$nv'] = $nv;
+
+ return replace_macros(get_markup_template('peoplefind.tpl'), $aside);
}
/**
diff --git a/src/Core/Addon.php b/src/Core/Addon.php
index a3bfeec32..3adc7fc0e 100644
--- a/src/Core/Addon.php
+++ b/src/Core/Addon.php
@@ -246,7 +246,7 @@ class Addon
} else {
// remove orphan hooks
$condition = ['hook' => $name, 'file' => $hook[0], 'function' => $hook[1]];
- dba::delete('hook', $condition);
+ dba::delete('hook', $condition, ['cascade' => false]);
}
}
diff --git a/src/Core/Console.php b/src/Core/Console.php
index 82c485179..a5aff4ae8 100644
--- a/src/Core/Console.php
+++ b/src/Core/Console.php
@@ -21,6 +21,7 @@ class Console extends \Asika\SimpleConsole\Console
'extract' => __NAMESPACE__ . '\Console\Extract',
'globalcommunityblock' => __NAMESPACE__ . '\Console\GlobalCommunityBlock',
'globalcommunitysilence' => __NAMESPACE__ . '\Console\GlobalCommunitySilence',
+ 'archivecontact' => __NAMESPACE__ . '\Console\ArchiveContact',
'autoinstall' => __NAMESPACE__ . '\Console\AutomaticInstallation',
'maintenance' => __NAMESPACE__ . '\Console\Maintenance',
'newpassword' => __NAMESPACE__ . '\Console\NewPassword',
@@ -42,6 +43,7 @@ Commands:
extract Generate translation string file for the Friendica project (deprecated)
globalcommunityblock Block remote profile from interacting with this node
globalcommunitysilence Silence remote profile from global community page
+ archivecontact Archive a contact when you know that it isn't existing anymore
help Show help about a command, e.g (bin/console help config)
autoinstall Starts automatic installation of friendica based on values from htconfig.php
maintenance Set maintenance mode for this node
diff --git a/src/Core/Console/ArchiveContact.php b/src/Core/Console/ArchiveContact.php
new file mode 100644
index 000000000..7a973f311
--- /dev/null
+++ b/src/Core/Console/ArchiveContact.php
@@ -0,0 +1,79 @@
+ [-h|--help|-?] [-v]
+
+Description
+ Archive a contact when you know that it isn't existing anymore. Normally this does happen automatically after a few days.
+
+Options
+ -h|--help|-? Show help information
+ -v Show more debug information.
+HELP;
+ return $help;
+ }
+
+ protected function doExecute()
+ {
+ $a = get_app();
+
+ if ($this->getOption('v')) {
+ $this->out('Class: ' . __CLASS__);
+ $this->out('Arguments: ' . var_export($this->args, true));
+ $this->out('Options: ' . var_export($this->options, true));
+ }
+
+ if (count($this->args) == 0) {
+ $this->out($this->getHelp());
+ return 0;
+ }
+
+ if (count($this->args) > 1) {
+ throw new \Asika\SimpleConsole\CommandArgsException('Too many arguments');
+ }
+
+ require_once '.htconfig.php';
+ $result = \dba::connect($db_host, $db_user, $db_pass, $db_data);
+ unset($db_host, $db_user, $db_pass, $db_data);
+
+ if (!$result) {
+ throw new \RuntimeException('Unable to connect to database');
+ }
+
+ $nurl = normalise_link($this->getArgument(0));
+ if (!dba::exists('contact', ['nurl' => $nurl, 'archive' => false])) {
+ throw new \RuntimeException(L10n::t('Could not find any unarchived contact entry for this URL (%s)', $nurl));
+ }
+ if (dba::update('contact', ['archive' => true], ['nurl' => $nurl])) {
+ $condition = ["`cid` IN (SELECT `id` FROM `contact` WHERE `archive`)"];
+ dba::delete('queue', $condition);
+ $this->out(L10n::t('The contact entries have been archived'));
+ } else {
+ throw new \RuntimeException('The contact archival failed.');
+ }
+
+ return 0;
+ }
+}
diff --git a/src/Model/Contact.php b/src/Model/Contact.php
index 48e8be310..0bd5d06f6 100644
--- a/src/Model/Contact.php
+++ b/src/Model/Contact.php
@@ -423,7 +423,7 @@ class Contact extends BaseObject
// Fetch the data from the gcontact table
if (!DBM::is_result($r)) {
$s = dba::p("SELECT 0 AS `id`, 0 AS `cid`, `id` AS `gid`, 0 AS `zid`, 0 AS `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, '' AS `xmpp`,
- `keywords`, `gender`, `photo`, `photo` AS `thumb`, `photo` AS `micro`, `community` AS `forum`, 0 AS `prv`, `community`, `contact-type`, `birthday`, 0 AS `self`
+ `keywords`, `gender`, `photo`, `photo` AS `thumb`, `photo` AS `micro`, 0 AS `forum`, 0 AS `prv`, `community`, `contact-type`, `birthday`, 0 AS `self`
FROM `gcontact` WHERE `nurl` = ?", normalise_link($url));
$r = dba::inArray($s);
}
diff --git a/src/Model/Item.php b/src/Model/Item.php
index bdb85af44..e7fd115dd 100644
--- a/src/Model/Item.php
+++ b/src/Model/Item.php
@@ -7,6 +7,7 @@
namespace Friendica\Model;
use Friendica\BaseObject;
+use Friendica\Content\Text;
use Friendica\Core\Addon;
use Friendica\Core\Config;
use Friendica\Core\L10n;
@@ -838,6 +839,101 @@ class Item extends BaseObject
return $current_post;
}
+ /**
+ * @brief Distributes public items to the receivers
+ *
+ * @param integer $itemid Item ID that should be added
+ */
+ public static function distribute($itemid)
+ {
+ $condition = ["`id` IN (SELECT `parent` FROM `item` WHERE `id` = ?)", $itemid];
+ $parent = dba::selectFirst('item', ['owner-id'], $condition);
+ if (!DBM::is_result($parent)) {
+ return;
+ }
+
+ // Only distribute public items from native networks
+ $condition = ['id' => $itemid, 'uid' => 0,
+ 'network' => [NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, ""],
+ 'visible' => true, 'deleted' => false, 'moderated' => false, 'private' => false];
+ $item = dba::selectFirst('item', [], ['id' => $itemid]);
+ if (!DBM::is_result($item)) {
+ return;
+ }
+
+ unset($item['id']);
+ unset($item['parent']);
+ unset($item['mention']);
+ unset($item['wall']);
+ unset($item['origin']);
+ unset($item['starred']);
+ unset($item['rendered-hash']);
+ unset($item['rendered-html']);
+
+ $users = [];
+
+ $condition = ["`nurl` IN (SELECT `nurl` FROM `contact` WHERE `id` = ?) AND `uid` != 0 AND NOT `blocked` AND NOT `readonly` AND `rel` IN (?, ?)",
+ $parent['owner-id'], CONTACT_IS_SHARING, CONTACT_IS_FRIEND];
+ $contacts = dba::select('contact', ['uid'], $condition);
+ while ($contact = dba::fetch($contacts)) {
+ $users[$contact['uid']] = $contact['uid'];
+ }
+
+ if ($item['uri'] != $item['parent-uri']) {
+ $parents = dba::select('item', ['uid'], ["`uri` = ? AND `uid` != 0", $item['parent-uri']]);
+ while ($parent = dba::fetch($parents)) {
+ $users[$parent['uid']] = $parent['uid'];
+ }
+ }
+
+ foreach ($users as $uid) {
+ self::storeForUser($itemid, $item, $uid);
+ }
+ }
+
+ /**
+ * @brief Store public items for the receivers
+ *
+ * @param integer $itemid Item ID that should be added
+ * @param array $item The item entry that will be stored
+ * @param integer $uid The user that will receive the item entry
+ */
+ private static function storeForUser($itemid, $item, $uid)
+ {
+ $item['uid'] = $uid;
+ $item['origin'] = 0;
+ $item['wall'] = 0;
+ if ($item['uri'] == $item['parent-uri']) {
+ $item['contact-id'] = Contact::getIdForURL($item['owner-link'], $uid);
+ } else {
+ $item['contact-id'] = Contact::getIdForURL($item['author-link'], $uid);
+ }
+
+ if (empty($item['contact-id'])) {
+ $self = dba::selectFirst('contact', ['id'], ['self' => true, 'uid' => $uid]);
+ if (!DBM::is_result($self)) {
+ return;
+ }
+ $item['contact-id'] = $self['id'];
+ }
+
+ if (in_array($item['type'], ["net-comment", "wall-comment"])) {
+ $item['type'] = 'remote-comment';
+ } elseif ($item['type'] == 'wall') {
+ $item['type'] = 'remote';
+ }
+
+ /// @todo Handling of "event-id"
+
+ $distributed = self::insert($item, false, false, true);
+
+ if (!$distributed) {
+ logger("Distributed public item " . $itemid . " for user " . $uid . " wasn't stored", LOGGER_DEBUG);
+ } else {
+ logger("Distributed public item " . $itemid . " for user " . $uid . " with id " . $distributed, LOGGER_DEBUG);
+ }
+ }
+
/**
* @brief Add a shadow entry for a given item id that is a thread starter
*
@@ -849,8 +945,8 @@ class Item extends BaseObject
*/
public static function addShadow($itemid)
{
- $fields = ['uid', 'wall', 'private', 'moderated', 'visible', 'contact-id', 'deleted', 'network', 'author-id', 'owner-id'];
- $condition = ["`id` = ? AND (`parent` = ? OR `parent` = 0)", $itemid, $itemid];
+ $fields = ['uid', 'private', 'moderated', 'visible', 'deleted', 'network'];
+ $condition = ['id' => $itemid, 'parent' => [0, $itemid]];
$item = dba::selectFirst('item', $fields, $condition);
if (!DBM::is_result($item)) {
@@ -872,35 +968,22 @@ class Item extends BaseObject
return;
}
- // Only do these checks if the post isn't a wall post
- if (!$item["wall"]) {
- // Check, if hide-friends is activated - then don't do a shadow entry
- if (dba::exists('profile', ['is-default' => true, 'uid' => $item['uid'], 'hide-friends' => true])) {
- return;
- }
-
- // Check if the contact is hidden or blocked
- if (!dba::exists('contact', ['hidden' => false, 'blocked' => false, 'id' => $item['contact-id']])) {
- return;
- }
- }
-
- // Only add a shadow, if the profile isn't hidden
- if (dba::exists('user', ['uid' => $item['uid'], 'hidewall' => true])) {
- return;
- }
-
$item = dba::selectFirst('item', [], ['id' => $itemid]);
- if (DBM::is_result($item) && ($item["allow_cid"] == '') && ($item["allow_gid"] == '') &&
+ if (DBM::is_result($item) && ($item["allow_cid"] == '') && ($item["allow_gid"] == '') &&
($item["deny_cid"] == '') && ($item["deny_gid"] == '')) {
if (!dba::exists('item', ['uri' => $item['uri'], 'uid' => 0])) {
// Preparing public shadow (removing user specific data)
- unset($item['id']);
$item['uid'] = 0;
- $item['origin'] = 0;
- $item['wall'] = 0;
+ unset($item['id']);
+ unset($item['parent']);
+ unset($item['wall']);
+ unset($item['mention']);
+ unset($item['origin']);
+ unset($item['starred']);
+ unset($item['rendered-hash']);
+ unset($item['rendered-html']);
if ($item['uri'] == $item['parent-uri']) {
$item['contact-id'] = Contact::getIdForURL($item['owner-link']);
} else {
@@ -954,11 +1037,20 @@ class Item extends BaseObject
return;
}
+ // Save "origin" and "parent" state
+ $origin = $item['origin'];
+ $parent = $item['parent'];
+
// Preparing public shadow (removing user specific data)
- unset($item['id']);
$item['uid'] = 0;
- $item['origin'] = 0;
- $item['wall'] = 0;
+ unset($item['id']);
+ unset($item['parent']);
+ unset($item['wall']);
+ unset($item['mention']);
+ unset($item['origin']);
+ unset($item['starred']);
+ unset($item['rendered-hash']);
+ unset($item['rendered-html']);
$item['contact-id'] = Contact::getIdForURL($item['author-link']);
if (in_array($item['type'], ["net-comment", "wall-comment"])) {
@@ -970,6 +1062,14 @@ class Item extends BaseObject
$public_shadow = self::insert($item, false, false, true);
logger("Stored public shadow for comment ".$item['uri']." under id ".$public_shadow, LOGGER_DEBUG);
+
+ // If this was a comment to a Diaspora post we don't get our comment back.
+ // This means that we have to distribute the comment by ourselves.
+ if ($origin) {
+ if (dba::exists('item', ['id' => $parent, 'network' => NETWORK_DIASPORA])) {
+ self::distribute($public_shadow);
+ }
+ }
}
/**
@@ -977,35 +1077,35 @@ class Item extends BaseObject
* if possible and not already present.
* Expects "body" element to exist in $arr.
*/
- private static function addLanguageInPostopts(&$arr)
+ private static function addLanguageInPostopts(&$item)
{
- if (x($arr, 'postopts')) {
- if (strstr($arr['postopts'], 'lang=')) {
+ if (!empty($item['postopts'])) {
+ if (strstr($item['postopts'], 'lang=')) {
// do not override
return;
}
- $postopts = $arr['postopts'];
+ $postopts = $item['postopts'];
} else {
$postopts = "";
}
- $naked_body = preg_replace('/\[(.+?)\]/','', $arr['body']);
- $l = new Text_LanguageDetect();
- $lng = $l->detect($naked_body, 3);
+ $naked_body = Text\BBCode::toPlaintext($item['body'], false);
- if (sizeof($lng) > 0) {
- if ($postopts != "") {
+ $languages = (new Text_LanguageDetect())->detect($naked_body, 3);
+
+ if (sizeof($languages) > 0) {
+ if ($postopts != '') {
$postopts .= '&'; // arbitrary separator, to be reviewed
}
$postopts .= 'lang=';
$sep = "";
- foreach ($lng as $language => $score) {
+ foreach ($languages as $language => $score) {
$postopts .= $sep . $language . ";" . $score;
$sep = ':';
}
- $arr['postopts'] = $postopts;
+ $item['postopts'] = $postopts;
}
}
diff --git a/src/Model/ItemContent.php b/src/Model/ItemContent.php
new file mode 100644
index 000000000..21dbd34d0
--- /dev/null
+++ b/src/Model/ItemContent.php
@@ -0,0 +1,176 @@
+ 0) {
+ $abstract = Text\BBCode::getAbstract($item['body']);
+ }
+ }
+ }
+
+ if ($abstract != '') {
+ $post['text'] = $abstract;
+
+ if ($post['type'] == 'text') {
+ $post['type'] = 'link';
+ $post['url'] = $item['plink'];
+ }
+ }
+
+ $html = Text\BBCode::convert($post['text'] . $post['after'], false, $htmlmode);
+ $msg = Text\HTML::toPlaintext($html, 0, true);
+ $msg = trim(html_entity_decode($msg, ENT_QUOTES, 'UTF-8'));
+
+ $link = '';
+ if ($includedlinks) {
+ if ($post['type'] == 'link') {
+ $link = $post['url'];
+ } elseif ($post['type'] == 'text') {
+ $link = $post['url'];
+ } elseif ($post['type'] == 'video') {
+ $link = $post['url'];
+ } elseif ($post['type'] == 'photo') {
+ $link = $post['image'];
+ }
+
+ if (($msg == '') && isset($post['title'])) {
+ $msg = trim($post['title']);
+ }
+
+ if (($msg == '') && isset($post['description'])) {
+ $msg = trim($post['description']);
+ }
+
+ // If the link is already contained in the post, then it neeedn't to be added again
+ // But: if the link is beyond the limit, then it has to be added.
+ if (($link != '') && strstr($msg, $link)) {
+ $pos = strpos($msg, $link);
+
+ // Will the text be shortened in the link?
+ // Or is the link the last item in the post?
+ if (($limit > 0) && ($pos < $limit) && (($pos + 23 > $limit) || ($pos + strlen($link) == strlen($msg)))) {
+ $msg = trim(str_replace($link, '', $msg));
+ } elseif (($limit == 0) || ($pos < $limit)) {
+ // The limit has to be increased since it will be shortened - but not now
+ // Only do it with Twitter (htmlmode = 8)
+ if (($limit > 0) && (strlen($link) > 23) && ($htmlmode == 8)) {
+ $limit = $limit - 23 + strlen($link);
+ }
+
+ $link = '';
+
+ if ($post['type'] == 'text') {
+ unset($post['url']);
+ }
+ }
+ }
+ }
+
+ if ($limit > 0) {
+ // Reduce multiple spaces
+ // When posted to a network with limited space, we try to gain space where possible
+ while (strpos($msg, ' ') !== false) {
+ $msg = str_replace(' ', ' ', $msg);
+ }
+
+ // Twitter is using its own limiter, so we always assume that shortened links will have this length
+ if (iconv_strlen($link, 'UTF-8') > 0) {
+ $limit = $limit - 23;
+ }
+
+ if (iconv_strlen($msg, 'UTF-8') > $limit) {
+ if (($post['type'] == 'text') && isset($post['url'])) {
+ $post['url'] = $item['plink'];
+ } elseif (!isset($post['url'])) {
+ $limit = $limit - 23;
+ $post['url'] = $item['plink'];
+ } elseif (strpos($item['body'], '[share') !== false) {
+ $post['url'] = $item['plink'];
+ } elseif (PConfig::get($item['uid'], 'system', 'no_intelligent_shortening')) {
+ $post['url'] = $item['plink'];
+ }
+ $msg = Text\Plaintext::shorten($msg, $limit);
+ }
+ }
+
+ $post['text'] = trim($msg);
+
+ return $post;
+ }
+}
diff --git a/src/Model/Profile.php b/src/Model/Profile.php
index ec53d064d..d4773a806 100644
--- a/src/Model/Profile.php
+++ b/src/Model/Profile.php
@@ -92,14 +92,14 @@ class Profile
{
$user = dba::selectFirst('user', ['uid'], ['nickname' => $nickname]);
- if (!$user && !count($user) && !count($profiledata)) {
+ if (!DBM::is_result($user) && empty($profiledata)) {
logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
notice(L10n::t('Requested account is not available.') . EOL);
$a->error = 404;
return;
}
- if (!x($a->page, 'aside')) {
+ if (empty($a->page['aside'])) {
$a->page['aside'] = '';
}
@@ -157,10 +157,6 @@ class Profile
require_once $theme_info_file;
}
- if (!x($a->page, 'aside')) {
- $a->page['aside'] = '';
- }
-
if (local_user() && local_user() == $a->profile['uid'] && $profiledata) {
$a->page['aside'] .= replace_macros(
get_markup_template('profile_edlink.tpl'),
@@ -644,26 +640,26 @@ class Profile
$classtoday = '';
$s = dba::p(
- "SELECT *
+ "SELECT `event`.*
FROM `event`
- WHERE `event`.`uid` = ?
- AND `event`.`type` != 'birthday'
- AND `event`.`start` < ?
- AND `event`.`start` >= ?
- AND NOT EXISTS (
- SELECT `id`
- FROM `item`
- WHERE `item`.`uid` = `event`.`uid`
+ INNER JOIN `item`
+ ON `item`.`uid` = `event`.`uid`
AND `item`.`parent-uri` = `event`.`uri`
- AND `item`.`verb` = ?
- AND `item`.`visible`
- AND NOT `item`.`deleted`
- )
+ WHERE `event`.`uid` = ?
+ AND `event`.`type` != 'birthday'
+ AND `event`.`start` < ?
+ AND `event`.`start` >= ?
+ AND `item`.`author-id` = ?
+ AND (`item`.`verb` = ? OR `item`.`verb` = ?)
+ AND `item`.`visible`
+ AND NOT `item`.`deleted`
ORDER BY `event`.`start` ASC",
local_user(),
DateTimeFormat::utc('now + 7 days'),
DateTimeFormat::utc('now - 1 days'),
- ACTIVITY_ATTENDNO
+ public_contact(),
+ ACTIVITY_ATTEND,
+ ACTIVITY_ATTENDMAYBE
);
$r = [];
@@ -954,7 +950,7 @@ class Profile
];
}
- if ((!$is_owner) && ((count($a->profile)) || (!$a->profile['hide-friends']))) {
+ if (!$is_owner && empty($a->profile['hide-friends'])) {
$tabs[] = [
'label' => L10n::t('Contacts'),
'url' => System::baseUrl() . '/viewcontacts/' . $nickname,
diff --git a/src/Object/Post.php b/src/Object/Post.php
index 86e141467..820730a32 100644
--- a/src/Object/Post.php
+++ b/src/Object/Post.php
@@ -78,7 +78,7 @@ class Post extends BaseObject
}
// Prepare the children
- if (count($data['children'])) {
+ if (!empty($data['children'])) {
foreach ($data['children'] as $item) {
// Only add will be displayed
if ($item['network'] === NETWORK_MAIL && local_user() != $item['uid']) {
diff --git a/src/Protocol/DFRN.php b/src/Protocol/DFRN.php
index d1a4f0c4b..f233f158a 100644
--- a/src/Protocol/DFRN.php
+++ b/src/Protocol/DFRN.php
@@ -1197,6 +1197,7 @@ class DFRN
$ret = Network::curl($url);
if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
+ Contact::markForArchival($contact);
return -2; // timed out
}
@@ -1204,24 +1205,28 @@ class DFRN
$curl_stat = $a->get_curl_code();
if (empty($curl_stat)) {
+ Contact::markForArchival($contact);
return -3; // timed out
}
logger('dfrn_deliver: ' . $xml, LOGGER_DATA);
if (empty($xml)) {
+ Contact::markForArchival($contact);
return 3;
}
if (strpos($xml, 'status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id))) {
+ if ((intval($res->status) != 0) || !strlen($res->challenge) || !strlen($res->dfrn_id)) {
+ Contact::markForArchival($contact);
return ($res->status ? $res->status : 3);
}
@@ -1274,6 +1279,7 @@ class DFRN
if ($final_dfrn_id != $orig_id) {
logger('dfrn_deliver: wrong dfrn_id.');
// did not decode properly - cannot trust this site
+ Contact::markForArchival($contact);
return 3;
}
@@ -1309,6 +1315,7 @@ class DFRN
break;
default:
logger("rino: invalid requested version '$rino_remote_version'");
+ Contact::markForArchival($contact);
return -8;
}
@@ -1346,22 +1353,26 @@ class DFRN
$curl_stat = $a->get_curl_code();
if (empty($curl_stat) || empty($xml)) {
+ Contact::markForArchival($contact);
return -9; // timed out
}
if (($curl_stat == 503) && stristr($a->get_curl_headers(), 'retry-after')) {
+ Contact::markForArchival($contact);
return -10;
}
if (strpos($xml, 'status)) {
+ Contact::markForArchival($contact);
return -11;
}
@@ -1374,7 +1385,7 @@ class DFRN
logger('Delivery returned status '.$res->status.' - '.$res->message, LOGGER_DEBUG);
}
- if ($res->status == 200) {
+ if (($res->status >= 200) && ($res->status <= 299)) {
Contact::unmarkForArchival($contact);
}
@@ -1394,28 +1405,41 @@ class DFRN
{
$a = get_app();
- if (empty($contact['addr'])) {
- logger('Empty contact handle for ' . $contact['id'] . ' - ' . $contact['url'] . ' - trying to update it.');
- if (Contact::updateFromProbe($contact['id'])) {
- $new_contact = dba::selectFirst('contact', ['addr'], ['id' => $contact['id']]);
- $contact['addr'] = $new_contact['addr'];
- }
-
+ if (!$public_batch) {
if (empty($contact['addr'])) {
- logger('Unable to find contact handle for ' . $contact['id'] . ' - ' . $contact['url']);
- return -21;
- }
- }
+ logger('Empty contact handle for ' . $contact['id'] . ' - ' . $contact['url'] . ' - trying to update it.');
+ if (Contact::updateFromProbe($contact['id'])) {
+ $new_contact = dba::selectFirst('contact', ['addr'], ['id' => $contact['id']]);
+ $contact['addr'] = $new_contact['addr'];
+ }
- $fcontact = Diaspora::personByHandle($contact['addr']);
- if (empty($fcontact)) {
- logger('Unable to find contact details for ' . $contact['id'] . ' - ' . $contact['addr']);
- return -22;
+ if (empty($contact['addr'])) {
+ logger('Unable to find contact handle for ' . $contact['id'] . ' - ' . $contact['url']);
+ Contact::markForArchival($contact);
+ return -21;
+ }
+ }
+
+ $fcontact = Diaspora::personByHandle($contact['addr']);
+ if (empty($fcontact)) {
+ logger('Unable to find contact details for ' . $contact['id'] . ' - ' . $contact['addr']);
+ Contact::markForArchival($contact);
+ return -22;
+ }
}
$envelope = Diaspora::buildMessage($atom, $owner, $contact, $owner['uprvkey'], $fcontact['pubkey'], $public_batch);
- $dest_url = ($public_batch ? $fcontact["batch"] : $contact["notify"]);
+ // Create the endpoint for public posts. This is some WIP and should later be added to the probing
+ if ($public_batch && empty($contact["batch"])) {
+ $parts = parse_url($contact["notify"]);
+ $path_parts = explode('/', $parts['path']);
+ array_pop($path_parts);
+ $parts['path'] = implode('/', $path_parts);
+ $contact["batch"] = Network::unparseURL($parts);
+ }
+
+ $dest_url = ($public_batch ? $contact["batch"] : $contact["notify"]);
$content_type = ($public_batch ? "application/magic-envelope+xml" : "application/json");
@@ -1424,22 +1448,26 @@ class DFRN
$curl_stat = $a->get_curl_code();
if (empty($curl_stat) || empty($xml)) {
logger('Empty answer from ' . $contact['id'] . ' - ' . $dest_url);
+ Contact::markForArchival($contact);
return -9; // timed out
}
if (($curl_stat == 503) && (stristr($a->get_curl_headers(), 'retry-after'))) {
+ Contact::markForArchival($contact);
return -10;
}
if (strpos($xml, 'status)) {
+ Contact::markForArchival($contact);
return -23;
}
@@ -1447,7 +1475,7 @@ class DFRN
logger('Transmit to ' . $dest_url . ' returned status '.$res->status.' - '.$res->message, LOGGER_DEBUG);
}
- if ($res->status == 200) {
+ if (($res->status >= 200) && ($res->status <= 299)) {
Contact::unmarkForArchival($contact);
}
@@ -1467,33 +1495,33 @@ class DFRN
// Check for duplicates
$r = q(
"SELECT `id` FROM `event` WHERE `uid` = %d AND `cid` = %d AND `start` = '%s' AND `type` = '%s' LIMIT 1",
- intval($contact["uid"]),
- intval($contact["id"]),
+ intval($contact['uid']),
+ intval($contact['id']),
dbesc(DateTimeFormat::utc($birthday)),
- dbesc("birthday")
+ dbesc('birthday')
);
if (DBM::is_result($r)) {
return;
}
- logger("updating birthday: ".$birthday." for contact ".$contact["id"]);
+ logger('updating birthday: ' . $birthday . ' for contact ' . $contact['id']);
- $bdtext = L10n::t("%s\'s birthday", $contact["name"]);
- $bdtext2 = L10n::t("Happy Birthday %s", " [url=".$contact["url"]."]".$contact["name"]."[/url]");
+ $bdtext = L10n::t('%s\'s birthday', $contact['name']);
+ $bdtext2 = L10n::t('Happy Birthday %s', ' [url=' . $contact['url'] . ']' . $contact['name'] . '[/url]');
$r = q(
"INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`summary`,`desc`,`type`)
VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s') ",
- intval($contact["uid"]),
- intval($contact["id"]),
+ intval($contact['uid']),
+ intval($contact['id']),
dbesc(DateTimeFormat::utcNow()),
dbesc(DateTimeFormat::utcNow()),
dbesc(DateTimeFormat::utc($birthday)),
- dbesc(DateTimeFormat::utc($birthday . " + 1 day ")),
+ dbesc(DateTimeFormat::utc($birthday . ' + 1 day ')),
dbesc($bdtext),
dbesc($bdtext2),
- dbesc("birthday")
+ dbesc('birthday')
);
}
@@ -2747,6 +2775,10 @@ class DFRN
if ($posted_id) {
logger("Reply from contact ".$item["contact-id"]." was stored with id ".$posted_id, LOGGER_DEBUG);
+ if ($item['uid'] == 0) {
+ Item::distribute($posted_id);
+ }
+
$item["id"] = $posted_id;
$r = q(
@@ -2771,7 +2803,7 @@ class DFRN
logger('ignoring read-only contact '.$importer["id"]);
return;
}
- if ($importer["uid"] == 0) {
+ if (($importer["uid"] == 0) && ($importer["importer_uid"] != 0)) {
logger("Contact ".$importer["id"]." isn't known to user ".$importer["importer_uid"].". The post will be ignored.", LOGGER_DEBUG);
return;
}
@@ -2801,6 +2833,10 @@ class DFRN
logger("Item was stored with id ".$posted_id, LOGGER_DEBUG);
+ if ($item['uid'] == 0) {
+ Item::distribute($posted_id);
+ }
+
if (stristr($item["verb"], ACTIVITY_POKE)) {
self::doPoke($item, $importer, $posted_id);
}
@@ -2923,6 +2959,9 @@ class DFRN
logger("Import DFRN message for user " . $importer["importer_uid"] . " from contact " . $importer["id"], LOGGER_DEBUG);
+ // is it a public forum? Private forums aren't exposed with this method
+ $forum = intval($xpath->evaluate("/atom:feed/dfrn:community/text()")->item(0)->nodeValue);
+
// The account type is new since 3.5.1
if ($xpath->query("/atom:feed/dfrn:account_type")->length > 0) {
$accounttype = intval($xpath->evaluate("/atom:feed/dfrn:account_type/text()")->item(0)->nodeValue);
@@ -2930,17 +2969,17 @@ class DFRN
if ($accounttype != $importer["contact-type"]) {
dba::update('contact', ['contact-type' => $accounttype], ['id' => $importer["id"]]);
}
- }
-
- // is it a public forum? Private forums aren't supported with this method
- // This is deprecated since 3.5.1
- $forum = intval($xpath->evaluate("/atom:feed/dfrn:community/text()")->item(0)->nodeValue);
-
- if ($forum != $importer["forum"]) {
+ // A forum contact can either have set "forum" or "prv" - but not both
+ if (($accounttype == ACCOUNT_TYPE_COMMUNITY) && (($forum != $importer["forum"]) || ($forum == $importer["prv"]))) {
+ $condition = ['(`forum` != ? OR `prv` != ?) AND `id` = ?', $forum, !$forum, $importer["id"]];
+ dba::update('contact', ['forum' => $forum, 'prv' => !$forum], $condition);
+ }
+ } elseif ($forum != $importer["forum"]) { // Deprecated since 3.5.1
$condition = ['`forum` != ? AND `id` = ?', $forum, $importer["id"]];
dba::update('contact', ['forum' => $forum], $condition);
}
+
// We are processing relocations even if we are ignoring a contact
$relocations = $xpath->query("/atom:feed/dfrn:relocate");
foreach ($relocations as $relocation) {
diff --git a/src/Protocol/Diaspora.php b/src/Protocol/Diaspora.php
index e81c53499..61d1a586f 100644
--- a/src/Protocol/Diaspora.php
+++ b/src/Protocol/Diaspora.php
@@ -590,59 +590,15 @@ class Diaspora
return false;
}
- if (!($postdata = self::validPosting($msg))) {
+ if (!($fields = self::validPosting($msg))) {
logger("Invalid posting");
return false;
}
- $fields = $postdata['fields'];
+ $importer = ["uid" => 0, "page-flags" => PAGE_FREELOVE];
+ $success = self::dispatch($importer, $msg, $fields);
- // Is it a an action (comment, like, ...) for our own post?
- if (isset($fields->parent_guid) && !$postdata["relayed"]) {
- $guid = notags(unxmlify($fields->parent_guid));
- $importer = self::importerForGuid($guid);
- if (is_array($importer)) {
- logger("delivering to origin: ".$importer["name"]);
- $message_id = self::dispatch($importer, $msg, $fields);
- return $message_id;
- }
- }
-
- // Process item retractions. This has to be done separated from the other stuff,
- // since retractions for comments could come even from non followers.
- if (!empty($fields) && in_array($fields->getName(), ['retraction'])) {
- $target = notags(unxmlify($fields->target_type));
- if (in_array($target, ["Comment", "Like", "Post", "Reshare", "StatusMessage"])) {
- logger('processing retraction for '.$target, LOGGER_DEBUG);
- $importer = ["uid" => 0, "page-flags" => PAGE_FREELOVE];
- $message_id = self::dispatch($importer, $msg, $fields);
- return $message_id;
- }
- }
-
- // Now distribute it to the followers
- $r = q(
- "SELECT `user`.* FROM `user` WHERE `user`.`uid` IN
- (SELECT `contact`.`uid` FROM `contact` WHERE `contact`.`network` = '%s' AND `contact`.`addr` = '%s')
- AND NOT `account_expired` AND NOT `account_removed`",
- dbesc(NETWORK_DIASPORA),
- dbesc($msg["author"])
- );
-
- if (DBM::is_result($r)) {
- foreach ($r as $rr) {
- logger("delivering to: ".$rr["username"]);
- self::dispatch($rr, $msg, $fields);
- }
- } elseif (!Config::get('system', 'relay_subscribe', false)) {
- logger("Unwanted message from ".$msg["author"]." send by ".$_SERVER["REMOTE_ADDR"]." with ".$_SERVER["HTTP_USER_AGENT"].": ".print_r($msg, true), LOGGER_DEBUG);
- } else {
- // Use a dummy importer to import the data for the public copy
- $importer = ["uid" => 0, "page-flags" => PAGE_FREELOVE];
- $message_id = self::dispatch($importer, $msg, $fields);
- }
-
- return $message_id;
+ return $success;
}
/**
@@ -662,11 +618,13 @@ class Diaspora
// This is only needed for private postings since this is already done for public ones before
if (is_null($fields)) {
- if (!($postdata = self::validPosting($msg))) {
+ $private = true;
+ if (!($fields = self::validPosting($msg))) {
logger("Invalid posting");
return false;
}
- $fields = $postdata['fields'];
+ } else {
+ $private = false;
}
$type = $fields->getName();
@@ -675,27 +633,47 @@ class Diaspora
switch ($type) {
case "account_migration":
+ if (!$private) {
+ logger('Message with type ' . $type . ' is not private, quitting.');
+ return false;
+ }
return self::receiveAccountMigration($importer, $fields);
case "account_deletion":
- return self::receiveAccountDeletion($importer, $fields);
+ return self::receiveAccountDeletion($fields);
case "comment":
return self::receiveComment($importer, $sender, $fields, $msg["message"]);
case "contact":
+ if (!$private) {
+ logger('Message with type ' . $type . ' is not private, quitting.');
+ return false;
+ }
return self::receiveContactRequest($importer, $fields);
case "conversation":
+ if (!$private) {
+ logger('Message with type ' . $type . ' is not private, quitting.');
+ return false;
+ }
return self::receiveConversation($importer, $msg, $fields);
case "like":
return self::receiveLike($importer, $sender, $fields);
case "message":
+ if (!$private) {
+ logger('Message with type ' . $type . ' is not private, quitting.');
+ return false;
+ }
return self::receiveMessage($importer, $fields);
case "participation":
+ if (!$private) {
+ logger('Message with type ' . $type . ' is not private, quitting.');
+ return false;
+ }
return self::receiveParticipation($importer, $fields);
case "photo": // Not implemented
@@ -705,6 +683,10 @@ class Diaspora
return self::receivePollParticipation($importer, $fields);
case "profile":
+ if (!$private) {
+ logger('Message with type ' . $type . ' is not private, quitting.');
+ return false;
+ }
return self::receiveProfile($importer, $fields);
case "reshare":
@@ -840,7 +822,7 @@ class Diaspora
// Only some message types have signatures. So we quit here for the other types.
if (!in_array($type, ["comment", "like"])) {
- return ["fields" => $fields, "relayed" => false];
+ return $fields;
}
// No author_signature? This is a must, so we quit.
if (!isset($author_signature)) {
@@ -849,25 +831,29 @@ class Diaspora
}
if (isset($parent_author_signature)) {
- $relayed = true;
-
$key = self::key($msg["author"]);
+ if (empty($key)) {
+ logger("No key found for parent author ".$msg["author"], LOGGER_DEBUG);
+ return false;
+ }
if (!Crypto::rsaVerify($signed_data, $parent_author_signature, $key, "sha256")) {
logger("No valid parent author signature for parent author ".$msg["author"]. " in type ".$type." - signed data: ".$signed_data." - Message: ".$msg["message"]." - Signature ".$parent_author_signature, LOGGER_DEBUG);
return false;
}
- } else {
- $relayed = false;
}
$key = self::key($fields->author);
+ if (empty($key)) {
+ logger("No key found for author ".$fields->author, LOGGER_DEBUG);
+ return false;
+ }
if (!Crypto::rsaVerify($signed_data, $author_signature, $key, "sha256")) {
logger("No valid author signature for author ".$fields->author. " in type ".$type." - signed data: ".$signed_data." - Message: ".$msg["message"]." - Signature ".$author_signature, LOGGER_DEBUG);
return false;
} else {
- return ["fields" => $fields, "relayed" => $relayed];
+ return $fields;
}
}
@@ -1650,25 +1636,23 @@ class Diaspora
/**
* @brief Processes an account deletion
*
- * @param array $importer Array of the importer user
* @param object $data The message object
*
* @return bool Success
*/
- private static function receiveAccountDeletion($importer, $data)
+ private static function receiveAccountDeletion($data)
{
- /// @todo Account deletion should remove the contact from the global contacts as well
-
$author = notags(unxmlify($data->author));
- $contact = self::contactByHandle($importer["uid"], $author);
- if (!$contact) {
- logger("cannot find contact for author: ".$author);
- return false;
+ $contacts = dba::select('contact', ['id'], ['addr' => $author]);
+ while ($contact = dba::fetch($contacts)) {
+ Contact::remove($contact["id"]);
}
- // We now remove the contact
- Contact::remove($contact["id"]);
+ dba::delete('gcontact', ['addr' => $author]);
+
+ logger('Removed contacts for ' . $author);
+
return true;
}
@@ -1836,6 +1820,9 @@ class Diaspora
if ($message_id) {
logger("Stored comment ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
+ if ($datarray['uid'] == 0) {
+ Item::distribute($message_id);
+ }
}
// If we are the origin of the parent we store the original data and notify our followers
@@ -2157,6 +2144,9 @@ class Diaspora
if ($message_id) {
logger("Stored like ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
+ if ($datarray['uid'] == 0) {
+ Item::distribute($message_id);
+ }
}
// like on comments have the comment as parent. So we need to fetch the toplevel parent
@@ -2739,10 +2729,15 @@ class Diaspora
*/
public static function originalItem($guid, $orig_author)
{
+ if (empty($guid)) {
+ logger('Empty guid. Quitting.');
+ return false;
+ }
+
// Do we already have this item?
$fields = ['body', 'tag', 'app', 'created', 'object-type', 'uri', 'guid',
'author-name', 'author-link', 'author-avatar'];
- $condition = ['guid' => $guid, 'visible' => true, 'deleted' => false];
+ $condition = ['guid' => $guid, 'visible' => true, 'deleted' => false, 'private' => false];
$item = dba::selectfirst('item', $fields, $condition);
if (DBM::is_result($item)) {
@@ -2752,7 +2747,7 @@ class Diaspora
// Then refetch the content, if it is a reshare from a reshare.
// If it is a reshared post from another network then reformat to avoid display problems with two share elements
if (self::isReshare($item["body"], true)) {
- $r = [];
+ $item = [];
} elseif (self::isReshare($item["body"], false) || strstr($item["body"], "[share")) {
$item["body"] = Markdown::toBBCode(BBCode::toMarkdown($item["body"]));
@@ -2767,21 +2762,26 @@ class Diaspora
}
}
- if (!DBM::is_result($r)) {
- $server = "https://".substr($orig_author, strpos($orig_author, "@") + 1);
- logger("1st try: reshared message ".$guid." will be fetched via SSL from the server ".$server);
- $item_id = self::storeByGuid($guid, $server);
-
- if (!$item_id) {
- $server = "http://".substr($orig_author, strpos($orig_author, "@") + 1);
- logger("2nd try: reshared message ".$guid." will be fetched without SLL from the server ".$server);
- $item_id = self::storeByGuid($guid, $server);
+ if (!DBM::is_result($item)) {
+ if (empty($orig_author)) {
+ logger('Empty author for guid ' . $guid . '. Quitting.');
+ return false;
}
- if ($item_id) {
+ $server = "https://".substr($orig_author, strpos($orig_author, "@") + 1);
+ logger("1st try: reshared message ".$guid." will be fetched via SSL from the server ".$server);
+ $stored = self::storeByGuid($guid, $server);
+
+ if (!$stored) {
+ $server = "http://".substr($orig_author, strpos($orig_author, "@") + 1);
+ logger("2nd try: reshared message ".$guid." will be fetched without SSL from the server ".$server);
+ $stored = self::storeByGuid($guid, $server);
+ }
+
+ if ($stored) {
$fields = ['body', 'tag', 'app', 'created', 'object-type', 'uri', 'guid',
'author-name', 'author-link', 'author-avatar'];
- $condition = ['id' => $item_id, 'visible' => true, 'deleted' => false];
+ $condition = ['guid' => $guid, 'visible' => true, 'deleted' => false, 'private' => false];
$item = dba::selectfirst('item', $fields, $condition);
if (DBM::is_result($item)) {
@@ -2883,6 +2883,9 @@ class Diaspora
if ($message_id) {
logger("Stored reshare ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
+ if ($datarray['uid'] == 0) {
+ Item::distribute($message_id);
+ }
return true;
} else {
return false;
@@ -3107,6 +3110,9 @@ class Diaspora
if ($message_id) {
logger("Stored item ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
+ if ($datarray['uid'] == 0) {
+ Item::distribute($message_id);
+ }
return true;
} else {
return false;
diff --git a/src/Util/Network.php b/src/Util/Network.php
index 4a11f9259..c1ea6e354 100644
--- a/src/Util/Network.php
+++ b/src/Util/Network.php
@@ -36,7 +36,30 @@ class Network
*/
public static function fetchUrl($url, $binary = false, &$redirects = 0, $timeout = 0, $accept_content = null, $cookiejar = 0)
{
- $ret = self::curl(
+ $ret = self::fetchUrlFull($url, $binary, $redirects, $timeout, $accept_content, $cookiejar);
+
+ return $ret['body'];
+ }
+
+ /**
+ * @brief Curl wrapper with array of return values.
+ *
+ * Inner workings and parameters are the same as @ref fetchUrl but returns an array with
+ * all the information collected during the fetch.
+ *
+ * @param string $url URL to fetch
+ * @param boolean $binary default false
+ * TRUE if asked to return binary results (file download)
+ * @param integer $redirects The recursion counter for internal use - default 0
+ * @param integer $timeout Timeout in seconds, default system config value or 60 seconds
+ * @param string $accept_content supply Accept: header with 'accept_content' as the value
+ * @param string $cookiejar Path to cookie jar file
+ *
+ * @return array With all relevant information, 'body' contains the actual fetched content.
+ */
+ public static function fetchUrlFull($url, $binary = false, &$redirects = 0, $timeout = 0, $accept_content = null, $cookiejar = 0)
+ {
+ return self::curl(
$url,
$binary,
$redirects,
@@ -45,8 +68,6 @@ class Network
'cookiejar'=>$cookiejar
]
);
-
- return($ret['body']);
}
/**
diff --git a/src/Util/Temporal.php b/src/Util/Temporal.php
index 1ed08ed1d..46bd8bba5 100644
--- a/src/Util/Temporal.php
+++ b/src/Util/Temporal.php
@@ -59,7 +59,7 @@ class Temporal
$o = '';
- usort($timezone_identifiers, [self, 'timezoneCompareCallback']);
+ usort($timezone_identifiers, [__CLASS__, 'timezoneCompareCallback']);
$continent = '';
foreach ($timezone_identifiers as $value) {
$ex = explode("/", $value);
diff --git a/src/Worker/Delivery.php b/src/Worker/Delivery.php
index 0a71e6ce2..f874e5f23 100644
--- a/src/Worker/Delivery.php
+++ b/src/Worker/Delivery.php
@@ -4,6 +4,7 @@
*/
namespace Friendica\Worker;
+use Friendica\BaseObject;
use Friendica\Core\Config;
use Friendica\Core\L10n;
use Friendica\Core\System;
@@ -19,98 +20,67 @@ use dba;
require_once 'include/items.php';
-/// @todo This is some ugly code that needs to be split into several methods
+class Delivery extends BaseObject
+{
+ const MAIL = 'mail';
+ const SUGGESTION = 'suggest';
+ const RELOCATION = 'relocate';
+ const DELETION = 'drop';
+ const POST = 'wall-new';
+ const COMMENT = 'comment-new';
-class Delivery {
- public static function execute($cmd, $item_id, $contact_id) {
- global $a;
+ public static function execute($cmd, $item_id, $contact_id)
+ {
+ logger('Invoked: ' . $cmd . ': ' . $item_id . ' to ' . $contact_id, LOGGER_DEBUG);
- logger('delivery: invoked: '.$cmd.': '.$item_id.' to '.$contact_id, LOGGER_DEBUG);
-
- $mail = false;
- $fsuggest = false;
- $relocate = false;
$top_level = false;
- $recipients = [];
$followup = false;
+ $public_message = false;
- $normal_mode = true;
-
- $item = null;
-
- $recipients[] = $contact_id;
-
- if ($cmd === 'mail') {
- $normal_mode = false;
- $mail = true;
- $message = q("SELECT * FROM `mail` WHERE `id` = %d LIMIT 1",
- intval($item_id)
- );
- if (!count($message)) {
+ if ($cmd == self::MAIL) {
+ $target_item = dba::selectFirst('mail', [], ['id' => $item_id]);
+ if (!DBM::is_result($message)) {
return;
}
- $uid = $message[0]['uid'];
- $recipients[] = $message[0]['contact-id'];
- $item = $message[0];
- } elseif ($cmd === 'suggest') {
- $normal_mode = false;
- $fsuggest = true;
-
- $suggest = q("SELECT * FROM `fsuggest` WHERE `id` = %d LIMIT 1",
- intval($item_id)
- );
- if (!count($suggest)) {
+ $uid = $target_item['uid'];
+ } elseif ($cmd == self::SUGGESTION) {
+ $target_item = dba::selectFirst('fsuggest', [], ['id' => $item_id]);
+ if (!DBM::is_result($message)) {
return;
}
- $uid = $suggest[0]['uid'];
- $recipients[] = $suggest[0]['cid'];
- $item = $suggest[0];
- } elseif ($cmd === 'relocate') {
- $normal_mode = false;
- $relocate = true;
+ $uid = $target_item['uid'];
+ } elseif ($cmd == self::RELOCATION) {
$uid = $item_id;
} else {
- // find ancestors
- $target_item = dba::fetch_first("SELECT `item`.*, `contact`.`uid` AS `cuid` FROM `item`
- INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
- WHERE `item`.`id` = ? AND `visible` AND NOT `moderated`", $item_id);
-
- if (!DBM::is_result($target_item) || !intval($target_item['parent'])) {
+ $item = dba::selectFirst('item', ['parent'], ['id' => $item_id]);
+ if (!DBM::is_result($item) || empty($item['parent'])) {
return;
}
+ $parent_id = intval($item['parent']);
- $parent_id = intval($target_item['parent']);
- $uid = $target_item['cuid'];
- $updated = $target_item['edited'];
-
- $items = q("SELECT `item`.*, `sign`.`signed_text`,`sign`.`signature`,`sign`.`signer`
- FROM `item` LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id` WHERE `parent` = %d AND visible = 1 AND moderated = 0 ORDER BY `id` ASC",
- intval($parent_id)
- );
-
- if (!count($items)) {
- return;
- }
-
- $icontacts = null;
- $contacts_arr = [];
- foreach ($items as $item) {
- if (!in_array($item['contact-id'],$contacts_arr)) {
- $contacts_arr[] = intval($item['contact-id']);
+ $itemdata = dba::p("SELECT `item`.*, `contact`.`uid` AS `cuid`,
+ `sign`.`signed_text`,`sign`.`signature`,`sign`.`signer`
+ FROM `item`
+ INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
+ LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id`
+ WHERE `item`.`id` IN (?, ?) AND `visible` AND NOT `moderated`
+ ORDER BY `item`.`id`",
+ $item_id, $parent_id);
+ $items = [];
+ while ($item = dba::fetch($itemdata)) {
+ if ($item['id'] == $parent_id) {
+ $parent = $item;
}
+ if ($item['id'] == $item_id) {
+ $target_item = $item;
+ }
+ $items[] = $item;
}
- if (count($contacts_arr)) {
- $str_contacts = implode(',',$contacts_arr);
- $icontacts = q("SELECT * FROM `contact`
- WHERE `id` IN ( $str_contacts ) "
- );
- }
- if ( !($icontacts && count($icontacts))) {
- return;
- }
+ dba::close($itemdata);
+
+ $uid = $target_item['cuid'];
// avoid race condition with deleting entries
-
if ($items[0]['deleted']) {
foreach ($items as $item) {
$item['deleted'] = 1;
@@ -120,24 +90,10 @@ class Delivery {
// When commenting too fast after delivery, a post wasn't recognized as top level post.
// The count then showed more than one entry. The additional check should help.
// The check for the "count" should be superfluous, but I'm not totally sure by now, so we keep it.
- if ((($items[0]['id'] == $item_id) || (count($items) == 1)) && ($items[0]['uri'] === $items[0]['parent-uri'])) {
- logger('delivery: top level post');
+ if ((($parent['id'] == $item_id) || (count($items) == 1)) && ($parent['uri'] === $parent['parent-uri'])) {
+ logger('Top level post');
$top_level = true;
}
- }
-
- $owner = User::getOwnerDataById($uid);
- if (!$owner) {
- return;
- }
-
- // We don't treat Forum posts as "wall-to-wall" to be able to post them via Diaspora
- $walltowall = $top_level && ($owner['id'] != $items[0]['contact-id']) & ($owner['account-type'] != ACCOUNT_TYPE_COMMUNITY);
-
- $public_message = true;
-
- if (!$mail && !$fsuggest && !$relocate) {
- $parent = $items[0];
// This is IMPORTANT!!!!
@@ -147,9 +103,9 @@ class Delivery {
// if $parent['wall'] == 1 we will already have the parent message in our array
// and we will relay the whole lot.
- $localhost = $a->get_hostname();
- if (strpos($localhost,':')) {
- $localhost = substr($localhost,0,strpos($localhost,':'));
+ $localhost = self::getApp()->get_hostname();
+ if (strpos($localhost, ':')) {
+ $localhost = substr($localhost, 0, strpos($localhost, ':'));
}
/**
*
@@ -159,26 +115,24 @@ class Delivery {
*
*/
- $relay_to_owner = false;
-
if (!$top_level && ($parent['wall'] == 0) && stristr($target_item['uri'], $localhost)) {
- $relay_to_owner = true;
- }
-
- if ($relay_to_owner) {
- logger('followup '.$target_item["guid"], LOGGER_DEBUG);
+ logger('Followup ' . $target_item["guid"], LOGGER_DEBUG);
// local followup to remote post
$followup = true;
}
- if (strlen($parent['allow_cid'])
- || strlen($parent['allow_gid'])
- || strlen($parent['deny_cid'])
- || strlen($parent['deny_gid'])
- || $parent["private"]) {
- $public_message = false; // private recipients, not public
+ if (empty($parent['allow_cid'])
+ && empty($parent['allow_gid'])
+ && empty($parent['deny_cid'])
+ && empty($parent['deny_gid'])
+ && !$parent["private"]) {
+ $public_message = true;
}
+ }
+ $owner = User::getOwnerDataById($uid);
+ if (!DBM::is_result($owner)) {
+ return;
}
// We don't deliver our items to blocked or pending contacts, and not to ourselves either
@@ -189,146 +143,22 @@ class Delivery {
return;
}
- $deliver_status = 0;
-
- // Transmit via Diaspora if not possible via Friendica
- if (($item['uid'] == 0) && ($contact['network'] == NETWORK_DFRN)) {
+ // Transmit via Diaspora if the thread had started as Diaspora post
+ // This is done since the uri wouldn't match (Diaspora doesn't transmit it)
+ if (isset($parent) && ($parent['network'] == NETWORK_DIASPORA) && ($contact['network'] == NETWORK_DFRN)) {
$contact['network'] = NETWORK_DIASPORA;
}
- logger("main delivery by delivery: followup=$followup mail=$mail fsuggest=$fsuggest relocate=$relocate - network ".$contact['network']);
+ logger("Delivering " . $cmd . " followup=$followup - via network " . $contact['network']);
switch ($contact['network']) {
case NETWORK_DFRN:
- logger('notifier: '.$target_item["guid"].' dfrndelivery: '.$contact['name']);
-
- if ($mail) {
- $item['body'] = Item::fixPrivatePhotos($item['body'], $owner['uid'], null, $item['contact-id']);
- $atom = DFRN::mail($item, $owner);
- } elseif ($fsuggest) {
- $atom = DFRN::fsuggest($item, $owner);
- dba::delete('fsuggest', ['id' => $item['id']]);
- } elseif ($relocate) {
- $atom = DFRN::relocate($owner, $uid);
- } elseif ($followup) {
- $msgitems = [];
- foreach ($items as $item) { // there is only one item
- if (!$item['parent']) {
- return;
- }
- if ($item['id'] == $item_id) {
- logger('followup: item: '. print_r($item,true), LOGGER_DATA);
- $msgitems[] = $item;
- }
- }
- $atom = DFRN::entries($msgitems,$owner);
- } else {
- $msgitems = [];
- foreach ($items as $item) {
- if (!$item['parent']) {
- return;
- }
-
- // private emails may be in included in public conversations. Filter them.
- if ($public_message && $item['private']) {
- return;
- }
-
- $item_contact = self::getItemContact($item,$icontacts);
- if (!$item_contact) {
- return;
- }
-
- if ($normal_mode) {
- // Only add the parent when we don't delete other items.
- if ($item_id == $item['id'] || (($item['id'] == $item['parent']) && ($cmd != 'drop'))) {
- $item["entry:comment-allow"] = true;
- $item["entry:cid"] = (($top_level) ? $contact['id'] : 0);
- $msgitems[] = $item;
- }
- } else {
- $item["entry:comment-allow"] = true;
- $msgitems[] = $item;
- }
- }
- $atom = DFRN::entries($msgitems,$owner);
- }
-
- logger('notifier entry: '.$contact["url"].' '.$target_item["guid"].' entry: '.$atom, LOGGER_DEBUG);
-
- logger('notifier: '.$atom, LOGGER_DATA);
- $basepath = implode('/', array_slice(explode('/',$contact['url']),0,3));
-
- // perform local delivery if we are on the same site
-
- if (link_compare($basepath,System::baseUrl())) {
- $nickname = basename($contact['url']);
- if ($contact['issued-id']) {
- $sql_extra = sprintf(" AND `dfrn-id` = '%s' ", dbesc($contact['issued-id']));
- } else {
- $sql_extra = sprintf(" AND `issued-id` = '%s' ", dbesc($contact['dfrn-id']));
- }
-
- $x = q("SELECT `contact`.*, `contact`.`uid` AS `importer_uid`,
- `contact`.`pubkey` AS `cpubkey`,
- `contact`.`prvkey` AS `cprvkey`,
- `contact`.`thumb` AS `thumb`,
- `contact`.`url` as `url`,
- `contact`.`name` as `senderName`,
- `user`.*
- FROM `contact`
- INNER JOIN `user` ON `contact`.`uid` = `user`.`uid`
- WHERE `contact`.`blocked` = 0 AND `contact`.`pending` = 0
- AND `contact`.`network` = '%s' AND `user`.`nickname` = '%s'
- $sql_extra
- AND `user`.`account_expired` = 0 AND `user`.`account_removed` = 0 LIMIT 1",
- dbesc(NETWORK_DFRN),
- dbesc($nickname)
- );
-
- if ($x && count($x)) {
- $write_flag = ((($x[0]['rel']) && ($x[0]['rel'] != CONTACT_IS_SHARING)) ? true : false);
- if ((($owner['page-flags'] == PAGE_COMMUNITY) || $write_flag) && !$x[0]['writable']) {
- dba::update('contact', ['writable' => true], ['id' => $x[0]['id']]);
- $x[0]['writable'] = 1;
- }
-
- $ssl_policy = Config::get('system','ssl_policy');
- $x[0] = Contact::updateSslPolicy($x[0], $ssl_policy);
-
- // If we are setup as a soapbox we aren't accepting top level posts from this person
-
- if (($x[0]['page-flags'] == PAGE_SOAPBOX) && $top_level) {
- break;
- }
- logger('mod-delivery: local delivery');
- DFRN::import($atom, $x[0]);
- break;
- }
- }
-
- if (!Queue::wasDelayed($contact['id'])) {
- $deliver_status = DFRN::deliver($owner, $contact, $atom);
- } else {
- $deliver_status = -1;
- }
-
- logger('notifier: dfrn_delivery to '.$contact["url"].' with guid '.$target_item["guid"].' returns '.$deliver_status);
-
- if ($deliver_status < 0) {
- logger('notifier: delivery failed: queuing message');
- Queue::add($contact['id'], NETWORK_DFRN, $atom, false, $target_item['guid']);
- }
-
- if (($deliver_status >= 200) && ($deliver_status <= 299)) {
- // We successfully delivered a message, the contact is alive
- Contact::unmarkForArchival($contact);
- } else {
- // The message could not be delivered. We mark the contact as "dead"
- Contact::markForArchival($contact);
- }
+ self::deliverDFRN($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup);
+ break;
+ case NETWORK_DIASPORA:
+ self::deliverDiaspora($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup);
break;
case NETWORK_OSTATUS:
@@ -345,156 +175,7 @@ class Delivery {
break;
case NETWORK_MAIL:
-
- if (Config::get('system','dfrn_only')) {
- break;
- }
- // WARNING: does not currently convert to RFC2047 header encodings, etc.
-
- $addr = $contact['addr'];
- if (!strlen($addr)) {
- break;
- }
-
- if ($cmd === 'wall-new' || $cmd === 'comment-new') {
- $it = null;
- if ($cmd === 'wall-new') {
- $it = $items[0];
- } else {
- $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
- intval($item_id)
- );
- if (DBM::is_result($r)) {
- $it = $r[0];
- }
- }
- if (!$it) {
- break;
- }
-
- $local_user = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
- intval($uid)
- );
- if (!count($local_user)) {
- break;
- }
-
- $reply_to = '';
- $r1 = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
- intval($uid)
- );
- if ($r1 && $r1[0]['reply_to']) {
- $reply_to = $r1[0]['reply_to'];
- }
-
- $subject = (($it['title']) ? Email::encodeHeader($it['title'],'UTF-8') : L10n::t("\x28no subject\x29")) ;
-
- // only expose our real email address to true friends
-
- if (($contact['rel'] == CONTACT_IS_FRIEND) && !$contact['blocked']) {
- if ($reply_to) {
- $headers = 'From: '.Email::encodeHeader($local_user[0]['username'],'UTF-8').' <'.$reply_to.'>'."\n";
- $headers .= 'Sender: '.$local_user[0]['email']."\n";
- } else {
- $headers = 'From: '.Email::encodeHeader($local_user[0]['username'],'UTF-8').' <'.$local_user[0]['email'].'>'."\n";
- }
- } else {
- $headers = 'From: '. Email::encodeHeader($local_user[0]['username'], 'UTF-8') . ' get_hostname() . '>' . "\n";
- }
-
- //if ($reply_to)
- // $headers .= 'Reply-to: '.$reply_to . "\n";
-
- $headers .= 'Message-Id: <'. Email::iri2msgid($it['uri']).'>'. "\n";
-
- //logger("Mail: uri: ".$it['uri']." parent-uri ".$it['parent-uri'], LOGGER_DEBUG);
- //logger("Mail: Data: ".print_r($it, true), LOGGER_DEBUG);
- //logger("Mail: Data: ".print_r($it, true), LOGGER_DATA);
-
- if ($it['uri'] !== $it['parent-uri']) {
- $headers .= "References: <".Email::iri2msgid($it["parent-uri"]).">";
-
- // If Threading is enabled, write down the correct parent
- if (($it["thr-parent"] != "") && ($it["thr-parent"] != $it["parent-uri"])) {
- $headers .= " <".Email::iri2msgid($it["thr-parent"]).">";
- }
- $headers .= "\n";
-
- if (!$it['title']) {
- $r = q("SELECT `title` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
- dbesc($it['parent-uri']),
- intval($uid));
-
- if (DBM::is_result($r) && ($r[0]['title'] != '')) {
- $subject = $r[0]['title'];
- } else {
- $r = q("SELECT `title` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d LIMIT 1",
- dbesc($it['parent-uri']),
- intval($uid));
-
- if (DBM::is_result($r) && ($r[0]['title'] != '')) {
- $subject = $r[0]['title'];
- }
- }
- }
- if (strncasecmp($subject,'RE:',3)) {
- $subject = 'Re: '.$subject;
- }
- }
- Email::send($addr, $subject, $headers, $it);
- }
- break;
-
- case NETWORK_DIASPORA:
- if ($public_message) {
- $loc = 'public batch '.$contact['batch'];
- } else {
- $loc = $contact['name'];
- }
-
- logger('delivery: diaspora batch deliver: '.$loc);
-
- if (Config::get('system','dfrn_only') || !Config::get('system','diaspora_enabled')) {
- break;
- }
- if ($mail) {
- Diaspora::sendMail($item,$owner,$contact);
- break;
- }
-
- if (!$normal_mode) {
- break;
- }
- if (!$contact['pubkey'] && !$public_message) {
- break;
- }
- if (($target_item['deleted']) && (($target_item['uri'] === $target_item['parent-uri']) || $followup)) {
- // top-level retraction
- logger('diaspora retract: '.$loc);
- Diaspora::sendRetraction($target_item,$owner,$contact,$public_message);
- break;
- } elseif ($relocate) {
- Diaspora::sendAccountMigration($owner, $contact, $uid);
- break;
- } elseif ($followup) {
- // send comments and likes to owner to relay
- logger('diaspora followup: '.$loc);
- Diaspora::sendFollowup($target_item,$owner,$contact,$public_message);
- break;
- } elseif ($target_item['uri'] !== $target_item['parent-uri']) {
- // we are the relay - send comments, likes and relayable_retractions to our conversants
- logger('diaspora relay: '.$loc);
- Diaspora::sendRelay($target_item,$owner,$contact,$public_message);
- break;
- } elseif ($top_level && !$walltowall) {
- // currently no workable solution for sending walltowall
- logger('diaspora status: '.$loc);
- Diaspora::sendStatus($target_item,$owner,$contact,$public_message);
- break;
- }
-
- logger('delivery: diaspora unknown mode: '.$contact['name']);
-
+ self::deliverMail($cmd, $contact, $owner, $target_item);
break;
default:
@@ -504,16 +185,268 @@ class Delivery {
return;
}
- private static function getItemContact($item, $contacts)
+ /**
+ * @brief Deliver content via DFRN
+ *
+ * @param string $cmd Command
+ * @param array $contact Contact record of the receiver
+ * @param array $owner Owner record of the sender
+ * @param array $items Item record of the content and the parent
+ * @param array $target_item Item record of the content
+ * @param boolean $public_message Is the content public?
+ * @param boolean $top_level Is it a thread starter?
+ * @param boolean $followup Is it an answer to a remote post?
+ */
+ private static function deliverDFRN($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup)
{
- if (!count($contacts) || !is_array($item)) {
- return false;
+ logger('Deliver ' . $target_item["guid"] . ' via DFRN to ' . $contact['addr']);
+
+ if ($cmd == self::MAIL) {
+ $item = $target_item;
+ $item['body'] = Item::fixPrivatePhotos($item['body'], $owner['uid'], null, $item['contact-id']);
+ $atom = DFRN::mail($item, $owner);
+ } elseif ($cmd == self::SUGGESTION) {
+ $item = $target_item;
+ $atom = DFRN::fsuggest($item, $owner);
+ dba::delete('fsuggest', ['id' => $item['id']]);
+ } elseif ($cmd == self::RELOCATION) {
+ $atom = DFRN::relocate($owner, $owner['uid']);
+ } elseif ($followup) {
+ $msgitems = [$target_item];
+ $atom = DFRN::entries($msgitems, $owner);
+ } else {
+ $msgitems = [];
+ foreach ($items as $item) {
+ // Only add the parent when we don't delete other items.
+ if (($target_item['id'] == $item['id']) || ($cmd != self::DELETION)) {
+ $item["entry:comment-allow"] = true;
+ $item["entry:cid"] = ($top_level ? $contact['id'] : 0);
+ $msgitems[] = $item;
+ }
+ }
+ $atom = DFRN::entries($msgitems, $owner);
}
- foreach ($contacts as $contact) {
- if ($contact['id'] == $item['contact-id']) {
- return $contact;
+
+ logger('Notifier entry: ' . $contact["url"] . ' ' . $target_item["guid"] . ' entry: ' . $atom, LOGGER_DATA);
+
+ $basepath = implode('/', array_slice(explode('/', $contact['url']), 0, 3));
+
+ // perform local delivery if we are on the same site
+
+ if (link_compare($basepath, System::baseUrl())) {
+ $condition = ['nurl' => normalise_link($contact['url']), 'self' => true];
+ $target_self = dba::selectFirst('contact', ['uid'], $condition);
+ if (!DBM::is_result($target_self)) {
+ return;
+ }
+ $target_uid = $target_self['uid'];
+
+ // Check if the user has got this contact
+ $cid = Contact::getIdForURL($owner['url'], $target_uid);
+ if (!$cid) {
+ // Otherwise there should be a public contact
+ $cid = Contact::getIdForURL($owner['url']);
+ if (!$cid) {
+ return;
+ }
+ }
+
+ // We now have some contact, so we fetch it
+ $target_importer = dba::fetch_first("SELECT *, `name` as `senderName`
+ FROM `contact`
+ WHERE NOT `blocked` AND `id` = ? LIMIT 1",
+ $cid);
+
+ // This should never fail
+ if (!DBM::is_result($target_importer)) {
+ return;
+ }
+
+ // Set the user id. This is important if this is a public contact
+ $target_importer['importer_uid'] = $target_uid;
+ DFRN::import($atom, $target_importer);
+ return;
+ }
+
+ // We don't have a relationship with contacts on a public post.
+ // Se we transmit with the new method and via Diaspora as a fallback
+ if ($items[0]['uid'] == 0) {
+ // Transmit in public if it's a relay post
+ $public_dfrn = ($contact['contact-type'] == ACCOUNT_TYPE_RELAY);
+
+ $deliver_status = DFRN::transmit($owner, $contact, $atom, $public_dfrn);
+ if (($deliver_status < 200) || ($deliver_status > 299)) {
+ // Transmit via Diaspora if not possible via Friendica
+ self::deliverDiaspora($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup);
+ return;
+ }
+ } else {
+ $deliver_status = DFRN::deliver($owner, $contact, $atom);
+ }
+
+ logger('Delivery to ' . $contact["url"] . ' with guid ' . $target_item["guid"] . ' returns ' . $deliver_status);
+
+ if ($deliver_status < 0) {
+ logger('Delivery failed: queuing message ' . $target_item["guid"] );
+ Queue::add($contact['id'], NETWORK_DFRN, $atom, false, $target_item['guid']);
+ }
+
+ if (($deliver_status >= 200) && ($deliver_status <= 299)) {
+ // We successfully delivered a message, the contact is alive
+ Contact::unmarkForArchival($contact);
+ } else {
+ // The message could not be delivered. We mark the contact as "dead"
+ Contact::markForArchival($contact);
+ }
+ }
+
+ /**
+ * @brief Deliver content via Diaspora
+ *
+ * @param string $cmd Command
+ * @param array $contact Contact record of the receiver
+ * @param array $owner Owner record of the sender
+ * @param array $items Item record of the content and the parent
+ * @param array $target_item Item record of the content
+ * @param boolean $public_message Is the content public?
+ * @param boolean $top_level Is it a thread starter?
+ * @param boolean $followup Is it an answer to a remote post?
+ */
+ private static function deliverDiaspora($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup)
+ {
+ // We don't treat Forum posts as "wall-to-wall" to be able to post them via Diaspora
+ $walltowall = $top_level && ($owner['id'] != $items[0]['contact-id']) & ($owner['account-type'] != ACCOUNT_TYPE_COMMUNITY);
+
+ if ($public_message) {
+ $loc = 'public batch ' . $contact['batch'];
+ } else {
+ $loc = $contact['addr'];
+ }
+
+ logger('Deliver ' . $target_item["guid"] . ' via Diaspora to ' . $loc);
+
+ if (Config::get('system', 'dfrn_only') || !Config::get('system', 'diaspora_enabled')) {
+ return;
+ }
+ if ($cmd == self::MAIL) {
+ Diaspora::sendMail($target_item, $owner, $contact);
+ return;
+ }
+
+ if ($cmd == self::SUGGESTION) {
+ return;
+ }
+ if (!$contact['pubkey'] && !$public_message) {
+ return;
+ }
+ if (($target_item['deleted']) && (($target_item['uri'] === $target_item['parent-uri']) || $followup)) {
+ // top-level retraction
+ logger('diaspora retract: ' . $loc);
+ Diaspora::sendRetraction($target_item, $owner, $contact, $public_message);
+ return;
+ } elseif ($cmd == self::RELOCATION) {
+ Diaspora::sendAccountMigration($owner, $contact, $owner['uid']);
+ return;
+ } elseif ($followup) {
+ // send comments and likes to owner to relay
+ logger('diaspora followup: ' . $loc);
+ Diaspora::sendFollowup($target_item, $owner, $contact, $public_message);
+ return;
+ } elseif ($target_item['uri'] !== $target_item['parent-uri']) {
+ // we are the relay - send comments, likes and relayable_retractions to our conversants
+ logger('diaspora relay: ' . $loc);
+ Diaspora::sendRelay($target_item, $owner, $contact, $public_message);
+ return;
+ } elseif ($top_level && !$walltowall) {
+ // currently no workable solution for sending walltowall
+ logger('diaspora status: ' . $loc);
+ Diaspora::sendStatus($target_item, $owner, $contact, $public_message);
+ return;
+ }
+
+ logger('Unknown mode ' . $cmd . ' for ' . $loc);
+ }
+
+ /**
+ * @brief Deliver content via mail
+ *
+ * @param string $cmd Command
+ * @param array $contact Contact record of the receiver
+ * @param array $owner Owner record of the sender
+ * @param array $target_item Item record of the content
+ */
+ private static function deliverMail($cmd, $contact, $owner, $target_item)
+ {
+ if (Config::get('system','dfrn_only')) {
+ return;
+ }
+ // WARNING: does not currently convert to RFC2047 header encodings, etc.
+
+ $addr = $contact['addr'];
+ if (!strlen($addr)) {
+ return;
+ }
+
+ if (!in_array($cmd, [self::POST, self::COMMENT])) {
+ return;
+ }
+
+ $local_user = dba::selectFirst('user', [], ['uid' => $owner['uid']]);
+ if (!DBM::is_result($local_user)) {
+ return;
+ }
+
+ logger('Deliver ' . $target_item["guid"] . ' via mail to ' . $contact['addr']);
+
+ $reply_to = '';
+ $mailacct = dba::selectFirst('mailacct', ['reply_to'], ['uid' => $owner['uid']]);
+ if (DBM::is_result($mailacct) && !empty($mailacct['reply_to'])) {
+ $reply_to = $mailacct['reply_to'];
+ }
+
+ $subject = ($target_item['title'] ? Email::encodeHeader($target_item['title'], 'UTF-8') : L10n::t("\x28no subject\x29"));
+
+ // only expose our real email address to true friends
+
+ if (($contact['rel'] == CONTACT_IS_FRIEND) && !$contact['blocked']) {
+ if ($reply_to) {
+ $headers = 'From: ' . Email::encodeHeader($local_user['username'],'UTF-8') . ' <' . $reply_to.'>' . "\n";
+ $headers .= 'Sender: ' . $local_user['email'] . "\n";
+ } else {
+ $headers = 'From: ' . Email::encodeHeader($local_user['username'],'UTF-8').' <' . $local_user['email'] . '>' . "\n";
+ }
+ } else {
+ $headers = 'From: '. Email::encodeHeader($local_user['username'], 'UTF-8') . ' get_hostname() . '>' . "\n";
+ }
+
+ $headers .= 'Message-Id: <' . Email::iri2msgid($target_item['uri']) . '>' . "\n";
+
+ if ($target_item['uri'] !== $target_item['parent-uri']) {
+ $headers .= "References: <" . Email::iri2msgid($target_item["parent-uri"]) . ">";
+
+ // If Threading is enabled, write down the correct parent
+ if (($target_item["thr-parent"] != "") && ($target_item["thr-parent"] != $target_item["parent-uri"])) {
+ $headers .= " <".Email::iri2msgid($target_item["thr-parent"]).">";
+ }
+ $headers .= "\n";
+
+ if (empty($target_item['title'])) {
+ $condition = ['uri' => $target_item['parent-uri'], 'uid' => $owner['uid']];
+ $title = dba::selectFirst('item', ['title'], $condition);
+ if (DBM::is_result($title) && ($title['title'] != '')) {
+ $subject = $title['title'];
+ } else {
+ $condition = ['parent-uri' => $target_item['parent-uri'], 'uid' => $owner['uid']];
+ $title = dba::selectFirst('item', ['title'], $condition);
+ if (DBM::is_result($title) && ($title['title'] != '')) {
+ $subject = $title['title'];
+ }
+ }
+ }
+ if (strncasecmp($subject, 'RE:', 3)) {
+ $subject = 'Re: ' . $subject;
}
}
- return false;
+ Email::send($addr, $subject, $headers, $target_item);
}
}
diff --git a/src/Worker/PubSubPublish.php b/src/Worker/PubSubPublish.php
index de26eab9c..bd4aa0390 100644
--- a/src/Worker/PubSubPublish.php
+++ b/src/Worker/PubSubPublish.php
@@ -68,7 +68,7 @@ class PubSubPublish {
$rr['topic']),
"X-Hub-Signature: sha1=".$hmac_sig];
- logger('POST '.print_r($headers, true)."\n".$params, LOGGER_DEBUG);
+ logger('POST '.print_r($headers, true)."\n".$params, LOGGER_DATA);
Network::post($rr['callback_url'], $params, $headers);
$ret = $a->get_curl_code();
diff --git a/src/Worker/Queue.php b/src/Worker/Queue.php
index 57f6e9277..345da39ab 100644
--- a/src/Worker/Queue.php
+++ b/src/Worker/Queue.php
@@ -63,7 +63,7 @@ class Queue
return;
}
- if (empty($contact['notify'])) {
+ if (empty($contact['notify']) || $contact['archive']) {
QueueModel::removeItem($q_item['id']);
return;
}
diff --git a/tests/BaseObjectTest.php b/tests/BaseObjectTest.php
index 73eb4720b..b7b90b138 100644
--- a/tests/BaseObjectTest.php
+++ b/tests/BaseObjectTest.php
@@ -7,12 +7,14 @@ namespace Friendica\Test;
use Friendica\App;
use Friendica\BaseObject;
-use PHPUnit_Framework_TestCase;
-
+// backward compatibility
+if (!class_exists('\PHPUnit\Framework\TestCase')) {
+ class_alias('\PHPUnit_Framework_TestCase', '\PHPUnit\Framework\TestCase');
+}
/**
* Tests for the BaseObject class.
*/
-class BaseObjectTest extends PHPUnit_Framework_TestCase
+class BaseObjectTest extends \PHPUnit\Framework\TestCase
{
/**
diff --git a/tests/TextTest.php b/tests/TextTest.php
index 3a15b9766..3cda2342f 100644
--- a/tests/TextTest.php
+++ b/tests/TextTest.php
@@ -5,12 +5,15 @@
namespace Friendica\Test;
-use PHPUnit_Framework_TestCase;
+// backward compatibility
+if (!class_exists('\PHPUnit\Framework\TestCase')) {
+ class_alias('\PHPUnit_Framework_TestCase', '\PHPUnit\Framework\TestCase');
+}
/**
* Tests for text functions.
*/
-class TextTest extends PHPUnit_Framework_TestCase
+class TextTest extends \PHPUnit\Framework\TestCase
{
/**
@@ -61,10 +64,10 @@ class TextTest extends PHPUnit_Framework_TestCase
public function testAutonameLength1()
{
$autoname1=autoname(1);
- $this->assertEquals(1, count($autoname1));
+ $this->assertEquals(1, strlen($autoname1));
$autoname2=autoname(1);
- $this->assertEquals(1, count($autoname2));
+ $this->assertEquals(1, strlen($autoname2));
}
/**
diff --git a/util/credits.txt b/util/credits.txt
index c6a5c3f31..e24f45f8a 100644
--- a/util/credits.txt
+++ b/util/credits.txt
@@ -12,6 +12,7 @@ Alexandre Alapetite
AlfredSK
Andi Stadler
Andreas H.
+Andreas Neustifter
Andrej Stieben
André Alves
André Lohan
@@ -209,4 +210,4 @@ zotlabs
zottel
Zvi ben Yaakov (a.k.a rdc)
Михаил
-朱陈锬
\ No newline at end of file
+朱陈锬
diff --git a/util/htconfig.vagrant.php b/util/htconfig.vagrant.php
index 9c96687e7..623b587ef 100644
--- a/util/htconfig.vagrant.php
+++ b/util/htconfig.vagrant.php
@@ -65,7 +65,7 @@ $a->config['system']['no_regfullname'] = true;
//$a->config['system']['block_local_dir'] = false;
// Location of the global directory
-$a->config['system']['directory'] = 'http://dir.friendica.social';
+$a->config['system']['directory'] = 'https://dir.friendica.social';
// turn on friendica's log
$a->config['system']['debugging'] = true;
diff --git a/util/messages.po b/util/messages.po
index 0cff92dbb..36c004bbb 100644
--- a/util/messages.po
+++ b/util/messages.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-04-20 09:30+0200\n"
+"POT-Creation-Date: 2018-04-22 11:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -18,66 +18,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
-#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21
-#: mod/display.php:72 mod/display.php:252 mod/display.php:354 mod/admin.php:276
-#: mod/admin.php:1854 mod/admin.php:2102
-msgid "Item not found."
-msgstr ""
-
-#: include/items.php:382
-msgid "Do you really want to delete this item?"
-msgstr ""
-
-#: include/items.php:384 mod/api.php:110 mod/suggest.php:38
-#: mod/dfrn_request.php:653 mod/message.php:138 mod/contacts.php:472
-#: mod/follow.php:150 mod/profiles.php:636 mod/profiles.php:639
-#: mod/profiles.php:661 mod/register.php:237 mod/settings.php:1105
-#: mod/settings.php:1111 mod/settings.php:1118 mod/settings.php:1122
-#: mod/settings.php:1126 mod/settings.php:1130 mod/settings.php:1134
-#: mod/settings.php:1138 mod/settings.php:1158 mod/settings.php:1159
-#: mod/settings.php:1160 mod/settings.php:1161 mod/settings.php:1162
-msgid "Yes"
-msgstr ""
-
-#: include/items.php:387 include/conversation.php:1352 mod/fbrowser.php:103
-#: mod/fbrowser.php:134 mod/suggest.php:41 mod/dfrn_request.php:663
-#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149 mod/message.php:141
-#: mod/photos.php:248 mod/photos.php:324 mod/videos.php:147
-#: mod/contacts.php:475 mod/unfollow.php:117 mod/follow.php:161
-#: mod/settings.php:676 mod/settings.php:702
-msgid "Cancel"
-msgstr ""
-
-#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40
-#: mod/attach.php:38 mod/common.php:26 mod/crepair.php:98 mod/nogroup.php:28
-#: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28
-#: mod/notifications.php:73 mod/dfrn_confirm.php:68 mod/manage.php:131
-#: mod/wall_attach.php:74 mod/wall_attach.php:77 mod/poke.php:150
-#: mod/regmod.php:108 mod/viewcontacts.php:57 mod/wall_upload.php:103
-#: mod/wall_upload.php:106 mod/wallmessage.php:16 mod/wallmessage.php:40
-#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/editpost.php:18
-#: mod/fsuggest.php:80 mod/group.php:26 mod/message.php:59 mod/message.php:104
-#: mod/notes.php:30 mod/photos.php:174 mod/photos.php:1051 mod/cal.php:304
-#: mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43
-#: mod/delegate.php:54 mod/events.php:194 mod/item.php:160
-#: mod/ostatus_subscribe.php:16 mod/profile_photo.php:30
-#: mod/profile_photo.php:176 mod/profile_photo.php:187
-#: mod/profile_photo.php:200 mod/unfollow.php:15 mod/unfollow.php:57
-#: mod/unfollow.php:90 mod/dirfind.php:25 mod/follow.php:17 mod/follow.php:54
-#: mod/follow.php:118 mod/invite.php:20 mod/invite.php:111 mod/network.php:32
-#: mod/profiles.php:182 mod/profiles.php:606 mod/register.php:53
-#: mod/settings.php:42 mod/settings.php:141 mod/settings.php:665 index.php:444
-msgid "Permission denied."
-msgstr ""
-
-#: include/items.php:471
-msgid "Archives"
-msgstr ""
-
-#: include/items.php:477 view/theme/vier/theme.php:259
-#: src/Content/ForumManager.php:130 src/Content/Widget.php:312
-#: src/Object/Post.php:430 src/App.php:512
-msgid "show more"
+#: boot.php:795
+#, php-format
+msgid "Update %s failed. See error logs."
msgstr ""
#: include/api.php:1202
@@ -99,457 +42,15 @@ msgstr[1] ""
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgstr ""
-#: include/api.php:4523 mod/photos.php:88 mod/photos.php:194 mod/photos.php:722
-#: mod/photos.php:1149 mod/photos.php:1166 mod/photos.php:1684
-#: mod/profile_photo.php:85 mod/profile_photo.php:93 mod/profile_photo.php:101
-#: mod/profile_photo.php:211 mod/profile_photo.php:302
-#: mod/profile_photo.php:312 src/Model/User.php:553 src/Model/User.php:561
-#: src/Model/User.php:569
+#: include/api.php:4523 src/Model/User.php:549 src/Model/User.php:557
+#: src/Model/User.php:565 mod/profile_photo.php:85 mod/profile_photo.php:93
+#: mod/profile_photo.php:101 mod/profile_photo.php:211
+#: mod/profile_photo.php:302 mod/profile_photo.php:312 mod/photos.php:88
+#: mod/photos.php:194 mod/photos.php:722 mod/photos.php:1149
+#: mod/photos.php:1166 mod/photos.php:1684
msgid "Profile Photos"
msgstr ""
-#: include/conversation.php:144 include/conversation.php:282
-#: include/text.php:1753 src/Model/Item.php:1795
-msgid "event"
-msgstr ""
-
-#: include/conversation.php:147 include/conversation.php:157
-#: include/conversation.php:285 include/conversation.php:294
-#: mod/subthread.php:97 mod/tagger.php:72 src/Model/Item.php:1793
-#: src/Protocol/Diaspora.php:2039
-msgid "status"
-msgstr ""
-
-#: include/conversation.php:152 include/conversation.php:290
-#: include/text.php:1755 mod/subthread.php:97 mod/tagger.php:72
-#: src/Model/Item.php:1793
-msgid "photo"
-msgstr ""
-
-#: include/conversation.php:164 src/Model/Item.php:1666
-#: src/Protocol/Diaspora.php:2035
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr ""
-
-#: include/conversation.php:167 src/Model/Item.php:1671
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr ""
-
-#: include/conversation.php:170
-#, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr ""
-
-#: include/conversation.php:173
-#, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr ""
-
-#: include/conversation.php:176
-#, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr ""
-
-#: include/conversation.php:209 mod/dfrn_confirm.php:431
-#: src/Protocol/Diaspora.php:2510
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr ""
-
-#: include/conversation.php:250
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr ""
-
-#: include/conversation.php:304 mod/tagger.php:110
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr ""
-
-#: include/conversation.php:331
-msgid "post/item"
-msgstr ""
-
-#: include/conversation.php:332
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr ""
-
-#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:355
-msgid "Likes"
-msgstr ""
-
-#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:359
-msgid "Dislikes"
-msgstr ""
-
-#: include/conversation.php:606 include/conversation.php:1661
-#: mod/photos.php:1502
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/conversation.php:606 mod/photos.php:1502
-msgid "Not attending"
-msgstr ""
-
-#: include/conversation.php:606 mod/photos.php:1502
-msgid "Might attend"
-msgstr ""
-
-#: include/conversation.php:718 mod/photos.php:1569 src/Object/Post.php:178
-msgid "Select"
-msgstr ""
-
-#: include/conversation.php:719 mod/photos.php:1570 mod/contacts.php:830
-#: mod/contacts.php:1035 mod/admin.php:1798 mod/settings.php:738
-#: src/Object/Post.php:179
-msgid "Delete"
-msgstr ""
-
-#: include/conversation.php:757 src/Object/Post.php:363 src/Object/Post.php:364
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr ""
-
-#: include/conversation.php:769 src/Object/Post.php:351
-msgid "Categories:"
-msgstr ""
-
-#: include/conversation.php:770 src/Object/Post.php:352
-msgid "Filed under:"
-msgstr ""
-
-#: include/conversation.php:777 src/Object/Post.php:377
-#, php-format
-msgid "%s from %s"
-msgstr ""
-
-#: include/conversation.php:792
-msgid "View in context"
-msgstr ""
-
-#: include/conversation.php:794 include/conversation.php:1334
-#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:264
-#: mod/message.php:433 mod/photos.php:1473 src/Object/Post.php:402
-msgid "Please wait"
-msgstr ""
-
-#: include/conversation.php:865
-msgid "remove"
-msgstr ""
-
-#: include/conversation.php:869
-msgid "Delete Selected Items"
-msgstr ""
-
-#: include/conversation.php:1039 view/theme/frio/theme.php:352
-msgid "Follow Thread"
-msgstr ""
-
-#: include/conversation.php:1040 src/Model/Contact.php:652
-msgid "View Status"
-msgstr ""
-
-#: include/conversation.php:1041 include/conversation.php:1057
-#: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89
-#: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:592
-#: src/Model/Contact.php:605 src/Model/Contact.php:653
-msgid "View Profile"
-msgstr ""
-
-#: include/conversation.php:1042 src/Model/Contact.php:654
-msgid "View Photos"
-msgstr ""
-
-#: include/conversation.php:1043 src/Model/Contact.php:655
-msgid "Network Posts"
-msgstr ""
-
-#: include/conversation.php:1044 src/Model/Contact.php:656
-msgid "View Contact"
-msgstr ""
-
-#: include/conversation.php:1045 src/Model/Contact.php:658
-msgid "Send PM"
-msgstr ""
-
-#: include/conversation.php:1049 src/Model/Contact.php:659
-msgid "Poke"
-msgstr ""
-
-#: include/conversation.php:1054 mod/allfriends.php:74 mod/suggest.php:83
-#: mod/match.php:90 mod/contacts.php:596 mod/dirfind.php:218 mod/follow.php:143
-#: src/Content/Widget.php:61 src/Model/Contact.php:606
-msgid "Connect/Follow"
-msgstr ""
-
-#: include/conversation.php:1173
-#, php-format
-msgid "%s likes this."
-msgstr ""
-
-#: include/conversation.php:1176
-#, php-format
-msgid "%s doesn't like this."
-msgstr ""
-
-#: include/conversation.php:1179
-#, php-format
-msgid "%s attends."
-msgstr ""
-
-#: include/conversation.php:1182
-#, php-format
-msgid "%s doesn't attend."
-msgstr ""
-
-#: include/conversation.php:1185
-#, php-format
-msgid "%s attends maybe."
-msgstr ""
-
-#: include/conversation.php:1196
-msgid "and"
-msgstr ""
-
-#: include/conversation.php:1202
-#, php-format
-msgid "and %d other people"
-msgstr ""
-
-#: include/conversation.php:1211
-#, php-format
-msgid "%2$d people like this"
-msgstr ""
-
-#: include/conversation.php:1212
-#, php-format
-msgid "%s like this."
-msgstr ""
-
-#: include/conversation.php:1215
-#, php-format
-msgid "%2$d people don't like this"
-msgstr ""
-
-#: include/conversation.php:1216
-#, php-format
-msgid "%s don't like this."
-msgstr ""
-
-#: include/conversation.php:1219
-#, php-format
-msgid "%2$d people attend"
-msgstr ""
-
-#: include/conversation.php:1220
-#, php-format
-msgid "%s attend."
-msgstr ""
-
-#: include/conversation.php:1223
-#, php-format
-msgid "%2$d people don't attend"
-msgstr ""
-
-#: include/conversation.php:1224
-#, php-format
-msgid "%s don't attend."
-msgstr ""
-
-#: include/conversation.php:1227
-#, php-format
-msgid "%2$d people attend maybe"
-msgstr ""
-
-#: include/conversation.php:1228
-#, php-format
-msgid "%s attend maybe."
-msgstr ""
-
-#: include/conversation.php:1258 include/conversation.php:1274
-msgid "Visible to everybody "
-msgstr ""
-
-#: include/conversation.php:1259 include/conversation.php:1275
-#: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:200
-#: mod/message.php:207 mod/message.php:343 mod/message.php:350
-msgid "Please enter a link URL:"
-msgstr ""
-
-#: include/conversation.php:1260 include/conversation.php:1276
-msgid "Please enter a video link/URL:"
-msgstr ""
-
-#: include/conversation.php:1261 include/conversation.php:1277
-msgid "Please enter an audio link/URL:"
-msgstr ""
-
-#: include/conversation.php:1262 include/conversation.php:1278
-msgid "Tag term:"
-msgstr ""
-
-#: include/conversation.php:1263 include/conversation.php:1279 mod/filer.php:34
-msgid "Save to Folder:"
-msgstr ""
-
-#: include/conversation.php:1264 include/conversation.php:1280
-msgid "Where are you right now?"
-msgstr ""
-
-#: include/conversation.php:1265
-msgid "Delete item(s)?"
-msgstr ""
-
-#: include/conversation.php:1312
-msgid "New Post"
-msgstr ""
-
-#: include/conversation.php:1315
-msgid "Share"
-msgstr ""
-
-#: include/conversation.php:1316 mod/wallmessage.php:143 mod/editpost.php:111
-#: mod/message.php:262 mod/message.php:430
-msgid "Upload photo"
-msgstr ""
-
-#: include/conversation.php:1317 mod/editpost.php:112
-msgid "upload photo"
-msgstr ""
-
-#: include/conversation.php:1318 mod/editpost.php:113
-msgid "Attach file"
-msgstr ""
-
-#: include/conversation.php:1319 mod/editpost.php:114
-msgid "attach file"
-msgstr ""
-
-#: include/conversation.php:1320 mod/wallmessage.php:144 mod/editpost.php:115
-#: mod/message.php:263 mod/message.php:431
-msgid "Insert web link"
-msgstr ""
-
-#: include/conversation.php:1321 mod/editpost.php:116
-msgid "web link"
-msgstr ""
-
-#: include/conversation.php:1322 mod/editpost.php:117
-msgid "Insert video link"
-msgstr ""
-
-#: include/conversation.php:1323 mod/editpost.php:118
-msgid "video link"
-msgstr ""
-
-#: include/conversation.php:1324 mod/editpost.php:119
-msgid "Insert audio link"
-msgstr ""
-
-#: include/conversation.php:1325 mod/editpost.php:120
-msgid "audio link"
-msgstr ""
-
-#: include/conversation.php:1326 mod/editpost.php:121
-msgid "Set your location"
-msgstr ""
-
-#: include/conversation.php:1327 mod/editpost.php:122
-msgid "set location"
-msgstr ""
-
-#: include/conversation.php:1328 mod/editpost.php:123
-msgid "Clear browser location"
-msgstr ""
-
-#: include/conversation.php:1329 mod/editpost.php:124
-msgid "clear location"
-msgstr ""
-
-#: include/conversation.php:1331 mod/editpost.php:138
-msgid "Set title"
-msgstr ""
-
-#: include/conversation.php:1333 mod/editpost.php:140
-msgid "Categories (comma-separated list)"
-msgstr ""
-
-#: include/conversation.php:1335 mod/editpost.php:126
-msgid "Permission settings"
-msgstr ""
-
-#: include/conversation.php:1336 mod/editpost.php:155
-msgid "permissions"
-msgstr ""
-
-#: include/conversation.php:1344 mod/editpost.php:135
-msgid "Public post"
-msgstr ""
-
-#: include/conversation.php:1348 mod/editpost.php:146 mod/photos.php:1492
-#: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528
-#: src/Object/Post.php:805
-msgid "Preview"
-msgstr ""
-
-#: include/conversation.php:1357
-msgid "Post to Groups"
-msgstr ""
-
-#: include/conversation.php:1358
-msgid "Post to Contacts"
-msgstr ""
-
-#: include/conversation.php:1359
-msgid "Private post"
-msgstr ""
-
-#: include/conversation.php:1364 mod/editpost.php:153 src/Model/Profile.php:342
-msgid "Message"
-msgstr ""
-
-#: include/conversation.php:1365 mod/editpost.php:154
-msgid "Browser"
-msgstr ""
-
-#: include/conversation.php:1632
-msgid "View all"
-msgstr ""
-
-#: include/conversation.php:1655
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/conversation.php:1658
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/conversation.php:1664
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/conversation.php:1667 src/Content/ContactSelector.php:125
-msgid "Undecided"
-msgid_plural "Undecided"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/dba.php:58
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr ""
-
#: include/enotify.php:31
msgid "Friendica Notification"
msgstr ""
@@ -841,6 +342,458 @@ msgstr ""
msgid "Please visit %s to approve or reject the request."
msgstr ""
+#: include/conversation.php:144 include/conversation.php:282
+#: include/text.php:1753 src/Model/Item.php:1796
+msgid "event"
+msgstr ""
+
+#: include/conversation.php:147 include/conversation.php:157
+#: include/conversation.php:285 include/conversation.php:294
+#: src/Model/Item.php:1794 src/Protocol/Diaspora.php:2039 mod/subthread.php:97
+#: mod/tagger.php:72
+msgid "status"
+msgstr ""
+
+#: include/conversation.php:152 include/conversation.php:290
+#: include/text.php:1755 src/Model/Item.php:1794 mod/subthread.php:97
+#: mod/tagger.php:72
+msgid "photo"
+msgstr ""
+
+#: include/conversation.php:164 src/Model/Item.php:1667
+#: src/Protocol/Diaspora.php:2035
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr ""
+
+#: include/conversation.php:167 src/Model/Item.php:1672
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr ""
+
+#: include/conversation.php:170
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
+msgstr ""
+
+#: include/conversation.php:173
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr ""
+
+#: include/conversation.php:176
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr ""
+
+#: include/conversation.php:209 src/Protocol/Diaspora.php:2510
+#: mod/dfrn_confirm.php:431
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr ""
+
+#: include/conversation.php:250
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr ""
+
+#: include/conversation.php:304 mod/tagger.php:110
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr ""
+
+#: include/conversation.php:331
+msgid "post/item"
+msgstr ""
+
+#: include/conversation.php:332
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr ""
+
+#: include/conversation.php:605 mod/profiles.php:355 mod/photos.php:1501
+msgid "Likes"
+msgstr ""
+
+#: include/conversation.php:605 mod/profiles.php:359 mod/photos.php:1501
+msgid "Dislikes"
+msgstr ""
+
+#: include/conversation.php:606 include/conversation.php:1661
+#: mod/photos.php:1502
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/conversation.php:606 mod/photos.php:1502
+msgid "Not attending"
+msgstr ""
+
+#: include/conversation.php:606 mod/photos.php:1502
+msgid "Might attend"
+msgstr ""
+
+#: include/conversation.php:718 src/Object/Post.php:178 mod/photos.php:1569
+msgid "Select"
+msgstr ""
+
+#: include/conversation.php:719 src/Object/Post.php:179 mod/settings.php:738
+#: mod/admin.php:1812 mod/photos.php:1570 mod/contacts.php:830
+#: mod/contacts.php:1035
+msgid "Delete"
+msgstr ""
+
+#: include/conversation.php:757 src/Object/Post.php:363 src/Object/Post.php:364
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr ""
+
+#: include/conversation.php:769 src/Object/Post.php:351
+msgid "Categories:"
+msgstr ""
+
+#: include/conversation.php:770 src/Object/Post.php:352
+msgid "Filed under:"
+msgstr ""
+
+#: include/conversation.php:777 src/Object/Post.php:377
+#, php-format
+msgid "%s from %s"
+msgstr ""
+
+#: include/conversation.php:792
+msgid "View in context"
+msgstr ""
+
+#: include/conversation.php:794 include/conversation.php:1334
+#: src/Object/Post.php:402 mod/photos.php:1473 mod/message.php:264
+#: mod/message.php:433 mod/wallmessage.php:145 mod/editpost.php:125
+msgid "Please wait"
+msgstr ""
+
+#: include/conversation.php:865
+msgid "remove"
+msgstr ""
+
+#: include/conversation.php:869
+msgid "Delete Selected Items"
+msgstr ""
+
+#: include/conversation.php:1039 view/theme/frio/theme.php:352
+msgid "Follow Thread"
+msgstr ""
+
+#: include/conversation.php:1040 src/Model/Contact.php:652
+msgid "View Status"
+msgstr ""
+
+#: include/conversation.php:1041 include/conversation.php:1057
+#: src/Model/Contact.php:592 src/Model/Contact.php:605
+#: src/Model/Contact.php:653 mod/directory.php:159 mod/dirfind.php:217
+#: mod/suggest.php:82 mod/allfriends.php:73 mod/match.php:89
+msgid "View Profile"
+msgstr ""
+
+#: include/conversation.php:1042 src/Model/Contact.php:654
+msgid "View Photos"
+msgstr ""
+
+#: include/conversation.php:1043 src/Model/Contact.php:655
+msgid "Network Posts"
+msgstr ""
+
+#: include/conversation.php:1044 src/Model/Contact.php:656
+msgid "View Contact"
+msgstr ""
+
+#: include/conversation.php:1045 src/Model/Contact.php:658
+msgid "Send PM"
+msgstr ""
+
+#: include/conversation.php:1049 src/Model/Contact.php:659
+msgid "Poke"
+msgstr ""
+
+#: include/conversation.php:1054 src/Model/Contact.php:606
+#: src/Content/Widget.php:61 mod/dirfind.php:218 mod/suggest.php:83
+#: mod/allfriends.php:74 mod/follow.php:143 mod/contacts.php:596
+#: mod/match.php:90
+msgid "Connect/Follow"
+msgstr ""
+
+#: include/conversation.php:1173
+#, php-format
+msgid "%s likes this."
+msgstr ""
+
+#: include/conversation.php:1176
+#, php-format
+msgid "%s doesn't like this."
+msgstr ""
+
+#: include/conversation.php:1179
+#, php-format
+msgid "%s attends."
+msgstr ""
+
+#: include/conversation.php:1182
+#, php-format
+msgid "%s doesn't attend."
+msgstr ""
+
+#: include/conversation.php:1185
+#, php-format
+msgid "%s attends maybe."
+msgstr ""
+
+#: include/conversation.php:1196
+msgid "and"
+msgstr ""
+
+#: include/conversation.php:1202
+#, php-format
+msgid "and %d other people"
+msgstr ""
+
+#: include/conversation.php:1211
+#, php-format
+msgid "%2$d people like this"
+msgstr ""
+
+#: include/conversation.php:1212
+#, php-format
+msgid "%s like this."
+msgstr ""
+
+#: include/conversation.php:1215
+#, php-format
+msgid "%2$d people don't like this"
+msgstr ""
+
+#: include/conversation.php:1216
+#, php-format
+msgid "%s don't like this."
+msgstr ""
+
+#: include/conversation.php:1219
+#, php-format
+msgid "%2$d people attend"
+msgstr ""
+
+#: include/conversation.php:1220
+#, php-format
+msgid "%s attend."
+msgstr ""
+
+#: include/conversation.php:1223
+#, php-format
+msgid "%2$d people don't attend"
+msgstr ""
+
+#: include/conversation.php:1224
+#, php-format
+msgid "%s don't attend."
+msgstr ""
+
+#: include/conversation.php:1227
+#, php-format
+msgid "%2$d people attend maybe"
+msgstr ""
+
+#: include/conversation.php:1228
+#, php-format
+msgid "%s attend maybe."
+msgstr ""
+
+#: include/conversation.php:1258 include/conversation.php:1274
+msgid "Visible to everybody "
+msgstr ""
+
+#: include/conversation.php:1259 include/conversation.php:1275
+#: mod/message.php:200 mod/message.php:207 mod/message.php:343
+#: mod/message.php:350 mod/wallmessage.php:120 mod/wallmessage.php:127
+msgid "Please enter a link URL:"
+msgstr ""
+
+#: include/conversation.php:1260 include/conversation.php:1276
+msgid "Please enter a video link/URL:"
+msgstr ""
+
+#: include/conversation.php:1261 include/conversation.php:1277
+msgid "Please enter an audio link/URL:"
+msgstr ""
+
+#: include/conversation.php:1262 include/conversation.php:1278
+msgid "Tag term:"
+msgstr ""
+
+#: include/conversation.php:1263 include/conversation.php:1279 mod/filer.php:34
+msgid "Save to Folder:"
+msgstr ""
+
+#: include/conversation.php:1264 include/conversation.php:1280
+msgid "Where are you right now?"
+msgstr ""
+
+#: include/conversation.php:1265
+msgid "Delete item(s)?"
+msgstr ""
+
+#: include/conversation.php:1312
+msgid "New Post"
+msgstr ""
+
+#: include/conversation.php:1315
+msgid "Share"
+msgstr ""
+
+#: include/conversation.php:1316 mod/message.php:262 mod/message.php:430
+#: mod/wallmessage.php:143 mod/editpost.php:111
+msgid "Upload photo"
+msgstr ""
+
+#: include/conversation.php:1317 mod/editpost.php:112
+msgid "upload photo"
+msgstr ""
+
+#: include/conversation.php:1318 mod/editpost.php:113
+msgid "Attach file"
+msgstr ""
+
+#: include/conversation.php:1319 mod/editpost.php:114
+msgid "attach file"
+msgstr ""
+
+#: include/conversation.php:1320 mod/message.php:263 mod/message.php:431
+#: mod/wallmessage.php:144 mod/editpost.php:115
+msgid "Insert web link"
+msgstr ""
+
+#: include/conversation.php:1321 mod/editpost.php:116
+msgid "web link"
+msgstr ""
+
+#: include/conversation.php:1322 mod/editpost.php:117
+msgid "Insert video link"
+msgstr ""
+
+#: include/conversation.php:1323 mod/editpost.php:118
+msgid "video link"
+msgstr ""
+
+#: include/conversation.php:1324 mod/editpost.php:119
+msgid "Insert audio link"
+msgstr ""
+
+#: include/conversation.php:1325 mod/editpost.php:120
+msgid "audio link"
+msgstr ""
+
+#: include/conversation.php:1326 mod/editpost.php:121
+msgid "Set your location"
+msgstr ""
+
+#: include/conversation.php:1327 mod/editpost.php:122
+msgid "set location"
+msgstr ""
+
+#: include/conversation.php:1328 mod/editpost.php:123
+msgid "Clear browser location"
+msgstr ""
+
+#: include/conversation.php:1329 mod/editpost.php:124
+msgid "clear location"
+msgstr ""
+
+#: include/conversation.php:1331 mod/editpost.php:138
+msgid "Set title"
+msgstr ""
+
+#: include/conversation.php:1333 mod/editpost.php:140
+msgid "Categories (comma-separated list)"
+msgstr ""
+
+#: include/conversation.php:1335 mod/editpost.php:126
+msgid "Permission settings"
+msgstr ""
+
+#: include/conversation.php:1336 mod/editpost.php:155
+msgid "permissions"
+msgstr ""
+
+#: include/conversation.php:1344 mod/editpost.php:135
+msgid "Public post"
+msgstr ""
+
+#: include/conversation.php:1348 src/Object/Post.php:805 mod/events.php:528
+#: mod/photos.php:1492 mod/photos.php:1531 mod/photos.php:1604
+#: mod/editpost.php:146
+msgid "Preview"
+msgstr ""
+
+#: include/conversation.php:1352 include/items.php:387 mod/suggest.php:41
+#: mod/settings.php:676 mod/settings.php:702 mod/fbrowser.php:103
+#: mod/fbrowser.php:134 mod/photos.php:248 mod/photos.php:324
+#: mod/message.php:141 mod/videos.php:147 mod/unfollow.php:117
+#: mod/dfrn_request.php:663 mod/follow.php:161 mod/contacts.php:475
+#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149
+msgid "Cancel"
+msgstr ""
+
+#: include/conversation.php:1357
+msgid "Post to Groups"
+msgstr ""
+
+#: include/conversation.php:1358
+msgid "Post to Contacts"
+msgstr ""
+
+#: include/conversation.php:1359
+msgid "Private post"
+msgstr ""
+
+#: include/conversation.php:1364 src/Model/Profile.php:342 mod/editpost.php:153
+msgid "Message"
+msgstr ""
+
+#: include/conversation.php:1365 mod/editpost.php:154
+msgid "Browser"
+msgstr ""
+
+#: include/conversation.php:1632
+msgid "View all"
+msgstr ""
+
+#: include/conversation.php:1655
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/conversation.php:1658
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/conversation.php:1664
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/conversation.php:1667 src/Content/ContactSelector.php:125
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/dba.php:58
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr ""
+
#: include/security.php:81
msgid "Welcome "
msgstr ""
@@ -906,7 +859,7 @@ msgstr[1] ""
msgid "View Contacts"
msgstr ""
-#: include/text.php:1010 mod/filer.php:35 mod/editpost.php:110 mod/notes.php:67
+#: include/text.php:1010 mod/notes.php:67 mod/filer.php:35 mod/editpost.php:110
msgid "Save"
msgstr ""
@@ -914,7 +867,7 @@ msgstr ""
msgid "Follow"
msgstr ""
-#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142
+#: include/text.php:1016 src/Content/Nav.php:142 mod/search.php:155
msgid "Search"
msgstr ""
@@ -926,19 +879,19 @@ msgstr ""
msgid "Full Text"
msgstr ""
-#: include/text.php:1026 src/Content/Nav.php:146
-#: src/Content/Widget/TagCloud.php:54
+#: include/text.php:1026 src/Content/Widget/TagCloud.php:54
+#: src/Content/Nav.php:146
msgid "Tags"
msgstr ""
-#: include/text.php:1027 mod/viewcontacts.php:131 mod/contacts.php:814
-#: mod/contacts.php:875 view/theme/frio/theme.php:270 src/Content/Nav.php:147
-#: src/Content/Nav.php:212 src/Model/Profile.php:959 src/Model/Profile.php:962
+#: include/text.php:1027 src/Model/Profile.php:961 src/Model/Profile.php:964
+#: src/Content/Nav.php:147 src/Content/Nav.php:208 mod/viewcontacts.php:131
+#: mod/contacts.php:814 mod/contacts.php:875 view/theme/frio/theme.php:270
msgid "Contacts"
msgstr ""
-#: include/text.php:1030 view/theme/vier/theme.php:254
-#: src/Content/ForumManager.php:125 src/Content/Nav.php:151
+#: include/text.php:1030 src/Content/ForumManager.php:125
+#: src/Content/Nav.php:151 view/theme/vier/theme.php:254
msgid "Forums"
msgstr ""
@@ -990,7 +943,7 @@ msgstr ""
msgid "rebuffed"
msgstr ""
-#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:379
+#: include/text.php:1093 src/Model/Event.php:379 mod/settings.php:943
msgid "Monday"
msgstr ""
@@ -1014,7 +967,7 @@ msgstr ""
msgid "Saturday"
msgstr ""
-#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:378
+#: include/text.php:1093 src/Model/Event.php:378 mod/settings.php:943
msgid "Sunday"
msgstr ""
@@ -1182,450 +1135,2267 @@ msgstr ""
msgid "Item filed"
msgstr ""
-#: mod/allfriends.php:51
-msgid "No friends to display."
+#: include/items.php:342 mod/display.php:72 mod/display.php:252
+#: mod/display.php:354 mod/admin.php:276 mod/admin.php:1868 mod/admin.php:2116
+#: mod/viewsrc.php:21 mod/notice.php:22
+msgid "Item not found."
msgstr ""
-#: mod/allfriends.php:90 mod/suggest.php:101 mod/match.php:105
-#: mod/dirfind.php:215 src/Content/Widget.php:37 src/Model/Profile.php:297
+#: include/items.php:382
+msgid "Do you really want to delete this item?"
+msgstr ""
+
+#: include/items.php:384 mod/suggest.php:38 mod/profiles.php:636
+#: mod/profiles.php:639 mod/profiles.php:661 mod/api.php:110
+#: mod/settings.php:1105 mod/settings.php:1111 mod/settings.php:1118
+#: mod/settings.php:1122 mod/settings.php:1126 mod/settings.php:1130
+#: mod/settings.php:1134 mod/settings.php:1138 mod/settings.php:1158
+#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161
+#: mod/settings.php:1162 mod/message.php:138 mod/dfrn_request.php:653
+#: mod/follow.php:150 mod/contacts.php:472 mod/register.php:237
+msgid "Yes"
+msgstr ""
+
+#: include/items.php:401 mod/dirfind.php:25 mod/repair_ostatus.php:13
+#: mod/suggest.php:60 mod/profile_photo.php:30 mod/profile_photo.php:176
+#: mod/profile_photo.php:187 mod/profile_photo.php:200 mod/manage.php:131
+#: mod/uimport.php:28 mod/invite.php:20 mod/invite.php:111 mod/network.php:32
+#: mod/profiles.php:182 mod/profiles.php:606 mod/events.php:194
+#: mod/fsuggest.php:80 mod/attach.php:38 mod/allfriends.php:21
+#: mod/viewcontacts.php:57 mod/ostatus_subscribe.php:16 mod/api.php:35
+#: mod/api.php:40 mod/settings.php:42 mod/settings.php:141 mod/settings.php:665
+#: mod/regmod.php:108 mod/group.php:26 mod/delegate.php:25 mod/delegate.php:43
+#: mod/delegate.php:54 mod/photos.php:174 mod/photos.php:1051
+#: mod/nogroup.php:28 mod/message.php:59 mod/message.php:104
+#: mod/unfollow.php:15 mod/unfollow.php:57 mod/unfollow.php:90
+#: mod/wall_attach.php:74 mod/wall_attach.php:77 mod/notes.php:30
+#: mod/crepair.php:98 mod/poke.php:150 mod/notifications.php:73
+#: mod/follow.php:17 mod/follow.php:54 mod/follow.php:118 mod/cal.php:304
+#: mod/contacts.php:386 mod/wallmessage.php:16 mod/wallmessage.php:40
+#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/dfrn_confirm.php:68
+#: mod/wall_upload.php:103 mod/wall_upload.php:106 mod/register.php:53
+#: mod/common.php:26 mod/item.php:160 mod/editpost.php:18 index.php:444
+msgid "Permission denied."
+msgstr ""
+
+#: include/items.php:471
+msgid "Archives"
+msgstr ""
+
+#: include/items.php:477 src/Content/Widget.php:312
+#: src/Content/ForumManager.php:130 src/App.php:512 src/Object/Post.php:430
+#: view/theme/vier/theme.php:259
+msgid "show more"
+msgstr ""
+
+#: src/Model/Item.php:1677
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr ""
+
+#: src/Model/Item.php:1682
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr ""
+
+#: src/Model/Item.php:1687
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr ""
+
+#: src/Model/Contact.php:657
+msgid "Drop Contact"
+msgstr ""
+
+#: src/Model/Contact.php:1060
+msgid "Organisation"
+msgstr ""
+
+#: src/Model/Contact.php:1063
+msgid "News"
+msgstr ""
+
+#: src/Model/Contact.php:1066
+msgid "Forum"
+msgstr ""
+
+#: src/Model/Contact.php:1235 mod/dfrn_request.php:345
+msgid "Disallowed profile URL."
+msgstr ""
+
+#: src/Model/Contact.php:1240 mod/friendica.php:128 mod/admin.php:353
+#: mod/admin.php:371 mod/dfrn_request.php:351
+msgid "Blocked domain"
+msgstr ""
+
+#: src/Model/Contact.php:1245
+msgid "Connect URL missing."
+msgstr ""
+
+#: src/Model/Contact.php:1254
+msgid ""
+"The contact could not be added. Please check the relevant network "
+"credentials in your Settings -> Social Networks page."
+msgstr ""
+
+#: src/Model/Contact.php:1301
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr ""
+
+#: src/Model/Contact.php:1302 src/Model/Contact.php:1316
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr ""
+
+#: src/Model/Contact.php:1314
+msgid "The profile address specified does not provide adequate information."
+msgstr ""
+
+#: src/Model/Contact.php:1319
+msgid "An author or name was not found."
+msgstr ""
+
+#: src/Model/Contact.php:1322
+msgid "No browser URL could be matched to this address."
+msgstr ""
+
+#: src/Model/Contact.php:1325
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr ""
+
+#: src/Model/Contact.php:1326
+msgid "Use mailto: in front of address to force email check."
+msgstr ""
+
+#: src/Model/Contact.php:1332
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr ""
+
+#: src/Model/Contact.php:1337
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr ""
+
+#: src/Model/Contact.php:1388
+msgid "Unable to retrieve contact information."
+msgstr ""
+
+#: src/Model/Contact.php:1537 mod/dfrn_request.php:568 mod/dfrn_confirm.php:661
+msgid "[Name Withheld]"
+msgstr ""
+
+#: src/Model/Contact.php:1605 src/Protocol/DFRN.php:1482
+#, php-format
+msgid "%s's birthday"
+msgstr ""
+
+#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483
+#, php-format
+msgid "Happy Birthday %s"
+msgstr ""
+
+#: src/Model/Mail.php:40 src/Model/Mail.php:174
+msgid "[no subject]"
+msgstr ""
+
+#: src/Model/Profile.php:97
+msgid "Requested account is not available."
+msgstr ""
+
+#: src/Model/Profile.php:118 mod/profile.php:37
+msgid "Requested profile is not available."
+msgstr ""
+
+#: src/Model/Profile.php:168 src/Model/Profile.php:399
+#: src/Model/Profile.php:863
+msgid "Edit profile"
+msgstr ""
+
+#: src/Model/Profile.php:297 src/Content/Widget.php:37 mod/dirfind.php:215
+#: mod/suggest.php:101 mod/allfriends.php:90 mod/match.php:105
msgid "Connect"
msgstr ""
-#: mod/api.php:85 mod/api.php:107
-msgid "Authorize application connection"
+#: src/Model/Profile.php:336
+msgid "Atom feed"
msgstr ""
-#: mod/api.php:86
-msgid "Return to your app and insert this Securty Code:"
+#: src/Model/Profile.php:372 src/Content/Nav.php:205
+msgid "Profiles"
msgstr ""
-#: mod/api.php:95
-msgid "Please login to continue."
+#: src/Model/Profile.php:372
+msgid "Manage/edit profiles"
msgstr ""
-#: mod/api.php:109
-msgid ""
-"Do you want to authorize this application to access your posts and contacts, "
-"and/or create new posts for you?"
+#: src/Model/Profile.php:379 src/Model/Profile.php:401 mod/profiles.php:777
+msgid "Change profile photo"
msgstr ""
-#: mod/api.php:111 mod/dfrn_request.php:653 mod/follow.php:150
-#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661
-#: mod/register.php:238 mod/settings.php:1105 mod/settings.php:1111
-#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1126
-#: mod/settings.php:1130 mod/settings.php:1134 mod/settings.php:1138
-#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
-#: mod/settings.php:1161 mod/settings.php:1162
-msgid "No"
+#: src/Model/Profile.php:380 mod/profiles.php:778
+msgid "Create New Profile"
msgstr ""
-#: mod/apps.php:14 index.php:273
-msgid "You must be logged in to use addons. "
+#: src/Model/Profile.php:389 mod/profiles.php:767
+msgid "Profile Image"
msgstr ""
-#: mod/apps.php:19
-msgid "Applications"
+#: src/Model/Profile.php:392 mod/profiles.php:769
+msgid "visible to everybody"
msgstr ""
-#: mod/apps.php:22
-msgid "No installed applications."
+#: src/Model/Profile.php:393 mod/profiles.php:675 mod/profiles.php:770
+msgid "Edit visibility"
msgstr ""
-#: mod/attach.php:15
-msgid "Item not available."
+#: src/Model/Profile.php:417 src/Model/Event.php:60 src/Model/Event.php:85
+#: src/Model/Event.php:421 src/Model/Event.php:900 mod/directory.php:148
+#: mod/events.php:518 mod/notifications.php:247 mod/contacts.php:660
+msgid "Location:"
msgstr ""
-#: mod/attach.php:25
-msgid "Item was not found."
+#: src/Model/Profile.php:420 src/Model/Profile.php:749 mod/directory.php:151
+#: mod/notifications.php:253
+msgid "Gender:"
msgstr ""
-#: mod/common.php:91
-msgid "No contacts in common."
+#: src/Model/Profile.php:421 src/Model/Profile.php:773 mod/directory.php:152
+msgid "Status:"
msgstr ""
-#: mod/common.php:140 mod/contacts.php:886
-msgid "Common Friends"
+#: src/Model/Profile.php:422 src/Model/Profile.php:790 mod/directory.php:153
+msgid "Homepage:"
msgstr ""
-#: mod/credits.php:18
-msgid "Credits"
+#: src/Model/Profile.php:423 src/Model/Profile.php:810 mod/directory.php:154
+#: mod/notifications.php:249 mod/contacts.php:664
+msgid "About:"
msgstr ""
-#: mod/credits.php:19
-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!"
+#: src/Model/Profile.php:424 mod/contacts.php:662
+msgid "XMPP:"
msgstr ""
-#: mod/crepair.php:87
-msgid "Contact settings applied."
+#: src/Model/Profile.php:520 mod/notifications.php:261 mod/contacts.php:71
+msgid "Network:"
msgstr ""
-#: mod/crepair.php:89
-msgid "Contact update failed."
+#: src/Model/Profile.php:550 src/Model/Profile.php:643
+msgid "g A l F d"
msgstr ""
-#: mod/crepair.php:110 mod/dfrn_confirm.php:131 mod/fsuggest.php:30
-#: mod/fsuggest.php:96
-msgid "Contact not found."
+#: src/Model/Profile.php:551
+msgid "F d"
msgstr ""
-#: mod/crepair.php:114
-msgid ""
-"WARNING: This is highly advanced and if you enter incorrect "
-"information your communications with this contact may stop working."
+#: src/Model/Profile.php:608 src/Model/Profile.php:707
+msgid "[today]"
msgstr ""
-#: mod/crepair.php:115
-msgid ""
-"Please use your browser 'Back' button now if you are "
-"uncertain what to do on this page."
+#: src/Model/Profile.php:619
+msgid "Birthday Reminders"
msgstr ""
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "No mirroring"
+#: src/Model/Profile.php:620
+msgid "Birthdays this week:"
msgstr ""
-#: mod/crepair.php:129
-msgid "Mirror as forwarded posting"
+#: src/Model/Profile.php:694
+msgid "[No description]"
msgstr ""
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "Mirror as my own posting"
+#: src/Model/Profile.php:721
+msgid "Event Reminders"
msgstr ""
-#: mod/crepair.php:144
-msgid "Return to contact editor"
+#: src/Model/Profile.php:722
+msgid "Events this week:"
msgstr ""
-#: mod/crepair.php:146
-msgid "Refetch contact data"
-msgstr ""
-
-#: mod/crepair.php:148 mod/manage.php:184 mod/localtime.php:56 mod/poke.php:199
-#: mod/fsuggest.php:114 mod/message.php:265 mod/message.php:432
-#: mod/photos.php:1080 mod/photos.php:1160 mod/photos.php:1445
-#: mod/photos.php:1491 mod/photos.php:1530 mod/photos.php:1603
-#: mod/contacts.php:610 mod/events.php:530 mod/install.php:251
-#: mod/install.php:290 mod/invite.php:155 mod/profiles.php:672
-#: view/theme/duepuntozero/config.php:71 view/theme/frio/config.php:113
-#: view/theme/quattro/config.php:73 view/theme/vier/config.php:119
-#: src/Object/Post.php:796
-msgid "Submit"
-msgstr ""
-
-#: mod/crepair.php:149
-msgid "Remote Self"
-msgstr ""
-
-#: mod/crepair.php:152
-msgid "Mirror postings from this contact"
-msgstr ""
-
-#: mod/crepair.php:154
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr ""
-
-#: mod/crepair.php:158 mod/admin.php:490 mod/admin.php:1781 mod/admin.php:1793
-#: mod/admin.php:1806 mod/admin.php:1822 mod/settings.php:677
-#: mod/settings.php:703
-msgid "Name"
-msgstr ""
-
-#: mod/crepair.php:159
-msgid "Account Nickname"
-msgstr ""
-
-#: mod/crepair.php:160
-msgid "@Tagname - overrides Name/Nickname"
-msgstr ""
-
-#: mod/crepair.php:161
-msgid "Account URL"
-msgstr ""
-
-#: mod/crepair.php:162
-msgid "Friend Request URL"
-msgstr ""
-
-#: mod/crepair.php:163
-msgid "Friend Confirm URL"
-msgstr ""
-
-#: mod/crepair.php:164
-msgid "Notification Endpoint URL"
-msgstr ""
-
-#: mod/crepair.php:165
-msgid "Poll/Feed URL"
-msgstr ""
-
-#: mod/crepair.php:166
-msgid "New photo from this URL"
-msgstr ""
-
-#: mod/fbrowser.php:34 view/theme/frio/theme.php:261 src/Content/Nav.php:102
-#: src/Model/Profile.php:906
-msgid "Photos"
-msgstr ""
-
-#: mod/fbrowser.php:43 mod/fbrowser.php:68 mod/photos.php:194
-#: mod/photos.php:1062 mod/photos.php:1149 mod/photos.php:1166
-#: mod/photos.php:1659 mod/photos.php:1673 src/Model/Photo.php:244
-#: src/Model/Photo.php:253
-msgid "Contact Photos"
-msgstr ""
-
-#: mod/fbrowser.php:105 mod/fbrowser.php:136 mod/profile_photo.php:250
-msgid "Upload"
-msgstr ""
-
-#: mod/fbrowser.php:131
-msgid "Files"
-msgstr ""
-
-#: mod/fetch.php:16 mod/fetch.php:52 mod/fetch.php:65 mod/help.php:60
-#: mod/p.php:21 mod/p.php:48 mod/p.php:57 index.php:320
-msgid "Not Found"
-msgstr ""
-
-#: mod/hcard.php:18
-msgid "No profile"
-msgstr ""
-
-#: mod/help.php:48
-msgid "Help:"
-msgstr ""
-
-#: mod/help.php:54 view/theme/vier/theme.php:298 src/Content/Nav.php:134
-msgid "Help"
-msgstr ""
-
-#: mod/help.php:63 index.php:325
-msgid "Page not found."
-msgstr ""
-
-#: mod/home.php:39
-#, php-format
-msgid "Welcome to %s"
-msgstr ""
-
-#: mod/lockview.php:38 mod/lockview.php:46
-msgid "Remote privacy information not available."
-msgstr ""
-
-#: mod/lockview.php:55
-msgid "Visible to:"
-msgstr ""
-
-#: mod/maintenance.php:24
-msgid "System down for maintenance"
-msgstr ""
-
-#: mod/newmember.php:11
-msgid "Welcome to Friendica"
-msgstr ""
-
-#: mod/newmember.php:12
-msgid "New Member Checklist"
-msgstr ""
-
-#: mod/newmember.php:14
-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:15
-msgid "Getting Started"
-msgstr ""
-
-#: mod/newmember.php:17
-msgid "Friendica Walk-Through"
-msgstr ""
-
-#: mod/newmember.php:17
-msgid ""
-"On your Quick Start page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to "
-"join."
-msgstr ""
-
-#: mod/newmember.php:19 mod/admin.php:1906 mod/admin.php:2175
-#: mod/settings.php:123 view/theme/frio/theme.php:269 src/Content/Nav.php:206
-msgid "Settings"
-msgstr ""
-
-#: mod/newmember.php:21
-msgid "Go to Your Settings"
-msgstr ""
-
-#: mod/newmember.php:21
-msgid ""
-"On your Settings page - change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr ""
-
-#: mod/newmember.php:22
-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:24 mod/profperm.php:113 mod/contacts.php:671
-#: mod/contacts.php:863 view/theme/frio/theme.php:260 src/Content/Nav.php:101
-#: src/Model/Profile.php:732 src/Model/Profile.php:865
-#: src/Model/Profile.php:898
+#: src/Model/Profile.php:734 src/Model/Profile.php:867
+#: src/Model/Profile.php:900 src/Content/Nav.php:101 mod/contacts.php:671
+#: mod/contacts.php:863 mod/newmember.php:24 mod/profperm.php:113
+#: view/theme/frio/theme.php:260
msgid "Profile"
msgstr ""
-#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:691
-msgid "Upload Profile Photo"
+#: src/Model/Profile.php:742 mod/settings.php:1209
+msgid "Full Name:"
msgstr ""
-#: mod/newmember.php:26
+#: src/Model/Profile.php:745
+msgid "Member since:"
+msgstr ""
+
+#: src/Model/Profile.php:753
+msgid "j F, Y"
+msgstr ""
+
+#: src/Model/Profile.php:754
+msgid "j F"
+msgstr ""
+
+#: src/Model/Profile.php:762 src/Util/Temporal.php:147
+msgid "Birthday:"
+msgstr ""
+
+#: src/Model/Profile.php:769
+msgid "Age:"
+msgstr ""
+
+#: src/Model/Profile.php:782
+#, php-format
+msgid "for %1$d %2$s"
+msgstr ""
+
+#: src/Model/Profile.php:786 mod/profiles.php:694
+msgid "Sexual Preference:"
+msgstr ""
+
+#: src/Model/Profile.php:794 mod/profiles.php:721
+msgid "Hometown:"
+msgstr ""
+
+#: src/Model/Profile.php:798 mod/notifications.php:251 mod/follow.php:174
+#: mod/contacts.php:666
+msgid "Tags:"
+msgstr ""
+
+#: src/Model/Profile.php:802 mod/profiles.php:722
+msgid "Political Views:"
+msgstr ""
+
+#: src/Model/Profile.php:806
+msgid "Religion:"
+msgstr ""
+
+#: src/Model/Profile.php:814
+msgid "Hobbies/Interests:"
+msgstr ""
+
+#: src/Model/Profile.php:818 mod/profiles.php:726
+msgid "Likes:"
+msgstr ""
+
+#: src/Model/Profile.php:822 mod/profiles.php:727
+msgid "Dislikes:"
+msgstr ""
+
+#: src/Model/Profile.php:826
+msgid "Contact information and Social Networks:"
+msgstr ""
+
+#: src/Model/Profile.php:830
+msgid "Musical interests:"
+msgstr ""
+
+#: src/Model/Profile.php:834
+msgid "Books, literature:"
+msgstr ""
+
+#: src/Model/Profile.php:838
+msgid "Television:"
+msgstr ""
+
+#: src/Model/Profile.php:842
+msgid "Film/dance/culture/entertainment:"
+msgstr ""
+
+#: src/Model/Profile.php:846
+msgid "Love/Romance:"
+msgstr ""
+
+#: src/Model/Profile.php:850
+msgid "Work/employment:"
+msgstr ""
+
+#: src/Model/Profile.php:854
+msgid "School/education:"
+msgstr ""
+
+#: src/Model/Profile.php:859
+msgid "Forums:"
+msgstr ""
+
+#: src/Model/Profile.php:868 mod/events.php:531
+msgid "Basic"
+msgstr ""
+
+#: src/Model/Profile.php:869 mod/events.php:532 mod/admin.php:1351
+#: mod/contacts.php:895
+msgid "Advanced"
+msgstr ""
+
+#: src/Model/Profile.php:892 src/Content/Nav.php:100 mod/contacts.php:669
+#: mod/contacts.php:855 view/theme/frio/theme.php:259
+msgid "Status"
+msgstr ""
+
+#: src/Model/Profile.php:895 mod/unfollow.php:132 mod/follow.php:186
+#: mod/contacts.php:858
+msgid "Status Messages and Posts"
+msgstr ""
+
+#: src/Model/Profile.php:903 mod/contacts.php:866
+msgid "Profile Details"
+msgstr ""
+
+#: src/Model/Profile.php:908 src/Content/Nav.php:102 mod/fbrowser.php:34
+#: view/theme/frio/theme.php:261
+msgid "Photos"
+msgstr ""
+
+#: src/Model/Profile.php:911 mod/photos.php:108
+msgid "Photo Albums"
+msgstr ""
+
+#: src/Model/Profile.php:916 src/Model/Profile.php:919 src/Content/Nav.php:103
+#: view/theme/frio/theme.php:262
+msgid "Videos"
+msgstr ""
+
+#: src/Model/Profile.php:928 src/Model/Profile.php:939 src/Content/Nav.php:104
+#: src/Content/Nav.php:169 mod/events.php:391 mod/cal.php:274
+#: view/theme/frio/theme.php:263 view/theme/frio/theme.php:267
+msgid "Events"
+msgstr ""
+
+#: src/Model/Profile.php:931 src/Model/Profile.php:942 src/Content/Nav.php:169
+#: view/theme/frio/theme.php:267
+msgid "Events and Calendar"
+msgstr ""
+
+#: src/Model/Profile.php:950 mod/notes.php:52
+msgid "Personal Notes"
+msgstr ""
+
+#: src/Model/Profile.php:953
+msgid "Only You Can See This"
+msgstr ""
+
+#: src/Model/Event.php:36 src/Model/Event.php:814 mod/localtime.php:19
+msgid "l F d, Y \\@ g:i A"
+msgstr ""
+
+#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
+#: src/Model/Event.php:882
+msgid "Starts:"
+msgstr ""
+
+#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420
+#: src/Model/Event.php:886
+msgid "Finishes:"
+msgstr ""
+
+#: src/Model/Event.php:368
+msgid "all-day"
+msgstr ""
+
+#: src/Model/Event.php:391
+msgid "Jun"
+msgstr ""
+
+#: src/Model/Event.php:394
+msgid "Sept"
+msgstr ""
+
+#: src/Model/Event.php:412 mod/events.php:400 mod/cal.php:280
+msgid "today"
+msgstr ""
+
+#: src/Model/Event.php:413 src/Util/Temporal.php:304 mod/events.php:401
+#: mod/cal.php:281
+msgid "month"
+msgstr ""
+
+#: src/Model/Event.php:414 src/Util/Temporal.php:305 mod/events.php:402
+#: mod/cal.php:282
+msgid "week"
+msgstr ""
+
+#: src/Model/Event.php:415 src/Util/Temporal.php:306 mod/events.php:403
+#: mod/cal.php:283
+msgid "day"
+msgstr ""
+
+#: src/Model/Event.php:417
+msgid "No events to display"
+msgstr ""
+
+#: src/Model/Event.php:543
+msgid "l, F j"
+msgstr ""
+
+#: src/Model/Event.php:566
+msgid "Edit event"
+msgstr ""
+
+#: src/Model/Event.php:567
+msgid "Duplicate event"
+msgstr ""
+
+#: src/Model/Event.php:568
+msgid "Delete event"
+msgstr ""
+
+#: src/Model/Event.php:815
+msgid "D g:i A"
+msgstr ""
+
+#: src/Model/Event.php:816
+msgid "g:i A"
+msgstr ""
+
+#: src/Model/Event.php:901 src/Model/Event.php:903
+msgid "Show map"
+msgstr ""
+
+#: src/Model/Event.php:902
+msgid "Hide map"
+msgstr ""
+
+#: src/Model/Group.php:44
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."
+"A deleted group with this name was revived. Existing item permissions "
+"may apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
msgstr ""
-#: mod/newmember.php:27
-msgid "Edit Your Profile"
+#: src/Model/Group.php:341
+msgid "Default privacy group for new contacts"
msgstr ""
-#: mod/newmember.php:27
-msgid ""
-"Edit your default profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown "
-"visitors."
+#: src/Model/Group.php:374
+msgid "Everybody"
msgstr ""
-#: mod/newmember.php:28
-msgid "Profile Keywords"
+#: src/Model/Group.php:394
+msgid "edit"
msgstr ""
-#: mod/newmember.php:28
-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."
+#: src/Model/Group.php:413 mod/network.php:202
+msgid "add"
msgstr ""
-#: mod/newmember.php:30
-msgid "Connecting"
-msgstr ""
-
-#: mod/newmember.php:36
-msgid "Importing Emails"
-msgstr ""
-
-#: mod/newmember.php:36
-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:39
-msgid "Go to Your Contacts Page"
-msgstr ""
-
-#: mod/newmember.php:39
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the Add New Contact dialog."
-msgstr ""
-
-#: mod/newmember.php:40
-msgid "Go to Your Site's Directory"
-msgstr ""
-
-#: mod/newmember.php:40
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a Connect or Follow link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr ""
-
-#: mod/newmember.php:41
-msgid "Finding New People"
-msgstr ""
-
-#: mod/newmember.php:41
-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:43 src/Model/Group.php:414
+#: src/Model/Group.php:414 mod/newmember.php:43
msgid "Groups"
msgstr ""
-#: mod/newmember.php:45
-msgid "Group Your Contacts"
+#: src/Model/Group.php:418
+msgid "Edit group"
msgstr ""
-#: mod/newmember.php:45
+#: src/Model/Group.php:419
+msgid "Contacts not in any group"
+msgstr ""
+
+#: src/Model/Group.php:420
+msgid "Create a new group"
+msgstr ""
+
+#: src/Model/Group.php:421 mod/group.php:103 mod/group.php:199
+msgid "Group Name: "
+msgstr ""
+
+#: src/Model/Group.php:422
+msgid "Edit groups"
+msgstr ""
+
+#: src/Model/Photo.php:244 src/Model/Photo.php:253 mod/fbrowser.php:43
+#: mod/fbrowser.php:68 mod/photos.php:194 mod/photos.php:1062
+#: mod/photos.php:1149 mod/photos.php:1166 mod/photos.php:1659
+#: mod/photos.php:1673
+msgid "Contact Photos"
+msgstr ""
+
+#: src/Model/User.php:154
+msgid "Login failed"
+msgstr ""
+
+#: src/Model/User.php:185
+msgid "Not enough information to authenticate"
+msgstr ""
+
+#: src/Model/User.php:214 src/Core/Console/NewPassword.php:74 mod/cal.php:297
+msgid "User not found"
+msgstr ""
+
+#: src/Model/User.php:335 mod/settings.php:384
+msgid "Passwords do not match. Password unchanged."
+msgstr ""
+
+#: src/Model/User.php:342
+msgid "An invitation is required."
+msgstr ""
+
+#: src/Model/User.php:346
+msgid "Invitation could not be verified."
+msgstr ""
+
+#: src/Model/User.php:353
+msgid "Invalid OpenID url"
+msgstr ""
+
+#: src/Model/User.php:366 src/Module/Login.php:100
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."
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
msgstr ""
-#: mod/newmember.php:48
-msgid "Why Aren't My Posts Public?"
+#: src/Model/User.php:366 src/Module/Login.php:100
+msgid "The error message was:"
msgstr ""
-#: mod/newmember.php:48
+#: src/Model/User.php:372
+msgid "Please enter the required information."
+msgstr ""
+
+#: src/Model/User.php:385
+msgid "Please use a shorter name."
+msgstr ""
+
+#: src/Model/User.php:388
+msgid "Name too short."
+msgstr ""
+
+#: src/Model/User.php:396
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr ""
+
+#: src/Model/User.php:401
+msgid "Your email domain is not among those allowed on this site."
+msgstr ""
+
+#: src/Model/User.php:405
+msgid "Not a valid email address."
+msgstr ""
+
+#: src/Model/User.php:409 src/Model/User.php:417
+msgid "Cannot use that email."
+msgstr ""
+
+#: src/Model/User.php:424
+msgid "Your nickname can only contain a-z, 0-9 and _."
+msgstr ""
+
+#: src/Model/User.php:431 src/Model/User.php:487
+msgid "Nickname is already registered. Please choose another."
+msgstr ""
+
+#: src/Model/User.php:441
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr ""
+
+#: src/Model/User.php:474 src/Model/User.php:478
+msgid "An error occurred during registration. Please try again."
+msgstr ""
+
+#: src/Model/User.php:498 view/theme/duepuntozero/config.php:54
+msgid "default"
+msgstr ""
+
+#: src/Model/User.php:503
+msgid "An error occurred creating your default profile. Please try again."
+msgstr ""
+
+#: src/Model/User.php:510
+msgid "An error occurred creating your self contact. Please try again."
+msgstr ""
+
+#: src/Model/User.php:515 src/Content/ContactSelector.php:169
+msgid "Friends"
+msgstr ""
+
+#: src/Model/User.php:519
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."
+"An error occurred creating your default contact group. Please try again."
msgstr ""
-#: mod/newmember.php:52
-msgid "Getting Help"
-msgstr ""
-
-#: mod/newmember.php:54
-msgid "Go to the Help Section"
-msgstr ""
-
-#: mod/newmember.php:54
-msgid ""
-"Our help pages may be consulted for detail on other program "
-"features and resources."
-msgstr ""
-
-#: mod/nogroup.php:42 mod/viewcontacts.php:112 mod/contacts.php:619
-#: mod/contacts.php:959
+#: src/Model/User.php:593
#, php-format
-msgid "Visit %s's profile [%s]"
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tThank you for registering at %2$s. Your account is pending for "
+"approval by the administrator.\n"
+"\t\t"
msgstr ""
-#: mod/nogroup.php:43 mod/contacts.php:960
-msgid "Edit contact"
+#: src/Model/User.php:603
+#, php-format
+msgid "Registration at %s"
msgstr ""
-#: mod/nogroup.php:63
-msgid "Contacts who are not members of a group"
+#: src/Model/User.php:621
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t\t"
msgstr ""
-#: mod/p.php:14
-msgid "Not Extended"
+#: src/Model/User.php:625
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t\t%1$s\n"
+"\t\t\tPassword:\t\t%5$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\tIf you ever want to delete your account, you can do so at %3$s/"
+"removeme\n"
+"\n"
+"\t\t\tThank you and welcome to %2$s."
+msgstr ""
+
+#: src/Model/User.php:659 mod/admin.php:1611
+#, php-format
+msgid "Registration details for %s"
+msgstr ""
+
+#: src/Content/Text/BBCode.php:416
+msgid "view full size"
+msgstr ""
+
+#: src/Content/Text/BBCode.php:842 src/Content/Text/BBCode.php:1611
+#: src/Content/Text/BBCode.php:1612
+msgid "Image/photo"
+msgstr ""
+
+#: src/Content/Text/BBCode.php:980
+#, php-format
+msgid "%2$s %3$s"
+msgstr ""
+
+#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560
+msgid "$1 wrote:"
+msgstr ""
+
+#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621
+msgid "Encrypted content"
+msgstr ""
+
+#: src/Content/Text/BBCode.php:1740
+msgid "Invalid source protocol"
+msgstr ""
+
+#: src/Content/Text/BBCode.php:1751
+msgid "Invalid link protocol"
+msgstr ""
+
+#: src/Content/Feature.php:79
+msgid "General Features"
+msgstr ""
+
+#: src/Content/Feature.php:81
+msgid "Multiple Profiles"
+msgstr ""
+
+#: src/Content/Feature.php:81
+msgid "Ability to create multiple profiles"
+msgstr ""
+
+#: src/Content/Feature.php:82
+msgid "Photo Location"
+msgstr ""
+
+#: src/Content/Feature.php:82
+msgid ""
+"Photo metadata is normally stripped. This extracts the location (if present) "
+"prior to stripping metadata and links it to a map."
+msgstr ""
+
+#: src/Content/Feature.php:83
+msgid "Export Public Calendar"
+msgstr ""
+
+#: src/Content/Feature.php:83
+msgid "Ability for visitors to download the public calendar"
+msgstr ""
+
+#: src/Content/Feature.php:88
+msgid "Post Composition Features"
+msgstr ""
+
+#: src/Content/Feature.php:89
+msgid "Post Preview"
+msgstr ""
+
+#: src/Content/Feature.php:89
+msgid "Allow previewing posts and comments before publishing them"
+msgstr ""
+
+#: src/Content/Feature.php:90
+msgid "Auto-mention Forums"
+msgstr ""
+
+#: src/Content/Feature.php:90
+msgid ""
+"Add/remove mention when a forum page is selected/deselected in ACL window."
+msgstr ""
+
+#: src/Content/Feature.php:95
+msgid "Network Sidebar Widgets"
+msgstr ""
+
+#: src/Content/Feature.php:96
+msgid "Search by Date"
+msgstr ""
+
+#: src/Content/Feature.php:96
+msgid "Ability to select posts by date ranges"
+msgstr ""
+
+#: src/Content/Feature.php:97 src/Content/Feature.php:127
+msgid "List Forums"
+msgstr ""
+
+#: src/Content/Feature.php:97
+msgid "Enable widget to display the forums your are connected with"
+msgstr ""
+
+#: src/Content/Feature.php:98
+msgid "Group Filter"
+msgstr ""
+
+#: src/Content/Feature.php:98
+msgid "Enable widget to display Network posts only from selected group"
+msgstr ""
+
+#: src/Content/Feature.php:99
+msgid "Network Filter"
+msgstr ""
+
+#: src/Content/Feature.php:99
+msgid "Enable widget to display Network posts only from selected network"
+msgstr ""
+
+#: src/Content/Feature.php:100 mod/network.php:201 mod/search.php:46
+msgid "Saved Searches"
+msgstr ""
+
+#: src/Content/Feature.php:100
+msgid "Save search terms for re-use"
+msgstr ""
+
+#: src/Content/Feature.php:105
+msgid "Network Tabs"
+msgstr ""
+
+#: src/Content/Feature.php:106
+msgid "Network Personal Tab"
+msgstr ""
+
+#: src/Content/Feature.php:106
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr ""
+
+#: src/Content/Feature.php:107
+msgid "Network New Tab"
+msgstr ""
+
+#: src/Content/Feature.php:107
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr ""
+
+#: src/Content/Feature.php:108
+msgid "Network Shared Links Tab"
+msgstr ""
+
+#: src/Content/Feature.php:108
+msgid "Enable tab to display only Network posts with links in them"
+msgstr ""
+
+#: src/Content/Feature.php:113
+msgid "Post/Comment Tools"
+msgstr ""
+
+#: src/Content/Feature.php:114
+msgid "Multiple Deletion"
+msgstr ""
+
+#: src/Content/Feature.php:114
+msgid "Select and delete multiple posts/comments at once"
+msgstr ""
+
+#: src/Content/Feature.php:115
+msgid "Edit Sent Posts"
+msgstr ""
+
+#: src/Content/Feature.php:115
+msgid "Edit and correct posts and comments after sending"
+msgstr ""
+
+#: src/Content/Feature.php:116
+msgid "Tagging"
+msgstr ""
+
+#: src/Content/Feature.php:116
+msgid "Ability to tag existing posts"
+msgstr ""
+
+#: src/Content/Feature.php:117
+msgid "Post Categories"
+msgstr ""
+
+#: src/Content/Feature.php:117
+msgid "Add categories to your posts"
+msgstr ""
+
+#: src/Content/Feature.php:118 src/Content/Widget.php:200
+msgid "Saved Folders"
+msgstr ""
+
+#: src/Content/Feature.php:118
+msgid "Ability to file posts under folders"
+msgstr ""
+
+#: src/Content/Feature.php:119
+msgid "Dislike Posts"
+msgstr ""
+
+#: src/Content/Feature.php:119
+msgid "Ability to dislike posts/comments"
+msgstr ""
+
+#: src/Content/Feature.php:120
+msgid "Star Posts"
+msgstr ""
+
+#: src/Content/Feature.php:120
+msgid "Ability to mark special posts with a star indicator"
+msgstr ""
+
+#: src/Content/Feature.php:121
+msgid "Mute Post Notifications"
+msgstr ""
+
+#: src/Content/Feature.php:121
+msgid "Ability to mute notifications for a thread"
+msgstr ""
+
+#: src/Content/Feature.php:126
+msgid "Advanced Profile Settings"
+msgstr ""
+
+#: src/Content/Feature.php:127
+msgid "Show visitors public community forums at the Advanced Profile Page"
+msgstr ""
+
+#: src/Content/Feature.php:128
+msgid "Tag Cloud"
+msgstr ""
+
+#: src/Content/Feature.php:128
+msgid "Provide a personal tag cloud on your profile page"
+msgstr ""
+
+#: src/Content/Feature.php:129
+msgid "Display Membership Date"
+msgstr ""
+
+#: src/Content/Feature.php:129
+msgid "Display membership date in profile"
+msgstr ""
+
+#: src/Content/Widget/CalendarExport.php:61
+msgid "Export"
+msgstr ""
+
+#: src/Content/Widget/CalendarExport.php:62
+msgid "Export calendar as ical"
+msgstr ""
+
+#: src/Content/Widget/CalendarExport.php:63
+msgid "Export calendar as csv"
+msgstr ""
+
+#: src/Content/Widget.php:33
+msgid "Add New Contact"
+msgstr ""
+
+#: src/Content/Widget.php:34
+msgid "Enter address or web location"
+msgstr ""
+
+#: src/Content/Widget.php:35
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr ""
+
+#: src/Content/Widget.php:53
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] ""
+msgstr[1] ""
+
+#: src/Content/Widget.php:59
+msgid "Find People"
+msgstr ""
+
+#: src/Content/Widget.php:60
+msgid "Enter name or interest"
+msgstr ""
+
+#: src/Content/Widget.php:62
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr ""
+
+#: src/Content/Widget.php:63 mod/directory.php:209 mod/contacts.php:820
+msgid "Find"
+msgstr ""
+
+#: src/Content/Widget.php:64 mod/suggest.php:114 view/theme/vier/theme.php:203
+msgid "Friend Suggestions"
+msgstr ""
+
+#: src/Content/Widget.php:65 view/theme/vier/theme.php:202
+msgid "Similar Interests"
+msgstr ""
+
+#: src/Content/Widget.php:66
+msgid "Random Profile"
+msgstr ""
+
+#: src/Content/Widget.php:67 view/theme/vier/theme.php:204
+msgid "Invite Friends"
+msgstr ""
+
+#: src/Content/Widget.php:68
+msgid "View Global Directory"
+msgstr ""
+
+#: src/Content/Widget.php:159
+msgid "Networks"
+msgstr ""
+
+#: src/Content/Widget.php:162
+msgid "All Networks"
+msgstr ""
+
+#: src/Content/Widget.php:203 src/Content/Widget.php:243
+msgid "Everything"
+msgstr ""
+
+#: src/Content/Widget.php:240
+msgid "Categories"
+msgstr ""
+
+#: src/Content/Widget.php:307
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] ""
+msgstr[1] ""
+
+#: src/Content/ContactSelector.php:55
+msgid "Frequently"
+msgstr ""
+
+#: src/Content/ContactSelector.php:56
+msgid "Hourly"
+msgstr ""
+
+#: src/Content/ContactSelector.php:57
+msgid "Twice daily"
+msgstr ""
+
+#: src/Content/ContactSelector.php:58
+msgid "Daily"
+msgstr ""
+
+#: src/Content/ContactSelector.php:59
+msgid "Weekly"
+msgstr ""
+
+#: src/Content/ContactSelector.php:60
+msgid "Monthly"
+msgstr ""
+
+#: src/Content/ContactSelector.php:79 mod/dfrn_request.php:656
+msgid "Friendica"
+msgstr ""
+
+#: src/Content/ContactSelector.php:80
+msgid "OStatus"
+msgstr ""
+
+#: src/Content/ContactSelector.php:81
+msgid "RSS/Atom"
+msgstr ""
+
+#: src/Content/ContactSelector.php:82 mod/admin.php:1796 mod/admin.php:1807
+#: mod/admin.php:1820 mod/admin.php:1838
+msgid "Email"
+msgstr ""
+
+#: src/Content/ContactSelector.php:83 mod/settings.php:805
+msgid "Diaspora"
+msgstr ""
+
+#: src/Content/ContactSelector.php:84
+msgid "Facebook"
+msgstr ""
+
+#: src/Content/ContactSelector.php:85
+msgid "Zot!"
+msgstr ""
+
+#: src/Content/ContactSelector.php:86
+msgid "LinkedIn"
+msgstr ""
+
+#: src/Content/ContactSelector.php:87
+msgid "XMPP/IM"
+msgstr ""
+
+#: src/Content/ContactSelector.php:88
+msgid "MySpace"
+msgstr ""
+
+#: src/Content/ContactSelector.php:89
+msgid "Google+"
+msgstr ""
+
+#: src/Content/ContactSelector.php:90
+msgid "pump.io"
+msgstr ""
+
+#: src/Content/ContactSelector.php:91
+msgid "Twitter"
+msgstr ""
+
+#: src/Content/ContactSelector.php:92
+msgid "Diaspora Connector"
+msgstr ""
+
+#: src/Content/ContactSelector.php:93
+msgid "GNU Social Connector"
+msgstr ""
+
+#: src/Content/ContactSelector.php:94
+msgid "pnut"
+msgstr ""
+
+#: src/Content/ContactSelector.php:95
+msgid "App.net"
+msgstr ""
+
+#: src/Content/ContactSelector.php:125
+msgid "Male"
+msgstr ""
+
+#: src/Content/ContactSelector.php:125
+msgid "Female"
+msgstr ""
+
+#: src/Content/ContactSelector.php:125
+msgid "Currently Male"
+msgstr ""
+
+#: src/Content/ContactSelector.php:125
+msgid "Currently Female"
+msgstr ""
+
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Male"
+msgstr ""
+
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Female"
+msgstr ""
+
+#: src/Content/ContactSelector.php:125
+msgid "Transgender"
+msgstr ""
+
+#: src/Content/ContactSelector.php:125
+msgid "Intersex"
+msgstr ""
+
+#: src/Content/ContactSelector.php:125
+msgid "Transsexual"
+msgstr ""
+
+#: src/Content/ContactSelector.php:125
+msgid "Hermaphrodite"
+msgstr ""
+
+#: src/Content/ContactSelector.php:125
+msgid "Neuter"
+msgstr ""
+
+#: src/Content/ContactSelector.php:125
+msgid "Non-specific"
+msgstr ""
+
+#: src/Content/ContactSelector.php:125
+msgid "Other"
+msgstr ""
+
+#: src/Content/ContactSelector.php:147
+msgid "Males"
+msgstr ""
+
+#: src/Content/ContactSelector.php:147
+msgid "Females"
+msgstr ""
+
+#: src/Content/ContactSelector.php:147
+msgid "Gay"
+msgstr ""
+
+#: src/Content/ContactSelector.php:147
+msgid "Lesbian"
+msgstr ""
+
+#: src/Content/ContactSelector.php:147
+msgid "No Preference"
+msgstr ""
+
+#: src/Content/ContactSelector.php:147
+msgid "Bisexual"
+msgstr ""
+
+#: src/Content/ContactSelector.php:147
+msgid "Autosexual"
+msgstr ""
+
+#: src/Content/ContactSelector.php:147
+msgid "Abstinent"
+msgstr ""
+
+#: src/Content/ContactSelector.php:147
+msgid "Virgin"
+msgstr ""
+
+#: src/Content/ContactSelector.php:147
+msgid "Deviant"
+msgstr ""
+
+#: src/Content/ContactSelector.php:147
+msgid "Fetish"
+msgstr ""
+
+#: src/Content/ContactSelector.php:147
+msgid "Oodles"
+msgstr ""
+
+#: src/Content/ContactSelector.php:147
+msgid "Nonsexual"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Single"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Lonely"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Available"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Unavailable"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Has crush"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Infatuated"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Dating"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Unfaithful"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Sex Addict"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Friends/Benefits"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Casual"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Engaged"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Married"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily married"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Partners"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Cohabiting"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Common law"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Happy"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Not looking"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Swinger"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Betrayed"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Separated"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Unstable"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Divorced"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily divorced"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Widowed"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Uncertain"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "It's complicated"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Don't care"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Ask me"
+msgstr ""
+
+#: src/Content/OEmbed.php:253
+msgid "Embedding disabled"
+msgstr ""
+
+#: src/Content/OEmbed.php:373
+msgid "Embedded content"
+msgstr ""
+
+#: src/Content/ForumManager.php:127 view/theme/vier/theme.php:256
+msgid "External link to forum"
+msgstr ""
+
+#: src/Content/Nav.php:53
+msgid "Nothing new here"
+msgstr ""
+
+#: src/Content/Nav.php:57
+msgid "Clear notifications"
+msgstr ""
+
+#: src/Content/Nav.php:97 src/Module/Login.php:311
+#: view/theme/frio/theme.php:256
+msgid "Logout"
+msgstr ""
+
+#: src/Content/Nav.php:97 view/theme/frio/theme.php:256
+msgid "End this session"
+msgstr ""
+
+#: src/Content/Nav.php:100 src/Content/Nav.php:181
+#: view/theme/frio/theme.php:259
+msgid "Your posts and conversations"
+msgstr ""
+
+#: src/Content/Nav.php:101 view/theme/frio/theme.php:260
+msgid "Your profile page"
+msgstr ""
+
+#: src/Content/Nav.php:102 view/theme/frio/theme.php:261
+msgid "Your photos"
+msgstr ""
+
+#: src/Content/Nav.php:103 view/theme/frio/theme.php:262
+msgid "Your videos"
+msgstr ""
+
+#: src/Content/Nav.php:104 view/theme/frio/theme.php:263
+msgid "Your events"
+msgstr ""
+
+#: src/Content/Nav.php:105
+msgid "Personal notes"
+msgstr ""
+
+#: src/Content/Nav.php:105
+msgid "Your personal notes"
+msgstr ""
+
+#: src/Content/Nav.php:114 src/Module/Login.php:312 mod/bookmarklet.php:23
+msgid "Login"
+msgstr ""
+
+#: src/Content/Nav.php:114
+msgid "Sign in"
+msgstr ""
+
+#: src/Content/Nav.php:124 src/Content/Nav.php:181
+#: src/Core/NotificationsManager.php:192
+msgid "Home"
+msgstr ""
+
+#: src/Content/Nav.php:124
+msgid "Home Page"
+msgstr ""
+
+#: src/Content/Nav.php:128 src/Module/Login.php:283 mod/register.php:279
+msgid "Register"
+msgstr ""
+
+#: src/Content/Nav.php:128
+msgid "Create an account"
+msgstr ""
+
+#: src/Content/Nav.php:134 mod/help.php:54 view/theme/vier/theme.php:298
+msgid "Help"
+msgstr ""
+
+#: src/Content/Nav.php:134
+msgid "Help and documentation"
+msgstr ""
+
+#: src/Content/Nav.php:138
+msgid "Apps"
+msgstr ""
+
+#: src/Content/Nav.php:138
+msgid "Addon applications, utilities, games"
+msgstr ""
+
+#: src/Content/Nav.php:142
+msgid "Search site content"
+msgstr ""
+
+#: src/Content/Nav.php:165
+msgid "Community"
+msgstr ""
+
+#: src/Content/Nav.php:165
+msgid "Conversations on this and other servers"
+msgstr ""
+
+#: src/Content/Nav.php:172
+msgid "Directory"
+msgstr ""
+
+#: src/Content/Nav.php:172
+msgid "People directory"
+msgstr ""
+
+#: src/Content/Nav.php:174 mod/admin.php:179
+msgid "Information"
+msgstr ""
+
+#: src/Content/Nav.php:174
+msgid "Information about this friendica instance"
+msgstr ""
+
+#: src/Content/Nav.php:178 src/Core/NotificationsManager.php:178
+#: mod/admin.php:758 view/theme/frio/theme.php:266
+msgid "Network"
+msgstr ""
+
+#: src/Content/Nav.php:178 view/theme/frio/theme.php:266
+msgid "Conversations from your friends"
+msgstr ""
+
+#: src/Content/Nav.php:179
+msgid "Network Reset"
+msgstr ""
+
+#: src/Content/Nav.php:179
+msgid "Load Network page with no filters"
+msgstr ""
+
+#: src/Content/Nav.php:185 src/Core/NotificationsManager.php:199
+msgid "Introductions"
+msgstr ""
+
+#: src/Content/Nav.php:185
+msgid "Friend Requests"
+msgstr ""
+
+#: src/Content/Nav.php:186 mod/notifications.php:98
+msgid "Notifications"
+msgstr ""
+
+#: src/Content/Nav.php:187
+msgid "See all notifications"
+msgstr ""
+
+#: src/Content/Nav.php:188 mod/settings.php:870
+msgid "Mark as seen"
+msgstr ""
+
+#: src/Content/Nav.php:188
+msgid "Mark all system notifications seen"
+msgstr ""
+
+#: src/Content/Nav.php:191 mod/message.php:112 view/theme/frio/theme.php:268
+msgid "Messages"
+msgstr ""
+
+#: src/Content/Nav.php:191 view/theme/frio/theme.php:268
+msgid "Private mail"
+msgstr ""
+
+#: src/Content/Nav.php:192
+msgid "Inbox"
+msgstr ""
+
+#: src/Content/Nav.php:193
+msgid "Outbox"
+msgstr ""
+
+#: src/Content/Nav.php:194 mod/message.php:30
+msgid "New Message"
+msgstr ""
+
+#: src/Content/Nav.php:197
+msgid "Manage"
+msgstr ""
+
+#: src/Content/Nav.php:197
+msgid "Manage other pages"
+msgstr ""
+
+#: src/Content/Nav.php:200 mod/settings.php:93
+msgid "Delegations"
+msgstr ""
+
+#: src/Content/Nav.php:200 mod/delegate.php:169
+msgid "Delegate Page Management"
+msgstr ""
+
+#: src/Content/Nav.php:202 mod/settings.php:123 mod/admin.php:1920
+#: mod/admin.php:2189 mod/newmember.php:19 view/theme/frio/theme.php:269
+msgid "Settings"
+msgstr ""
+
+#: src/Content/Nav.php:202 view/theme/frio/theme.php:269
+msgid "Account settings"
+msgstr ""
+
+#: src/Content/Nav.php:205
+msgid "Manage/Edit Profiles"
+msgstr ""
+
+#: src/Content/Nav.php:208 view/theme/frio/theme.php:270
+msgid "Manage/edit friends and contacts"
+msgstr ""
+
+#: src/Content/Nav.php:213 mod/admin.php:222
+msgid "Admin"
+msgstr ""
+
+#: src/Content/Nav.php:213
+msgid "Site setup and configuration"
+msgstr ""
+
+#: src/Content/Nav.php:216
+msgid "Navigation"
+msgstr ""
+
+#: src/Content/Nav.php:216
+msgid "Site map"
+msgstr ""
+
+#: src/Worker/Delivery.php:390
+msgid "(no subject)"
+msgstr ""
+
+#: src/App.php:511
+msgid "Delete this item?"
+msgstr ""
+
+#: src/App.php:513
+msgid "show fewer"
+msgstr ""
+
+#: src/Module/Login.php:86 src/Module/Login.php:134 mod/openid.php:116
+msgid "Login failed."
+msgstr ""
+
+#: src/Module/Login.php:282
+msgid "Create a New Account"
+msgstr ""
+
+#: src/Module/Login.php:314 mod/lostpass.php:119
+msgid "Nickname or Email: "
+msgstr ""
+
+#: src/Module/Login.php:315
+msgid "Password: "
+msgstr ""
+
+#: src/Module/Login.php:316
+msgid "Remember me"
+msgstr ""
+
+#: src/Module/Login.php:319
+msgid "Or login using OpenID: "
+msgstr ""
+
+#: src/Module/Login.php:325
+msgid "Forgot your password?"
+msgstr ""
+
+#: src/Module/Login.php:326 mod/lostpass.php:136
+msgid "Password Reset"
+msgstr ""
+
+#: src/Module/Login.php:328
+msgid "Website Terms of Service"
+msgstr ""
+
+#: src/Module/Login.php:329
+msgid "terms of service"
+msgstr ""
+
+#: src/Module/Login.php:331
+msgid "Website Privacy Policy"
+msgstr ""
+
+#: src/Module/Login.php:332
+msgid "privacy policy"
+msgstr ""
+
+#: src/Module/Tos.php:48 mod/admin.php:188 mod/admin.php:302
+#: mod/register.php:288
+msgid "Terms of Service"
+msgstr ""
+
+#: src/Module/Tos.php:51
+msgid "Privacy Statement"
+msgstr ""
+
+#: src/Module/Tos.php:52
+msgid ""
+"At the time of registration, and for providing communications between the "
+"user account and their contacts, the user has to provide a display name (pen "
+"name), an username (nickname) and a working email address. The names will be "
+"accessible on the profile page of the account by any visitor of the page, "
+"even if other profile details are not displayed. The email address will only "
+"be used to send the user notifications about interactions, but wont be "
+"visibly displayed. The listing of an account in the node's user directory or "
+"the global user directory is optional and can be controlled in the user "
+"settings, it is not necessary for communication."
+msgstr ""
+
+#: src/Module/Tos.php:53
+msgid ""
+"This data is required for communication and is passed on to the nodes of the "
+"communication partners. Users can enter additional private data that may be "
+"transmitted to the communication partners accounts."
+msgstr ""
+
+#: src/Module/Tos.php:54
+#, php-format
+msgid ""
+"At any point in time a logged in user can export their account data from the "
+"account settings . If the user wants to "
+"delete their account they can do so at %1$s/"
+"removeme . The deletion of the account will be permanent."
+msgstr ""
+
+#: src/Module/Logout.php:28
+msgid "Logged out."
+msgstr ""
+
+#: src/Object/Image.php:953 src/Object/Image.php:969 src/Object/Image.php:977
+#: src/Object/Image.php:1002 mod/wall_upload.php:231 mod/item.php:471
+msgid "Wall Photos"
+msgstr ""
+
+#: src/Object/Post.php:128
+msgid "This entry was edited"
+msgstr ""
+
+#: src/Object/Post.php:149 mod/photos.php:1308
+msgid "Private Message"
+msgstr ""
+
+#: src/Object/Post.php:155 src/Object/Post.php:157 mod/settings.php:737
+msgid "Edit"
+msgstr ""
+
+#: src/Object/Post.php:182
+msgid "save to folder"
+msgstr ""
+
+#: src/Object/Post.php:235
+msgid "I will attend"
+msgstr ""
+
+#: src/Object/Post.php:235
+msgid "I will not attend"
+msgstr ""
+
+#: src/Object/Post.php:235
+msgid "I might attend"
+msgstr ""
+
+#: src/Object/Post.php:263
+msgid "add star"
+msgstr ""
+
+#: src/Object/Post.php:264
+msgid "remove star"
+msgstr ""
+
+#: src/Object/Post.php:265
+msgid "toggle star status"
+msgstr ""
+
+#: src/Object/Post.php:268
+msgid "starred"
+msgstr ""
+
+#: src/Object/Post.php:274
+msgid "ignore thread"
+msgstr ""
+
+#: src/Object/Post.php:275
+msgid "unignore thread"
+msgstr ""
+
+#: src/Object/Post.php:276
+msgid "toggle ignore status"
+msgstr ""
+
+#: src/Object/Post.php:279 mod/ostatus_subscribe.php:83
+msgid "ignored"
+msgstr ""
+
+#: src/Object/Post.php:285
+msgid "add tag"
+msgstr ""
+
+#: src/Object/Post.php:296 mod/photos.php:1471
+msgid "I like this (toggle)"
+msgstr ""
+
+#: src/Object/Post.php:296
+msgid "like"
+msgstr ""
+
+#: src/Object/Post.php:297 mod/photos.php:1472
+msgid "I don't like this (toggle)"
+msgstr ""
+
+#: src/Object/Post.php:297
+msgid "dislike"
+msgstr ""
+
+#: src/Object/Post.php:300
+msgid "Share this"
+msgstr ""
+
+#: src/Object/Post.php:300
+msgid "share"
+msgstr ""
+
+#: src/Object/Post.php:365
+msgid "to"
+msgstr ""
+
+#: src/Object/Post.php:366
+msgid "via"
+msgstr ""
+
+#: src/Object/Post.php:367
+msgid "Wall-to-Wall"
+msgstr ""
+
+#: src/Object/Post.php:368
+msgid "via Wall-To-Wall:"
+msgstr ""
+
+#: src/Object/Post.php:399 src/Object/Post.php:795 mod/photos.php:1490
+#: mod/photos.php:1529 mod/photos.php:1602
+msgid "Comment"
+msgstr ""
+
+#: src/Object/Post.php:427
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] ""
+msgstr[1] ""
+
+#: src/Object/Post.php:793 mod/photos.php:1488 mod/photos.php:1527
+#: mod/photos.php:1600 mod/contacts.php:953
+msgid "This is you"
+msgstr ""
+
+#: src/Object/Post.php:796 mod/manage.php:184 mod/invite.php:155
+#: mod/profiles.php:672 mod/events.php:530 mod/fsuggest.php:114
+#: mod/photos.php:1080 mod/photos.php:1160 mod/photos.php:1445
+#: mod/photos.php:1491 mod/photos.php:1530 mod/photos.php:1603
+#: mod/message.php:265 mod/message.php:432 mod/localtime.php:56
+#: mod/crepair.php:148 mod/poke.php:199 mod/contacts.php:610
+#: mod/install.php:251 mod/install.php:290 view/theme/quattro/config.php:73
+#: view/theme/frio/config.php:113 view/theme/vier/config.php:119
+#: view/theme/duepuntozero/config.php:71
+msgid "Submit"
+msgstr ""
+
+#: src/Object/Post.php:797
+msgid "Bold"
+msgstr ""
+
+#: src/Object/Post.php:798
+msgid "Italic"
+msgstr ""
+
+#: src/Object/Post.php:799
+msgid "Underline"
+msgstr ""
+
+#: src/Object/Post.php:800
+msgid "Quote"
+msgstr ""
+
+#: src/Object/Post.php:801
+msgid "Code"
+msgstr ""
+
+#: src/Object/Post.php:802
+msgid "Image"
+msgstr ""
+
+#: src/Object/Post.php:803
+msgid "Link"
+msgstr ""
+
+#: src/Object/Post.php:804
+msgid "Video"
+msgstr ""
+
+#: src/Database/DBStructure.php:32
+msgid "There are no tables on MyISAM."
+msgstr ""
+
+#: src/Database/DBStructure.php:75
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact "
+"a\n"
+"\t\t\t\tfriendica developer if you can not help me on your own. My database "
+"might be invalid."
+msgstr ""
+
+#: src/Database/DBStructure.php:80
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr ""
+
+#: src/Database/DBStructure.php:191
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr ""
+
+#: src/Database/DBStructure.php:194
+msgid "Errors encountered performing database changes: "
+msgstr ""
+
+#: src/Database/DBStructure.php:210
+msgid ": Database update"
+msgstr ""
+
+#: src/Database/DBStructure.php:460
+#, php-format
+msgid "%s: updating %s table."
+msgstr ""
+
+#: src/Core/UserImport.php:104
+msgid "Error decoding account file"
+msgstr ""
+
+#: src/Core/UserImport.php:110
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr ""
+
+#: src/Core/UserImport.php:118
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr ""
+
+#: src/Core/UserImport.php:151
+msgid "User creation error"
+msgstr ""
+
+#: src/Core/UserImport.php:169
+msgid "User profile creation error"
+msgstr ""
+
+#: src/Core/UserImport.php:213
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#: src/Core/UserImport.php:278
+msgid "Done. You can now login with your username and password"
+msgstr ""
+
+#: src/Core/Console/NewPassword.php:78 mod/settings.php:394
+msgid ""
+"The new password has been exposed in a public data dump, please choose "
+"another."
+msgstr ""
+
+#: src/Core/Console/NewPassword.php:82 mod/settings.php:409
+msgid "Password update failed. Please try again."
+msgstr ""
+
+#: src/Core/Console/NewPassword.php:85 mod/settings.php:407
+msgid "Password changed."
+msgstr ""
+
+#: src/Core/Console/GlobalCommunityBlock.php:69 mod/admin.php:443
+#, php-format
+msgid "Could not find any contact entry for this URL (%s)"
+msgstr ""
+
+#: src/Core/Console/GlobalCommunityBlock.php:72 mod/admin.php:441
+msgid "The contact has been blocked from the node"
+msgstr ""
+
+#: src/Core/ACL.php:295
+msgid "Post to Email"
+msgstr ""
+
+#: src/Core/ACL.php:301
+msgid "Hide your profile details from unknown viewers?"
+msgstr ""
+
+#: src/Core/ACL.php:300
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr ""
+
+#: src/Core/ACL.php:307
+msgid "Visible to everybody"
+msgstr ""
+
+#: src/Core/ACL.php:308 view/theme/vier/config.php:115
+msgid "show"
+msgstr ""
+
+#: src/Core/ACL.php:309 view/theme/vier/config.php:115
+msgid "don't show"
+msgstr ""
+
+#: src/Core/ACL.php:315 mod/editpost.php:134
+msgid "CC: email addresses"
+msgstr ""
+
+#: src/Core/ACL.php:316 mod/editpost.php:141
+msgid "Example: bob@example.com, mary@example.com"
+msgstr ""
+
+#: src/Core/ACL.php:318 mod/events.php:533 mod/photos.php:1098
+#: mod/photos.php:1441
+msgid "Permissions"
+msgstr ""
+
+#: src/Core/ACL.php:319
+msgid "Close"
+msgstr ""
+
+#: src/Core/NotificationsManager.php:171
+msgid "System"
+msgstr ""
+
+#: src/Core/NotificationsManager.php:185 mod/network.php:955
+#: mod/profiles.php:687
+msgid "Personal"
+msgstr ""
+
+#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
+#, php-format
+msgid "%s commented on %s's post"
+msgstr ""
+
+#: src/Core/NotificationsManager.php:267
+#, php-format
+msgid "%s created a new post"
+msgstr ""
+
+#: src/Core/NotificationsManager.php:281
+#, php-format
+msgid "%s liked %s's post"
+msgstr ""
+
+#: src/Core/NotificationsManager.php:294
+#, php-format
+msgid "%s disliked %s's post"
+msgstr ""
+
+#: src/Core/NotificationsManager.php:307
+#, php-format
+msgid "%s is attending %s's event"
+msgstr ""
+
+#: src/Core/NotificationsManager.php:320
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr ""
+
+#: src/Core/NotificationsManager.php:333
+#, php-format
+msgid "%s may attend %s's event"
+msgstr ""
+
+#: src/Core/NotificationsManager.php:350
+#, php-format
+msgid "%s is now friends with %s"
+msgstr ""
+
+#: src/Core/NotificationsManager.php:825
+msgid "Friend Suggestion"
+msgstr ""
+
+#: src/Core/NotificationsManager.php:851
+msgid "Friend/Connect Request"
+msgstr ""
+
+#: src/Core/NotificationsManager.php:851
+msgid "New Follower"
+msgstr ""
+
+#: src/Util/Temporal.php:81 src/Util/Temporal.php:83 mod/profiles.php:689
+msgid "Miscellaneous"
+msgstr ""
+
+#: src/Util/Temporal.php:149 mod/profiles.php:712
+msgid "Age: "
+msgstr ""
+
+#: src/Util/Temporal.php:151
+msgid "YYYY-MM-DD or MM-DD"
+msgstr ""
+
+#: src/Util/Temporal.php:294
+msgid "never"
+msgstr ""
+
+#: src/Util/Temporal.php:300
+msgid "less than a second ago"
+msgstr ""
+
+#: src/Util/Temporal.php:303
+msgid "year"
+msgstr ""
+
+#: src/Util/Temporal.php:303
+msgid "years"
+msgstr ""
+
+#: src/Util/Temporal.php:304
+msgid "months"
+msgstr ""
+
+#: src/Util/Temporal.php:305
+msgid "weeks"
+msgstr ""
+
+#: src/Util/Temporal.php:306
+msgid "days"
+msgstr ""
+
+#: src/Util/Temporal.php:307
+msgid "hour"
+msgstr ""
+
+#: src/Util/Temporal.php:307
+msgid "hours"
+msgstr ""
+
+#: src/Util/Temporal.php:308
+msgid "minute"
+msgstr ""
+
+#: src/Util/Temporal.php:308
+msgid "minutes"
+msgstr ""
+
+#: src/Util/Temporal.php:309
+msgid "second"
+msgstr ""
+
+#: src/Util/Temporal.php:309
+msgid "seconds"
+msgstr ""
+
+#: src/Util/Temporal.php:318
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr ""
+
+#: src/Protocol/OStatus.php:1251 mod/profile.php:80
+#, php-format
+msgid "%s's timeline"
+msgstr ""
+
+#: src/Protocol/OStatus.php:1252 mod/profile.php:78
+#, php-format
+msgid "%s's posts"
+msgstr ""
+
+#: src/Protocol/OStatus.php:1253 mod/profile.php:79
+#, php-format
+msgid "%s's comments"
+msgstr ""
+
+#: src/Protocol/OStatus.php:1799
+#, php-format
+msgid "%s is now following %s."
+msgstr ""
+
+#: src/Protocol/OStatus.php:1800
+msgid "following"
+msgstr ""
+
+#: src/Protocol/OStatus.php:1803
+#, php-format
+msgid "%s stopped following %s."
+msgstr ""
+
+#: src/Protocol/OStatus.php:1804
+msgid "stopped following"
+msgstr ""
+
+#: src/Protocol/Diaspora.php:2680
+msgid "Sharing notification from Diaspora network"
+msgstr ""
+
+#: src/Protocol/Diaspora.php:3756
+msgid "Attachments:"
+msgstr ""
+
+#: mod/directory.php:42 mod/display.php:203 mod/viewcontacts.php:45
+#: mod/photos.php:932 mod/community.php:27 mod/videos.php:199
+#: mod/dfrn_request.php:607 mod/search.php:98 mod/search.php:104
+#: mod/probe.php:13 mod/webfinger.php:16
+msgid "Public access denied."
+msgstr ""
+
+#: mod/directory.php:202 view/theme/vier/theme.php:201
+msgid "Global Directory"
+msgstr ""
+
+#: mod/directory.php:204
+msgid "Find on this site"
+msgstr ""
+
+#: mod/directory.php:206
+msgid "Results for:"
+msgstr ""
+
+#: mod/directory.php:208
+msgid "Site Directory"
+msgstr ""
+
+#: mod/directory.php:213
+msgid "No entries (some entries may be hidden)."
+msgstr ""
+
+#: mod/dirfind.php:49
+#, php-format
+msgid "People Search - %s"
+msgstr ""
+
+#: mod/dirfind.php:60
+#, php-format
+msgid "Forum Search - %s"
+msgstr ""
+
+#: mod/dirfind.php:253 mod/match.php:125
+msgid "No matches"
msgstr ""
#: mod/repair_ostatus.php:18
@@ -1644,6 +3414,18 @@ msgstr ""
msgid "Keep this window open until done."
msgstr ""
+#: mod/ping.php:292
+msgid "{0} wants to be your friend"
+msgstr ""
+
+#: mod/ping.php:307
+msgid "{0} sent you a message"
+msgstr ""
+
+#: mod/ping.php:322
+msgid "{0} requested registration"
+msgstr ""
+
#: mod/suggest.php:36
msgid "Do you really want to delete this suggestion?"
msgstr ""
@@ -1658,12 +3440,134 @@ msgstr ""
msgid "Ignore/Hide"
msgstr ""
-#: mod/suggest.php:114 view/theme/vier/theme.php:203 src/Content/Widget.php:64
-msgid "Friend Suggestions"
+#: mod/display.php:313 mod/profile.php:173 mod/cal.php:142
+msgid "Access to this profile has been restricted."
msgstr ""
-#: mod/update_community.php:27 mod/update_display.php:27
-#: mod/update_notes.php:40 mod/update_profile.php:39 mod/update_network.php:33
+#: mod/profile_photo.php:55
+msgid "Image uploaded but image cropping failed."
+msgstr ""
+
+#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104
+#: mod/profile_photo.php:315
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr ""
+
+#: mod/profile_photo.php:125
+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:153 mod/photos.php:763 mod/photos.php:766
+#: mod/photos.php:795 mod/wall_upload.php:186
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr ""
+
+#: mod/profile_photo.php:162 mod/photos.php:818 mod/wall_upload.php:200
+msgid "Unable to process image."
+msgstr ""
+
+#: mod/profile_photo.php:247
+msgid "Upload File:"
+msgstr ""
+
+#: mod/profile_photo.php:248
+msgid "Select a profile:"
+msgstr ""
+
+#: mod/profile_photo.php:249 mod/profiles.php:691 mod/newmember.php:26
+msgid "Upload Profile Photo"
+msgstr ""
+
+#: mod/profile_photo.php:250 mod/fbrowser.php:105 mod/fbrowser.php:136
+msgid "Upload"
+msgstr ""
+
+#: mod/profile_photo.php:253
+msgid "or"
+msgstr ""
+
+#: mod/profile_photo.php:253
+msgid "skip this step"
+msgstr ""
+
+#: mod/profile_photo.php:253
+msgid "select a photo from your photo albums"
+msgstr ""
+
+#: mod/profile_photo.php:266
+msgid "Crop Image"
+msgstr ""
+
+#: mod/profile_photo.php:267
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr ""
+
+#: mod/profile_photo.php:269
+msgid "Done Editing"
+msgstr ""
+
+#: mod/profile_photo.php:305
+msgid "Image uploaded successfully."
+msgstr ""
+
+#: mod/profile_photo.php:307 mod/photos.php:847 mod/wall_upload.php:239
+msgid "Image upload failed."
+msgstr ""
+
+#: mod/removeme.php:43
+msgid "User deleted their account"
+msgstr ""
+
+#: mod/removeme.php:44
+msgid ""
+"On your Friendica node an user deleted their account. Please ensure that "
+"their data is removed from the backups."
+msgstr ""
+
+#: mod/removeme.php:45
+#, php-format
+msgid "The user id is %d"
+msgstr ""
+
+#: mod/removeme.php:76 mod/removeme.php:79
+msgid "Remove My Account"
+msgstr ""
+
+#: mod/removeme.php:77
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr ""
+
+#: mod/removeme.php:78
+msgid "Please enter your password for verification:"
+msgstr ""
+
+#: mod/manage.php:180
+msgid "Manage Identities and/or Pages"
+msgstr ""
+
+#: mod/manage.php:181
+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:182
+msgid "Select an identity to manage: "
+msgstr ""
+
+#: mod/update_notes.php:40 mod/update_display.php:27
+#: mod/update_community.php:27 mod/update_network.php:33
+#: mod/update_profile.php:39
msgid "[Embedded content - reload page to view]"
msgstr ""
@@ -1708,187 +3612,113 @@ msgid ""
"select \"Export account\""
msgstr ""
-#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
+#: mod/invite.php:33
+msgid "Total invitation limit exceeded."
+msgstr ""
+
+#: mod/invite.php:55
#, php-format
-msgid "%1$s welcomes %2$s"
+msgid "%s : Not a valid email address."
msgstr ""
-#: mod/match.php:48
-msgid "No keywords to match. Please add keywords to your default profile."
+#: mod/invite.php:87
+msgid "Please join us on Friendica"
msgstr ""
-#: mod/match.php:104
-msgid "is interested in:"
+#: mod/invite.php:96
+msgid "Invitation limit exceeded. Please contact your site administrator."
msgstr ""
-#: mod/match.php:120
-msgid "Profile Match"
-msgstr ""
-
-#: mod/match.php:125 mod/dirfind.php:253
-msgid "No matches"
-msgstr ""
-
-#: mod/notifications.php:37
-msgid "Invalid request identifier."
-msgstr ""
-
-#: mod/notifications.php:46 mod/notifications.php:183 mod/notifications.php:230
-msgid "Discard"
-msgstr ""
-
-#: mod/notifications.php:62 mod/notifications.php:182 mod/notifications.php:266
-#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
-msgid "Ignore"
-msgstr ""
-
-#: mod/notifications.php:98 src/Content/Nav.php:189
-msgid "Notifications"
-msgstr ""
-
-#: mod/notifications.php:107
-msgid "Network Notifications"
-msgstr ""
-
-#: mod/notifications.php:113 mod/notify.php:81
-msgid "System Notifications"
-msgstr ""
-
-#: mod/notifications.php:119
-msgid "Personal Notifications"
-msgstr ""
-
-#: mod/notifications.php:125
-msgid "Home Notifications"
-msgstr ""
-
-#: mod/notifications.php:155
-msgid "Show Ignored Requests"
-msgstr ""
-
-#: mod/notifications.php:155
-msgid "Hide Ignored Requests"
-msgstr ""
-
-#: mod/notifications.php:167 mod/notifications.php:237
-msgid "Notification type: "
-msgstr ""
-
-#: mod/notifications.php:170
+#: mod/invite.php:100
#, php-format
-msgid "suggested by %s"
+msgid "%s : Message delivery failed."
msgstr ""
-#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
-msgid "Hide this contact from others"
+#: mod/invite.php:104
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/invite.php:122
+msgid "You have no more invitations available"
msgstr ""
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "Post a new friend activity"
-msgstr ""
-
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "if applicable"
-msgstr ""
-
-#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1796
-msgid "Approve"
-msgstr ""
-
-#: mod/notifications.php:198
-msgid "Claims to be known to you: "
-msgstr ""
-
-#: mod/notifications.php:199
-msgid "yes"
-msgstr ""
-
-#: mod/notifications.php:199
-msgid "no"
-msgstr ""
-
-#: mod/notifications.php:200 mod/notifications.php:205
-msgid "Shall your connection be bidirectional or not?"
-msgstr ""
-
-#: mod/notifications.php:201 mod/notifications.php:206
+#: mod/invite.php:130
#, php-format
msgid ""
-"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
-"also receive updates from them in your news feed."
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many "
+"other social networks."
msgstr ""
-#: mod/notifications.php:202
+#: mod/invite.php:132
#, php-format
msgid ""
-"Accepting %s as a subscriber allows them to subscribe to your posts, but you "
-"will not receive updates from them in your news feed."
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
msgstr ""
-#: mod/notifications.php:207
+#: mod/invite.php:133
#, php-format
msgid ""
-"Accepting %s as a sharer allows them to subscribe to your posts, but you "
-"will not receive updates from them in your news feed."
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
msgstr ""
-#: mod/notifications.php:218
-msgid "Friend"
+#: mod/invite.php:137
+msgid ""
+"Our apologies. This system is not currently configured to connect with other "
+"public sites or invite members."
msgstr ""
-#: mod/notifications.php:219
-msgid "Sharer"
+#: mod/invite.php:141
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks."
msgstr ""
-#: mod/notifications.php:219
-msgid "Subscriber"
-msgstr ""
-
-#: mod/notifications.php:247 mod/contacts.php:660 mod/events.php:518
-#: mod/directory.php:148 src/Model/Event.php:60 src/Model/Event.php:85
-#: src/Model/Event.php:421 src/Model/Event.php:900 src/Model/Profile.php:417
-msgid "Location:"
-msgstr ""
-
-#: mod/notifications.php:249 mod/contacts.php:664 mod/directory.php:154
-#: src/Model/Profile.php:423 src/Model/Profile.php:808
-msgid "About:"
-msgstr ""
-
-#: mod/notifications.php:251 mod/contacts.php:666 mod/follow.php:174
-#: src/Model/Profile.php:796
-msgid "Tags:"
-msgstr ""
-
-#: mod/notifications.php:253 mod/directory.php:151 src/Model/Profile.php:420
-#: src/Model/Profile.php:747
-msgid "Gender:"
-msgstr ""
-
-#: mod/notifications.php:258 mod/contacts.php:656 mod/unfollow.php:122
-#: mod/admin.php:490 mod/admin.php:500 mod/follow.php:166
-msgid "Profile URL"
-msgstr ""
-
-#: mod/notifications.php:261 mod/contacts.php:71 src/Model/Profile.php:520
-msgid "Network:"
-msgstr ""
-
-#: mod/notifications.php:275
-msgid "No introductions."
-msgstr ""
-
-#: mod/notifications.php:316
-msgid "Show unread"
-msgstr ""
-
-#: mod/notifications.php:316
-msgid "Show all"
-msgstr ""
-
-#: mod/notifications.php:322
+#: mod/invite.php:140
#, php-format
-msgid "No more %s notifications."
+msgid "To accept this invitation, please visit and register at %s."
+msgstr ""
+
+#: mod/invite.php:147
+msgid "Send invitations"
+msgstr ""
+
+#: mod/invite.php:148
+msgid "Enter email addresses, one per line:"
+msgstr ""
+
+#: mod/invite.php:149 mod/message.php:259 mod/message.php:426
+#: mod/wallmessage.php:141
+msgid "Your message:"
+msgstr ""
+
+#: mod/invite.php:150
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr ""
+
+#: mod/invite.php:152
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr ""
+
+#: mod/invite.php:152
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr ""
+
+#: mod/invite.php:154
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendi.ca"
msgstr ""
#: mod/openid.php:29
@@ -1900,463 +3730,152 @@ msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr ""
-#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:134
-msgid "Login failed."
+#: mod/hcard.php:18
+msgid "No profile"
msgstr ""
-#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149
-#: mod/profiles.php:196 mod/profiles.php:618
-msgid "Profile not found."
+#: mod/apps.php:14 index.php:273
+msgid "You must be logged in to use addons. "
msgstr ""
-#: mod/dfrn_confirm.php:132
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it "
-"has already been approved."
+#: mod/apps.php:19
+msgid "Applications"
msgstr ""
-#: mod/dfrn_confirm.php:242
-msgid "Response from remote site was not understood."
+#: mod/apps.php:22
+msgid "No installed applications."
msgstr ""
-#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr ""
-
-#: mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr ""
-
-#: mod/dfrn_confirm.php:275
-msgid "Temporary failure. Please wait and try again."
-msgstr ""
-
-#: mod/dfrn_confirm.php:278
-msgid "Introduction failed or was revoked."
-msgstr ""
-
-#: mod/dfrn_confirm.php:283
-msgid "Remote site reported: "
-msgstr ""
-
-#: mod/dfrn_confirm.php:396
-msgid "Unable to set contact photo."
-msgstr ""
-
-#: mod/dfrn_confirm.php:498
-#, php-format
-msgid "No user record found for '%s' "
-msgstr ""
-
-#: mod/dfrn_confirm.php:508
-msgid "Our site encryption key is apparently messed up."
-msgstr ""
-
-#: mod/dfrn_confirm.php:519
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr ""
-
-#: mod/dfrn_confirm.php:535
-msgid "Contact record was not found for you on our site."
-msgstr ""
-
-#: mod/dfrn_confirm.php:549
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr ""
-
-#: mod/dfrn_confirm.php:565
-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:576
-msgid "Unable to set your contact credentials on our system."
-msgstr ""
-
-#: mod/dfrn_confirm.php:631
-msgid "Unable to update your contact profile details on our system"
-msgstr ""
-
-#: mod/dfrn_confirm.php:661 mod/dfrn_request.php:568 src/Model/Contact.php:1537
-msgid "[Name Withheld]"
-msgstr ""
-
-#: mod/dfrn_confirm.php:694
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr ""
-
-#: mod/manage.php:180
-msgid "Manage Identities and/or Pages"
-msgstr ""
-
-#: mod/manage.php:181
-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:182
-msgid "Select an identity to manage: "
-msgstr ""
-
-#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83
-#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112
-#: mod/wall_upload.php:155 mod/wall_upload.php:158
-msgid "Invalid request."
-msgstr ""
-
-#: mod/wall_attach.php:101
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr ""
-
-#: mod/wall_attach.php:101
-msgid "Or - did you try to upload an empty file?"
-msgstr ""
-
-#: mod/wall_attach.php:112
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr ""
-
-#: mod/wall_attach.php:136 mod/wall_attach.php:152
-msgid "File upload failed."
-msgstr ""
-
-#: mod/dfrn_request.php:94
-msgid "This introduction has already been accepted."
-msgstr ""
-
-#: mod/dfrn_request.php:112 mod/dfrn_request.php:359
-msgid "Profile location is not valid or does not contain profile information."
-msgstr ""
-
-#: mod/dfrn_request.php:116 mod/dfrn_request.php:363
-msgid "Warning: profile location has no identifiable owner name."
-msgstr ""
-
-#: mod/dfrn_request.php:119 mod/dfrn_request.php:366
-msgid "Warning: profile location has no profile photo."
-msgstr ""
-
-#: mod/dfrn_request.php:123 mod/dfrn_request.php:370
-#, 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:162
-msgid "Introduction complete."
-msgstr ""
-
-#: mod/dfrn_request.php:199
-msgid "Unrecoverable protocol error."
-msgstr ""
-
-#: mod/dfrn_request.php:226
-msgid "Profile unavailable."
-msgstr ""
-
-#: mod/dfrn_request.php:248
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr ""
-
-#: mod/dfrn_request.php:249
-msgid "Spam protection measures have been invoked."
-msgstr ""
-
-#: mod/dfrn_request.php:250
-msgid "Friends are advised to please try again in 24 hours."
-msgstr ""
-
-#: mod/dfrn_request.php:280
-msgid "Invalid locator"
-msgstr ""
-
-#: mod/dfrn_request.php:316
-msgid "You have already introduced yourself here."
-msgstr ""
-
-#: mod/dfrn_request.php:319
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr ""
-
-#: mod/dfrn_request.php:339
-msgid "Invalid profile URL."
-msgstr ""
-
-#: mod/dfrn_request.php:345 src/Model/Contact.php:1235
-msgid "Disallowed profile URL."
-msgstr ""
-
-#: mod/dfrn_request.php:351 mod/admin.php:353 mod/admin.php:371
-#: mod/friendica.php:128 src/Model/Contact.php:1240
-msgid "Blocked domain"
-msgstr ""
-
-#: mod/dfrn_request.php:419 mod/contacts.php:230
-msgid "Failed to update contact record."
-msgstr ""
-
-#: mod/dfrn_request.php:439
-msgid "Your introduction has been sent."
-msgstr ""
-
-#: mod/dfrn_request.php:477
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
-msgstr ""
-
-#: mod/dfrn_request.php:493
-msgid "Please login to confirm introduction."
-msgstr ""
-
-#: mod/dfrn_request.php:501
-msgid ""
-"Incorrect identity currently logged in. Please login to this"
-"strong> profile."
-msgstr ""
-
-#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
-msgid "Confirm"
-msgstr ""
-
-#: mod/dfrn_request.php:527
-msgid "Hide this contact"
-msgstr ""
-
-#: mod/dfrn_request.php:530
-#, php-format
-msgid "Welcome home %s."
-msgstr ""
-
-#: mod/dfrn_request.php:531
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr ""
-
-#: mod/dfrn_request.php:607 mod/probe.php:13 mod/search.php:98
-#: mod/search.php:104 mod/viewcontacts.php:45 mod/webfinger.php:16
-#: mod/community.php:27 mod/photos.php:932 mod/videos.php:199
-#: mod/display.php:203 mod/directory.php:42
-msgid "Public access denied."
-msgstr ""
-
-#: mod/dfrn_request.php:642
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr ""
-
-#: mod/dfrn_request.php:645
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, follow "
-"this link to find a public Friendica site and join us today ."
-msgstr ""
-
-#: mod/dfrn_request.php:650
-msgid "Friend/Connection Request"
-msgstr ""
-
-#: mod/dfrn_request.php:651
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@gnusocial.de"
-msgstr ""
-
-#: mod/dfrn_request.php:652 mod/follow.php:149
-msgid "Please answer the following:"
-msgstr ""
-
-#: mod/dfrn_request.php:653 mod/follow.php:150
-#, php-format
-msgid "Does %s know you?"
-msgstr ""
-
-#: mod/dfrn_request.php:654 mod/follow.php:151
-msgid "Add a personal note:"
-msgstr ""
-
-#: mod/dfrn_request.php:656 src/Content/ContactSelector.php:79
-msgid "Friendica"
-msgstr ""
-
-#: mod/dfrn_request.php:657
-msgid "GNU Social (Pleroma, Mastodon)"
-msgstr ""
-
-#: mod/dfrn_request.php:658
-msgid "Diaspora (Socialhome, Hubzilla)"
-msgstr ""
-
-#: mod/dfrn_request.php:659
-#, php-format
-msgid ""
-" - please do not use this form. Instead, enter %s into your Diaspora search "
-"bar."
-msgstr ""
-
-#: mod/dfrn_request.php:660 mod/unfollow.php:113 mod/follow.php:157
-msgid "Your Identity Address:"
-msgstr ""
-
-#: mod/dfrn_request.php:662 mod/unfollow.php:65 mod/follow.php:62
-msgid "Submit Request"
-msgstr ""
-
-#: mod/filer.php:34
-msgid "- select -"
-msgstr ""
-
-#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814
-msgid "l F d, Y \\@ g:i A"
-msgstr ""
-
-#: mod/localtime.php:33
-msgid "Time Conversion"
-msgstr ""
-
-#: mod/localtime.php:35
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr ""
-
-#: mod/localtime.php:39
-#, php-format
-msgid "UTC time: %s"
-msgstr ""
-
-#: mod/localtime.php:42
-#, php-format
-msgid "Current timezone: %s"
-msgstr ""
-
-#: mod/localtime.php:46
-#, php-format
-msgid "Converted localtime: %s"
-msgstr ""
-
-#: mod/localtime.php:52
-msgid "Please select your timezone:"
-msgstr ""
-
-#: mod/notify.php:77
-msgid "No more system notifications."
-msgstr ""
-
-#: mod/ping.php:292
-msgid "{0} wants to be your friend"
-msgstr ""
-
-#: mod/ping.php:307
-msgid "{0} sent you a message"
-msgstr ""
-
-#: mod/ping.php:322
-msgid "{0} requested registration"
-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/probe.php:14 mod/webfinger.php:17
-msgid "Only logged in users are permitted to perform a probing."
-msgstr ""
-
-#: mod/profperm.php:28 mod/group.php:83 index.php:443
-msgid "Permission denied"
-msgstr ""
-
-#: mod/profperm.php:34 mod/profperm.php:65
-msgid "Invalid profile identifier."
-msgstr ""
-
-#: mod/profperm.php:111
-msgid "Profile Visibility Editor"
-msgstr ""
-
-#: mod/profperm.php:115 mod/group.php:265
-msgid "Click on a contact to add or remove."
-msgstr ""
-
-#: mod/profperm.php:124
-msgid "Visible To"
-msgstr ""
-
-#: mod/profperm.php:140
-msgid "All Contacts (with secure profile access)"
-msgstr ""
-
-#: mod/regmod.php:68
-msgid "Account approved."
-msgstr ""
-
-#: mod/regmod.php:93
-#, php-format
-msgid "Registration revoked for %s"
-msgstr ""
-
-#: mod/regmod.php:102
-msgid "Please login."
-msgstr ""
-
-#: mod/search.php:37 mod/network.php:194
+#: mod/network.php:194 mod/search.php:37
msgid "Remove term"
msgstr ""
-#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100
-msgid "Saved Searches"
-msgstr ""
-
-#: mod/search.php:105
-msgid "Only logged in users are permitted to perform a search."
-msgstr ""
-
-#: mod/search.php:129
-msgid "Too Many Requests"
-msgstr ""
-
-#: mod/search.php:130
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr ""
-
-#: mod/search.php:228 mod/community.php:136
-msgid "No results."
-msgstr ""
-
-#: mod/search.php:234
+#: mod/network.php:547
#, php-format
-msgid "Items tagged with: %s"
+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 a network that doesn't allow "
+"non public messages."
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/network.php:550
+msgid "Messages in this group won't be send to these receivers."
msgstr ""
-#: mod/search.php:236 mod/contacts.php:819
+#: mod/network.php:618
+msgid "No such group"
+msgstr ""
+
+#: mod/network.php:639 mod/group.php:216
+msgid "Group is empty"
+msgstr ""
+
+#: mod/network.php:643
#, php-format
-msgid "Results for: %s"
+msgid "Group: %s"
+msgstr ""
+
+#: mod/network.php:669
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr ""
+
+#: mod/network.php:672
+msgid "Invalid contact."
+msgstr ""
+
+#: mod/network.php:936
+msgid "Commented Order"
+msgstr ""
+
+#: mod/network.php:939
+msgid "Sort by Comment Date"
+msgstr ""
+
+#: mod/network.php:944
+msgid "Posted Order"
+msgstr ""
+
+#: mod/network.php:947
+msgid "Sort by Post Date"
+msgstr ""
+
+#: mod/network.php:958
+msgid "Posts that mention or involve you"
+msgstr ""
+
+#: mod/network.php:966
+msgid "New"
+msgstr ""
+
+#: mod/network.php:969
+msgid "Activity Stream - by date"
+msgstr ""
+
+#: mod/network.php:977
+msgid "Shared Links"
+msgstr ""
+
+#: mod/network.php:980
+msgid "Interesting Links"
+msgstr ""
+
+#: mod/network.php:988
+msgid "Starred"
+msgstr ""
+
+#: mod/network.php:991
+msgid "Favourite Posts"
+msgstr ""
+
+#: mod/friendica.php:77
+msgid "This is Friendica, version"
+msgstr ""
+
+#: mod/friendica.php:78
+msgid "running at web location"
+msgstr ""
+
+#: mod/friendica.php:82
+msgid ""
+"Please visit Friendi.ca to learn more "
+"about the Friendica project."
+msgstr ""
+
+#: mod/friendica.php:86
+msgid "Bug reports and issues: please visit"
+msgstr ""
+
+#: mod/friendica.php:86
+msgid "the bugtracker at github"
+msgstr ""
+
+#: mod/friendica.php:89
+msgid ""
+"Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
+msgstr ""
+
+#: mod/friendica.php:103
+msgid "Installed addons/apps:"
+msgstr ""
+
+#: mod/friendica.php:117
+msgid "No installed addons/apps"
+msgstr ""
+
+#: mod/friendica.php:122
+#, php-format
+msgid "Read about the Terms of Service of this node."
+msgstr ""
+
+#: mod/friendica.php:127
+msgid "On this server the following remote servers are blocked."
+msgstr ""
+
+#: mod/friendica.php:128 mod/admin.php:354 mod/admin.php:372
+msgid "Reason for the block"
msgstr ""
#: mod/subthread.php:113
@@ -2364,179 +3883,407 @@ msgstr ""
msgid "%1$s is following %2$s's %3$s"
msgstr ""
-#: mod/tagrm.php:47
-msgid "Tag removed"
+#: mod/profiles.php:39 mod/profiles.php:149 mod/profiles.php:196
+#: mod/profiles.php:618 mod/dfrn_confirm.php:74
+msgid "Profile not found."
msgstr ""
-#: mod/tagrm.php:85
-msgid "Remove Item Tag"
+#: mod/profiles.php:58
+msgid "Profile deleted."
msgstr ""
-#: mod/tagrm.php:87
-msgid "Select a tag to remove: "
+#: mod/profiles.php:74 mod/profiles.php:110
+msgid "Profile-"
msgstr ""
-#: mod/tagrm.php:98 mod/delegate.php:177
-msgid "Remove"
+#: mod/profiles.php:93 mod/profiles.php:132
+msgid "New profile created."
msgstr ""
-#: mod/uexport.php:44
-msgid "Export account"
+#: mod/profiles.php:116
+msgid "Profile unavailable to clone."
msgstr ""
-#: mod/uexport.php:44
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
+#: mod/profiles.php:206
+msgid "Profile Name is required."
msgstr ""
-#: mod/uexport.php:45
-msgid "Export all"
+#: mod/profiles.php:347
+msgid "Marital Status"
msgstr ""
-#: mod/uexport.php:45
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
+#: mod/profiles.php:351
+msgid "Romantic Partner"
msgstr ""
-#: mod/uexport.php:52 mod/settings.php:107
-msgid "Export personal data"
+#: mod/profiles.php:363
+msgid "Work/Employment"
msgstr ""
-#: mod/viewcontacts.php:87
-msgid "No contacts."
+#: mod/profiles.php:366
+msgid "Religion"
msgstr ""
-#: mod/viewsrc.php:12
-msgid "Access denied."
+#: mod/profiles.php:370
+msgid "Political Views"
msgstr ""
-#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766
-#: mod/photos.php:795 mod/profile_photo.php:153
+#: mod/profiles.php:374
+msgid "Gender"
+msgstr ""
+
+#: mod/profiles.php:378
+msgid "Sexual Preference"
+msgstr ""
+
+#: mod/profiles.php:382
+msgid "XMPP"
+msgstr ""
+
+#: mod/profiles.php:386
+msgid "Homepage"
+msgstr ""
+
+#: mod/profiles.php:390 mod/profiles.php:686
+msgid "Interests"
+msgstr ""
+
+#: mod/profiles.php:394 mod/admin.php:490
+msgid "Address"
+msgstr ""
+
+#: mod/profiles.php:401 mod/profiles.php:682
+msgid "Location"
+msgstr ""
+
+#: mod/profiles.php:486
+msgid "Profile updated."
+msgstr ""
+
+#: mod/profiles.php:564
+msgid " and "
+msgstr ""
+
+#: mod/profiles.php:573
+msgid "public profile"
+msgstr ""
+
+#: mod/profiles.php:576
#, php-format
-msgid "Image exceeds size limit of %s"
+msgid "%1$s changed %2$s to “%3$s”"
msgstr ""
-#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162
-msgid "Unable to process image."
-msgstr ""
-
-#: mod/wall_upload.php:231 mod/item.php:471 src/Object/Image.php:953
-#: src/Object/Image.php:969 src/Object/Image.php:977 src/Object/Image.php:1002
-msgid "Wall Photos"
-msgstr ""
-
-#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307
-msgid "Image upload failed."
-msgstr ""
-
-#: mod/wallmessage.php:49 mod/wallmessage.php:112
+#: mod/profiles.php:577
#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgid " - Visit %1$s's %2$s"
msgstr ""
-#: mod/wallmessage.php:57 mod/message.php:73
-msgid "No recipient selected."
-msgstr ""
-
-#: mod/wallmessage.php:60
-msgid "Unable to check your home location."
-msgstr ""
-
-#: mod/wallmessage.php:63 mod/message.php:80
-msgid "Message could not be sent."
-msgstr ""
-
-#: mod/wallmessage.php:66 mod/message.php:83
-msgid "Message collection failure."
-msgstr ""
-
-#: mod/wallmessage.php:69 mod/message.php:86
-msgid "Message sent."
-msgstr ""
-
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
-msgstr ""
-
-#: mod/wallmessage.php:132 mod/message.php:250
-msgid "Send Private Message"
-msgstr ""
-
-#: mod/wallmessage.php:133
+#: mod/profiles.php:579
#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr ""
+
+#: mod/profiles.php:633
+msgid "Hide contacts and friends:"
+msgstr ""
+
+#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661
+#: mod/api.php:111 mod/settings.php:1105 mod/settings.php:1111
+#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1126
+#: mod/settings.php:1130 mod/settings.php:1134 mod/settings.php:1138
+#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
+#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:653
+#: mod/follow.php:150 mod/register.php:238
+msgid "No"
+msgstr ""
+
+#: mod/profiles.php:638
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr ""
+
+#: mod/profiles.php:658
+msgid "Show more profile fields:"
+msgstr ""
+
+#: mod/profiles.php:670
+msgid "Profile Actions"
+msgstr ""
+
+#: mod/profiles.php:671
+msgid "Edit Profile Details"
+msgstr ""
+
+#: mod/profiles.php:673
+msgid "Change Profile Photo"
+msgstr ""
+
+#: mod/profiles.php:674
+msgid "View this profile"
+msgstr ""
+
+#: mod/profiles.php:676
+msgid "Create a new profile using these settings"
+msgstr ""
+
+#: mod/profiles.php:677
+msgid "Clone this profile"
+msgstr ""
+
+#: mod/profiles.php:678
+msgid "Delete this profile"
+msgstr ""
+
+#: mod/profiles.php:680
+msgid "Basic information"
+msgstr ""
+
+#: mod/profiles.php:681
+msgid "Profile picture"
+msgstr ""
+
+#: mod/profiles.php:683
+msgid "Preferences"
+msgstr ""
+
+#: mod/profiles.php:684
+msgid "Status information"
+msgstr ""
+
+#: mod/profiles.php:685
+msgid "Additional information"
+msgstr ""
+
+#: mod/profiles.php:688
+msgid "Relation"
+msgstr ""
+
+#: mod/profiles.php:692
+msgid "Your Gender:"
+msgstr ""
+
+#: mod/profiles.php:693
+msgid "♥ Marital Status:"
+msgstr ""
+
+#: mod/profiles.php:695
+msgid "Example: fishing photography software"
+msgstr ""
+
+#: mod/profiles.php:700
+msgid "Profile Name:"
+msgstr ""
+
+#: mod/profiles.php:700 mod/events.php:508 mod/events.php:520
+msgid "Required"
+msgstr ""
+
+#: mod/profiles.php:702
msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
+"This is your public profile. It may "
+"be visible to anybody using the internet."
msgstr ""
-#: mod/wallmessage.php:134 mod/message.php:251 mod/message.php:421
-msgid "To:"
+#: mod/profiles.php:703
+msgid "Your Full Name:"
msgstr ""
-#: mod/wallmessage.php:135 mod/message.php:255 mod/message.php:423
-msgid "Subject:"
+#: mod/profiles.php:704
+msgid "Title/Description:"
msgstr ""
-#: mod/wallmessage.php:141 mod/message.php:259 mod/message.php:426
-#: mod/invite.php:149
-msgid "Your message:"
+#: mod/profiles.php:707
+msgid "Street Address:"
msgstr ""
-#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:312
-msgid "Login"
+#: mod/profiles.php:708
+msgid "Locality/City:"
msgstr ""
-#: mod/bookmarklet.php:51
-msgid "The post was created"
+#: mod/profiles.php:709
+msgid "Region/State:"
msgstr ""
-#: mod/community.php:46
-msgid "Community option not available."
+#: mod/profiles.php:710
+msgid "Postal/Zip Code:"
msgstr ""
-#: mod/community.php:63
-msgid "Not available."
+#: mod/profiles.php:711
+msgid "Country:"
msgstr ""
-#: mod/community.php:76
-msgid "Local Community"
+#: mod/profiles.php:715
+msgid "Who: (if applicable)"
msgstr ""
-#: mod/community.php:79
-msgid "Posts from local users on this server"
+#: mod/profiles.php:715
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr ""
-#: mod/community.php:87
-msgid "Global Community"
+#: mod/profiles.php:716
+msgid "Since [date]:"
msgstr ""
-#: mod/community.php:90
-msgid "Posts from users of the whole federated network"
+#: mod/profiles.php:718
+msgid "Tell us about yourself..."
msgstr ""
-#: mod/community.php:180
+#: mod/profiles.php:719
+msgid "XMPP (Jabber) address:"
+msgstr ""
+
+#: mod/profiles.php:719
msgid ""
-"This community stream shows all public posts received by this node. They may "
-"not reflect the opinions of this node’s users."
+"The XMPP address will be propagated to your contacts so that they can follow "
+"you."
msgstr ""
-#: mod/editpost.php:25 mod/editpost.php:35
-msgid "Item not found"
+#: mod/profiles.php:720
+msgid "Homepage URL:"
msgstr ""
-#: mod/editpost.php:42
-msgid "Edit post"
+#: mod/profiles.php:723
+msgid "Religious Views:"
msgstr ""
-#: mod/editpost.php:134 src/Core/ACL.php:315
-msgid "CC: email addresses"
+#: mod/profiles.php:724
+msgid "Public Keywords:"
msgstr ""
-#: mod/editpost.php:141 src/Core/ACL.php:316
-msgid "Example: bob@example.com, mary@example.com"
+#: mod/profiles.php:724
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr ""
+
+#: mod/profiles.php:725
+msgid "Private Keywords:"
+msgstr ""
+
+#: mod/profiles.php:725
+msgid "(Used for searching profiles, never shown to others)"
+msgstr ""
+
+#: mod/profiles.php:728
+msgid "Musical interests"
+msgstr ""
+
+#: mod/profiles.php:729
+msgid "Books, literature"
+msgstr ""
+
+#: mod/profiles.php:730
+msgid "Television"
+msgstr ""
+
+#: mod/profiles.php:731
+msgid "Film/dance/culture/entertainment"
+msgstr ""
+
+#: mod/profiles.php:732
+msgid "Hobbies/Interests"
+msgstr ""
+
+#: mod/profiles.php:733
+msgid "Love/romance"
+msgstr ""
+
+#: mod/profiles.php:734
+msgid "Work/employment"
+msgstr ""
+
+#: mod/profiles.php:735
+msgid "School/education"
+msgstr ""
+
+#: mod/profiles.php:736
+msgid "Contact information and Social Networks"
+msgstr ""
+
+#: mod/profiles.php:776
+msgid "Edit/Manage Profiles"
+msgstr ""
+
+#: mod/events.php:105 mod/events.php:107
+msgid "Event can not end before it has started."
+msgstr ""
+
+#: mod/events.php:114 mod/events.php:116
+msgid "Event title and start time are required."
+msgstr ""
+
+#: mod/events.php:392 mod/cal.php:275
+msgid "View"
+msgstr ""
+
+#: mod/events.php:393
+msgid "Create New Event"
+msgstr ""
+
+#: mod/events.php:394 mod/cal.php:276
+msgid "Previous"
+msgstr ""
+
+#: mod/events.php:395 mod/cal.php:277 mod/install.php:209
+msgid "Next"
+msgstr ""
+
+#: mod/events.php:404 mod/cal.php:284
+msgid "list"
+msgstr ""
+
+#: mod/events.php:506
+msgid "Event details"
+msgstr ""
+
+#: mod/events.php:507
+msgid "Starting date and Title are required."
+msgstr ""
+
+#: mod/events.php:508 mod/events.php:509
+msgid "Event Starts:"
+msgstr ""
+
+#: mod/events.php:510 mod/events.php:526
+msgid "Finish date/time is not known or not relevant"
+msgstr ""
+
+#: mod/events.php:512 mod/events.php:513
+msgid "Event Finishes:"
+msgstr ""
+
+#: mod/events.php:514 mod/events.php:527
+msgid "Adjust for viewer timezone"
+msgstr ""
+
+#: mod/events.php:516
+msgid "Description:"
+msgstr ""
+
+#: mod/events.php:520 mod/events.php:522
+msgid "Title:"
+msgstr ""
+
+#: mod/events.php:523 mod/events.php:524
+msgid "Share this event"
+msgstr ""
+
+#: mod/events.php:552
+msgid "Failed to remove event"
+msgstr ""
+
+#: mod/events.php:554
+msgid "Event removed"
+msgstr ""
+
+#: mod/notify.php:77
+msgid "No more system notifications."
+msgstr ""
+
+#: mod/notify.php:81 mod/notifications.php:113
+msgid "System Notifications"
+msgstr ""
+
+#: mod/fsuggest.php:30 mod/fsuggest.php:96 mod/crepair.php:110
+#: mod/dfrn_confirm.php:131
+msgid "Contact not found."
msgstr ""
#: mod/fsuggest.php:72
@@ -2552,6 +4299,958 @@ msgstr ""
msgid "Suggest a friend for %s"
msgstr ""
+#: mod/attach.php:15
+msgid "Item not available."
+msgstr ""
+
+#: mod/attach.php:25
+msgid "Item was not found."
+msgstr ""
+
+#: mod/allfriends.php:51
+msgid "No friends to display."
+msgstr ""
+
+#: mod/viewcontacts.php:87
+msgid "No contacts."
+msgstr ""
+
+#: mod/viewcontacts.php:112 mod/nogroup.php:42 mod/contacts.php:619
+#: mod/contacts.php:959
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr ""
+
+#: mod/ostatus_subscribe.php:21
+msgid "Subscribing to OStatus contacts"
+msgstr ""
+
+#: mod/ostatus_subscribe.php:33
+msgid "No contact provided."
+msgstr ""
+
+#: mod/ostatus_subscribe.php:40
+msgid "Couldn't fetch information for contact."
+msgstr ""
+
+#: mod/ostatus_subscribe.php:50
+msgid "Couldn't fetch friends for contact."
+msgstr ""
+
+#: mod/ostatus_subscribe.php:78
+msgid "success"
+msgstr ""
+
+#: mod/ostatus_subscribe.php:80
+msgid "failed"
+msgstr ""
+
+#: mod/api.php:85 mod/api.php:107
+msgid "Authorize application connection"
+msgstr ""
+
+#: mod/api.php:86
+msgid "Return to your app and insert this Securty Code:"
+msgstr ""
+
+#: mod/api.php:95
+msgid "Please login to continue."
+msgstr ""
+
+#: mod/api.php:109
+msgid ""
+"Do you want to authorize this application to access your posts and contacts, "
+"and/or create new posts for you?"
+msgstr ""
+
+#: mod/settings.php:50 mod/photos.php:126
+msgid "everybody"
+msgstr ""
+
+#: mod/settings.php:55
+msgid "Account"
+msgstr ""
+
+#: mod/settings.php:64 mod/admin.php:187
+msgid "Additional features"
+msgstr ""
+
+#: mod/settings.php:72
+msgid "Display"
+msgstr ""
+
+#: mod/settings.php:79 mod/settings.php:842
+msgid "Social Networks"
+msgstr ""
+
+#: mod/settings.php:86 mod/admin.php:185 mod/admin.php:1918 mod/admin.php:1978
+msgid "Addons"
+msgstr ""
+
+#: mod/settings.php:100
+msgid "Connected apps"
+msgstr ""
+
+#: mod/settings.php:107 mod/uexport.php:52
+msgid "Export personal data"
+msgstr ""
+
+#: mod/settings.php:114
+msgid "Remove account"
+msgstr ""
+
+#: mod/settings.php:168
+msgid "Missing some important data!"
+msgstr ""
+
+#: mod/settings.php:170 mod/settings.php:701 mod/contacts.php:826
+msgid "Update"
+msgstr ""
+
+#: mod/settings.php:279
+msgid "Failed to connect with email account using the settings provided."
+msgstr ""
+
+#: mod/settings.php:284
+msgid "Email settings updated."
+msgstr ""
+
+#: mod/settings.php:300
+msgid "Features updated"
+msgstr ""
+
+#: mod/settings.php:372
+msgid "Relocate message has been send to your contacts"
+msgstr ""
+
+#: mod/settings.php:389
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr ""
+
+#: mod/settings.php:400
+msgid "Wrong password."
+msgstr ""
+
+#: mod/settings.php:496
+msgid " Please use a shorter name."
+msgstr ""
+
+#: mod/settings.php:499
+msgid " Name too short."
+msgstr ""
+
+#: mod/settings.php:507
+msgid "Wrong Password"
+msgstr ""
+
+#: mod/settings.php:512
+msgid "Invalid email."
+msgstr ""
+
+#: mod/settings.php:519
+msgid "Cannot change to that email."
+msgstr ""
+
+#: mod/settings.php:572
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr ""
+
+#: mod/settings.php:575
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr ""
+
+#: mod/settings.php:615
+msgid "Settings updated."
+msgstr ""
+
+#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
+msgid "Add application"
+msgstr ""
+
+#: mod/settings.php:675 mod/settings.php:784 mod/settings.php:872
+#: mod/settings.php:961 mod/settings.php:1194 mod/admin.php:307
+#: mod/admin.php:1346 mod/admin.php:1979 mod/admin.php:2232 mod/admin.php:2306
+#: mod/admin.php:2453 mod/delegate.php:168
+msgid "Save Settings"
+msgstr ""
+
+#: mod/settings.php:677 mod/settings.php:703 mod/admin.php:490
+#: mod/admin.php:1796 mod/admin.php:1807 mod/admin.php:1820 mod/admin.php:1836
+#: mod/crepair.php:158
+msgid "Name"
+msgstr ""
+
+#: mod/settings.php:678 mod/settings.php:704
+msgid "Consumer Key"
+msgstr ""
+
+#: mod/settings.php:679 mod/settings.php:705
+msgid "Consumer Secret"
+msgstr ""
+
+#: mod/settings.php:680 mod/settings.php:706
+msgid "Redirect"
+msgstr ""
+
+#: mod/settings.php:681 mod/settings.php:707
+msgid "Icon url"
+msgstr ""
+
+#: mod/settings.php:692
+msgid "You can't edit this application."
+msgstr ""
+
+#: mod/settings.php:735
+msgid "Connected Apps"
+msgstr ""
+
+#: mod/settings.php:739
+msgid "Client key starts with"
+msgstr ""
+
+#: mod/settings.php:740
+msgid "No name"
+msgstr ""
+
+#: mod/settings.php:741
+msgid "Remove authorization"
+msgstr ""
+
+#: mod/settings.php:752
+msgid "No Addon settings configured"
+msgstr ""
+
+#: mod/settings.php:761
+msgid "Addon Settings"
+msgstr ""
+
+#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443
+msgid "Off"
+msgstr ""
+
+#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443
+msgid "On"
+msgstr ""
+
+#: mod/settings.php:782
+msgid "Additional Features"
+msgstr ""
+
+#: mod/settings.php:805 mod/settings.php:806
+msgid "enabled"
+msgstr ""
+
+#: mod/settings.php:805 mod/settings.php:806
+msgid "disabled"
+msgstr ""
+
+#: mod/settings.php:805 mod/settings.php:806
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr ""
+
+#: mod/settings.php:806
+msgid "GNU Social (OStatus)"
+msgstr ""
+
+#: mod/settings.php:837
+msgid "Email access is disabled on this site."
+msgstr ""
+
+#: mod/settings.php:847
+msgid "General Social Media Settings"
+msgstr ""
+
+#: mod/settings.php:848
+msgid "Disable Content Warning"
+msgstr ""
+
+#: mod/settings.php:848
+msgid ""
+"Users on networks like Mastodon or Pleroma are able to set a content warning "
+"field which collapse their post by default. This disables the automatic "
+"collapsing and sets the content warning as the post title. Doesn't affect "
+"any other content filtering you eventually set up."
+msgstr ""
+
+#: mod/settings.php:849
+msgid "Disable intelligent shortening"
+msgstr ""
+
+#: mod/settings.php:849
+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:850
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+msgstr ""
+
+#: mod/settings.php:850
+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:851
+msgid "Default group for OStatus contacts"
+msgstr ""
+
+#: mod/settings.php:852
+msgid "Your legacy GNU Social account"
+msgstr ""
+
+#: mod/settings.php:852
+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:855
+msgid "Repair OStatus subscriptions"
+msgstr ""
+
+#: mod/settings.php:859
+msgid "Email/Mailbox Setup"
+msgstr ""
+
+#: mod/settings.php:860
+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:861
+msgid "Last successful email check:"
+msgstr ""
+
+#: mod/settings.php:863
+msgid "IMAP server name:"
+msgstr ""
+
+#: mod/settings.php:864
+msgid "IMAP port:"
+msgstr ""
+
+#: mod/settings.php:865
+msgid "Security:"
+msgstr ""
+
+#: mod/settings.php:865 mod/settings.php:870
+msgid "None"
+msgstr ""
+
+#: mod/settings.php:866
+msgid "Email login name:"
+msgstr ""
+
+#: mod/settings.php:867
+msgid "Email password:"
+msgstr ""
+
+#: mod/settings.php:868
+msgid "Reply-to address:"
+msgstr ""
+
+#: mod/settings.php:869
+msgid "Send public posts to all email contacts:"
+msgstr ""
+
+#: mod/settings.php:870
+msgid "Action after import:"
+msgstr ""
+
+#: mod/settings.php:870
+msgid "Move to folder"
+msgstr ""
+
+#: mod/settings.php:871
+msgid "Move to folder:"
+msgstr ""
+
+#: mod/settings.php:905 mod/admin.php:1236
+msgid "No special theme for mobile devices"
+msgstr ""
+
+#: mod/settings.php:914
+#, php-format
+msgid "%s - (Unsupported)"
+msgstr ""
+
+#: mod/settings.php:916
+#, php-format
+msgid "%s - (Experimental)"
+msgstr ""
+
+#: mod/settings.php:959
+msgid "Display Settings"
+msgstr ""
+
+#: mod/settings.php:965 mod/settings.php:989
+msgid "Display Theme:"
+msgstr ""
+
+#: mod/settings.php:966
+msgid "Mobile Theme:"
+msgstr ""
+
+#: mod/settings.php:967
+msgid "Suppress warning of insecure networks"
+msgstr ""
+
+#: mod/settings.php:967
+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:968
+msgid "Update browser every xx seconds"
+msgstr ""
+
+#: mod/settings.php:968
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
+msgstr ""
+
+#: mod/settings.php:969
+msgid "Number of items to display per page:"
+msgstr ""
+
+#: mod/settings.php:969 mod/settings.php:970
+msgid "Maximum of 100 items"
+msgstr ""
+
+#: mod/settings.php:970
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr ""
+
+#: mod/settings.php:971
+msgid "Don't show emoticons"
+msgstr ""
+
+#: mod/settings.php:972
+msgid "Calendar"
+msgstr ""
+
+#: mod/settings.php:973
+msgid "Beginning of week:"
+msgstr ""
+
+#: mod/settings.php:974
+msgid "Don't show notices"
+msgstr ""
+
+#: mod/settings.php:975
+msgid "Infinite scroll"
+msgstr ""
+
+#: mod/settings.php:976
+msgid "Automatic updates only at the top of the network page"
+msgstr ""
+
+#: mod/settings.php:976
+msgid ""
+"When disabled, the network page is updated all the time, which could be "
+"confusing while reading."
+msgstr ""
+
+#: mod/settings.php:977
+msgid "Bandwith Saver Mode"
+msgstr ""
+
+#: mod/settings.php:977
+msgid ""
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
+msgstr ""
+
+#: mod/settings.php:978
+msgid "Smart Threading"
+msgstr ""
+
+#: mod/settings.php:978
+msgid ""
+"When enabled, suppress extraneous thread indentation while keeping it where "
+"it matters. Only works if threading is available and enabled."
+msgstr ""
+
+#: mod/settings.php:980
+msgid "General Theme Settings"
+msgstr ""
+
+#: mod/settings.php:981
+msgid "Custom Theme Settings"
+msgstr ""
+
+#: mod/settings.php:982
+msgid "Content Settings"
+msgstr ""
+
+#: mod/settings.php:983 view/theme/quattro/config.php:75
+#: view/theme/frio/config.php:115 view/theme/vier/config.php:121
+#: view/theme/duepuntozero/config.php:73
+msgid "Theme settings"
+msgstr ""
+
+#: mod/settings.php:1002
+msgid "Unable to find your profile. Please contact your admin."
+msgstr ""
+
+#: mod/settings.php:1044
+msgid "Account Types"
+msgstr ""
+
+#: mod/settings.php:1045
+msgid "Personal Page Subtypes"
+msgstr ""
+
+#: mod/settings.php:1046
+msgid "Community Forum Subtypes"
+msgstr ""
+
+#: mod/settings.php:1053 mod/admin.php:1746
+msgid "Personal Page"
+msgstr ""
+
+#: mod/settings.php:1054
+msgid "Account for a personal profile."
+msgstr ""
+
+#: mod/settings.php:1057 mod/admin.php:1747
+msgid "Organisation Page"
+msgstr ""
+
+#: mod/settings.php:1058
+msgid ""
+"Account for an organisation that automatically approves contact requests as "
+"\"Followers\"."
+msgstr ""
+
+#: mod/settings.php:1061 mod/admin.php:1748
+msgid "News Page"
+msgstr ""
+
+#: mod/settings.php:1062
+msgid ""
+"Account for a news reflector that automatically approves contact requests as "
+"\"Followers\"."
+msgstr ""
+
+#: mod/settings.php:1065 mod/admin.php:1749
+msgid "Community Forum"
+msgstr ""
+
+#: mod/settings.php:1066
+msgid "Account for community discussions."
+msgstr ""
+
+#: mod/settings.php:1069 mod/admin.php:1739
+msgid "Normal Account Page"
+msgstr ""
+
+#: mod/settings.php:1070
+msgid ""
+"Account for a regular personal profile that requires manual approval of "
+"\"Friends\" and \"Followers\"."
+msgstr ""
+
+#: mod/settings.php:1073 mod/admin.php:1740
+msgid "Soapbox Page"
+msgstr ""
+
+#: mod/settings.php:1074
+msgid ""
+"Account for a public profile that automatically approves contact requests as "
+"\"Followers\"."
+msgstr ""
+
+#: mod/settings.php:1077 mod/admin.php:1741
+msgid "Public Forum"
+msgstr ""
+
+#: mod/settings.php:1078
+msgid "Automatically approves all contact requests."
+msgstr ""
+
+#: mod/settings.php:1081 mod/admin.php:1742
+msgid "Automatic Friend Page"
+msgstr ""
+
+#: mod/settings.php:1082
+msgid ""
+"Account for a popular profile that automatically approves contact requests "
+"as \"Friends\"."
+msgstr ""
+
+#: mod/settings.php:1085
+msgid "Private Forum [Experimental]"
+msgstr ""
+
+#: mod/settings.php:1086
+msgid "Requires manual approval of contact requests."
+msgstr ""
+
+#: mod/settings.php:1097
+msgid "OpenID:"
+msgstr ""
+
+#: mod/settings.php:1097
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr ""
+
+#: mod/settings.php:1105
+msgid "Publish your default profile in your local site directory?"
+msgstr ""
+
+#: mod/settings.php:1105
+#, php-format
+msgid ""
+"Your profile will be published in the global friendica directories (e.g. %s ). Your profile will be visible in public."
+msgstr ""
+
+#: mod/settings.php:1111
+msgid "Publish your default profile in the global social directory?"
+msgstr ""
+
+#: mod/settings.php:1111
+#, php-format
+msgid ""
+"Your profile will be published in this node's local "
+"directory . Your profile details may be publicly visible depending on the "
+"system settings."
+msgstr ""
+
+#: mod/settings.php:1118
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr ""
+
+#: mod/settings.php:1118
+msgid ""
+"Your contact list won't be shown in your default profile page. You can "
+"decide to show your contact list separately for each additional profile you "
+"create"
+msgstr ""
+
+#: mod/settings.php:1122
+msgid "Hide your profile details from anonymous viewers?"
+msgstr ""
+
+#: mod/settings.php:1122
+msgid ""
+"Anonymous visitors will only see your profile picture, your display name and "
+"the nickname you are using on your profile page. Disables posting public "
+"messages to Diaspora and other networks."
+msgstr ""
+
+#: mod/settings.php:1126
+msgid "Allow friends to post to your profile page?"
+msgstr ""
+
+#: mod/settings.php:1126
+msgid ""
+"Your contacts may write posts on your profile wall. These posts will be "
+"distributed to your contacts"
+msgstr ""
+
+#: mod/settings.php:1130
+msgid "Allow friends to tag your posts?"
+msgstr ""
+
+#: mod/settings.php:1130
+msgid "Your contacts can add additional tags to your posts."
+msgstr ""
+
+#: mod/settings.php:1134
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr ""
+
+#: mod/settings.php:1134
+msgid "If you like, Friendica may suggest new members to add you as a contact."
+msgstr ""
+
+#: mod/settings.php:1138
+msgid "Permit unknown people to send you private mail?"
+msgstr ""
+
+#: mod/settings.php:1138
+msgid ""
+"Friendica network users may send you private messages even if they are not "
+"in your contact list."
+msgstr ""
+
+#: mod/settings.php:1142
+msgid "Profile is not published ."
+msgstr ""
+
+#: mod/settings.php:1148
+#, php-format
+msgid "Your Identity Address is '%s' or '%s'."
+msgstr ""
+
+#: mod/settings.php:1155
+msgid "Automatically expire posts after this many days:"
+msgstr ""
+
+#: mod/settings.php:1155
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr ""
+
+#: mod/settings.php:1156
+msgid "Advanced expiration settings"
+msgstr ""
+
+#: mod/settings.php:1157
+msgid "Advanced Expiration"
+msgstr ""
+
+#: mod/settings.php:1158
+msgid "Expire posts:"
+msgstr ""
+
+#: mod/settings.php:1159
+msgid "Expire personal notes:"
+msgstr ""
+
+#: mod/settings.php:1160
+msgid "Expire starred posts:"
+msgstr ""
+
+#: mod/settings.php:1161
+msgid "Expire photos:"
+msgstr ""
+
+#: mod/settings.php:1162
+msgid "Only expire posts by others:"
+msgstr ""
+
+#: mod/settings.php:1192
+msgid "Account Settings"
+msgstr ""
+
+#: mod/settings.php:1200
+msgid "Password Settings"
+msgstr ""
+
+#: mod/settings.php:1201 mod/register.php:273
+msgid "New Password:"
+msgstr ""
+
+#: mod/settings.php:1202 mod/register.php:274
+msgid "Confirm:"
+msgstr ""
+
+#: mod/settings.php:1202
+msgid "Leave password fields blank unless changing"
+msgstr ""
+
+#: mod/settings.php:1203
+msgid "Current Password:"
+msgstr ""
+
+#: mod/settings.php:1203 mod/settings.php:1204
+msgid "Your current password to confirm the changes"
+msgstr ""
+
+#: mod/settings.php:1204
+msgid "Password:"
+msgstr ""
+
+#: mod/settings.php:1208
+msgid "Basic Settings"
+msgstr ""
+
+#: mod/settings.php:1210
+msgid "Email Address:"
+msgstr ""
+
+#: mod/settings.php:1211
+msgid "Your Timezone:"
+msgstr ""
+
+#: mod/settings.php:1212
+msgid "Your Language:"
+msgstr ""
+
+#: mod/settings.php:1212
+msgid ""
+"Set the language we use to show you friendica interface and to send you "
+"emails"
+msgstr ""
+
+#: mod/settings.php:1213
+msgid "Default Post Location:"
+msgstr ""
+
+#: mod/settings.php:1214
+msgid "Use Browser Location:"
+msgstr ""
+
+#: mod/settings.php:1217
+msgid "Security and Privacy Settings"
+msgstr ""
+
+#: mod/settings.php:1219
+msgid "Maximum Friend Requests/Day:"
+msgstr ""
+
+#: mod/settings.php:1219 mod/settings.php:1248
+msgid "(to prevent spam abuse)"
+msgstr ""
+
+#: mod/settings.php:1220
+msgid "Default Post Permissions"
+msgstr ""
+
+#: mod/settings.php:1221
+msgid "(click to open/close)"
+msgstr ""
+
+#: mod/settings.php:1229 mod/photos.php:1106 mod/photos.php:1449
+msgid "Show to Groups"
+msgstr ""
+
+#: mod/settings.php:1230 mod/photos.php:1107 mod/photos.php:1450
+msgid "Show to Contacts"
+msgstr ""
+
+#: mod/settings.php:1231
+msgid "Default Private Post"
+msgstr ""
+
+#: mod/settings.php:1232
+msgid "Default Public Post"
+msgstr ""
+
+#: mod/settings.php:1236
+msgid "Default Permissions for New Posts"
+msgstr ""
+
+#: mod/settings.php:1248
+msgid "Maximum private messages per day from unknown people:"
+msgstr ""
+
+#: mod/settings.php:1251
+msgid "Notification Settings"
+msgstr ""
+
+#: mod/settings.php:1252
+msgid "By default post a status message when:"
+msgstr ""
+
+#: mod/settings.php:1253
+msgid "accepting a friend request"
+msgstr ""
+
+#: mod/settings.php:1254
+msgid "joining a forum/community"
+msgstr ""
+
+#: mod/settings.php:1255
+msgid "making an interesting profile change"
+msgstr ""
+
+#: mod/settings.php:1256
+msgid "Send a notification email when:"
+msgstr ""
+
+#: mod/settings.php:1257
+msgid "You receive an introduction"
+msgstr ""
+
+#: mod/settings.php:1258
+msgid "Your introductions are confirmed"
+msgstr ""
+
+#: mod/settings.php:1259
+msgid "Someone writes on your profile wall"
+msgstr ""
+
+#: mod/settings.php:1260
+msgid "Someone writes a followup comment"
+msgstr ""
+
+#: mod/settings.php:1261
+msgid "You receive a private message"
+msgstr ""
+
+#: mod/settings.php:1262
+msgid "You receive a friend suggestion"
+msgstr ""
+
+#: mod/settings.php:1263
+msgid "You are tagged in a post"
+msgstr ""
+
+#: mod/settings.php:1264
+msgid "You are poked/prodded/etc. in a post"
+msgstr ""
+
+#: mod/settings.php:1266
+msgid "Activate desktop notifications"
+msgstr ""
+
+#: mod/settings.php:1266
+msgid "Show desktop popup on new notifications"
+msgstr ""
+
+#: mod/settings.php:1268
+msgid "Text-only notification emails"
+msgstr ""
+
+#: mod/settings.php:1270
+msgid "Send text only notification emails, without the html part"
+msgstr ""
+
+#: mod/settings.php:1272
+msgid "Show detailled notifications"
+msgstr ""
+
+#: mod/settings.php:1274
+msgid ""
+"Per default, notifications are condensed to a single notification per item. "
+"When enabled every notification is displayed."
+msgstr ""
+
+#: mod/settings.php:1276
+msgid "Advanced Account/Page Type Settings"
+msgstr ""
+
+#: mod/settings.php:1277
+msgid "Change the behaviour of this account for special situations"
+msgstr ""
+
+#: mod/settings.php:1280
+msgid "Relocate"
+msgstr ""
+
+#: mod/settings.php:1281
+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:1282
+msgid "Resend relocate message to contacts"
+msgstr ""
+
+#: mod/regmod.php:68
+msgid "Account approved."
+msgstr ""
+
+#: mod/regmod.php:93
+#, php-format
+msgid "Registration revoked for %s"
+msgstr ""
+
+#: mod/regmod.php:102
+msgid "Please login."
+msgstr ""
+
#: mod/group.php:36
msgid "Group created."
msgstr ""
@@ -2568,6 +5267,10 @@ msgstr ""
msgid "Group name changed."
msgstr ""
+#: mod/group.php:83 mod/profperm.php:28 index.php:443
+msgid "Permission denied"
+msgstr ""
+
#: mod/group.php:97
msgid "Save Group"
msgstr ""
@@ -2576,10 +5279,6 @@ msgstr ""
msgid "Create a group of contacts/friends."
msgstr ""
-#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
-msgid "Group Name: "
-msgstr ""
-
#: mod/group.php:127
msgid "Group removed."
msgstr ""
@@ -2608,10 +5307,6 @@ msgstr ""
msgid "All Contacts"
msgstr ""
-#: mod/group.php:216 mod/network.php:639
-msgid "Group is empty"
-msgstr ""
-
#: mod/group.php:229
msgid "Remove Contact"
msgstr ""
@@ -2620,1421 +5315,18 @@ msgstr ""
msgid "Add Contact"
msgstr ""
-#: mod/message.php:30 src/Content/Nav.php:198
-msgid "New Message"
+#: mod/group.php:265 mod/profperm.php:115
+msgid "Click on a contact to add or remove."
msgstr ""
-#: mod/message.php:77
-msgid "Unable to locate contact information."
-msgstr ""
-
-#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:195
-msgid "Messages"
-msgstr ""
-
-#: mod/message.php:136
-msgid "Do you really want to delete this message?"
-msgstr ""
-
-#: mod/message.php:156
-msgid "Message deleted."
-msgstr ""
-
-#: mod/message.php:185
-msgid "Conversation removed."
-msgstr ""
-
-#: mod/message.php:291
-msgid "No messages."
-msgstr ""
-
-#: mod/message.php:330
-msgid "Message not available."
-msgstr ""
-
-#: mod/message.php:397
-msgid "Delete message"
-msgstr ""
-
-#: mod/message.php:399 mod/message.php:500
-msgid "D, d M Y - g:i A"
-msgstr ""
-
-#: mod/message.php:414 mod/message.php:497
-msgid "Delete conversation"
-msgstr ""
-
-#: mod/message.php:416
-msgid ""
-"No secure communications available. You may be able to "
-"respond from the sender's profile page."
-msgstr ""
-
-#: mod/message.php:420
-msgid "Send Reply"
-msgstr ""
-
-#: mod/message.php:471
-#, php-format
-msgid "Unknown sender - %s"
-msgstr ""
-
-#: mod/message.php:473
-#, php-format
-msgid "You and %s"
-msgstr ""
-
-#: mod/message.php:475
-#, php-format
-msgid "%s and You"
-msgstr ""
-
-#: mod/message.php:503
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/notes.php:52 src/Model/Profile.php:948
-msgid "Personal Notes"
-msgstr ""
-
-#: mod/photos.php:108 src/Model/Profile.php:909
-msgid "Photo Albums"
-msgstr ""
-
-#: mod/photos.php:109 mod/photos.php:1713
-msgid "Recent Photos"
-msgstr ""
-
-#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
-msgid "Upload New Photos"
-msgstr ""
-
-#: mod/photos.php:126 mod/settings.php:50
-msgid "everybody"
-msgstr ""
-
-#: mod/photos.php:184
-msgid "Contact information unavailable"
-msgstr ""
-
-#: mod/photos.php:204
-msgid "Album not found."
-msgstr ""
-
-#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
-msgid "Delete Album"
-msgstr ""
-
-#: mod/photos.php:243
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr ""
-
-#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
-msgid "Delete Photo"
-msgstr ""
-
-#: mod/photos.php:319
-msgid "Do you really want to delete this photo?"
-msgstr ""
-
-#: mod/photos.php:667
-msgid "a photo"
-msgstr ""
-
-#: mod/photos.php:667
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr ""
-
-#: mod/photos.php:769
-msgid "Image upload didn't complete, please try again"
-msgstr ""
-
-#: mod/photos.php:772
-msgid "Image file is missing"
-msgstr ""
-
-#: mod/photos.php:777
-msgid ""
-"Server can't accept new file upload at this time, please contact your "
-"administrator"
-msgstr ""
-
-#: mod/photos.php:803
-msgid "Image file is empty."
-msgstr ""
-
-#: mod/photos.php:940
-msgid "No photos selected"
-msgstr ""
-
-#: mod/photos.php:1036 mod/videos.php:309
-msgid "Access to this item is restricted."
-msgstr ""
-
-#: mod/photos.php:1090
-msgid "Upload Photos"
-msgstr ""
-
-#: mod/photos.php:1094 mod/photos.php:1156
-msgid "New album name: "
-msgstr ""
-
-#: mod/photos.php:1095
-msgid "or existing album name: "
-msgstr ""
-
-#: mod/photos.php:1096
-msgid "Do not show a status post for this upload"
-msgstr ""
-
-#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533
-#: src/Core/ACL.php:318
-msgid "Permissions"
-msgstr ""
-
-#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1229
-msgid "Show to Groups"
-msgstr ""
-
-#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1230
-msgid "Show to Contacts"
-msgstr ""
-
-#: mod/photos.php:1167
-msgid "Edit Album"
-msgstr ""
-
-#: mod/photos.php:1172
-msgid "Show Newest First"
-msgstr ""
-
-#: mod/photos.php:1174
-msgid "Show Oldest First"
-msgstr ""
-
-#: mod/photos.php:1195 mod/photos.php:1698
-msgid "View Photo"
-msgstr ""
-
-#: mod/photos.php:1236
-msgid "Permission denied. Access to this item may be restricted."
-msgstr ""
-
-#: mod/photos.php:1238
-msgid "Photo not available"
-msgstr ""
-
-#: mod/photos.php:1301
-msgid "View photo"
-msgstr ""
-
-#: mod/photos.php:1301
-msgid "Edit photo"
-msgstr ""
-
-#: mod/photos.php:1302
-msgid "Use as profile photo"
-msgstr ""
-
-#: mod/photos.php:1308 src/Object/Post.php:149
-msgid "Private Message"
-msgstr ""
-
-#: mod/photos.php:1327
-msgid "View Full Size"
-msgstr ""
-
-#: mod/photos.php:1414
-msgid "Tags: "
-msgstr ""
-
-#: mod/photos.php:1417
-msgid "[Remove any tag]"
-msgstr ""
-
-#: mod/photos.php:1432
-msgid "New album name"
-msgstr ""
-
-#: mod/photos.php:1433
-msgid "Caption"
-msgstr ""
-
-#: mod/photos.php:1434
-msgid "Add a Tag"
-msgstr ""
-
-#: mod/photos.php:1434
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr ""
-
-#: mod/photos.php:1435
-msgid "Do not rotate"
-msgstr ""
-
-#: mod/photos.php:1436
-msgid "Rotate CW (right)"
-msgstr ""
-
-#: mod/photos.php:1437
-msgid "Rotate CCW (left)"
-msgstr ""
-
-#: mod/photos.php:1471 src/Object/Post.php:296
-msgid "I like this (toggle)"
-msgstr ""
-
-#: mod/photos.php:1472 src/Object/Post.php:297
-msgid "I don't like this (toggle)"
-msgstr ""
-
-#: mod/photos.php:1488 mod/photos.php:1527 mod/photos.php:1600
-#: mod/contacts.php:953 src/Object/Post.php:793
-msgid "This is you"
-msgstr ""
-
-#: mod/photos.php:1490 mod/photos.php:1529 mod/photos.php:1602
-#: src/Object/Post.php:399 src/Object/Post.php:795
-msgid "Comment"
-msgstr ""
-
-#: mod/photos.php:1634
-msgid "Map"
-msgstr ""
-
-#: mod/photos.php:1704 mod/videos.php:387
-msgid "View Album"
-msgstr ""
-
-#: mod/profile.php:37 src/Model/Profile.php:118
-msgid "Requested profile is not available."
-msgstr ""
-
-#: mod/profile.php:78 src/Protocol/OStatus.php:1252
-#, php-format
-msgid "%s's posts"
-msgstr ""
-
-#: mod/profile.php:79 src/Protocol/OStatus.php:1253
-#, php-format
-msgid "%s's comments"
-msgstr ""
-
-#: mod/profile.php:80 src/Protocol/OStatus.php:1251
-#, php-format
-msgid "%s's timeline"
-msgstr ""
-
-#: mod/profile.php:173 mod/cal.php:142 mod/display.php:313
-msgid "Access to this profile has been restricted."
-msgstr ""
-
-#: mod/profile.php:194
-msgid "Tips for New Members"
-msgstr ""
-
-#: mod/videos.php:139
-msgid "Do you really want to delete this video?"
-msgstr ""
-
-#: mod/videos.php:144
-msgid "Delete Video"
-msgstr ""
-
-#: mod/videos.php:207
-msgid "No videos selected"
-msgstr ""
-
-#: mod/videos.php:396
-msgid "Recent Videos"
-msgstr ""
-
-#: mod/videos.php:398
-msgid "Upload New Videos"
-msgstr ""
-
-#: mod/cal.php:274 mod/events.php:391 view/theme/frio/theme.php:263
-#: view/theme/frio/theme.php:267 src/Content/Nav.php:104
-#: src/Content/Nav.php:169 src/Model/Profile.php:926 src/Model/Profile.php:937
-msgid "Events"
-msgstr ""
-
-#: mod/cal.php:275 mod/events.php:392
-msgid "View"
-msgstr ""
-
-#: mod/cal.php:276 mod/events.php:394
-msgid "Previous"
-msgstr ""
-
-#: mod/cal.php:277 mod/events.php:395 mod/install.php:209
-msgid "Next"
-msgstr ""
-
-#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
-msgid "today"
-msgstr ""
-
-#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
-#: src/Model/Event.php:413
-msgid "month"
-msgstr ""
-
-#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
-#: src/Model/Event.php:414
-msgid "week"
-msgstr ""
-
-#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
-#: src/Model/Event.php:415
-msgid "day"
-msgstr ""
-
-#: mod/cal.php:284 mod/events.php:404
-msgid "list"
-msgstr ""
-
-#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214
-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:332
-msgid "calendar"
-msgstr ""
-
-#: mod/contacts.php:157
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/contacts.php:184 mod/contacts.php:400
-msgid "Could not access contact record."
-msgstr ""
-
-#: mod/contacts.php:194
-msgid "Could not locate selected profile."
-msgstr ""
-
-#: mod/contacts.php:228
-msgid "Contact updated."
-msgstr ""
-
-#: mod/contacts.php:421
-msgid "Contact has been blocked"
-msgstr ""
-
-#: mod/contacts.php:421
-msgid "Contact has been unblocked"
-msgstr ""
-
-#: mod/contacts.php:432
-msgid "Contact has been ignored"
-msgstr ""
-
-#: mod/contacts.php:432
-msgid "Contact has been unignored"
-msgstr ""
-
-#: mod/contacts.php:443
-msgid "Contact has been archived"
-msgstr ""
-
-#: mod/contacts.php:443
-msgid "Contact has been unarchived"
-msgstr ""
-
-#: mod/contacts.php:467
-msgid "Drop contact"
-msgstr ""
-
-#: mod/contacts.php:470 mod/contacts.php:823
-msgid "Do you really want to delete this contact?"
-msgstr ""
-
-#: mod/contacts.php:488
-msgid "Contact has been removed."
-msgstr ""
-
-#: mod/contacts.php:519
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr ""
-
-#: mod/contacts.php:523
-#, php-format
-msgid "You are sharing with %s"
-msgstr ""
-
-#: mod/contacts.php:527
-#, php-format
-msgid "%s is sharing with you"
-msgstr ""
-
-#: mod/contacts.php:547
-msgid "Private communications are not available for this contact."
-msgstr ""
-
-#: mod/contacts.php:549
-msgid "Never"
-msgstr ""
-
-#: mod/contacts.php:552
-msgid "(Update was successful)"
-msgstr ""
-
-#: mod/contacts.php:552
-msgid "(Update was not successful)"
-msgstr ""
-
-#: mod/contacts.php:554 mod/contacts.php:992
-msgid "Suggest friends"
-msgstr ""
-
-#: mod/contacts.php:558
-#, php-format
-msgid "Network type: %s"
-msgstr ""
-
-#: mod/contacts.php:563
-msgid "Communications lost with this contact!"
-msgstr ""
-
-#: mod/contacts.php:569
-msgid "Fetch further information for feeds"
-msgstr ""
-
-#: mod/contacts.php:571
-msgid ""
-"Fetch information like preview pictures, title and teaser from the feed "
-"item. You can activate this if the feed doesn't contain much text. Keywords "
-"are taken from the meta header in the feed item and are posted as hash tags."
-msgstr ""
-
-#: mod/contacts.php:572 mod/admin.php:1272 mod/admin.php:1435
-#: mod/admin.php:1445
-msgid "Disabled"
-msgstr ""
-
-#: mod/contacts.php:573
-msgid "Fetch information"
-msgstr ""
-
-#: mod/contacts.php:574
-msgid "Fetch keywords"
-msgstr ""
-
-#: mod/contacts.php:575
-msgid "Fetch information and keywords"
-msgstr ""
-
-#: mod/contacts.php:599 mod/unfollow.php:100
-msgid "Disconnect/Unfollow"
-msgstr ""
-
-#: mod/contacts.php:608
-msgid "Contact"
-msgstr ""
-
-#: mod/contacts.php:611
-msgid "Profile Visibility"
-msgstr ""
-
-#: mod/contacts.php:612
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr ""
-
-#: mod/contacts.php:613
-msgid "Contact Information / Notes"
-msgstr ""
-
-#: mod/contacts.php:614
-msgid "Their personal note"
-msgstr ""
-
-#: mod/contacts.php:616
-msgid "Edit contact notes"
-msgstr ""
-
-#: mod/contacts.php:620
-msgid "Block/Unblock contact"
-msgstr ""
-
-#: mod/contacts.php:621
-msgid "Ignore contact"
-msgstr ""
-
-#: mod/contacts.php:622
-msgid "Repair URL settings"
-msgstr ""
-
-#: mod/contacts.php:623
-msgid "View conversations"
-msgstr ""
-
-#: mod/contacts.php:628
-msgid "Last update:"
-msgstr ""
-
-#: mod/contacts.php:630
-msgid "Update public posts"
-msgstr ""
-
-#: mod/contacts.php:632 mod/contacts.php:1002
-msgid "Update now"
-msgstr ""
-
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:485 mod/admin.php:1800
-msgid "Unblock"
-msgstr ""
-
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:484 mod/admin.php:1799
-msgid "Block"
-msgstr ""
-
-#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
-msgid "Unignore"
-msgstr ""
-
-#: mod/contacts.php:642
-msgid "Currently blocked"
-msgstr ""
-
-#: mod/contacts.php:643
-msgid "Currently ignored"
-msgstr ""
-
-#: mod/contacts.php:644
-msgid "Currently archived"
-msgstr ""
-
-#: mod/contacts.php:645
-msgid "Awaiting connection acknowledge"
-msgstr ""
-
-#: mod/contacts.php:646
-msgid ""
-"Replies/likes to your public posts may still be visible"
-msgstr ""
-
-#: mod/contacts.php:647
-msgid "Notification for new posts"
-msgstr ""
-
-#: mod/contacts.php:647
-msgid "Send a notification of every new post of this contact"
-msgstr ""
-
-#: mod/contacts.php:650
-msgid "Blacklisted keywords"
-msgstr ""
-
-#: mod/contacts.php:650
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr ""
-
-#: mod/contacts.php:662 src/Model/Profile.php:424
-msgid "XMPP:"
-msgstr ""
-
-#: mod/contacts.php:667
-msgid "Actions"
-msgstr ""
-
-#: mod/contacts.php:669 mod/contacts.php:855 view/theme/frio/theme.php:259
-#: src/Content/Nav.php:100 src/Model/Profile.php:890
-msgid "Status"
-msgstr ""
-
-#: mod/contacts.php:670
-msgid "Contact Settings"
-msgstr ""
-
-#: mod/contacts.php:711
-msgid "Suggestions"
-msgstr ""
-
-#: mod/contacts.php:714
-msgid "Suggest potential friends"
-msgstr ""
-
-#: mod/contacts.php:722
-msgid "Show all contacts"
-msgstr ""
-
-#: mod/contacts.php:727
-msgid "Unblocked"
-msgstr ""
-
-#: mod/contacts.php:730
-msgid "Only show unblocked contacts"
-msgstr ""
-
-#: mod/contacts.php:735
-msgid "Blocked"
-msgstr ""
-
-#: mod/contacts.php:738
-msgid "Only show blocked contacts"
-msgstr ""
-
-#: mod/contacts.php:743
-msgid "Ignored"
-msgstr ""
-
-#: mod/contacts.php:746
-msgid "Only show ignored contacts"
-msgstr ""
-
-#: mod/contacts.php:751
-msgid "Archived"
-msgstr ""
-
-#: mod/contacts.php:754
-msgid "Only show archived contacts"
-msgstr ""
-
-#: mod/contacts.php:759
-msgid "Hidden"
-msgstr ""
-
-#: mod/contacts.php:762
-msgid "Only show hidden contacts"
-msgstr ""
-
-#: mod/contacts.php:818
-msgid "Search your contacts"
-msgstr ""
-
-#: mod/contacts.php:820 mod/directory.php:209 src/Content/Widget.php:63
-msgid "Find"
-msgstr ""
-
-#: mod/contacts.php:826 mod/settings.php:170 mod/settings.php:701
-msgid "Update"
-msgstr ""
-
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Archive"
-msgstr ""
-
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Unarchive"
-msgstr ""
-
-#: mod/contacts.php:832
-msgid "Batch Actions"
-msgstr ""
-
-#: mod/contacts.php:858 mod/unfollow.php:132 mod/follow.php:186
-#: src/Model/Profile.php:893
-msgid "Status Messages and Posts"
-msgstr ""
-
-#: mod/contacts.php:866 src/Model/Profile.php:901
-msgid "Profile Details"
-msgstr ""
-
-#: mod/contacts.php:878
-msgid "View all contacts"
-msgstr ""
-
-#: mod/contacts.php:889
-msgid "View all common friends"
-msgstr ""
-
-#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1351
-#: src/Model/Profile.php:867
-msgid "Advanced"
-msgstr ""
-
-#: mod/contacts.php:898
-msgid "Advanced Contact Settings"
-msgstr ""
-
-#: mod/contacts.php:930
-msgid "Mutual Friendship"
-msgstr ""
-
-#: mod/contacts.php:934
-msgid "is a fan of yours"
-msgstr ""
-
-#: mod/contacts.php:938
-msgid "you are a fan of"
-msgstr ""
-
-#: mod/contacts.php:1013
-msgid "Toggle Blocked status"
-msgstr ""
-
-#: mod/contacts.php:1021
-msgid "Toggle Ignored status"
-msgstr ""
-
-#: mod/contacts.php:1029
-msgid "Toggle Archive status"
-msgstr ""
-
-#: mod/contacts.php:1037
-msgid "Delete contact"
-msgstr ""
-
-#: mod/delegate.php:37
-msgid "Parent user not found."
-msgstr ""
-
-#: mod/delegate.php:144
-msgid "No parent user"
-msgstr ""
-
-#: mod/delegate.php:159
-msgid "Parent Password:"
-msgstr ""
-
-#: mod/delegate.php:159
-msgid ""
-"Please enter the password of the parent account to legitimize your request."
-msgstr ""
-
-#: mod/delegate.php:164
-msgid "Parent User"
-msgstr ""
-
-#: mod/delegate.php:167
-msgid ""
-"Parent users have total control about this account, including the account "
-"settings. Please double check whom you give this access."
-msgstr ""
-
-#: mod/delegate.php:168 mod/admin.php:307 mod/admin.php:1346 mod/admin.php:1965
-#: mod/admin.php:2218 mod/admin.php:2292 mod/admin.php:2439
-#: mod/settings.php:675 mod/settings.php:784 mod/settings.php:872
-#: mod/settings.php:961 mod/settings.php:1194
-msgid "Save Settings"
-msgstr ""
-
-#: mod/delegate.php:169 src/Content/Nav.php:204
-msgid "Delegate Page Management"
-msgstr ""
-
-#: mod/delegate.php:170
-msgid "Delegates"
-msgstr ""
-
-#: mod/delegate.php:172
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr ""
-
-#: mod/delegate.php:173
-msgid "Existing Page Delegates"
-msgstr ""
-
-#: mod/delegate.php:175
-msgid "Potential Delegates"
-msgstr ""
-
-#: mod/delegate.php:178
-msgid "Add"
-msgstr ""
-
-#: mod/delegate.php:179
-msgid "No entries."
-msgstr ""
-
-#: mod/events.php:105 mod/events.php:107
-msgid "Event can not end before it has started."
-msgstr ""
-
-#: mod/events.php:114 mod/events.php:116
-msgid "Event title and start time are required."
-msgstr ""
-
-#: mod/events.php:393
-msgid "Create New Event"
-msgstr ""
-
-#: mod/events.php:506
-msgid "Event details"
-msgstr ""
-
-#: mod/events.php:507
-msgid "Starting date and Title are required."
-msgstr ""
-
-#: mod/events.php:508 mod/events.php:509
-msgid "Event Starts:"
-msgstr ""
-
-#: mod/events.php:508 mod/events.php:520 mod/profiles.php:700
-msgid "Required"
-msgstr ""
-
-#: mod/events.php:510 mod/events.php:526
-msgid "Finish date/time is not known or not relevant"
-msgstr ""
-
-#: mod/events.php:512 mod/events.php:513
-msgid "Event Finishes:"
-msgstr ""
-
-#: mod/events.php:514 mod/events.php:527
-msgid "Adjust for viewer timezone"
-msgstr ""
-
-#: mod/events.php:516
-msgid "Description:"
-msgstr ""
-
-#: mod/events.php:520 mod/events.php:522
-msgid "Title:"
-msgstr ""
-
-#: mod/events.php:523 mod/events.php:524
-msgid "Share this event"
-msgstr ""
-
-#: mod/events.php:531 src/Model/Profile.php:866
-msgid "Basic"
-msgstr ""
-
-#: mod/events.php:552
-msgid "Failed to remove event"
-msgstr ""
-
-#: mod/events.php:554
-msgid "Event removed"
-msgstr ""
-
-#: mod/feedtest.php:20
-msgid "You must be logged in to use this module"
-msgstr ""
-
-#: mod/feedtest.php:48
-msgid "Source URL"
-msgstr ""
-
-#: mod/install.php:114
-msgid "Friendica Communications Server - Setup"
-msgstr ""
-
-#: mod/install.php:120
-msgid "Could not connect to database."
-msgstr ""
-
-#: mod/install.php:124
-msgid "Could not create table."
-msgstr ""
-
-#: mod/install.php:130
-msgid "Your Friendica site database has been installed."
-msgstr ""
-
-#: mod/install.php:135
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr ""
-
-#: mod/install.php:136 mod/install.php:208 mod/install.php:558
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr ""
-
-#: mod/install.php:148
-msgid "Database already in use."
-msgstr ""
-
-#: mod/install.php:205
-msgid "System check"
-msgstr ""
-
-#: mod/install.php:210
-msgid "Check again"
-msgstr ""
-
-#: mod/install.php:230
-msgid "Database connection"
-msgstr ""
-
-#: mod/install.php:231
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr ""
-
-#: mod/install.php:232
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr ""
-
-#: mod/install.php:233
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr ""
-
-#: mod/install.php:237
-msgid "Database Server Name"
-msgstr ""
-
-#: mod/install.php:238
-msgid "Database Login Name"
-msgstr ""
-
-#: mod/install.php:239
-msgid "Database Login Password"
-msgstr ""
-
-#: mod/install.php:239
-msgid "For security reasons the password must not be empty"
-msgstr ""
-
-#: mod/install.php:240
-msgid "Database Name"
-msgstr ""
-
-#: mod/install.php:241 mod/install.php:281
-msgid "Site administrator email address"
-msgstr ""
-
-#: mod/install.php:241 mod/install.php:281
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr ""
-
-#: mod/install.php:245 mod/install.php:284
-msgid "Please select a default timezone for your website"
-msgstr ""
-
-#: mod/install.php:271
-msgid "Site settings"
-msgstr ""
-
-#: mod/install.php:285
-msgid "System Language:"
-msgstr ""
-
-#: mod/install.php:285
-msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
-msgstr ""
-
-#: mod/install.php:325
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr ""
-
-#: mod/install.php:326
-msgid ""
-"If you don't have a command line version of PHP installed on your server, "
-"you will not be able to run the background processing. See 'Setup the worker' "
-msgstr ""
-
-#: mod/install.php:330
-msgid "PHP executable path"
-msgstr ""
-
-#: mod/install.php:330
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr ""
-
-#: mod/install.php:335
-msgid "Command line PHP"
-msgstr ""
-
-#: mod/install.php:344
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr ""
-
-#: mod/install.php:345
-msgid "Found PHP version: "
-msgstr ""
-
-#: mod/install.php:347
-msgid "PHP cli binary"
-msgstr ""
-
-#: mod/install.php:358
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr ""
-
-#: mod/install.php:359
-msgid "This is required for message delivery to work."
-msgstr ""
-
-#: mod/install.php:361
-msgid "PHP register_argc_argv"
-msgstr ""
-
-#: mod/install.php:384
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr ""
-
-#: mod/install.php:385
-msgid ""
-"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
-"installation.php\"."
-msgstr ""
-
-#: mod/install.php:387
-msgid "Generate encryption keys"
-msgstr ""
-
-#: mod/install.php:394
-msgid "libCurl PHP module"
-msgstr ""
-
-#: mod/install.php:395
-msgid "GD graphics PHP module"
-msgstr ""
-
-#: mod/install.php:396
-msgid "OpenSSL PHP module"
-msgstr ""
-
-#: mod/install.php:397
-msgid "PDO or MySQLi PHP module"
-msgstr ""
-
-#: mod/install.php:398
-msgid "mb_string PHP module"
-msgstr ""
-
-#: mod/install.php:399
-msgid "XML PHP module"
-msgstr ""
-
-#: mod/install.php:400
-msgid "iconv PHP module"
-msgstr ""
-
-#: mod/install.php:401
-msgid "POSIX PHP module"
-msgstr ""
-
-#: mod/install.php:405 mod/install.php:407
-msgid "Apache mod_rewrite module"
-msgstr ""
-
-#: mod/install.php:405
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr ""
-
-#: mod/install.php:413
-msgid "Error: libCURL PHP module required but not installed."
-msgstr ""
-
-#: mod/install.php:417
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr ""
-
-#: mod/install.php:421
-msgid "Error: openssl PHP module required but not installed."
-msgstr ""
-
-#: mod/install.php:425
-msgid "Error: PDO or MySQLi PHP module required but not installed."
-msgstr ""
-
-#: mod/install.php:429
-msgid "Error: The MySQL driver for PDO is not installed."
-msgstr ""
-
-#: mod/install.php:433
-msgid "Error: mb_string PHP module required but not installed."
-msgstr ""
-
-#: mod/install.php:437
-msgid "Error: iconv PHP module required but not installed."
-msgstr ""
-
-#: mod/install.php:441
-msgid "Error: POSIX PHP module required but not installed."
-msgstr ""
-
-#: mod/install.php:451
-msgid "Error, XML PHP module required but not installed."
-msgstr ""
-
-#: mod/install.php:463
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\" "
-"in the top folder of your web server and it is unable to do so."
-msgstr ""
-
-#: mod/install.php:464
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr ""
-
-#: mod/install.php:465
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr ""
-
-#: mod/install.php:466
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation. "
-"Please see the file \"INSTALL.txt\" for instructions."
-msgstr ""
-
-#: mod/install.php:469
-msgid ".htconfig.php is writable"
-msgstr ""
-
-#: mod/install.php:479
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr ""
-
-#: mod/install.php:480
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr ""
-
-#: mod/install.php:481
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has "
-"write access to this folder."
-msgstr ""
-
-#: mod/install.php:482
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr ""
-
-#: mod/install.php:485
-msgid "view/smarty3 is writable"
-msgstr ""
-
-#: mod/install.php:501
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr ""
-
-#: mod/install.php:503
-msgid "Url rewrite is working"
-msgstr ""
-
-#: mod/install.php:522
-msgid "ImageMagick PHP extension is not installed"
-msgstr ""
-
-#: mod/install.php:524
-msgid "ImageMagick PHP extension is installed"
-msgstr ""
-
-#: mod/install.php:526
-msgid "ImageMagick supports GIF"
-msgstr ""
-
-#: mod/install.php:533
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr ""
-
-#: mod/install.php:556
-msgid "What next "
-msgstr ""
-
-#: mod/install.php:557
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the worker."
-msgstr ""
-
-#: mod/install.php:560
-#, php-format
-msgid ""
-"Go to your new Friendica node registration page "
-"and register as new user. Remember to use the same email you have entered as "
-"administrator email. This will allow you to enter the site admin panel."
-msgstr ""
-
-#: mod/item.php:114
-msgid "Unable to locate original post."
-msgstr ""
-
-#: mod/item.php:274
-msgid "Empty post discarded."
-msgstr ""
-
-#: mod/item.php:799
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social network."
-msgstr ""
-
-#: mod/item.php:801
-#, php-format
-msgid "You may visit them online at %s"
-msgstr ""
-
-#: mod/item.php:802
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr ""
-
-#: mod/item.php:806
-#, php-format
-msgid "%s posted an update."
-msgstr ""
-
-#: mod/oexchange.php:30
-msgid "Post successful."
-msgstr ""
-
-#: mod/ostatus_subscribe.php:21
-msgid "Subscribing to OStatus contacts"
-msgstr ""
-
-#: mod/ostatus_subscribe.php:33
-msgid "No contact provided."
-msgstr ""
-
-#: mod/ostatus_subscribe.php:40
-msgid "Couldn't fetch information for contact."
-msgstr ""
-
-#: mod/ostatus_subscribe.php:50
-msgid "Couldn't fetch friends for contact."
-msgstr ""
-
-#: mod/ostatus_subscribe.php:78
-msgid "success"
-msgstr ""
-
-#: mod/ostatus_subscribe.php:80
-msgid "failed"
-msgstr ""
-
-#: mod/ostatus_subscribe.php:83 src/Object/Post.php:279
-msgid "ignored"
-msgstr ""
-
-#: mod/profile_photo.php:55
-msgid "Image uploaded but image cropping failed."
-msgstr ""
-
-#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104
-#: mod/profile_photo.php:315
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr ""
-
-#: mod/profile_photo.php:125
-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:247
-msgid "Upload File:"
-msgstr ""
-
-#: mod/profile_photo.php:248
-msgid "Select a profile:"
-msgstr ""
-
-#: mod/profile_photo.php:253
-msgid "or"
-msgstr ""
-
-#: mod/profile_photo.php:253
-msgid "skip this step"
-msgstr ""
-
-#: mod/profile_photo.php:253
-msgid "select a photo from your photo albums"
-msgstr ""
-
-#: mod/profile_photo.php:266
-msgid "Crop Image"
-msgstr ""
-
-#: mod/profile_photo.php:267
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr ""
-
-#: mod/profile_photo.php:269
-msgid "Done Editing"
-msgstr ""
-
-#: mod/profile_photo.php:305
-msgid "Image uploaded successfully."
-msgstr ""
-
-#: mod/unfollow.php:34
-msgid "Contact wasn't found or can't be unfollowed."
-msgstr ""
-
-#: mod/unfollow.php:47
-msgid "Contact unfollowed"
-msgstr ""
-
-#: mod/unfollow.php:73
-msgid "You aren't a friend of this contact."
-msgstr ""
-
-#: mod/unfollow.php:79
-msgid "Unfollowing is currently not supported by your network."
+#: mod/fbrowser.php:131
+msgid "Files"
msgstr ""
#: mod/admin.php:106
msgid "Theme settings updated."
msgstr ""
-#: mod/admin.php:179 src/Content/Nav.php:174
-msgid "Information"
-msgstr ""
-
#: mod/admin.php:180
msgid "Overview"
msgstr ""
@@ -4051,27 +5343,14 @@ msgstr ""
msgid "Site"
msgstr ""
-#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1788 mod/admin.php:1804
+#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1802 mod/admin.php:1818
msgid "Users"
msgstr ""
-#: mod/admin.php:185 mod/admin.php:1904 mod/admin.php:1964 mod/settings.php:86
-msgid "Addons"
-msgstr ""
-
-#: mod/admin.php:186 mod/admin.php:2173 mod/admin.php:2217
+#: mod/admin.php:186 mod/admin.php:2187 mod/admin.php:2231
msgid "Themes"
msgstr ""
-#: mod/admin.php:187 mod/settings.php:64
-msgid "Additional features"
-msgstr ""
-
-#: mod/admin.php:188 mod/admin.php:302 mod/register.php:288
-#: src/Module/Tos.php:48
-msgid "Terms of Service"
-msgstr ""
-
#: mod/admin.php:189
msgid "Database"
msgstr ""
@@ -4100,11 +5379,11 @@ msgstr ""
msgid "Delete Item"
msgstr ""
-#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2291
+#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2305
msgid "Logs"
msgstr ""
-#: mod/admin.php:198 mod/admin.php:2358
+#: mod/admin.php:198 mod/admin.php:2372
msgid "View Logs"
msgstr ""
@@ -4124,10 +5403,6 @@ msgstr ""
msgid "check webfinger"
msgstr ""
-#: mod/admin.php:222 src/Content/Nav.php:217
-msgid "Admin"
-msgstr ""
-
#: mod/admin.php:223
msgid "Addon Features"
msgstr ""
@@ -4138,8 +5413,8 @@ msgstr ""
#: mod/admin.php:301 mod/admin.php:361 mod/admin.php:478 mod/admin.php:520
#: mod/admin.php:717 mod/admin.php:752 mod/admin.php:848 mod/admin.php:1344
-#: mod/admin.php:1787 mod/admin.php:1903 mod/admin.php:1963 mod/admin.php:2172
-#: mod/admin.php:2216 mod/admin.php:2290 mod/admin.php:2357
+#: mod/admin.php:1801 mod/admin.php:1917 mod/admin.php:1977 mod/admin.php:2186
+#: mod/admin.php:2230 mod/admin.php:2304 mod/admin.php:2371
msgid "Administration"
msgstr ""
@@ -4178,10 +5453,6 @@ msgstr ""
msgid "The blocked domain"
msgstr ""
-#: mod/admin.php:354 mod/admin.php:372 mod/friendica.php:128
-msgid "Reason for the block"
-msgstr ""
-
#: mod/admin.php:354 mod/admin.php:367
msgid "The reason why you blocked this domain."
msgstr ""
@@ -4254,15 +5525,6 @@ msgstr ""
msgid "Site blocklist updated."
msgstr ""
-#: mod/admin.php:441 src/Core/Console/GlobalCommunityBlock.php:72
-msgid "The contact has been blocked from the node"
-msgstr ""
-
-#: mod/admin.php:443 src/Core/Console/GlobalCommunityBlock.php:69
-#, php-format
-msgid "Could not find any contact entry for this URL (%s)"
-msgstr ""
-
#: mod/admin.php:450
#, php-format
msgid "%s contact unblocked"
@@ -4284,7 +5546,7 @@ msgstr ""
msgid "Block Remote Contact"
msgstr ""
-#: mod/admin.php:482 mod/admin.php:1790
+#: mod/admin.php:482 mod/admin.php:1804
msgid "select all"
msgstr ""
@@ -4292,6 +5554,16 @@ msgstr ""
msgid "select none"
msgstr ""
+#: mod/admin.php:484 mod/admin.php:1813 mod/contacts.php:637
+#: mod/contacts.php:827 mod/contacts.php:1011
+msgid "Block"
+msgstr ""
+
+#: mod/admin.php:485 mod/admin.php:1814 mod/contacts.php:637
+#: mod/contacts.php:827 mod/contacts.php:1011
+msgid "Unblock"
+msgstr ""
+
#: mod/admin.php:486
msgid "No remote contact is blocked from this node."
msgstr ""
@@ -4308,8 +5580,9 @@ msgstr ""
msgid "Photo"
msgstr ""
-#: mod/admin.php:490 mod/profiles.php:394
-msgid "Address"
+#: mod/admin.php:490 mod/admin.php:500 mod/unfollow.php:122
+#: mod/notifications.php:258 mod/follow.php:166 mod/contacts.php:656
+msgid "Profile URL"
msgstr ""
#: mod/admin.php:498
@@ -4388,11 +5661,6 @@ msgstr ""
msgid "Recipient Profile"
msgstr ""
-#: mod/admin.php:758 view/theme/frio/theme.php:266
-#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:178
-msgid "Network"
-msgstr ""
-
#: mod/admin.php:759
msgid "Created"
msgstr ""
@@ -4444,19 +5712,19 @@ msgid ""
"check your crontab settings."
msgstr ""
-#: mod/admin.php:816 mod/admin.php:1739
+#: mod/admin.php:816
msgid "Normal Account"
msgstr ""
-#: mod/admin.php:817 mod/admin.php:1740
+#: mod/admin.php:817
msgid "Automatic Follower Account"
msgstr ""
-#: mod/admin.php:818 mod/admin.php:1741
+#: mod/admin.php:818
msgid "Public Forum Account"
msgstr ""
-#: mod/admin.php:819 mod/admin.php:1742
+#: mod/admin.php:819
msgid "Automatic Friend Account"
msgstr ""
@@ -4500,10 +5768,6 @@ msgstr ""
msgid "Site settings updated."
msgstr ""
-#: mod/admin.php:1236 mod/settings.php:905
-msgid "No special theme for mobile devices"
-msgstr ""
-
#: mod/admin.php:1265
msgid "No community page"
msgstr ""
@@ -4520,6 +5784,11 @@ msgstr ""
msgid "Public postings from local users and the federated network"
msgstr ""
+#: mod/admin.php:1272 mod/admin.php:1435 mod/admin.php:1445
+#: mod/contacts.php:572
+msgid "Disabled"
+msgstr ""
+
#: mod/admin.php:1274
msgid "Users, Global Contacts"
msgstr ""
@@ -5470,11 +6739,6 @@ msgid ""
"\t\t\tThank you and welcome to %4$s."
msgstr ""
-#: mod/admin.php:1611 src/Model/User.php:663
-#, php-format
-msgid "Registration details for %s"
-msgstr ""
-
#: mod/admin.php:1621
#, php-format
msgid "%s user blocked/unblocked"
@@ -5504,134 +6768,137 @@ msgstr ""
msgid "User '%s' blocked"
msgstr ""
-#: mod/admin.php:1781 mod/admin.php:1793 mod/admin.php:1806 mod/admin.php:1824
-#: src/Content/ContactSelector.php:82
-msgid "Email"
+#: mod/admin.php:1743
+msgid "Private Forum"
msgstr ""
-#: mod/admin.php:1781 mod/admin.php:1806
+#: mod/admin.php:1796 mod/admin.php:1820
msgid "Register date"
msgstr ""
-#: mod/admin.php:1781 mod/admin.php:1806
+#: mod/admin.php:1796 mod/admin.php:1820
msgid "Last login"
msgstr ""
-#: mod/admin.php:1781 mod/admin.php:1806
+#: mod/admin.php:1796 mod/admin.php:1820
msgid "Last item"
msgstr ""
-#: mod/admin.php:1781 mod/settings.php:55
-msgid "Account"
+#: mod/admin.php:1796
+msgid "Type"
msgstr ""
-#: mod/admin.php:1789
+#: mod/admin.php:1803
msgid "Add User"
msgstr ""
-#: mod/admin.php:1791
+#: mod/admin.php:1805
msgid "User registrations waiting for confirm"
msgstr ""
-#: mod/admin.php:1792
+#: mod/admin.php:1806
msgid "User waiting for permanent deletion"
msgstr ""
-#: mod/admin.php:1793
+#: mod/admin.php:1807
msgid "Request date"
msgstr ""
-#: mod/admin.php:1794
+#: mod/admin.php:1808
msgid "No registrations."
msgstr ""
-#: mod/admin.php:1795
+#: mod/admin.php:1809
msgid "Note from the user"
msgstr ""
-#: mod/admin.php:1797
-msgid "Deny"
-msgstr ""
-
-#: mod/admin.php:1801
-msgid "Site admin"
-msgstr ""
-
-#: mod/admin.php:1802
-msgid "Account expired"
-msgstr ""
-
-#: mod/admin.php:1805
-msgid "New User"
-msgstr ""
-
-#: mod/admin.php:1806
-msgid "Deleted since"
+#: mod/admin.php:1810 mod/notifications.php:179 mod/notifications.php:264
+msgid "Approve"
msgstr ""
#: mod/admin.php:1811
+msgid "Deny"
+msgstr ""
+
+#: mod/admin.php:1815
+msgid "Site admin"
+msgstr ""
+
+#: mod/admin.php:1816
+msgid "Account expired"
+msgstr ""
+
+#: mod/admin.php:1819
+msgid "New User"
+msgstr ""
+
+#: mod/admin.php:1820
+msgid "Deleted since"
+msgstr ""
+
+#: mod/admin.php:1825
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:1812
+#: mod/admin.php:1826
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:1822
+#: mod/admin.php:1836
msgid "Name of the new user."
msgstr ""
-#: mod/admin.php:1823
+#: mod/admin.php:1837
msgid "Nickname"
msgstr ""
-#: mod/admin.php:1823
+#: mod/admin.php:1837
msgid "Nickname of the new user."
msgstr ""
-#: mod/admin.php:1824
+#: mod/admin.php:1838
msgid "Email address of the new user."
msgstr ""
-#: mod/admin.php:1866
+#: mod/admin.php:1880
#, php-format
msgid "Addon %s disabled."
msgstr ""
-#: mod/admin.php:1870
+#: mod/admin.php:1884
#, php-format
msgid "Addon %s enabled."
msgstr ""
-#: mod/admin.php:1880 mod/admin.php:2129
+#: mod/admin.php:1894 mod/admin.php:2143
msgid "Disable"
msgstr ""
-#: mod/admin.php:1883 mod/admin.php:2132
+#: mod/admin.php:1897 mod/admin.php:2146
msgid "Enable"
msgstr ""
-#: mod/admin.php:1905 mod/admin.php:2174
+#: mod/admin.php:1919 mod/admin.php:2188
msgid "Toggle"
msgstr ""
-#: mod/admin.php:1913 mod/admin.php:2183
+#: mod/admin.php:1927 mod/admin.php:2197
msgid "Author: "
msgstr ""
-#: mod/admin.php:1914 mod/admin.php:2184
+#: mod/admin.php:1928 mod/admin.php:2198
msgid "Maintainer: "
msgstr ""
-#: mod/admin.php:1966
+#: mod/admin.php:1980
msgid "Reload active addons"
msgstr ""
-#: mod/admin.php:1971
+#: mod/admin.php:1985
#, php-format
msgid ""
"There are currently no addons available on your node. You can find the "
@@ -5639,70 +6906,70 @@ msgid ""
"the open addon registry at %2$s"
msgstr ""
-#: mod/admin.php:2091
+#: mod/admin.php:2105
msgid "No themes found."
msgstr ""
-#: mod/admin.php:2165
+#: mod/admin.php:2179
msgid "Screenshot"
msgstr ""
-#: mod/admin.php:2219
+#: mod/admin.php:2233
msgid "Reload active themes"
msgstr ""
-#: mod/admin.php:2224
+#: mod/admin.php:2238
#, php-format
msgid "No themes found on the system. They should be placed in %1$s"
msgstr ""
-#: mod/admin.php:2225
+#: mod/admin.php:2239
msgid "[Experimental]"
msgstr ""
-#: mod/admin.php:2226
+#: mod/admin.php:2240
msgid "[Unsupported]"
msgstr ""
-#: mod/admin.php:2250
+#: mod/admin.php:2264
msgid "Log settings updated."
msgstr ""
-#: mod/admin.php:2282
+#: mod/admin.php:2296
msgid "PHP log currently enabled."
msgstr ""
-#: mod/admin.php:2284
+#: mod/admin.php:2298
msgid "PHP log currently disabled."
msgstr ""
-#: mod/admin.php:2293
+#: mod/admin.php:2307
msgid "Clear"
msgstr ""
-#: mod/admin.php:2297
+#: mod/admin.php:2311
msgid "Enable Debugging"
msgstr ""
-#: mod/admin.php:2298
+#: mod/admin.php:2312
msgid "Log file"
msgstr ""
-#: mod/admin.php:2298
+#: mod/admin.php:2312
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr ""
-#: mod/admin.php:2299
+#: mod/admin.php:2313
msgid "Log level"
msgstr ""
-#: mod/admin.php:2301
+#: mod/admin.php:2315
msgid "PHP logging"
msgstr ""
-#: mod/admin.php:2302
+#: mod/admin.php:2316
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 "
@@ -5711,145 +6978,916 @@ msgid ""
"'display_errors' is to enable these options, set to '0' to disable them."
msgstr ""
-#: mod/admin.php:2333
+#: mod/admin.php:2347
#, php-format
msgid ""
"Error trying to open %1$s log file.\\r\\n Check to see "
"if file %1$s exist and is readable."
msgstr ""
-#: mod/admin.php:2337
+#: mod/admin.php:2351
#, php-format
msgid ""
"Couldn't open %1$s log file.\\r\\n Check to see if file "
"%1$s is readable."
msgstr ""
-#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775
-msgid "Off"
-msgstr ""
-
-#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775
-msgid "On"
-msgstr ""
-
-#: mod/admin.php:2429
+#: mod/admin.php:2443
#, php-format
msgid "Lock feature %s"
msgstr ""
-#: mod/admin.php:2437
+#: mod/admin.php:2451
msgid "Manage Additional Features"
msgstr ""
-#: mod/babel.php:22
-msgid "Source input"
+#: mod/delegate.php:37
+msgid "Parent user not found."
msgstr ""
-#: mod/babel.php:28
-msgid "BBCode::convert (raw HTML)"
+#: mod/delegate.php:144
+msgid "No parent user"
msgstr ""
-#: mod/babel.php:33
-msgid "BBCode::convert"
+#: mod/delegate.php:159
+msgid "Parent Password:"
msgstr ""
-#: mod/babel.php:39
-msgid "BBCode::convert => HTML::toBBCode"
+#: mod/delegate.php:159
+msgid ""
+"Please enter the password of the parent account to legitimize your request."
msgstr ""
-#: mod/babel.php:45
-msgid "BBCode::toMarkdown"
+#: mod/delegate.php:164
+msgid "Parent User"
msgstr ""
-#: mod/babel.php:51
-msgid "BBCode::toMarkdown => Markdown::convert"
+#: mod/delegate.php:167
+msgid ""
+"Parent users have total control about this account, including the account "
+"settings. Please double check whom you give this access."
msgstr ""
-#: mod/babel.php:57
-msgid "BBCode::toMarkdown => Markdown::toBBCode"
+#: mod/delegate.php:170
+msgid "Delegates"
msgstr ""
-#: mod/babel.php:63
-msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
+#: mod/delegate.php:172
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
msgstr ""
-#: mod/babel.php:70
-msgid "Source input \\x28Diaspora format\\x29"
+#: mod/delegate.php:173
+msgid "Existing Page Delegates"
msgstr ""
-#: mod/babel.php:76
-msgid "Markdown::toBBCode"
+#: mod/delegate.php:175
+msgid "Potential Delegates"
msgstr ""
-#: mod/babel.php:83
-msgid "Raw HTML input"
+#: mod/delegate.php:177 mod/tagrm.php:98
+msgid "Remove"
msgstr ""
-#: mod/babel.php:88
-msgid "HTML Input"
+#: mod/delegate.php:178
+msgid "Add"
msgstr ""
-#: mod/babel.php:94
-msgid "HTML::toBBCode"
+#: mod/delegate.php:179
+msgid "No entries."
msgstr ""
-#: mod/babel.php:100
-msgid "HTML::toPlaintext"
+#: mod/photos.php:109 mod/photos.php:1713
+msgid "Recent Photos"
msgstr ""
-#: mod/babel.php:108
-msgid "Source text"
+#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
+msgid "Upload New Photos"
msgstr ""
-#: mod/babel.php:109
-msgid "BBCode"
+#: mod/photos.php:184
+msgid "Contact information unavailable"
msgstr ""
-#: mod/babel.php:110
-msgid "Markdown"
+#: mod/photos.php:204
+msgid "Album not found."
msgstr ""
-#: mod/babel.php:111
-msgid "HTML"
+#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
+msgid "Delete Album"
msgstr ""
-#: mod/directory.php:152 src/Model/Profile.php:421 src/Model/Profile.php:771
-msgid "Status:"
+#: mod/photos.php:243
+msgid "Do you really want to delete this photo album and all its photos?"
msgstr ""
-#: mod/directory.php:153 src/Model/Profile.php:422 src/Model/Profile.php:788
-msgid "Homepage:"
+#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
+msgid "Delete Photo"
msgstr ""
-#: mod/directory.php:202 view/theme/vier/theme.php:201
-msgid "Global Directory"
+#: mod/photos.php:319
+msgid "Do you really want to delete this photo?"
msgstr ""
-#: mod/directory.php:204
-msgid "Find on this site"
+#: mod/photos.php:667
+msgid "a photo"
msgstr ""
-#: mod/directory.php:206
-msgid "Results for:"
-msgstr ""
-
-#: mod/directory.php:208
-msgid "Site Directory"
-msgstr ""
-
-#: mod/directory.php:213
-msgid "No entries (some entries may be hidden)."
-msgstr ""
-
-#: mod/dirfind.php:49
+#: mod/photos.php:667
#, php-format
-msgid "People Search - %s"
+msgid "%1$s was tagged in %2$s by %3$s"
msgstr ""
-#: mod/dirfind.php:60
+#: mod/photos.php:769
+msgid "Image upload didn't complete, please try again"
+msgstr ""
+
+#: mod/photos.php:772
+msgid "Image file is missing"
+msgstr ""
+
+#: mod/photos.php:777
+msgid ""
+"Server can't accept new file upload at this time, please contact your "
+"administrator"
+msgstr ""
+
+#: mod/photos.php:803
+msgid "Image file is empty."
+msgstr ""
+
+#: mod/photos.php:940
+msgid "No photos selected"
+msgstr ""
+
+#: mod/photos.php:1036 mod/videos.php:309
+msgid "Access to this item is restricted."
+msgstr ""
+
+#: mod/photos.php:1090
+msgid "Upload Photos"
+msgstr ""
+
+#: mod/photos.php:1094 mod/photos.php:1156
+msgid "New album name: "
+msgstr ""
+
+#: mod/photos.php:1095
+msgid "or existing album name: "
+msgstr ""
+
+#: mod/photos.php:1096
+msgid "Do not show a status post for this upload"
+msgstr ""
+
+#: mod/photos.php:1167
+msgid "Edit Album"
+msgstr ""
+
+#: mod/photos.php:1172
+msgid "Show Newest First"
+msgstr ""
+
+#: mod/photos.php:1174
+msgid "Show Oldest First"
+msgstr ""
+
+#: mod/photos.php:1195 mod/photos.php:1698
+msgid "View Photo"
+msgstr ""
+
+#: mod/photos.php:1236
+msgid "Permission denied. Access to this item may be restricted."
+msgstr ""
+
+#: mod/photos.php:1238
+msgid "Photo not available"
+msgstr ""
+
+#: mod/photos.php:1301
+msgid "View photo"
+msgstr ""
+
+#: mod/photos.php:1301
+msgid "Edit photo"
+msgstr ""
+
+#: mod/photos.php:1302
+msgid "Use as profile photo"
+msgstr ""
+
+#: mod/photos.php:1327
+msgid "View Full Size"
+msgstr ""
+
+#: mod/photos.php:1414
+msgid "Tags: "
+msgstr ""
+
+#: mod/photos.php:1417
+msgid "[Remove any tag]"
+msgstr ""
+
+#: mod/photos.php:1432
+msgid "New album name"
+msgstr ""
+
+#: mod/photos.php:1433
+msgid "Caption"
+msgstr ""
+
+#: mod/photos.php:1434
+msgid "Add a Tag"
+msgstr ""
+
+#: mod/photos.php:1434
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr ""
+
+#: mod/photos.php:1435
+msgid "Do not rotate"
+msgstr ""
+
+#: mod/photos.php:1436
+msgid "Rotate CW (right)"
+msgstr ""
+
+#: mod/photos.php:1437
+msgid "Rotate CCW (left)"
+msgstr ""
+
+#: mod/photos.php:1634
+msgid "Map"
+msgstr ""
+
+#: mod/photos.php:1704 mod/videos.php:387
+msgid "View Album"
+msgstr ""
+
+#: mod/nogroup.php:43 mod/contacts.php:960
+msgid "Edit contact"
+msgstr ""
+
+#: mod/nogroup.php:63
+msgid "Contacts who are not members of a group"
+msgstr ""
+
+#: mod/community.php:46
+msgid "Community option not available."
+msgstr ""
+
+#: mod/community.php:63
+msgid "Not available."
+msgstr ""
+
+#: mod/community.php:76
+msgid "Local Community"
+msgstr ""
+
+#: mod/community.php:79
+msgid "Posts from local users on this server"
+msgstr ""
+
+#: mod/community.php:87
+msgid "Global Community"
+msgstr ""
+
+#: mod/community.php:90
+msgid "Posts from users of the whole federated network"
+msgstr ""
+
+#: mod/community.php:136 mod/search.php:228
+msgid "No results."
+msgstr ""
+
+#: mod/community.php:180
+msgid ""
+"This community stream shows all public posts received by this node. They may "
+"not reflect the opinions of this node’s users."
+msgstr ""
+
+#: mod/message.php:73 mod/wallmessage.php:57
+msgid "No recipient selected."
+msgstr ""
+
+#: mod/message.php:77
+msgid "Unable to locate contact information."
+msgstr ""
+
+#: mod/message.php:80 mod/wallmessage.php:63
+msgid "Message could not be sent."
+msgstr ""
+
+#: mod/message.php:83 mod/wallmessage.php:66
+msgid "Message collection failure."
+msgstr ""
+
+#: mod/message.php:86 mod/wallmessage.php:69
+msgid "Message sent."
+msgstr ""
+
+#: mod/message.php:136
+msgid "Do you really want to delete this message?"
+msgstr ""
+
+#: mod/message.php:156
+msgid "Message deleted."
+msgstr ""
+
+#: mod/message.php:185
+msgid "Conversation removed."
+msgstr ""
+
+#: mod/message.php:250 mod/wallmessage.php:132
+msgid "Send Private Message"
+msgstr ""
+
+#: mod/message.php:251 mod/message.php:421 mod/wallmessage.php:134
+msgid "To:"
+msgstr ""
+
+#: mod/message.php:255 mod/message.php:423 mod/wallmessage.php:135
+msgid "Subject:"
+msgstr ""
+
+#: mod/message.php:291
+msgid "No messages."
+msgstr ""
+
+#: mod/message.php:330
+msgid "Message not available."
+msgstr ""
+
+#: mod/message.php:397
+msgid "Delete message"
+msgstr ""
+
+#: mod/message.php:399 mod/message.php:500
+msgid "D, d M Y - g:i A"
+msgstr ""
+
+#: mod/message.php:414 mod/message.php:497
+msgid "Delete conversation"
+msgstr ""
+
+#: mod/message.php:416
+msgid ""
+"No secure communications available. You may be able to "
+"respond from the sender's profile page."
+msgstr ""
+
+#: mod/message.php:420
+msgid "Send Reply"
+msgstr ""
+
+#: mod/message.php:471
#, php-format
-msgid "Forum Search - %s"
+msgid "Unknown sender - %s"
+msgstr ""
+
+#: mod/message.php:473
+#, php-format
+msgid "You and %s"
+msgstr ""
+
+#: mod/message.php:475
+#, php-format
+msgid "%s and You"
+msgstr ""
+
+#: mod/message.php:503
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/videos.php:139
+msgid "Do you really want to delete this video?"
+msgstr ""
+
+#: mod/videos.php:144
+msgid "Delete Video"
+msgstr ""
+
+#: mod/videos.php:207
+msgid "No videos selected"
+msgstr ""
+
+#: mod/videos.php:396
+msgid "Recent Videos"
+msgstr ""
+
+#: mod/videos.php:398
+msgid "Upload New Videos"
+msgstr ""
+
+#: mod/credits.php:18
+msgid "Credits"
+msgstr ""
+
+#: mod/credits.php:19
+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 ""
+
+#: mod/unfollow.php:34
+msgid "Contact wasn't found or can't be unfollowed."
+msgstr ""
+
+#: mod/unfollow.php:47
+msgid "Contact unfollowed"
+msgstr ""
+
+#: mod/unfollow.php:65 mod/dfrn_request.php:662 mod/follow.php:62
+msgid "Submit Request"
+msgstr ""
+
+#: mod/unfollow.php:73
+msgid "You aren't a friend of this contact."
+msgstr ""
+
+#: mod/unfollow.php:79
+msgid "Unfollowing is currently not supported by your network."
+msgstr ""
+
+#: mod/unfollow.php:100 mod/contacts.php:599
+msgid "Disconnect/Unfollow"
+msgstr ""
+
+#: mod/unfollow.php:113 mod/dfrn_request.php:660 mod/follow.php:157
+msgid "Your Identity Address:"
+msgstr ""
+
+#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83
+#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112
+#: mod/wall_upload.php:155 mod/wall_upload.php:158
+msgid "Invalid request."
+msgstr ""
+
+#: mod/wall_attach.php:101
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr ""
+
+#: mod/wall_attach.php:101
+msgid "Or - did you try to upload an empty file?"
+msgstr ""
+
+#: mod/wall_attach.php:112
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr ""
+
+#: mod/wall_attach.php:136 mod/wall_attach.php:152
+msgid "File upload failed."
+msgstr ""
+
+#: mod/profile.php:194
+msgid "Tips for New Members"
+msgstr ""
+
+#: mod/localtime.php:33
+msgid "Time Conversion"
+msgstr ""
+
+#: mod/localtime.php:35
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr ""
+
+#: mod/localtime.php:39
+#, php-format
+msgid "UTC time: %s"
+msgstr ""
+
+#: mod/localtime.php:42
+#, php-format
+msgid "Current timezone: %s"
+msgstr ""
+
+#: mod/localtime.php:46
+#, php-format
+msgid "Converted localtime: %s"
+msgstr ""
+
+#: mod/localtime.php:52
+msgid "Please select your timezone:"
+msgstr ""
+
+#: mod/dfrn_request.php:94
+msgid "This introduction has already been accepted."
+msgstr ""
+
+#: mod/dfrn_request.php:112 mod/dfrn_request.php:359
+msgid "Profile location is not valid or does not contain profile information."
+msgstr ""
+
+#: mod/dfrn_request.php:116 mod/dfrn_request.php:363
+msgid "Warning: profile location has no identifiable owner name."
+msgstr ""
+
+#: mod/dfrn_request.php:119 mod/dfrn_request.php:366
+msgid "Warning: profile location has no profile photo."
+msgstr ""
+
+#: mod/dfrn_request.php:123 mod/dfrn_request.php:370
+#, 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:162
+msgid "Introduction complete."
+msgstr ""
+
+#: mod/dfrn_request.php:199
+msgid "Unrecoverable protocol error."
+msgstr ""
+
+#: mod/dfrn_request.php:226
+msgid "Profile unavailable."
+msgstr ""
+
+#: mod/dfrn_request.php:248
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr ""
+
+#: mod/dfrn_request.php:249
+msgid "Spam protection measures have been invoked."
+msgstr ""
+
+#: mod/dfrn_request.php:250
+msgid "Friends are advised to please try again in 24 hours."
+msgstr ""
+
+#: mod/dfrn_request.php:280
+msgid "Invalid locator"
+msgstr ""
+
+#: mod/dfrn_request.php:316
+msgid "You have already introduced yourself here."
+msgstr ""
+
+#: mod/dfrn_request.php:319
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr ""
+
+#: mod/dfrn_request.php:339
+msgid "Invalid profile URL."
+msgstr ""
+
+#: mod/dfrn_request.php:419 mod/contacts.php:230
+msgid "Failed to update contact record."
+msgstr ""
+
+#: mod/dfrn_request.php:439
+msgid "Your introduction has been sent."
+msgstr ""
+
+#: mod/dfrn_request.php:477
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
+msgstr ""
+
+#: mod/dfrn_request.php:493
+msgid "Please login to confirm introduction."
+msgstr ""
+
+#: mod/dfrn_request.php:501
+msgid ""
+"Incorrect identity currently logged in. Please login to this"
+"strong> profile."
+msgstr ""
+
+#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
+msgid "Confirm"
+msgstr ""
+
+#: mod/dfrn_request.php:527
+msgid "Hide this contact"
+msgstr ""
+
+#: mod/dfrn_request.php:530
+#, php-format
+msgid "Welcome home %s."
+msgstr ""
+
+#: mod/dfrn_request.php:531
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr ""
+
+#: mod/dfrn_request.php:642
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr ""
+
+#: mod/dfrn_request.php:645
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, follow "
+"this link to find a public Friendica site and join us today ."
+msgstr ""
+
+#: mod/dfrn_request.php:650
+msgid "Friend/Connection Request"
+msgstr ""
+
+#: mod/dfrn_request.php:651
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@gnusocial.de"
+msgstr ""
+
+#: mod/dfrn_request.php:652 mod/follow.php:149
+msgid "Please answer the following:"
+msgstr ""
+
+#: mod/dfrn_request.php:653 mod/follow.php:150
+#, php-format
+msgid "Does %s know you?"
+msgstr ""
+
+#: mod/dfrn_request.php:654 mod/follow.php:151
+msgid "Add a personal note:"
+msgstr ""
+
+#: mod/dfrn_request.php:657
+msgid "GNU Social (Pleroma, Mastodon)"
+msgstr ""
+
+#: mod/dfrn_request.php:658
+msgid "Diaspora (Socialhome, Hubzilla)"
+msgstr ""
+
+#: mod/dfrn_request.php:659
+#, php-format
+msgid ""
+" - please do not use this form. Instead, enter %s into your Diaspora search "
+"bar."
+msgstr ""
+
+#: mod/crepair.php:87
+msgid "Contact settings applied."
+msgstr ""
+
+#: mod/crepair.php:89
+msgid "Contact update failed."
+msgstr ""
+
+#: mod/crepair.php:114
+msgid ""
+"WARNING: This is highly advanced and if you enter incorrect "
+"information your communications with this contact may stop working."
+msgstr ""
+
+#: mod/crepair.php:115
+msgid ""
+"Please use your browser 'Back' button now if you are "
+"uncertain what to do on this page."
+msgstr ""
+
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "No mirroring"
+msgstr ""
+
+#: mod/crepair.php:129
+msgid "Mirror as forwarded posting"
+msgstr ""
+
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "Mirror as my own posting"
+msgstr ""
+
+#: mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr ""
+
+#: mod/crepair.php:146
+msgid "Refetch contact data"
+msgstr ""
+
+#: mod/crepair.php:149
+msgid "Remote Self"
+msgstr ""
+
+#: mod/crepair.php:152
+msgid "Mirror postings from this contact"
+msgstr ""
+
+#: mod/crepair.php:154
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr ""
+
+#: mod/crepair.php:159
+msgid "Account Nickname"
+msgstr ""
+
+#: mod/crepair.php:160
+msgid "@Tagname - overrides Name/Nickname"
+msgstr ""
+
+#: mod/crepair.php:161
+msgid "Account URL"
+msgstr ""
+
+#: mod/crepair.php:162
+msgid "Friend Request URL"
+msgstr ""
+
+#: mod/crepair.php:163
+msgid "Friend Confirm URL"
+msgstr ""
+
+#: mod/crepair.php:164
+msgid "Notification Endpoint URL"
+msgstr ""
+
+#: mod/crepair.php:165
+msgid "Poll/Feed URL"
+msgstr ""
+
+#: mod/crepair.php:166
+msgid "New photo from this URL"
+msgstr ""
+
+#: mod/home.php:39
+#, php-format
+msgid "Welcome to %s"
+msgstr ""
+
+#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
+#, php-format
+msgid "%1$s welcomes %2$s"
+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/oexchange.php:30
+msgid "Post successful."
+msgstr ""
+
+#: mod/viewsrc.php:12
+msgid "Access denied."
+msgstr ""
+
+#: mod/notifications.php:37
+msgid "Invalid request identifier."
+msgstr ""
+
+#: mod/notifications.php:46 mod/notifications.php:183 mod/notifications.php:230
+msgid "Discard"
+msgstr ""
+
+#: mod/notifications.php:62 mod/notifications.php:182 mod/notifications.php:266
+#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
+msgid "Ignore"
+msgstr ""
+
+#: mod/notifications.php:107
+msgid "Network Notifications"
+msgstr ""
+
+#: mod/notifications.php:119
+msgid "Personal Notifications"
+msgstr ""
+
+#: mod/notifications.php:125
+msgid "Home Notifications"
+msgstr ""
+
+#: mod/notifications.php:155
+msgid "Show Ignored Requests"
+msgstr ""
+
+#: mod/notifications.php:155
+msgid "Hide Ignored Requests"
+msgstr ""
+
+#: mod/notifications.php:167 mod/notifications.php:237
+msgid "Notification type: "
+msgstr ""
+
+#: mod/notifications.php:170
+#, php-format
+msgid "suggested by %s"
+msgstr ""
+
+#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
+msgid "Hide this contact from others"
+msgstr ""
+
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "Post a new friend activity"
+msgstr ""
+
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "if applicable"
+msgstr ""
+
+#: mod/notifications.php:198
+msgid "Claims to be known to you: "
+msgstr ""
+
+#: mod/notifications.php:199
+msgid "yes"
+msgstr ""
+
+#: mod/notifications.php:199
+msgid "no"
+msgstr ""
+
+#: mod/notifications.php:200 mod/notifications.php:205
+msgid "Shall your connection be bidirectional or not?"
+msgstr ""
+
+#: mod/notifications.php:201 mod/notifications.php:206
+#, php-format
+msgid ""
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
+msgstr ""
+
+#: mod/notifications.php:202
+#, php-format
+msgid ""
+"Accepting %s as a subscriber allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
+msgstr ""
+
+#: mod/notifications.php:207
+#, php-format
+msgid ""
+"Accepting %s as a sharer allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
+msgstr ""
+
+#: mod/notifications.php:218
+msgid "Friend"
+msgstr ""
+
+#: mod/notifications.php:219
+msgid "Sharer"
+msgstr ""
+
+#: mod/notifications.php:219
+msgid "Subscriber"
+msgstr ""
+
+#: mod/notifications.php:275
+msgid "No introductions."
+msgstr ""
+
+#: mod/notifications.php:316
+msgid "Show unread"
+msgstr ""
+
+#: mod/notifications.php:316
+msgid "Show all"
+msgstr ""
+
+#: mod/notifications.php:322
+#, php-format
+msgid "No more %s notifications."
+msgstr ""
+
+#: mod/p.php:14
+msgid "Not Extended"
+msgstr ""
+
+#: mod/p.php:21 mod/p.php:48 mod/p.php:57 mod/fetch.php:16 mod/fetch.php:52
+#: mod/fetch.php:65 mod/help.php:60 index.php:320
+msgid "Not Found"
msgstr ""
#: mod/follow.php:45
@@ -5872,152 +7910,365 @@ msgstr ""
msgid "The network type couldn't be detected. Contact can't be added."
msgstr ""
-#: mod/friendica.php:77
-msgid "This is Friendica, version"
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
msgstr ""
-#: mod/friendica.php:78
-msgid "running at web location"
+#: mod/cal.php:315
+msgid "No exportable data found"
msgstr ""
-#: mod/friendica.php:82
-msgid ""
-"Please visit Friendi.ca to learn more "
-"about the Friendica project."
+#: mod/cal.php:332
+msgid "calendar"
msgstr ""
-#: mod/friendica.php:86
-msgid "Bug reports and issues: please visit"
-msgstr ""
-
-#: mod/friendica.php:86
-msgid "the bugtracker at github"
-msgstr ""
-
-#: mod/friendica.php:89
-msgid ""
-"Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
-msgstr ""
-
-#: mod/friendica.php:103
-msgid "Installed addons/apps:"
-msgstr ""
-
-#: mod/friendica.php:117
-msgid "No installed addons/apps"
-msgstr ""
-
-#: mod/friendica.php:122
+#: mod/contacts.php:157
#, php-format
-msgid "Read about the Terms of Service of this node."
-msgstr ""
-
-#: mod/friendica.php:127
-msgid "On this server the following remote servers are blocked."
-msgstr ""
-
-#: mod/invite.php:33
-msgid "Total invitation limit exceeded."
-msgstr ""
-
-#: mod/invite.php:55
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr ""
-
-#: mod/invite.php:87
-msgid "Please join us on Friendica"
-msgstr ""
-
-#: mod/invite.php:96
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr ""
-
-#: mod/invite.php:100
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr ""
-
-#: mod/invite.php:104
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
msgstr[0] ""
msgstr[1] ""
-#: mod/invite.php:122
-msgid "You have no more invitations available"
+#: mod/contacts.php:184 mod/contacts.php:400
+msgid "Could not access contact record."
msgstr ""
-#: mod/invite.php:130
+#: mod/contacts.php:194
+msgid "Could not locate selected profile."
+msgstr ""
+
+#: mod/contacts.php:228
+msgid "Contact updated."
+msgstr ""
+
+#: mod/contacts.php:421
+msgid "Contact has been blocked"
+msgstr ""
+
+#: mod/contacts.php:421
+msgid "Contact has been unblocked"
+msgstr ""
+
+#: mod/contacts.php:432
+msgid "Contact has been ignored"
+msgstr ""
+
+#: mod/contacts.php:432
+msgid "Contact has been unignored"
+msgstr ""
+
+#: mod/contacts.php:443
+msgid "Contact has been archived"
+msgstr ""
+
+#: mod/contacts.php:443
+msgid "Contact has been unarchived"
+msgstr ""
+
+#: mod/contacts.php:467
+msgid "Drop contact"
+msgstr ""
+
+#: mod/contacts.php:470 mod/contacts.php:823
+msgid "Do you really want to delete this contact?"
+msgstr ""
+
+#: mod/contacts.php:488
+msgid "Contact has been removed."
+msgstr ""
+
+#: mod/contacts.php:519
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr ""
+
+#: mod/contacts.php:523
+#, php-format
+msgid "You are sharing with %s"
+msgstr ""
+
+#: mod/contacts.php:527
+#, php-format
+msgid "%s is sharing with you"
+msgstr ""
+
+#: mod/contacts.php:547
+msgid "Private communications are not available for this contact."
+msgstr ""
+
+#: mod/contacts.php:549
+msgid "Never"
+msgstr ""
+
+#: mod/contacts.php:552
+msgid "(Update was successful)"
+msgstr ""
+
+#: mod/contacts.php:552
+msgid "(Update was not successful)"
+msgstr ""
+
+#: mod/contacts.php:554 mod/contacts.php:992
+msgid "Suggest friends"
+msgstr ""
+
+#: mod/contacts.php:558
+#, php-format
+msgid "Network type: %s"
+msgstr ""
+
+#: mod/contacts.php:563
+msgid "Communications lost with this contact!"
+msgstr ""
+
+#: mod/contacts.php:569
+msgid "Fetch further information for feeds"
+msgstr ""
+
+#: mod/contacts.php:571
+msgid ""
+"Fetch information like preview pictures, title and teaser from the feed "
+"item. You can activate this if the feed doesn't contain much text. Keywords "
+"are taken from the meta header in the feed item and are posted as hash tags."
+msgstr ""
+
+#: mod/contacts.php:573
+msgid "Fetch information"
+msgstr ""
+
+#: mod/contacts.php:574
+msgid "Fetch keywords"
+msgstr ""
+
+#: mod/contacts.php:575
+msgid "Fetch information and keywords"
+msgstr ""
+
+#: mod/contacts.php:608
+msgid "Contact"
+msgstr ""
+
+#: mod/contacts.php:611
+msgid "Profile Visibility"
+msgstr ""
+
+#: mod/contacts.php:612
#, php-format
msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many "
-"other social networks."
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
msgstr ""
-#: mod/invite.php:132
+#: mod/contacts.php:613
+msgid "Contact Information / Notes"
+msgstr ""
+
+#: mod/contacts.php:614
+msgid "Their personal note"
+msgstr ""
+
+#: mod/contacts.php:616
+msgid "Edit contact notes"
+msgstr ""
+
+#: mod/contacts.php:620
+msgid "Block/Unblock contact"
+msgstr ""
+
+#: mod/contacts.php:621
+msgid "Ignore contact"
+msgstr ""
+
+#: mod/contacts.php:622
+msgid "Repair URL settings"
+msgstr ""
+
+#: mod/contacts.php:623
+msgid "View conversations"
+msgstr ""
+
+#: mod/contacts.php:628
+msgid "Last update:"
+msgstr ""
+
+#: mod/contacts.php:630
+msgid "Update public posts"
+msgstr ""
+
+#: mod/contacts.php:632 mod/contacts.php:1002
+msgid "Update now"
+msgstr ""
+
+#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
+msgid "Unignore"
+msgstr ""
+
+#: mod/contacts.php:642
+msgid "Currently blocked"
+msgstr ""
+
+#: mod/contacts.php:643
+msgid "Currently ignored"
+msgstr ""
+
+#: mod/contacts.php:644
+msgid "Currently archived"
+msgstr ""
+
+#: mod/contacts.php:645
+msgid "Awaiting connection acknowledge"
+msgstr ""
+
+#: mod/contacts.php:646
+msgid ""
+"Replies/likes to your public posts may still be visible"
+msgstr ""
+
+#: mod/contacts.php:647
+msgid "Notification for new posts"
+msgstr ""
+
+#: mod/contacts.php:647
+msgid "Send a notification of every new post of this contact"
+msgstr ""
+
+#: mod/contacts.php:650
+msgid "Blacklisted keywords"
+msgstr ""
+
+#: mod/contacts.php:650
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr ""
+
+#: mod/contacts.php:667
+msgid "Actions"
+msgstr ""
+
+#: mod/contacts.php:670
+msgid "Contact Settings"
+msgstr ""
+
+#: mod/contacts.php:711
+msgid "Suggestions"
+msgstr ""
+
+#: mod/contacts.php:714
+msgid "Suggest potential friends"
+msgstr ""
+
+#: mod/contacts.php:722
+msgid "Show all contacts"
+msgstr ""
+
+#: mod/contacts.php:727
+msgid "Unblocked"
+msgstr ""
+
+#: mod/contacts.php:730
+msgid "Only show unblocked contacts"
+msgstr ""
+
+#: mod/contacts.php:735
+msgid "Blocked"
+msgstr ""
+
+#: mod/contacts.php:738
+msgid "Only show blocked contacts"
+msgstr ""
+
+#: mod/contacts.php:743
+msgid "Ignored"
+msgstr ""
+
+#: mod/contacts.php:746
+msgid "Only show ignored contacts"
+msgstr ""
+
+#: mod/contacts.php:751
+msgid "Archived"
+msgstr ""
+
+#: mod/contacts.php:754
+msgid "Only show archived contacts"
+msgstr ""
+
+#: mod/contacts.php:759
+msgid "Hidden"
+msgstr ""
+
+#: mod/contacts.php:762
+msgid "Only show hidden contacts"
+msgstr ""
+
+#: mod/contacts.php:818
+msgid "Search your contacts"
+msgstr ""
+
+#: mod/contacts.php:819 mod/search.php:236
#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
+msgid "Results for: %s"
msgstr ""
-#: mod/invite.php:133
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Archive"
msgstr ""
-#: mod/invite.php:137
-msgid ""
-"Our apologies. This system is not currently configured to connect with other "
-"public sites or invite members."
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Unarchive"
msgstr ""
-#: mod/invite.php:141
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks."
+#: mod/contacts.php:832
+msgid "Batch Actions"
msgstr ""
-#: mod/invite.php:140
-#, php-format
-msgid "To accept this invitation, please visit and register at %s."
+#: mod/contacts.php:878
+msgid "View all contacts"
msgstr ""
-#: mod/invite.php:147
-msgid "Send invitations"
+#: mod/contacts.php:886 mod/common.php:140
+msgid "Common Friends"
msgstr ""
-#: mod/invite.php:148
-msgid "Enter email addresses, one per line:"
+#: mod/contacts.php:889
+msgid "View all common friends"
msgstr ""
-#: mod/invite.php:150
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
+#: mod/contacts.php:898
+msgid "Advanced Contact Settings"
msgstr ""
-#: mod/invite.php:152
-msgid "You will need to supply this invitation code: $invite_code"
+#: mod/contacts.php:930
+msgid "Mutual Friendship"
msgstr ""
-#: mod/invite.php:152
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
+#: mod/contacts.php:934
+msgid "is a fan of yours"
msgstr ""
-#: mod/invite.php:154
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendi.ca"
+#: mod/contacts.php:938
+msgid "you are a fan of"
+msgstr ""
+
+#: mod/contacts.php:1013
+msgid "Toggle Blocked status"
+msgstr ""
+
+#: mod/contacts.php:1021
+msgid "Toggle Ignored status"
+msgstr ""
+
+#: mod/contacts.php:1029
+msgid "Toggle Archive status"
+msgstr ""
+
+#: mod/contacts.php:1037
+msgid "Delete contact"
+msgstr ""
+
+#: mod/bookmarklet.php:51
+msgid "The post was created"
msgstr ""
#: mod/lostpass.php:27
@@ -6089,18 +8340,10 @@ msgid ""
"your email for further instructions."
msgstr ""
-#: mod/lostpass.php:119 src/Module/Login.php:314
-msgid "Nickname or Email: "
-msgstr ""
-
#: mod/lostpass.php:120
msgid "Reset"
msgstr ""
-#: mod/lostpass.php:136 src/Module/Login.php:326
-msgid "Password Reset"
-msgstr ""
-
#: mod/lostpass.php:137
msgid "Your password has been reset as requested."
msgstr ""
@@ -6154,432 +8397,782 @@ msgstr ""
msgid "Your password has been changed at %s"
msgstr ""
-#: mod/network.php:202 src/Model/Group.php:413
-msgid "add"
+#: mod/install.php:114
+msgid "Friendica Communications Server - Setup"
msgstr ""
-#: mod/network.php:547
+#: mod/install.php:120
+msgid "Could not connect to database."
+msgstr ""
+
+#: mod/install.php:124
+msgid "Could not create table."
+msgstr ""
+
+#: mod/install.php:130
+msgid "Your Friendica site database has been installed."
+msgstr ""
+
+#: mod/install.php:135
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr ""
+
+#: mod/install.php:136 mod/install.php:208 mod/install.php:558
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr ""
+
+#: mod/install.php:148
+msgid "Database already in use."
+msgstr ""
+
+#: mod/install.php:205
+msgid "System check"
+msgstr ""
+
+#: mod/install.php:210
+msgid "Check again"
+msgstr ""
+
+#: mod/install.php:230
+msgid "Database connection"
+msgstr ""
+
+#: mod/install.php:231
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr ""
+
+#: mod/install.php:232
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr ""
+
+#: mod/install.php:233
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr ""
+
+#: mod/install.php:237
+msgid "Database Server Name"
+msgstr ""
+
+#: mod/install.php:238
+msgid "Database Login Name"
+msgstr ""
+
+#: mod/install.php:239
+msgid "Database Login Password"
+msgstr ""
+
+#: mod/install.php:239
+msgid "For security reasons the password must not be empty"
+msgstr ""
+
+#: mod/install.php:240
+msgid "Database Name"
+msgstr ""
+
+#: mod/install.php:241 mod/install.php:281
+msgid "Site administrator email address"
+msgstr ""
+
+#: mod/install.php:241 mod/install.php:281
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr ""
+
+#: mod/install.php:245 mod/install.php:284
+msgid "Please select a default timezone for your website"
+msgstr ""
+
+#: mod/install.php:271
+msgid "Site settings"
+msgstr ""
+
+#: mod/install.php:285
+msgid "System Language:"
+msgstr ""
+
+#: mod/install.php:285
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr ""
+
+#: mod/install.php:325
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr ""
+
+#: mod/install.php:326
+msgid ""
+"If you don't have a command line version of PHP installed on your server, "
+"you will not be able to run the background processing. See 'Setup the worker' "
+msgstr ""
+
+#: mod/install.php:330
+msgid "PHP executable path"
+msgstr ""
+
+#: mod/install.php:330
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr ""
+
+#: mod/install.php:335
+msgid "Command line PHP"
+msgstr ""
+
+#: mod/install.php:344
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr ""
+
+#: mod/install.php:345
+msgid "Found PHP version: "
+msgstr ""
+
+#: mod/install.php:347
+msgid "PHP cli binary"
+msgstr ""
+
+#: mod/install.php:358
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr ""
+
+#: mod/install.php:359
+msgid "This is required for message delivery to work."
+msgstr ""
+
+#: mod/install.php:361
+msgid "PHP register_argc_argv"
+msgstr ""
+
+#: mod/install.php:384
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr ""
+
+#: mod/install.php:385
+msgid ""
+"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
+"installation.php\"."
+msgstr ""
+
+#: mod/install.php:387
+msgid "Generate encryption keys"
+msgstr ""
+
+#: mod/install.php:394
+msgid "libCurl PHP module"
+msgstr ""
+
+#: mod/install.php:395
+msgid "GD graphics PHP module"
+msgstr ""
+
+#: mod/install.php:396
+msgid "OpenSSL PHP module"
+msgstr ""
+
+#: mod/install.php:397
+msgid "PDO or MySQLi PHP module"
+msgstr ""
+
+#: mod/install.php:398
+msgid "mb_string PHP module"
+msgstr ""
+
+#: mod/install.php:399
+msgid "XML PHP module"
+msgstr ""
+
+#: mod/install.php:400
+msgid "iconv PHP module"
+msgstr ""
+
+#: mod/install.php:401
+msgid "POSIX PHP module"
+msgstr ""
+
+#: mod/install.php:405 mod/install.php:407
+msgid "Apache mod_rewrite module"
+msgstr ""
+
+#: mod/install.php:405
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr ""
+
+#: mod/install.php:413
+msgid "Error: libCURL PHP module required but not installed."
+msgstr ""
+
+#: mod/install.php:417
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr ""
+
+#: mod/install.php:421
+msgid "Error: openssl PHP module required but not installed."
+msgstr ""
+
+#: mod/install.php:425
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr ""
+
+#: mod/install.php:429
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr ""
+
+#: mod/install.php:433
+msgid "Error: mb_string PHP module required but not installed."
+msgstr ""
+
+#: mod/install.php:437
+msgid "Error: iconv PHP module required but not installed."
+msgstr ""
+
+#: mod/install.php:441
+msgid "Error: POSIX PHP module required but not installed."
+msgstr ""
+
+#: mod/install.php:451
+msgid "Error, XML PHP module required but not installed."
+msgstr ""
+
+#: mod/install.php:463
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\" "
+"in the top folder of your web server and it is unable to do so."
+msgstr ""
+
+#: mod/install.php:464
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr ""
+
+#: mod/install.php:465
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr ""
+
+#: mod/install.php:466
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation. "
+"Please see the file \"INSTALL.txt\" for instructions."
+msgstr ""
+
+#: mod/install.php:469
+msgid ".htconfig.php is writable"
+msgstr ""
+
+#: mod/install.php:479
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr ""
+
+#: mod/install.php:480
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr ""
+
+#: mod/install.php:481
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has "
+"write access to this folder."
+msgstr ""
+
+#: mod/install.php:482
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr ""
+
+#: mod/install.php:485
+msgid "view/smarty3 is writable"
+msgstr ""
+
+#: mod/install.php:501
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr ""
+
+#: mod/install.php:503
+msgid "Url rewrite is working"
+msgstr ""
+
+#: mod/install.php:522
+msgid "ImageMagick PHP extension is not installed"
+msgstr ""
+
+#: mod/install.php:524
+msgid "ImageMagick PHP extension is installed"
+msgstr ""
+
+#: mod/install.php:526
+msgid "ImageMagick supports GIF"
+msgstr ""
+
+#: mod/install.php:533
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr ""
+
+#: mod/install.php:556
+msgid "What next "
+msgstr ""
+
+#: mod/install.php:557
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the worker."
+msgstr ""
+
+#: mod/install.php:560
#, php-format
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 a network that doesn't allow "
-"non public messages."
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/network.php:550
-msgid "Messages in this group won't be send to these receivers."
+"Go to your new Friendica node registration page "
+"and register as new user. Remember to use the same email you have entered as "
+"administrator email. This will allow you to enter the site admin panel."
msgstr ""
-#: mod/network.php:618
-msgid "No such group"
+#: mod/babel.php:23
+msgid "Source input"
msgstr ""
-#: mod/network.php:643
+#: mod/babel.php:29
+msgid "BBCode::toPlaintext"
+msgstr ""
+
+#: mod/babel.php:35
+msgid "BBCode::convert (raw HTML)"
+msgstr ""
+
+#: mod/babel.php:40
+msgid "BBCode::convert"
+msgstr ""
+
+#: mod/babel.php:46
+msgid "BBCode::convert => HTML::toBBCode"
+msgstr ""
+
+#: mod/babel.php:52
+msgid "BBCode::toMarkdown"
+msgstr ""
+
+#: mod/babel.php:58
+msgid "BBCode::toMarkdown => Markdown::convert"
+msgstr ""
+
+#: mod/babel.php:64
+msgid "BBCode::toMarkdown => Markdown::toBBCode"
+msgstr ""
+
+#: mod/babel.php:70
+msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
+msgstr ""
+
+#: mod/babel.php:77
+msgid "Source input \\x28Diaspora format\\x29"
+msgstr ""
+
+#: mod/babel.php:83
+msgid "Markdown::toBBCode"
+msgstr ""
+
+#: mod/babel.php:90
+msgid "Raw HTML input"
+msgstr ""
+
+#: mod/babel.php:95
+msgid "HTML Input"
+msgstr ""
+
+#: mod/babel.php:101
+msgid "HTML::toBBCode"
+msgstr ""
+
+#: mod/babel.php:107
+msgid "HTML::toPlaintext"
+msgstr ""
+
+#: mod/babel.php:115
+msgid "Source text"
+msgstr ""
+
+#: mod/babel.php:116
+msgid "BBCode"
+msgstr ""
+
+#: mod/babel.php:117
+msgid "Markdown"
+msgstr ""
+
+#: mod/babel.php:118
+msgid "HTML"
+msgstr ""
+
+#: mod/lockview.php:38 mod/lockview.php:46
+msgid "Remote privacy information not available."
+msgstr ""
+
+#: mod/lockview.php:55
+msgid "Visible to:"
+msgstr ""
+
+#: mod/wallmessage.php:49 mod/wallmessage.php:112
#, php-format
-msgid "Group: %s"
+msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr ""
-#: mod/network.php:669
-msgid "Private messages to this person are at risk of public disclosure."
+#: mod/wallmessage.php:60
+msgid "Unable to check your home location."
msgstr ""
-#: mod/network.php:672
-msgid "Invalid contact."
+#: mod/wallmessage.php:86 mod/wallmessage.php:95
+msgid "No recipient."
msgstr ""
-#: mod/network.php:936
-msgid "Commented Order"
-msgstr ""
-
-#: mod/network.php:939
-msgid "Sort by Comment Date"
-msgstr ""
-
-#: mod/network.php:944
-msgid "Posted Order"
-msgstr ""
-
-#: mod/network.php:947
-msgid "Sort by Post Date"
-msgstr ""
-
-#: mod/network.php:955 mod/profiles.php:687
-#: src/Core/NotificationsManager.php:185
-msgid "Personal"
-msgstr ""
-
-#: mod/network.php:958
-msgid "Posts that mention or involve you"
-msgstr ""
-
-#: mod/network.php:966
-msgid "New"
-msgstr ""
-
-#: mod/network.php:969
-msgid "Activity Stream - by date"
-msgstr ""
-
-#: mod/network.php:977
-msgid "Shared Links"
-msgstr ""
-
-#: mod/network.php:980
-msgid "Interesting Links"
-msgstr ""
-
-#: mod/network.php:988
-msgid "Starred"
-msgstr ""
-
-#: mod/network.php:991
-msgid "Favourite Posts"
-msgstr ""
-
-#: mod/profiles.php:58
-msgid "Profile deleted."
-msgstr ""
-
-#: mod/profiles.php:74 mod/profiles.php:110
-msgid "Profile-"
-msgstr ""
-
-#: mod/profiles.php:93 mod/profiles.php:132
-msgid "New profile created."
-msgstr ""
-
-#: mod/profiles.php:116
-msgid "Profile unavailable to clone."
-msgstr ""
-
-#: mod/profiles.php:206
-msgid "Profile Name is required."
-msgstr ""
-
-#: mod/profiles.php:347
-msgid "Marital Status"
-msgstr ""
-
-#: mod/profiles.php:351
-msgid "Romantic Partner"
-msgstr ""
-
-#: mod/profiles.php:363
-msgid "Work/Employment"
-msgstr ""
-
-#: mod/profiles.php:366
-msgid "Religion"
-msgstr ""
-
-#: mod/profiles.php:370
-msgid "Political Views"
-msgstr ""
-
-#: mod/profiles.php:374
-msgid "Gender"
-msgstr ""
-
-#: mod/profiles.php:378
-msgid "Sexual Preference"
-msgstr ""
-
-#: mod/profiles.php:382
-msgid "XMPP"
-msgstr ""
-
-#: mod/profiles.php:386
-msgid "Homepage"
-msgstr ""
-
-#: mod/profiles.php:390 mod/profiles.php:686
-msgid "Interests"
-msgstr ""
-
-#: mod/profiles.php:401 mod/profiles.php:682
-msgid "Location"
-msgstr ""
-
-#: mod/profiles.php:486
-msgid "Profile updated."
-msgstr ""
-
-#: mod/profiles.php:564
-msgid " and "
-msgstr ""
-
-#: mod/profiles.php:573
-msgid "public profile"
-msgstr ""
-
-#: mod/profiles.php:576
+#: mod/wallmessage.php:133
#, php-format
-msgid "%1$s changed %2$s to “%3$s”"
-msgstr ""
-
-#: mod/profiles.php:577
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr ""
-
-#: mod/profiles.php:579
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr ""
-
-#: mod/profiles.php:633
-msgid "Hide contacts and friends:"
-msgstr ""
-
-#: mod/profiles.php:638
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr ""
-
-#: mod/profiles.php:658
-msgid "Show more profile fields:"
-msgstr ""
-
-#: mod/profiles.php:670
-msgid "Profile Actions"
-msgstr ""
-
-#: mod/profiles.php:671
-msgid "Edit Profile Details"
-msgstr ""
-
-#: mod/profiles.php:673
-msgid "Change Profile Photo"
-msgstr ""
-
-#: mod/profiles.php:674
-msgid "View this profile"
-msgstr ""
-
-#: mod/profiles.php:675 mod/profiles.php:770 src/Model/Profile.php:393
-msgid "Edit visibility"
-msgstr ""
-
-#: mod/profiles.php:676
-msgid "Create a new profile using these settings"
-msgstr ""
-
-#: mod/profiles.php:677
-msgid "Clone this profile"
-msgstr ""
-
-#: mod/profiles.php:678
-msgid "Delete this profile"
-msgstr ""
-
-#: mod/profiles.php:680
-msgid "Basic information"
-msgstr ""
-
-#: mod/profiles.php:681
-msgid "Profile picture"
-msgstr ""
-
-#: mod/profiles.php:683
-msgid "Preferences"
-msgstr ""
-
-#: mod/profiles.php:684
-msgid "Status information"
-msgstr ""
-
-#: mod/profiles.php:685
-msgid "Additional information"
-msgstr ""
-
-#: mod/profiles.php:688
-msgid "Relation"
-msgstr ""
-
-#: mod/profiles.php:689 src/Util/Temporal.php:81 src/Util/Temporal.php:83
-msgid "Miscellaneous"
-msgstr ""
-
-#: mod/profiles.php:692
-msgid "Your Gender:"
-msgstr ""
-
-#: mod/profiles.php:693
-msgid "♥ Marital Status:"
-msgstr ""
-
-#: mod/profiles.php:694 src/Model/Profile.php:784
-msgid "Sexual Preference:"
-msgstr ""
-
-#: mod/profiles.php:695
-msgid "Example: fishing photography software"
-msgstr ""
-
-#: mod/profiles.php:700
-msgid "Profile Name:"
-msgstr ""
-
-#: mod/profiles.php:702
msgid ""
-"This is your public profile. It may "
-"be visible to anybody using the internet."
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
msgstr ""
-#: mod/profiles.php:703
-msgid "Your Full Name:"
+#: mod/match.php:48
+msgid "No keywords to match. Please add keywords to your default profile."
msgstr ""
-#: mod/profiles.php:704
-msgid "Title/Description:"
+#: mod/match.php:104
+msgid "is interested in:"
msgstr ""
-#: mod/profiles.php:707
-msgid "Street Address:"
+#: mod/match.php:120
+msgid "Profile Match"
msgstr ""
-#: mod/profiles.php:708
-msgid "Locality/City:"
+#: mod/maintenance.php:24
+msgid "System down for maintenance"
msgstr ""
-#: mod/profiles.php:709
-msgid "Region/State:"
+#: mod/tagrm.php:47
+msgid "Tag removed"
msgstr ""
-#: mod/profiles.php:710
-msgid "Postal/Zip Code:"
+#: mod/tagrm.php:85
+msgid "Remove Item Tag"
msgstr ""
-#: mod/profiles.php:711
-msgid "Country:"
+#: mod/tagrm.php:87
+msgid "Select a tag to remove: "
msgstr ""
-#: mod/profiles.php:712 src/Util/Temporal.php:149
-msgid "Age: "
+#: mod/feedtest.php:20
+msgid "You must be logged in to use this module"
msgstr ""
-#: mod/profiles.php:715
-msgid "Who: (if applicable)"
+#: mod/feedtest.php:48
+msgid "Source URL"
msgstr ""
-#: mod/profiles.php:715
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+#: mod/search.php:105
+msgid "Only logged in users are permitted to perform a search."
msgstr ""
-#: mod/profiles.php:716
-msgid "Since [date]:"
+#: mod/search.php:129
+msgid "Too Many Requests"
msgstr ""
-#: mod/profiles.php:718
-msgid "Tell us about yourself..."
+#: mod/search.php:130
+msgid "Only one search per minute is permitted for not logged in users."
msgstr ""
-#: mod/profiles.php:719
-msgid "XMPP (Jabber) address:"
+#: mod/search.php:234
+#, php-format
+msgid "Items tagged with: %s"
msgstr ""
-#: mod/profiles.php:719
+#: mod/uexport.php:44
+msgid "Export account"
+msgstr ""
+
+#: mod/uexport.php:44
msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow "
-"you."
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
msgstr ""
-#: mod/profiles.php:720
-msgid "Homepage URL:"
+#: mod/uexport.php:45
+msgid "Export all"
msgstr ""
-#: mod/profiles.php:721 src/Model/Profile.php:792
-msgid "Hometown:"
+#: mod/uexport.php:45
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
msgstr ""
-#: mod/profiles.php:722 src/Model/Profile.php:800
-msgid "Political Views:"
+#: mod/newmember.php:11
+msgid "Welcome to Friendica"
msgstr ""
-#: mod/profiles.php:723
-msgid "Religious Views:"
+#: mod/newmember.php:12
+msgid "New Member Checklist"
msgstr ""
-#: mod/profiles.php:724
-msgid "Public Keywords:"
+#: mod/newmember.php:14
+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/profiles.php:724
-msgid "(Used for suggesting potential friends, can be seen by others)"
+#: mod/newmember.php:15
+msgid "Getting Started"
msgstr ""
-#: mod/profiles.php:725
-msgid "Private Keywords:"
+#: mod/newmember.php:17
+msgid "Friendica Walk-Through"
msgstr ""
-#: mod/profiles.php:725
-msgid "(Used for searching profiles, never shown to others)"
+#: mod/newmember.php:17
+msgid ""
+"On your Quick Start page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to "
+"join."
msgstr ""
-#: mod/profiles.php:726 src/Model/Profile.php:816
-msgid "Likes:"
+#: mod/newmember.php:21
+msgid "Go to Your Settings"
msgstr ""
-#: mod/profiles.php:727 src/Model/Profile.php:820
-msgid "Dislikes:"
+#: mod/newmember.php:21
+msgid ""
+"On your Settings page - change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
msgstr ""
-#: mod/profiles.php:728
-msgid "Musical interests"
+#: mod/newmember.php:22
+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/profiles.php:729
-msgid "Books, literature"
+#: mod/newmember.php:26
+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/profiles.php:730
-msgid "Television"
+#: mod/newmember.php:27
+msgid "Edit Your Profile"
msgstr ""
-#: mod/profiles.php:731
-msgid "Film/dance/culture/entertainment"
+#: mod/newmember.php:27
+msgid ""
+"Edit your default profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown "
+"visitors."
msgstr ""
-#: mod/profiles.php:732
-msgid "Hobbies/Interests"
+#: mod/newmember.php:28
+msgid "Profile Keywords"
msgstr ""
-#: mod/profiles.php:733
-msgid "Love/romance"
+#: mod/newmember.php:28
+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/profiles.php:734
-msgid "Work/employment"
+#: mod/newmember.php:30
+msgid "Connecting"
msgstr ""
-#: mod/profiles.php:735
-msgid "School/education"
+#: mod/newmember.php:36
+msgid "Importing Emails"
msgstr ""
-#: mod/profiles.php:736
-msgid "Contact information and Social Networks"
+#: mod/newmember.php:36
+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/profiles.php:767 src/Model/Profile.php:389
-msgid "Profile Image"
+#: mod/newmember.php:39
+msgid "Go to Your Contacts Page"
msgstr ""
-#: mod/profiles.php:769 src/Model/Profile.php:392
-msgid "visible to everybody"
+#: mod/newmember.php:39
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the Add New Contact dialog."
msgstr ""
-#: mod/profiles.php:776
-msgid "Edit/Manage Profiles"
+#: mod/newmember.php:40
+msgid "Go to Your Site's Directory"
msgstr ""
-#: mod/profiles.php:777 src/Model/Profile.php:379 src/Model/Profile.php:401
-msgid "Change profile photo"
+#: mod/newmember.php:40
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a Connect or Follow link on "
+"their profile page. Provide your own Identity Address if requested."
msgstr ""
-#: mod/profiles.php:778 src/Model/Profile.php:380
-msgid "Create New Profile"
+#: mod/newmember.php:41
+msgid "Finding New People"
+msgstr ""
+
+#: mod/newmember.php:41
+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:45
+msgid "Group Your Contacts"
+msgstr ""
+
+#: mod/newmember.php:45
+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:48
+msgid "Why Aren't My Posts Public?"
+msgstr ""
+
+#: mod/newmember.php:48
+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:52
+msgid "Getting Help"
+msgstr ""
+
+#: mod/newmember.php:54
+msgid "Go to the Help Section"
+msgstr ""
+
+#: mod/newmember.php:54
+msgid ""
+"Our help pages may be consulted for detail on other program "
+"features and resources."
+msgstr ""
+
+#: mod/dfrn_confirm.php:132
+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:249 mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr ""
+
+#: mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr ""
+
+#: mod/dfrn_confirm.php:275
+msgid "Temporary failure. Please wait and try again."
+msgstr ""
+
+#: mod/dfrn_confirm.php:278
+msgid "Introduction failed or was revoked."
+msgstr ""
+
+#: mod/dfrn_confirm.php:283
+msgid "Remote site reported: "
+msgstr ""
+
+#: mod/dfrn_confirm.php:396
+msgid "Unable to set contact photo."
+msgstr ""
+
+#: mod/dfrn_confirm.php:498
+#, php-format
+msgid "No user record found for '%s' "
+msgstr ""
+
+#: mod/dfrn_confirm.php:508
+msgid "Our site encryption key is apparently messed up."
+msgstr ""
+
+#: mod/dfrn_confirm.php:519
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr ""
+
+#: mod/dfrn_confirm.php:535
+msgid "Contact record was not found for you on our site."
+msgstr ""
+
+#: mod/dfrn_confirm.php:549
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr ""
+
+#: mod/dfrn_confirm.php:565
+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:576
+msgid "Unable to set your contact credentials on our system."
+msgstr ""
+
+#: mod/dfrn_confirm.php:631
+msgid "Unable to update your contact profile details on our system"
+msgstr ""
+
+#: mod/dfrn_confirm.php:694
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr ""
+
+#: mod/filer.php:34
+msgid "- select -"
msgstr ""
#: mod/register.php:99
@@ -6652,18 +9245,10 @@ msgid ""
"be an existing address.)"
msgstr ""
-#: mod/register.php:273 mod/settings.php:1201
-msgid "New Password:"
-msgstr ""
-
#: mod/register.php:273
msgid "Leave empty for an auto generated password."
msgstr ""
-#: mod/register.php:274 mod/settings.php:1202
-msgid "Confirm:"
-msgstr ""
-
#: mod/register.php:275
#, php-format
msgid ""
@@ -6675,921 +9260,102 @@ msgstr ""
msgid "Choose a nickname: "
msgstr ""
-#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283
-msgid "Register"
-msgstr ""
-
#: mod/register.php:286
msgid "Import your profile to this friendica instance"
msgstr ""
-#: mod/removeme.php:43
-msgid "User deleted their account"
+#: mod/common.php:91
+msgid "No contacts in common."
msgstr ""
-#: mod/removeme.php:44
-msgid ""
-"On your Friendica node an user deleted their account. Please ensure that "
-"their data is removed from the backups."
+#: mod/probe.php:14 mod/webfinger.php:17
+msgid "Only logged in users are permitted to perform a probing."
msgstr ""
-#: mod/removeme.php:45
-#, php-format
-msgid "The user id is %d"
+#: mod/help.php:48
+msgid "Help:"
msgstr ""
-#: mod/removeme.php:76 mod/removeme.php:79
-msgid "Remove My Account"
+#: mod/help.php:63 index.php:325
+msgid "Page not found."
msgstr ""
-#: mod/removeme.php:77
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
+#: mod/profperm.php:34 mod/profperm.php:65
+msgid "Invalid profile identifier."
msgstr ""
-#: mod/removeme.php:78
-msgid "Please enter your password for verification:"
+#: mod/profperm.php:111
+msgid "Profile Visibility Editor"
msgstr ""
-#: mod/settings.php:72
-msgid "Display"
+#: mod/profperm.php:124
+msgid "Visible To"
msgstr ""
-#: mod/settings.php:79 mod/settings.php:842
-msgid "Social Networks"
+#: mod/profperm.php:140
+msgid "All Contacts (with secure profile access)"
msgstr ""
-#: mod/settings.php:93 src/Content/Nav.php:204
-msgid "Delegations"
+#: mod/item.php:114
+msgid "Unable to locate original post."
msgstr ""
-#: mod/settings.php:100
-msgid "Connected apps"
+#: mod/item.php:274
+msgid "Empty post discarded."
msgstr ""
-#: mod/settings.php:114
-msgid "Remove account"
-msgstr ""
-
-#: mod/settings.php:168
-msgid "Missing some important data!"
-msgstr ""
-
-#: mod/settings.php:279
-msgid "Failed to connect with email account using the settings provided."
-msgstr ""
-
-#: mod/settings.php:284
-msgid "Email settings updated."
-msgstr ""
-
-#: mod/settings.php:300
-msgid "Features updated"
-msgstr ""
-
-#: mod/settings.php:372
-msgid "Relocate message has been send to your contacts"
-msgstr ""
-
-#: mod/settings.php:384 src/Model/User.php:339
-msgid "Passwords do not match. Password unchanged."
-msgstr ""
-
-#: mod/settings.php:389
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr ""
-
-#: mod/settings.php:394 src/Core/Console/NewPassword.php:87
-msgid ""
-"The new password has been exposed in a public data dump, please choose "
-"another."
-msgstr ""
-
-#: mod/settings.php:400
-msgid "Wrong password."
-msgstr ""
-
-#: mod/settings.php:407 src/Core/Console/NewPassword.php:94
-msgid "Password changed."
-msgstr ""
-
-#: mod/settings.php:409 src/Core/Console/NewPassword.php:91
-msgid "Password update failed. Please try again."
-msgstr ""
-
-#: mod/settings.php:496
-msgid " Please use a shorter name."
-msgstr ""
-
-#: mod/settings.php:499
-msgid " Name too short."
-msgstr ""
-
-#: mod/settings.php:507
-msgid "Wrong Password"
-msgstr ""
-
-#: mod/settings.php:512
-msgid "Invalid email."
-msgstr ""
-
-#: mod/settings.php:519
-msgid "Cannot change to that email."
-msgstr ""
-
-#: mod/settings.php:572
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr ""
-
-#: mod/settings.php:575
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr ""
-
-#: mod/settings.php:615
-msgid "Settings updated."
-msgstr ""
-
-#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
-msgid "Add application"
-msgstr ""
-
-#: mod/settings.php:678 mod/settings.php:704
-msgid "Consumer Key"
-msgstr ""
-
-#: mod/settings.php:679 mod/settings.php:705
-msgid "Consumer Secret"
-msgstr ""
-
-#: mod/settings.php:680 mod/settings.php:706
-msgid "Redirect"
-msgstr ""
-
-#: mod/settings.php:681 mod/settings.php:707
-msgid "Icon url"
-msgstr ""
-
-#: mod/settings.php:692
-msgid "You can't edit this application."
-msgstr ""
-
-#: mod/settings.php:735
-msgid "Connected Apps"
-msgstr ""
-
-#: mod/settings.php:737 src/Object/Post.php:155 src/Object/Post.php:157
-msgid "Edit"
-msgstr ""
-
-#: mod/settings.php:739
-msgid "Client key starts with"
-msgstr ""
-
-#: mod/settings.php:740
-msgid "No name"
-msgstr ""
-
-#: mod/settings.php:741
-msgid "Remove authorization"
-msgstr ""
-
-#: mod/settings.php:752
-msgid "No Addon settings configured"
-msgstr ""
-
-#: mod/settings.php:761
-msgid "Addon Settings"
-msgstr ""
-
-#: mod/settings.php:782
-msgid "Additional Features"
-msgstr ""
-
-#: mod/settings.php:805 src/Content/ContactSelector.php:83
-msgid "Diaspora"
-msgstr ""
-
-#: mod/settings.php:805 mod/settings.php:806
-msgid "enabled"
-msgstr ""
-
-#: mod/settings.php:805 mod/settings.php:806
-msgid "disabled"
-msgstr ""
-
-#: mod/settings.php:805 mod/settings.php:806
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr ""
-
-#: mod/settings.php:806
-msgid "GNU Social (OStatus)"
-msgstr ""
-
-#: mod/settings.php:837
-msgid "Email access is disabled on this site."
-msgstr ""
-
-#: mod/settings.php:847
-msgid "General Social Media Settings"
-msgstr ""
-
-#: mod/settings.php:848
-msgid "Disable Content Warning"
-msgstr ""
-
-#: mod/settings.php:848
-msgid ""
-"Users on networks like Mastodon or Pleroma are able to set a content warning "
-"field which collapse their post by default. This disables the automatic "
-"collapsing and sets the content warning as the post title. Doesn't affect "
-"any other content filtering you eventually set up."
-msgstr ""
-
-#: mod/settings.php:849
-msgid "Disable intelligent shortening"
-msgstr ""
-
-#: mod/settings.php:849
-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:850
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
-msgstr ""
-
-#: mod/settings.php:850
-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:851
-msgid "Default group for OStatus contacts"
-msgstr ""
-
-#: mod/settings.php:852
-msgid "Your legacy GNU Social account"
-msgstr ""
-
-#: mod/settings.php:852
-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:855
-msgid "Repair OStatus subscriptions"
-msgstr ""
-
-#: mod/settings.php:859
-msgid "Email/Mailbox Setup"
-msgstr ""
-
-#: mod/settings.php:860
-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:861
-msgid "Last successful email check:"
-msgstr ""
-
-#: mod/settings.php:863
-msgid "IMAP server name:"
-msgstr ""
-
-#: mod/settings.php:864
-msgid "IMAP port:"
-msgstr ""
-
-#: mod/settings.php:865
-msgid "Security:"
-msgstr ""
-
-#: mod/settings.php:865 mod/settings.php:870
-msgid "None"
-msgstr ""
-
-#: mod/settings.php:866
-msgid "Email login name:"
-msgstr ""
-
-#: mod/settings.php:867
-msgid "Email password:"
-msgstr ""
-
-#: mod/settings.php:868
-msgid "Reply-to address:"
-msgstr ""
-
-#: mod/settings.php:869
-msgid "Send public posts to all email contacts:"
-msgstr ""
-
-#: mod/settings.php:870
-msgid "Action after import:"
-msgstr ""
-
-#: mod/settings.php:870 src/Content/Nav.php:191
-msgid "Mark as seen"
-msgstr ""
-
-#: mod/settings.php:870
-msgid "Move to folder"
-msgstr ""
-
-#: mod/settings.php:871
-msgid "Move to folder:"
-msgstr ""
-
-#: mod/settings.php:914
-#, php-format
-msgid "%s - (Unsupported)"
-msgstr ""
-
-#: mod/settings.php:916
-#, php-format
-msgid "%s - (Experimental)"
-msgstr ""
-
-#: mod/settings.php:959
-msgid "Display Settings"
-msgstr ""
-
-#: mod/settings.php:965 mod/settings.php:989
-msgid "Display Theme:"
-msgstr ""
-
-#: mod/settings.php:966
-msgid "Mobile Theme:"
-msgstr ""
-
-#: mod/settings.php:967
-msgid "Suppress warning of insecure networks"
-msgstr ""
-
-#: mod/settings.php:967
-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:968
-msgid "Update browser every xx seconds"
-msgstr ""
-
-#: mod/settings.php:968
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
-msgstr ""
-
-#: mod/settings.php:969
-msgid "Number of items to display per page:"
-msgstr ""
-
-#: mod/settings.php:969 mod/settings.php:970
-msgid "Maximum of 100 items"
-msgstr ""
-
-#: mod/settings.php:970
-msgid "Number of items to display per page when viewed from mobile device:"
-msgstr ""
-
-#: mod/settings.php:971
-msgid "Don't show emoticons"
-msgstr ""
-
-#: mod/settings.php:972
-msgid "Calendar"
-msgstr ""
-
-#: mod/settings.php:973
-msgid "Beginning of week:"
-msgstr ""
-
-#: mod/settings.php:974
-msgid "Don't show notices"
-msgstr ""
-
-#: mod/settings.php:975
-msgid "Infinite scroll"
-msgstr ""
-
-#: mod/settings.php:976
-msgid "Automatic updates only at the top of the network page"
-msgstr ""
-
-#: mod/settings.php:976
-msgid ""
-"When disabled, the network page is updated all the time, which could be "
-"confusing while reading."
-msgstr ""
-
-#: mod/settings.php:977
-msgid "Bandwith Saver Mode"
-msgstr ""
-
-#: mod/settings.php:977
-msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
-msgstr ""
-
-#: mod/settings.php:978
-msgid "Smart Threading"
-msgstr ""
-
-#: mod/settings.php:978
-msgid ""
-"When enabled, suppress extraneous thread indentation while keeping it where "
-"it matters. Only works if threading is available and enabled."
-msgstr ""
-
-#: mod/settings.php:980
-msgid "General Theme Settings"
-msgstr ""
-
-#: mod/settings.php:981
-msgid "Custom Theme Settings"
-msgstr ""
-
-#: mod/settings.php:982
-msgid "Content Settings"
-msgstr ""
-
-#: mod/settings.php:983 view/theme/duepuntozero/config.php:73
-#: view/theme/frio/config.php:115 view/theme/quattro/config.php:75
-#: view/theme/vier/config.php:121
-msgid "Theme settings"
-msgstr ""
-
-#: mod/settings.php:1002
-msgid "Unable to find your profile. Please contact your admin."
-msgstr ""
-
-#: mod/settings.php:1044
-msgid "Account Types"
-msgstr ""
-
-#: mod/settings.php:1045
-msgid "Personal Page Subtypes"
-msgstr ""
-
-#: mod/settings.php:1046
-msgid "Community Forum Subtypes"
-msgstr ""
-
-#: mod/settings.php:1053
-msgid "Personal Page"
-msgstr ""
-
-#: mod/settings.php:1054
-msgid "Account for a personal profile."
-msgstr ""
-
-#: mod/settings.php:1057
-msgid "Organisation Page"
-msgstr ""
-
-#: mod/settings.php:1058
-msgid ""
-"Account for an organisation that automatically approves contact requests as "
-"\"Followers\"."
-msgstr ""
-
-#: mod/settings.php:1061
-msgid "News Page"
-msgstr ""
-
-#: mod/settings.php:1062
-msgid ""
-"Account for a news reflector that automatically approves contact requests as "
-"\"Followers\"."
-msgstr ""
-
-#: mod/settings.php:1065
-msgid "Community Forum"
-msgstr ""
-
-#: mod/settings.php:1066
-msgid "Account for community discussions."
-msgstr ""
-
-#: mod/settings.php:1069
-msgid "Normal Account Page"
-msgstr ""
-
-#: mod/settings.php:1070
-msgid ""
-"Account for a regular personal profile that requires manual approval of "
-"\"Friends\" and \"Followers\"."
-msgstr ""
-
-#: mod/settings.php:1073
-msgid "Soapbox Page"
-msgstr ""
-
-#: mod/settings.php:1074
-msgid ""
-"Account for a public profile that automatically approves contact requests as "
-"\"Followers\"."
-msgstr ""
-
-#: mod/settings.php:1077
-msgid "Public Forum"
-msgstr ""
-
-#: mod/settings.php:1078
-msgid "Automatically approves all contact requests."
-msgstr ""
-
-#: mod/settings.php:1081
-msgid "Automatic Friend Page"
-msgstr ""
-
-#: mod/settings.php:1082
-msgid ""
-"Account for a popular profile that automatically approves contact requests "
-"as \"Friends\"."
-msgstr ""
-
-#: mod/settings.php:1085
-msgid "Private Forum [Experimental]"
-msgstr ""
-
-#: mod/settings.php:1086
-msgid "Requires manual approval of contact requests."
-msgstr ""
-
-#: mod/settings.php:1097
-msgid "OpenID:"
-msgstr ""
-
-#: mod/settings.php:1097
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr ""
-
-#: mod/settings.php:1105
-msgid "Publish your default profile in your local site directory?"
-msgstr ""
-
-#: mod/settings.php:1105
+#: mod/item.php:799
#, php-format
msgid ""
-"Your profile will be published in the global friendica directories (e.g. %s ). Your profile will be visible in public."
+"This message was sent to you by %s, a member of the Friendica social network."
msgstr ""
-#: mod/settings.php:1111
-msgid "Publish your default profile in the global social directory?"
-msgstr ""
-
-#: mod/settings.php:1111
+#: mod/item.php:801
#, php-format
+msgid "You may visit them online at %s"
+msgstr ""
+
+#: mod/item.php:802
msgid ""
-"Your profile will be published in this node's local "
-"directory . Your profile details may be publicly visible depending on the "
-"system settings."
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
msgstr ""
-#: mod/settings.php:1118
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr ""
-
-#: mod/settings.php:1118
-msgid ""
-"Your contact list won't be shown in your default profile page. You can "
-"decide to show your contact list separately for each additional profile you "
-"create"
-msgstr ""
-
-#: mod/settings.php:1122
-msgid "Hide your profile details from anonymous viewers?"
-msgstr ""
-
-#: mod/settings.php:1122
-msgid ""
-"Anonymous visitors will only see your profile picture, your display name and "
-"the nickname you are using on your profile page. Disables posting public "
-"messages to Diaspora and other networks."
-msgstr ""
-
-#: mod/settings.php:1126
-msgid "Allow friends to post to your profile page?"
-msgstr ""
-
-#: mod/settings.php:1126
-msgid ""
-"Your contacts may write posts on your profile wall. These posts will be "
-"distributed to your contacts"
-msgstr ""
-
-#: mod/settings.php:1130
-msgid "Allow friends to tag your posts?"
-msgstr ""
-
-#: mod/settings.php:1130
-msgid "Your contacts can add additional tags to your posts."
-msgstr ""
-
-#: mod/settings.php:1134
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr ""
-
-#: mod/settings.php:1134
-msgid "If you like, Friendica may suggest new members to add you as a contact."
-msgstr ""
-
-#: mod/settings.php:1138
-msgid "Permit unknown people to send you private mail?"
-msgstr ""
-
-#: mod/settings.php:1138
-msgid ""
-"Friendica network users may send you private messages even if they are not "
-"in your contact list."
-msgstr ""
-
-#: mod/settings.php:1142
-msgid "Profile is not published ."
-msgstr ""
-
-#: mod/settings.php:1148
+#: mod/item.php:806
#, php-format
-msgid "Your Identity Address is '%s' or '%s'."
+msgid "%s posted an update."
msgstr ""
-#: mod/settings.php:1155
-msgid "Automatically expire posts after this many days:"
+#: mod/editpost.php:25 mod/editpost.php:35
+msgid "Item not found"
msgstr ""
-#: mod/settings.php:1155
-msgid "If empty, posts will not expire. Expired posts will be deleted"
+#: mod/editpost.php:42
+msgid "Edit post"
msgstr ""
-#: mod/settings.php:1156
-msgid "Advanced expiration settings"
+#: view/theme/quattro/config.php:76
+msgid "Alignment"
msgstr ""
-#: mod/settings.php:1157
-msgid "Advanced Expiration"
+#: view/theme/quattro/config.php:76
+msgid "Left"
msgstr ""
-#: mod/settings.php:1158
-msgid "Expire posts:"
+#: view/theme/quattro/config.php:76
+msgid "Center"
msgstr ""
-#: mod/settings.php:1159
-msgid "Expire personal notes:"
+#: view/theme/quattro/config.php:77
+msgid "Color scheme"
msgstr ""
-#: mod/settings.php:1160
-msgid "Expire starred posts:"
+#: view/theme/quattro/config.php:78
+msgid "Posts font size"
msgstr ""
-#: mod/settings.php:1161
-msgid "Expire photos:"
-msgstr ""
-
-#: mod/settings.php:1162
-msgid "Only expire posts by others:"
-msgstr ""
-
-#: mod/settings.php:1192
-msgid "Account Settings"
-msgstr ""
-
-#: mod/settings.php:1200
-msgid "Password Settings"
-msgstr ""
-
-#: mod/settings.php:1202
-msgid "Leave password fields blank unless changing"
-msgstr ""
-
-#: mod/settings.php:1203
-msgid "Current Password:"
-msgstr ""
-
-#: mod/settings.php:1203 mod/settings.php:1204
-msgid "Your current password to confirm the changes"
-msgstr ""
-
-#: mod/settings.php:1204
-msgid "Password:"
-msgstr ""
-
-#: mod/settings.php:1208
-msgid "Basic Settings"
-msgstr ""
-
-#: mod/settings.php:1209 src/Model/Profile.php:740
-msgid "Full Name:"
-msgstr ""
-
-#: mod/settings.php:1210
-msgid "Email Address:"
-msgstr ""
-
-#: mod/settings.php:1211
-msgid "Your Timezone:"
-msgstr ""
-
-#: mod/settings.php:1212
-msgid "Your Language:"
-msgstr ""
-
-#: mod/settings.php:1212
-msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
-msgstr ""
-
-#: mod/settings.php:1213
-msgid "Default Post Location:"
-msgstr ""
-
-#: mod/settings.php:1214
-msgid "Use Browser Location:"
-msgstr ""
-
-#: mod/settings.php:1217
-msgid "Security and Privacy Settings"
-msgstr ""
-
-#: mod/settings.php:1219
-msgid "Maximum Friend Requests/Day:"
-msgstr ""
-
-#: mod/settings.php:1219 mod/settings.php:1248
-msgid "(to prevent spam abuse)"
-msgstr ""
-
-#: mod/settings.php:1220
-msgid "Default Post Permissions"
-msgstr ""
-
-#: mod/settings.php:1221
-msgid "(click to open/close)"
-msgstr ""
-
-#: mod/settings.php:1231
-msgid "Default Private Post"
-msgstr ""
-
-#: mod/settings.php:1232
-msgid "Default Public Post"
-msgstr ""
-
-#: mod/settings.php:1236
-msgid "Default Permissions for New Posts"
-msgstr ""
-
-#: mod/settings.php:1248
-msgid "Maximum private messages per day from unknown people:"
-msgstr ""
-
-#: mod/settings.php:1251
-msgid "Notification Settings"
-msgstr ""
-
-#: mod/settings.php:1252
-msgid "By default post a status message when:"
-msgstr ""
-
-#: mod/settings.php:1253
-msgid "accepting a friend request"
-msgstr ""
-
-#: mod/settings.php:1254
-msgid "joining a forum/community"
-msgstr ""
-
-#: mod/settings.php:1255
-msgid "making an interesting profile change"
-msgstr ""
-
-#: mod/settings.php:1256
-msgid "Send a notification email when:"
-msgstr ""
-
-#: mod/settings.php:1257
-msgid "You receive an introduction"
-msgstr ""
-
-#: mod/settings.php:1258
-msgid "Your introductions are confirmed"
-msgstr ""
-
-#: mod/settings.php:1259
-msgid "Someone writes on your profile wall"
-msgstr ""
-
-#: mod/settings.php:1260
-msgid "Someone writes a followup comment"
-msgstr ""
-
-#: mod/settings.php:1261
-msgid "You receive a private message"
-msgstr ""
-
-#: mod/settings.php:1262
-msgid "You receive a friend suggestion"
-msgstr ""
-
-#: mod/settings.php:1263
-msgid "You are tagged in a post"
-msgstr ""
-
-#: mod/settings.php:1264
-msgid "You are poked/prodded/etc. in a post"
-msgstr ""
-
-#: mod/settings.php:1266
-msgid "Activate desktop notifications"
-msgstr ""
-
-#: mod/settings.php:1266
-msgid "Show desktop popup on new notifications"
-msgstr ""
-
-#: mod/settings.php:1268
-msgid "Text-only notification emails"
-msgstr ""
-
-#: mod/settings.php:1270
-msgid "Send text only notification emails, without the html part"
-msgstr ""
-
-#: mod/settings.php:1272
-msgid "Show detailled notifications"
-msgstr ""
-
-#: mod/settings.php:1274
-msgid ""
-"Per default, notifications are condensed to a single notification per item. "
-"When enabled every notification is displayed."
-msgstr ""
-
-#: mod/settings.php:1276
-msgid "Advanced Account/Page Type Settings"
-msgstr ""
-
-#: mod/settings.php:1277
-msgid "Change the behaviour of this account for special situations"
-msgstr ""
-
-#: mod/settings.php:1280
-msgid "Relocate"
-msgstr ""
-
-#: mod/settings.php:1281
-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:1282
-msgid "Resend relocate message to contacts"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502
-msgid "default"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:55
-msgid "greenzero"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:56
-msgid "purplezero"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:57
-msgid "easterbunny"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:58
-msgid "darkzero"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:59
-msgid "comix"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:60
-msgid "slackr"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:74
-msgid "Variations"
+#: view/theme/quattro/config.php:79
+msgid "Textareas font size"
msgstr ""
#: view/theme/frio/php/Image.php:25
@@ -7684,98 +9450,10 @@ msgstr ""
msgid "Visitor"
msgstr ""
-#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
-#: src/Module/Login.php:311
-msgid "Logout"
-msgstr ""
-
-#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
-msgid "End this session"
-msgstr ""
-
-#: view/theme/frio/theme.php:259 src/Content/Nav.php:100
-#: src/Content/Nav.php:181
-msgid "Your posts and conversations"
-msgstr ""
-
-#: view/theme/frio/theme.php:260 src/Content/Nav.php:101
-msgid "Your profile page"
-msgstr ""
-
-#: view/theme/frio/theme.php:261 src/Content/Nav.php:102
-msgid "Your photos"
-msgstr ""
-
-#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
-#: src/Model/Profile.php:914 src/Model/Profile.php:917
-msgid "Videos"
-msgstr ""
-
-#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
-msgid "Your videos"
-msgstr ""
-
-#: view/theme/frio/theme.php:263 src/Content/Nav.php:104
-msgid "Your events"
-msgstr ""
-
-#: view/theme/frio/theme.php:266 src/Content/Nav.php:178
-msgid "Conversations from your friends"
-msgstr ""
-
-#: view/theme/frio/theme.php:267 src/Content/Nav.php:169
-#: src/Model/Profile.php:929 src/Model/Profile.php:940
-msgid "Events and Calendar"
-msgstr ""
-
-#: view/theme/frio/theme.php:268 src/Content/Nav.php:195
-msgid "Private mail"
-msgstr ""
-
-#: view/theme/frio/theme.php:269 src/Content/Nav.php:206
-msgid "Account settings"
-msgstr ""
-
-#: view/theme/frio/theme.php:270 src/Content/Nav.php:212
-msgid "Manage/edit friends and contacts"
-msgstr ""
-
-#: view/theme/quattro/config.php:76
-msgid "Alignment"
-msgstr ""
-
-#: view/theme/quattro/config.php:76
-msgid "Left"
-msgstr ""
-
-#: view/theme/quattro/config.php:76
-msgid "Center"
-msgstr ""
-
-#: view/theme/quattro/config.php:77
-msgid "Color scheme"
-msgstr ""
-
-#: view/theme/quattro/config.php:78
-msgid "Posts font size"
-msgstr ""
-
-#: view/theme/quattro/config.php:79
-msgid "Textareas font size"
-msgstr ""
-
#: view/theme/vier/config.php:75
msgid "Comma separated list of helper forums"
msgstr ""
-#: view/theme/vier/config.php:115 src/Core/ACL.php:309
-msgid "don't show"
-msgstr ""
-
-#: view/theme/vier/config.php:115 src/Core/ACL.php:308
-msgid "show"
-msgstr ""
-
#: view/theme/vier/config.php:122
msgid "Set style"
msgstr ""
@@ -7808,1713 +9486,36 @@ msgstr ""
msgid "Local Directory"
msgstr ""
-#: view/theme/vier/theme.php:202 src/Content/Widget.php:65
-msgid "Similar Interests"
-msgstr ""
-
-#: view/theme/vier/theme.php:204 src/Content/Widget.php:67
-msgid "Invite Friends"
-msgstr ""
-
-#: view/theme/vier/theme.php:256 src/Content/ForumManager.php:127
-msgid "External link to forum"
-msgstr ""
-
#: view/theme/vier/theme.php:292
msgid "Quick Start"
msgstr ""
-#: src/Core/UserImport.php:104
-msgid "Error decoding account file"
+#: view/theme/duepuntozero/config.php:55
+msgid "greenzero"
msgstr ""
-#: src/Core/UserImport.php:110
-msgid "Error! No version data in file! This is not a Friendica account file?"
+#: view/theme/duepuntozero/config.php:56
+msgid "purplezero"
msgstr ""
-#: src/Core/UserImport.php:118
-#, php-format
-msgid "User '%s' already exists on this server!"
+#: view/theme/duepuntozero/config.php:57
+msgid "easterbunny"
msgstr ""
-#: src/Core/UserImport.php:151
-msgid "User creation error"
+#: view/theme/duepuntozero/config.php:58
+msgid "darkzero"
msgstr ""
-#: src/Core/UserImport.php:169
-msgid "User profile creation error"
+#: view/theme/duepuntozero/config.php:59
+msgid "comix"
msgstr ""
-#: src/Core/UserImport.php:213
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] ""
-msgstr[1] ""
-
-#: src/Core/UserImport.php:278
-msgid "Done. You can now login with your username and password"
-msgstr ""
-
-#: src/Core/ACL.php:295
-msgid "Post to Email"
-msgstr ""
-
-#: src/Core/ACL.php:301
-msgid "Hide your profile details from unknown viewers?"
-msgstr ""
-
-#: src/Core/ACL.php:300
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr ""
-
-#: src/Core/ACL.php:307
-msgid "Visible to everybody"
-msgstr ""
-
-#: src/Core/ACL.php:319
-msgid "Close"
-msgstr ""
-
-#: src/Core/Console/NewPassword.php:78
-msgid "Enter new password: "
-msgstr ""
-
-#: src/Core/Console/NewPassword.php:83 src/Model/User.php:262
-msgid "Password can't be empty"
-msgstr ""
-
-#: src/Core/NotificationsManager.php:171
-msgid "System"
-msgstr ""
-
-#: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124
-#: src/Content/Nav.php:181
-msgid "Home"
-msgstr ""
-
-#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:186
-msgid "Introductions"
-msgstr ""
-
-#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
-#, php-format
-msgid "%s commented on %s's post"
-msgstr ""
-
-#: src/Core/NotificationsManager.php:267
-#, php-format
-msgid "%s created a new post"
-msgstr ""
-
-#: src/Core/NotificationsManager.php:281
-#, php-format
-msgid "%s liked %s's post"
-msgstr ""
-
-#: src/Core/NotificationsManager.php:294
-#, php-format
-msgid "%s disliked %s's post"
-msgstr ""
-
-#: src/Core/NotificationsManager.php:307
-#, php-format
-msgid "%s is attending %s's event"
-msgstr ""
-
-#: src/Core/NotificationsManager.php:320
-#, php-format
-msgid "%s is not attending %s's event"
-msgstr ""
-
-#: src/Core/NotificationsManager.php:333
-#, php-format
-msgid "%s may attend %s's event"
-msgstr ""
-
-#: src/Core/NotificationsManager.php:350
-#, php-format
-msgid "%s is now friends with %s"
-msgstr ""
-
-#: src/Core/NotificationsManager.php:825
-msgid "Friend Suggestion"
-msgstr ""
-
-#: src/Core/NotificationsManager.php:851
-msgid "Friend/Connect Request"
-msgstr ""
-
-#: src/Core/NotificationsManager.php:851
-msgid "New Follower"
-msgstr ""
-
-#: src/Util/Temporal.php:147 src/Model/Profile.php:760
-msgid "Birthday:"
-msgstr ""
-
-#: src/Util/Temporal.php:151
-msgid "YYYY-MM-DD or MM-DD"
-msgstr ""
-
-#: src/Util/Temporal.php:294
-msgid "never"
-msgstr ""
-
-#: src/Util/Temporal.php:300
-msgid "less than a second ago"
-msgstr ""
-
-#: src/Util/Temporal.php:303
-msgid "year"
-msgstr ""
-
-#: src/Util/Temporal.php:303
-msgid "years"
-msgstr ""
-
-#: src/Util/Temporal.php:304
-msgid "months"
-msgstr ""
-
-#: src/Util/Temporal.php:305
-msgid "weeks"
-msgstr ""
-
-#: src/Util/Temporal.php:306
-msgid "days"
-msgstr ""
-
-#: src/Util/Temporal.php:307
-msgid "hour"
-msgstr ""
-
-#: src/Util/Temporal.php:307
-msgid "hours"
-msgstr ""
-
-#: src/Util/Temporal.php:308
-msgid "minute"
-msgstr ""
-
-#: src/Util/Temporal.php:308
-msgid "minutes"
-msgstr ""
-
-#: src/Util/Temporal.php:309
-msgid "second"
-msgstr ""
-
-#: src/Util/Temporal.php:309
-msgid "seconds"
-msgstr ""
-
-#: src/Util/Temporal.php:318
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr ""
-
-#: src/Content/Text/BBCode.php:555
-msgid "view full size"
-msgstr ""
-
-#: src/Content/Text/BBCode.php:981 src/Content/Text/BBCode.php:1750
-#: src/Content/Text/BBCode.php:1751
-msgid "Image/photo"
-msgstr ""
-
-#: src/Content/Text/BBCode.php:1119
-#, php-format
-msgid "%2$s %3$s"
-msgstr ""
-
-#: src/Content/Text/BBCode.php:1677 src/Content/Text/BBCode.php:1699
-msgid "$1 wrote:"
-msgstr ""
-
-#: src/Content/Text/BBCode.php:1759 src/Content/Text/BBCode.php:1760
-msgid "Encrypted content"
-msgstr ""
-
-#: src/Content/Text/BBCode.php:1879
-msgid "Invalid source protocol"
-msgstr ""
-
-#: src/Content/Text/BBCode.php:1890
-msgid "Invalid link protocol"
-msgstr ""
-
-#: src/Content/Nav.php:53
-msgid "Nothing new here"
-msgstr ""
-
-#: src/Content/Nav.php:57
-msgid "Clear notifications"
-msgstr ""
-
-#: src/Content/Nav.php:105
-msgid "Personal notes"
-msgstr ""
-
-#: src/Content/Nav.php:105
-msgid "Your personal notes"
-msgstr ""
-
-#: src/Content/Nav.php:114
-msgid "Sign in"
-msgstr ""
-
-#: src/Content/Nav.php:124
-msgid "Home Page"
-msgstr ""
-
-#: src/Content/Nav.php:128
-msgid "Create an account"
-msgstr ""
-
-#: src/Content/Nav.php:134
-msgid "Help and documentation"
-msgstr ""
-
-#: src/Content/Nav.php:138
-msgid "Apps"
-msgstr ""
-
-#: src/Content/Nav.php:138
-msgid "Addon applications, utilities, games"
-msgstr ""
-
-#: src/Content/Nav.php:142
-msgid "Search site content"
-msgstr ""
-
-#: src/Content/Nav.php:165
-msgid "Community"
-msgstr ""
-
-#: src/Content/Nav.php:165
-msgid "Conversations on this and other servers"
-msgstr ""
-
-#: src/Content/Nav.php:172
-msgid "Directory"
-msgstr ""
-
-#: src/Content/Nav.php:172
-msgid "People directory"
-msgstr ""
-
-#: src/Content/Nav.php:174
-msgid "Information about this friendica instance"
-msgstr ""
-
-#: src/Content/Nav.php:179
-msgid "Network Reset"
-msgstr ""
-
-#: src/Content/Nav.php:179
-msgid "Load Network page with no filters"
-msgstr ""
-
-#: src/Content/Nav.php:186
-msgid "Friend Requests"
-msgstr ""
-
-#: src/Content/Nav.php:190
-msgid "See all notifications"
-msgstr ""
-
-#: src/Content/Nav.php:191
-msgid "Mark all system notifications seen"
-msgstr ""
-
-#: src/Content/Nav.php:196
-msgid "Inbox"
-msgstr ""
-
-#: src/Content/Nav.php:197
-msgid "Outbox"
-msgstr ""
-
-#: src/Content/Nav.php:201
-msgid "Manage"
-msgstr ""
-
-#: src/Content/Nav.php:201
-msgid "Manage other pages"
-msgstr ""
-
-#: src/Content/Nav.php:209 src/Model/Profile.php:372
-msgid "Profiles"
-msgstr ""
-
-#: src/Content/Nav.php:209
-msgid "Manage/Edit Profiles"
-msgstr ""
-
-#: src/Content/Nav.php:217
-msgid "Site setup and configuration"
-msgstr ""
-
-#: src/Content/Nav.php:220
-msgid "Navigation"
-msgstr ""
-
-#: src/Content/Nav.php:220
-msgid "Site map"
-msgstr ""
-
-#: src/Content/Feature.php:79
-msgid "General Features"
-msgstr ""
-
-#: src/Content/Feature.php:81
-msgid "Multiple Profiles"
-msgstr ""
-
-#: src/Content/Feature.php:81
-msgid "Ability to create multiple profiles"
-msgstr ""
-
-#: src/Content/Feature.php:82
-msgid "Photo Location"
-msgstr ""
-
-#: src/Content/Feature.php:82
-msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present) "
-"prior to stripping metadata and links it to a map."
-msgstr ""
-
-#: src/Content/Feature.php:83
-msgid "Export Public Calendar"
-msgstr ""
-
-#: src/Content/Feature.php:83
-msgid "Ability for visitors to download the public calendar"
-msgstr ""
-
-#: src/Content/Feature.php:88
-msgid "Post Composition Features"
-msgstr ""
-
-#: src/Content/Feature.php:89
-msgid "Post Preview"
-msgstr ""
-
-#: src/Content/Feature.php:89
-msgid "Allow previewing posts and comments before publishing them"
-msgstr ""
-
-#: src/Content/Feature.php:90
-msgid "Auto-mention Forums"
-msgstr ""
-
-#: src/Content/Feature.php:90
-msgid ""
-"Add/remove mention when a forum page is selected/deselected in ACL window."
-msgstr ""
-
-#: src/Content/Feature.php:95
-msgid "Network Sidebar Widgets"
-msgstr ""
-
-#: src/Content/Feature.php:96
-msgid "Search by Date"
-msgstr ""
-
-#: src/Content/Feature.php:96
-msgid "Ability to select posts by date ranges"
-msgstr ""
-
-#: src/Content/Feature.php:97 src/Content/Feature.php:127
-msgid "List Forums"
-msgstr ""
-
-#: src/Content/Feature.php:97
-msgid "Enable widget to display the forums your are connected with"
-msgstr ""
-
-#: src/Content/Feature.php:98
-msgid "Group Filter"
-msgstr ""
-
-#: src/Content/Feature.php:98
-msgid "Enable widget to display Network posts only from selected group"
-msgstr ""
-
-#: src/Content/Feature.php:99
-msgid "Network Filter"
-msgstr ""
-
-#: src/Content/Feature.php:99
-msgid "Enable widget to display Network posts only from selected network"
-msgstr ""
-
-#: src/Content/Feature.php:100
-msgid "Save search terms for re-use"
-msgstr ""
-
-#: src/Content/Feature.php:105
-msgid "Network Tabs"
-msgstr ""
-
-#: src/Content/Feature.php:106
-msgid "Network Personal Tab"
-msgstr ""
-
-#: src/Content/Feature.php:106
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr ""
-
-#: src/Content/Feature.php:107
-msgid "Network New Tab"
-msgstr ""
-
-#: src/Content/Feature.php:107
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr ""
-
-#: src/Content/Feature.php:108
-msgid "Network Shared Links Tab"
-msgstr ""
-
-#: src/Content/Feature.php:108
-msgid "Enable tab to display only Network posts with links in them"
-msgstr ""
-
-#: src/Content/Feature.php:113
-msgid "Post/Comment Tools"
-msgstr ""
-
-#: src/Content/Feature.php:114
-msgid "Multiple Deletion"
-msgstr ""
-
-#: src/Content/Feature.php:114
-msgid "Select and delete multiple posts/comments at once"
-msgstr ""
-
-#: src/Content/Feature.php:115
-msgid "Edit Sent Posts"
-msgstr ""
-
-#: src/Content/Feature.php:115
-msgid "Edit and correct posts and comments after sending"
-msgstr ""
-
-#: src/Content/Feature.php:116
-msgid "Tagging"
-msgstr ""
-
-#: src/Content/Feature.php:116
-msgid "Ability to tag existing posts"
-msgstr ""
-
-#: src/Content/Feature.php:117
-msgid "Post Categories"
-msgstr ""
-
-#: src/Content/Feature.php:117
-msgid "Add categories to your posts"
-msgstr ""
-
-#: src/Content/Feature.php:118 src/Content/Widget.php:200
-msgid "Saved Folders"
-msgstr ""
-
-#: src/Content/Feature.php:118
-msgid "Ability to file posts under folders"
-msgstr ""
-
-#: src/Content/Feature.php:119
-msgid "Dislike Posts"
-msgstr ""
-
-#: src/Content/Feature.php:119
-msgid "Ability to dislike posts/comments"
-msgstr ""
-
-#: src/Content/Feature.php:120
-msgid "Star Posts"
-msgstr ""
-
-#: src/Content/Feature.php:120
-msgid "Ability to mark special posts with a star indicator"
-msgstr ""
-
-#: src/Content/Feature.php:121
-msgid "Mute Post Notifications"
-msgstr ""
-
-#: src/Content/Feature.php:121
-msgid "Ability to mute notifications for a thread"
-msgstr ""
-
-#: src/Content/Feature.php:126
-msgid "Advanced Profile Settings"
-msgstr ""
-
-#: src/Content/Feature.php:127
-msgid "Show visitors public community forums at the Advanced Profile Page"
-msgstr ""
-
-#: src/Content/Feature.php:128
-msgid "Tag Cloud"
-msgstr ""
-
-#: src/Content/Feature.php:128
-msgid "Provide a personal tag cloud on your profile page"
-msgstr ""
-
-#: src/Content/Feature.php:129
-msgid "Display Membership Date"
-msgstr ""
-
-#: src/Content/Feature.php:129
-msgid "Display membership date in profile"
-msgstr ""
-
-#: src/Content/OEmbed.php:253
-msgid "Embedding disabled"
-msgstr ""
-
-#: src/Content/OEmbed.php:373
-msgid "Embedded content"
-msgstr ""
-
-#: src/Content/Widget/CalendarExport.php:61
-msgid "Export"
-msgstr ""
-
-#: src/Content/Widget/CalendarExport.php:62
-msgid "Export calendar as ical"
-msgstr ""
-
-#: src/Content/Widget/CalendarExport.php:63
-msgid "Export calendar as csv"
-msgstr ""
-
-#: src/Content/Widget.php:33
-msgid "Add New Contact"
-msgstr ""
-
-#: src/Content/Widget.php:34
-msgid "Enter address or web location"
-msgstr ""
-
-#: src/Content/Widget.php:35
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr ""
-
-#: src/Content/Widget.php:53
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] ""
-msgstr[1] ""
-
-#: src/Content/Widget.php:59
-msgid "Find People"
-msgstr ""
-
-#: src/Content/Widget.php:60
-msgid "Enter name or interest"
-msgstr ""
-
-#: src/Content/Widget.php:62
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr ""
-
-#: src/Content/Widget.php:66
-msgid "Random Profile"
-msgstr ""
-
-#: src/Content/Widget.php:68
-msgid "View Global Directory"
-msgstr ""
-
-#: src/Content/Widget.php:159
-msgid "Networks"
-msgstr ""
-
-#: src/Content/Widget.php:162
-msgid "All Networks"
-msgstr ""
-
-#: src/Content/Widget.php:203 src/Content/Widget.php:243
-msgid "Everything"
-msgstr ""
-
-#: src/Content/Widget.php:240
-msgid "Categories"
-msgstr ""
-
-#: src/Content/Widget.php:307
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] ""
-msgstr[1] ""
-
-#: src/Content/ContactSelector.php:55
-msgid "Frequently"
-msgstr ""
-
-#: src/Content/ContactSelector.php:56
-msgid "Hourly"
-msgstr ""
-
-#: src/Content/ContactSelector.php:57
-msgid "Twice daily"
-msgstr ""
-
-#: src/Content/ContactSelector.php:58
-msgid "Daily"
-msgstr ""
-
-#: src/Content/ContactSelector.php:59
-msgid "Weekly"
-msgstr ""
-
-#: src/Content/ContactSelector.php:60
-msgid "Monthly"
-msgstr ""
-
-#: src/Content/ContactSelector.php:80
-msgid "OStatus"
-msgstr ""
-
-#: src/Content/ContactSelector.php:81
-msgid "RSS/Atom"
-msgstr ""
-
-#: src/Content/ContactSelector.php:84
-msgid "Facebook"
-msgstr ""
-
-#: src/Content/ContactSelector.php:85
-msgid "Zot!"
-msgstr ""
-
-#: src/Content/ContactSelector.php:86
-msgid "LinkedIn"
-msgstr ""
-
-#: src/Content/ContactSelector.php:87
-msgid "XMPP/IM"
-msgstr ""
-
-#: src/Content/ContactSelector.php:88
-msgid "MySpace"
-msgstr ""
-
-#: src/Content/ContactSelector.php:89
-msgid "Google+"
-msgstr ""
-
-#: src/Content/ContactSelector.php:90
-msgid "pump.io"
-msgstr ""
-
-#: src/Content/ContactSelector.php:91
-msgid "Twitter"
-msgstr ""
-
-#: src/Content/ContactSelector.php:92
-msgid "Diaspora Connector"
-msgstr ""
-
-#: src/Content/ContactSelector.php:93
-msgid "GNU Social Connector"
-msgstr ""
-
-#: src/Content/ContactSelector.php:94
-msgid "pnut"
-msgstr ""
-
-#: src/Content/ContactSelector.php:95
-msgid "App.net"
-msgstr ""
-
-#: src/Content/ContactSelector.php:125
-msgid "Male"
-msgstr ""
-
-#: src/Content/ContactSelector.php:125
-msgid "Female"
-msgstr ""
-
-#: src/Content/ContactSelector.php:125
-msgid "Currently Male"
-msgstr ""
-
-#: src/Content/ContactSelector.php:125
-msgid "Currently Female"
-msgstr ""
-
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Male"
-msgstr ""
-
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Female"
-msgstr ""
-
-#: src/Content/ContactSelector.php:125
-msgid "Transgender"
-msgstr ""
-
-#: src/Content/ContactSelector.php:125
-msgid "Intersex"
-msgstr ""
-
-#: src/Content/ContactSelector.php:125
-msgid "Transsexual"
-msgstr ""
-
-#: src/Content/ContactSelector.php:125
-msgid "Hermaphrodite"
-msgstr ""
-
-#: src/Content/ContactSelector.php:125
-msgid "Neuter"
-msgstr ""
-
-#: src/Content/ContactSelector.php:125
-msgid "Non-specific"
-msgstr ""
-
-#: src/Content/ContactSelector.php:125
-msgid "Other"
-msgstr ""
-
-#: src/Content/ContactSelector.php:147
-msgid "Males"
-msgstr ""
-
-#: src/Content/ContactSelector.php:147
-msgid "Females"
-msgstr ""
-
-#: src/Content/ContactSelector.php:147
-msgid "Gay"
-msgstr ""
-
-#: src/Content/ContactSelector.php:147
-msgid "Lesbian"
-msgstr ""
-
-#: src/Content/ContactSelector.php:147
-msgid "No Preference"
-msgstr ""
-
-#: src/Content/ContactSelector.php:147
-msgid "Bisexual"
-msgstr ""
-
-#: src/Content/ContactSelector.php:147
-msgid "Autosexual"
-msgstr ""
-
-#: src/Content/ContactSelector.php:147
-msgid "Abstinent"
-msgstr ""
-
-#: src/Content/ContactSelector.php:147
-msgid "Virgin"
-msgstr ""
-
-#: src/Content/ContactSelector.php:147
-msgid "Deviant"
-msgstr ""
-
-#: src/Content/ContactSelector.php:147
-msgid "Fetish"
-msgstr ""
-
-#: src/Content/ContactSelector.php:147
-msgid "Oodles"
-msgstr ""
-
-#: src/Content/ContactSelector.php:147
-msgid "Nonsexual"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Single"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Lonely"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Available"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Unavailable"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Has crush"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Infatuated"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Dating"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Unfaithful"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Sex Addict"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169 src/Model/User.php:519
-msgid "Friends"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Friends/Benefits"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Casual"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Engaged"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Married"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily married"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Partners"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Cohabiting"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Common law"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Happy"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Not looking"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Swinger"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Betrayed"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Separated"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Unstable"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Divorced"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily divorced"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Widowed"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Uncertain"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "It's complicated"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Don't care"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Ask me"
-msgstr ""
-
-#: src/Database/DBStructure.php:32
-msgid "There are no tables on MyISAM."
-msgstr ""
-
-#: src/Database/DBStructure.php:75
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact "
-"a\n"
-"\t\t\t\tfriendica developer if you can not help me on your own. My database "
-"might be invalid."
-msgstr ""
-
-#: src/Database/DBStructure.php:80
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr ""
-
-#: src/Database/DBStructure.php:191
-#, php-format
-msgid ""
-"\n"
-"Error %d occurred during database update:\n"
-"%s\n"
-msgstr ""
-
-#: src/Database/DBStructure.php:194
-msgid "Errors encountered performing database changes: "
-msgstr ""
-
-#: src/Database/DBStructure.php:210
-msgid ": Database update"
-msgstr ""
-
-#: src/Database/DBStructure.php:460
-#, php-format
-msgid "%s: updating %s table."
-msgstr ""
-
-#: src/Model/Mail.php:40 src/Model/Mail.php:174
-msgid "[no subject]"
-msgstr ""
-
-#: src/Model/Item.php:1676
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr ""
-
-#: src/Model/Item.php:1681
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr ""
-
-#: src/Model/Item.php:1686
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr ""
-
-#: src/Model/Contact.php:657
-msgid "Drop Contact"
-msgstr ""
-
-#: src/Model/Contact.php:1060
-msgid "Organisation"
-msgstr ""
-
-#: src/Model/Contact.php:1063
-msgid "News"
-msgstr ""
-
-#: src/Model/Contact.php:1066
-msgid "Forum"
-msgstr ""
-
-#: src/Model/Contact.php:1245
-msgid "Connect URL missing."
-msgstr ""
-
-#: src/Model/Contact.php:1254
-msgid ""
-"The contact could not be added. Please check the relevant network "
-"credentials in your Settings -> Social Networks page."
-msgstr ""
-
-#: src/Model/Contact.php:1301
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr ""
-
-#: src/Model/Contact.php:1302 src/Model/Contact.php:1316
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr ""
-
-#: src/Model/Contact.php:1314
-msgid "The profile address specified does not provide adequate information."
-msgstr ""
-
-#: src/Model/Contact.php:1319
-msgid "An author or name was not found."
-msgstr ""
-
-#: src/Model/Contact.php:1322
-msgid "No browser URL could be matched to this address."
-msgstr ""
-
-#: src/Model/Contact.php:1325
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr ""
-
-#: src/Model/Contact.php:1326
-msgid "Use mailto: in front of address to force email check."
-msgstr ""
-
-#: src/Model/Contact.php:1332
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr ""
-
-#: src/Model/Contact.php:1337
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr ""
-
-#: src/Model/Contact.php:1388
-msgid "Unable to retrieve contact information."
-msgstr ""
-
-#: src/Model/Contact.php:1605
-#, php-format
-msgid "%s's birthday"
-msgstr ""
-
-#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483
-#, php-format
-msgid "Happy Birthday %s"
-msgstr ""
-
-#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
-#: src/Model/Event.php:882
-msgid "Starts:"
-msgstr ""
-
-#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420
-#: src/Model/Event.php:886
-msgid "Finishes:"
-msgstr ""
-
-#: src/Model/Event.php:368
-msgid "all-day"
-msgstr ""
-
-#: src/Model/Event.php:391
-msgid "Jun"
-msgstr ""
-
-#: src/Model/Event.php:394
-msgid "Sept"
-msgstr ""
-
-#: src/Model/Event.php:417
-msgid "No events to display"
-msgstr ""
-
-#: src/Model/Event.php:543
-msgid "l, F j"
-msgstr ""
-
-#: src/Model/Event.php:566
-msgid "Edit event"
-msgstr ""
-
-#: src/Model/Event.php:567
-msgid "Duplicate event"
-msgstr ""
-
-#: src/Model/Event.php:568
-msgid "Delete event"
-msgstr ""
-
-#: src/Model/Event.php:815
-msgid "D g:i A"
-msgstr ""
-
-#: src/Model/Event.php:816
-msgid "g:i A"
-msgstr ""
-
-#: src/Model/Event.php:901 src/Model/Event.php:903
-msgid "Show map"
-msgstr ""
-
-#: src/Model/Event.php:902
-msgid "Hide map"
-msgstr ""
-
-#: src/Model/Group.php:44
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"may apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr ""
-
-#: src/Model/Group.php:341
-msgid "Default privacy group for new contacts"
-msgstr ""
-
-#: src/Model/Group.php:374
-msgid "Everybody"
-msgstr ""
-
-#: src/Model/Group.php:394
-msgid "edit"
-msgstr ""
-
-#: src/Model/Group.php:418
-msgid "Edit group"
-msgstr ""
-
-#: src/Model/Group.php:419
-msgid "Contacts not in any group"
-msgstr ""
-
-#: src/Model/Group.php:420
-msgid "Create a new group"
-msgstr ""
-
-#: src/Model/Group.php:422
-msgid "Edit groups"
-msgstr ""
-
-#: src/Model/Profile.php:97
-msgid "Requested account is not available."
-msgstr ""
-
-#: src/Model/Profile.php:168 src/Model/Profile.php:399
-#: src/Model/Profile.php:861
-msgid "Edit profile"
-msgstr ""
-
-#: src/Model/Profile.php:336
-msgid "Atom feed"
-msgstr ""
-
-#: src/Model/Profile.php:372
-msgid "Manage/edit profiles"
-msgstr ""
-
-#: src/Model/Profile.php:550 src/Model/Profile.php:643
-msgid "g A l F d"
-msgstr ""
-
-#: src/Model/Profile.php:551
-msgid "F d"
-msgstr ""
-
-#: src/Model/Profile.php:608 src/Model/Profile.php:705
-msgid "[today]"
-msgstr ""
-
-#: src/Model/Profile.php:619
-msgid "Birthday Reminders"
-msgstr ""
-
-#: src/Model/Profile.php:620
-msgid "Birthdays this week:"
-msgstr ""
-
-#: src/Model/Profile.php:692
-msgid "[No description]"
-msgstr ""
-
-#: src/Model/Profile.php:719
-msgid "Event Reminders"
-msgstr ""
-
-#: src/Model/Profile.php:720
-msgid "Events this week:"
-msgstr ""
-
-#: src/Model/Profile.php:743
-msgid "Member since:"
-msgstr ""
-
-#: src/Model/Profile.php:751
-msgid "j F, Y"
-msgstr ""
-
-#: src/Model/Profile.php:752
-msgid "j F"
-msgstr ""
-
-#: src/Model/Profile.php:767
-msgid "Age:"
-msgstr ""
-
-#: src/Model/Profile.php:780
-#, php-format
-msgid "for %1$d %2$s"
-msgstr ""
-
-#: src/Model/Profile.php:804
-msgid "Religion:"
-msgstr ""
-
-#: src/Model/Profile.php:812
-msgid "Hobbies/Interests:"
-msgstr ""
-
-#: src/Model/Profile.php:824
-msgid "Contact information and Social Networks:"
-msgstr ""
-
-#: src/Model/Profile.php:828
-msgid "Musical interests:"
-msgstr ""
-
-#: src/Model/Profile.php:832
-msgid "Books, literature:"
-msgstr ""
-
-#: src/Model/Profile.php:836
-msgid "Television:"
-msgstr ""
-
-#: src/Model/Profile.php:840
-msgid "Film/dance/culture/entertainment:"
-msgstr ""
-
-#: src/Model/Profile.php:844
-msgid "Love/Romance:"
-msgstr ""
-
-#: src/Model/Profile.php:848
-msgid "Work/employment:"
-msgstr ""
-
-#: src/Model/Profile.php:852
-msgid "School/education:"
-msgstr ""
-
-#: src/Model/Profile.php:857
-msgid "Forums:"
-msgstr ""
-
-#: src/Model/Profile.php:951
-msgid "Only You Can See This"
-msgstr ""
-
-#: src/Model/User.php:154
-msgid "Login failed"
-msgstr ""
-
-#: src/Model/User.php:185
-msgid "Not enough information to authenticate"
-msgstr ""
-
-#: src/Model/User.php:346
-msgid "An invitation is required."
-msgstr ""
-
-#: src/Model/User.php:350
-msgid "Invitation could not be verified."
-msgstr ""
-
-#: src/Model/User.php:357
-msgid "Invalid OpenID url"
-msgstr ""
-
-#: src/Model/User.php:370 src/Module/Login.php:100
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr ""
-
-#: src/Model/User.php:370 src/Module/Login.php:100
-msgid "The error message was:"
-msgstr ""
-
-#: src/Model/User.php:376
-msgid "Please enter the required information."
-msgstr ""
-
-#: src/Model/User.php:389
-msgid "Please use a shorter name."
-msgstr ""
-
-#: src/Model/User.php:392
-msgid "Name too short."
-msgstr ""
-
-#: src/Model/User.php:400
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr ""
-
-#: src/Model/User.php:405
-msgid "Your email domain is not among those allowed on this site."
-msgstr ""
-
-#: src/Model/User.php:409
-msgid "Not a valid email address."
-msgstr ""
-
-#: src/Model/User.php:413 src/Model/User.php:421
-msgid "Cannot use that email."
-msgstr ""
-
-#: src/Model/User.php:428
-msgid "Your nickname can only contain a-z, 0-9 and _."
-msgstr ""
-
-#: src/Model/User.php:435 src/Model/User.php:491
-msgid "Nickname is already registered. Please choose another."
-msgstr ""
-
-#: src/Model/User.php:445
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr ""
-
-#: src/Model/User.php:478 src/Model/User.php:482
-msgid "An error occurred during registration. Please try again."
-msgstr ""
-
-#: src/Model/User.php:507
-msgid "An error occurred creating your default profile. Please try again."
-msgstr ""
-
-#: src/Model/User.php:514
-msgid "An error occurred creating your self contact. Please try again."
-msgstr ""
-
-#: src/Model/User.php:523
-msgid ""
-"An error occurred creating your default contact group. Please try again."
-msgstr ""
-
-#: src/Model/User.php:597
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tThank you for registering at %2$s. Your account is pending for "
-"approval by the administrator.\n"
-"\t\t"
-msgstr ""
-
-#: src/Model/User.php:607
-#, php-format
-msgid "Registration at %s"
-msgstr ""
-
-#: src/Model/User.php:625
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t\t"
-msgstr ""
-
-#: src/Model/User.php:629
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t\t%1$s\n"
-"\t\t\tPassword:\t\t%5$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\tIf you ever want to delete your account, you can do so at %3$s/"
-"removeme\n"
-"\n"
-"\t\t\tThank you and welcome to %2$s."
-msgstr ""
-
-#: src/Protocol/OStatus.php:1799
-#, php-format
-msgid "%s is now following %s."
-msgstr ""
-
-#: src/Protocol/OStatus.php:1800
-msgid "following"
-msgstr ""
-
-#: src/Protocol/OStatus.php:1803
-#, php-format
-msgid "%s stopped following %s."
-msgstr ""
-
-#: src/Protocol/OStatus.php:1804
-msgid "stopped following"
-msgstr ""
-
-#: src/Protocol/DFRN.php:1482
-#, php-format
-msgid "%s\\'s birthday"
-msgstr ""
-
-#: src/Protocol/Diaspora.php:2680
-msgid "Sharing notification from Diaspora network"
-msgstr ""
-
-#: src/Protocol/Diaspora.php:3756
-msgid "Attachments:"
-msgstr ""
-
-#: src/Worker/Delivery.php:390
-msgid "(no subject)"
-msgstr ""
-
-#: src/Module/Login.php:282
-msgid "Create a New Account"
-msgstr ""
-
-#: src/Module/Login.php:315
-msgid "Password: "
-msgstr ""
-
-#: src/Module/Login.php:316
-msgid "Remember me"
-msgstr ""
-
-#: src/Module/Login.php:319
-msgid "Or login using OpenID: "
-msgstr ""
-
-#: src/Module/Login.php:325
-msgid "Forgot your password?"
-msgstr ""
-
-#: src/Module/Login.php:328
-msgid "Website Terms of Service"
-msgstr ""
-
-#: src/Module/Login.php:329
-msgid "terms of service"
-msgstr ""
-
-#: src/Module/Login.php:331
-msgid "Website Privacy Policy"
-msgstr ""
-
-#: src/Module/Login.php:332
-msgid "privacy policy"
-msgstr ""
-
-#: src/Module/Logout.php:28
-msgid "Logged out."
-msgstr ""
-
-#: src/Module/Tos.php:51
-msgid "Privacy Statement"
-msgstr ""
-
-#: src/Module/Tos.php:52
-msgid ""
-"At the time of registration, and for providing communications between the "
-"user account and their contacts, the user has to provide a display name (pen "
-"name), an username (nickname) and a working email address. The names will be "
-"accessible on the profile page of the account by any visitor of the page, "
-"even if other profile details are not displayed. The email address will only "
-"be used to send the user notifications about interactions, but wont be "
-"visibly displayed. The listing of an account in the node's user directory or "
-"the global user directory is optional and can be controlled in the user "
-"settings, it is not necessary for communication."
-msgstr ""
-
-#: src/Module/Tos.php:53
-msgid ""
-"This data is required for communication and is passed on to the nodes of the "
-"communication partners. Users can enter additional private data that may be "
-"transmitted to the communication partners accounts."
-msgstr ""
-
-#: src/Module/Tos.php:54
-#, php-format
-msgid ""
-"At any point in time a logged in user can export their account data from the "
-"account settings . If the user wants to "
-"delete their account they can do so at %1$s/"
-"removeme . The deletion of the account will be permanent."
-msgstr ""
-
-#: src/Object/Post.php:128
-msgid "This entry was edited"
-msgstr ""
-
-#: src/Object/Post.php:182
-msgid "save to folder"
-msgstr ""
-
-#: src/Object/Post.php:235
-msgid "I will attend"
-msgstr ""
-
-#: src/Object/Post.php:235
-msgid "I will not attend"
-msgstr ""
-
-#: src/Object/Post.php:235
-msgid "I might attend"
-msgstr ""
-
-#: src/Object/Post.php:263
-msgid "add star"
-msgstr ""
-
-#: src/Object/Post.php:264
-msgid "remove star"
-msgstr ""
-
-#: src/Object/Post.php:265
-msgid "toggle star status"
-msgstr ""
-
-#: src/Object/Post.php:268
-msgid "starred"
-msgstr ""
-
-#: src/Object/Post.php:274
-msgid "ignore thread"
-msgstr ""
-
-#: src/Object/Post.php:275
-msgid "unignore thread"
-msgstr ""
-
-#: src/Object/Post.php:276
-msgid "toggle ignore status"
-msgstr ""
-
-#: src/Object/Post.php:285
-msgid "add tag"
-msgstr ""
-
-#: src/Object/Post.php:296
-msgid "like"
-msgstr ""
-
-#: src/Object/Post.php:297
-msgid "dislike"
-msgstr ""
-
-#: src/Object/Post.php:300
-msgid "Share this"
-msgstr ""
-
-#: src/Object/Post.php:300
-msgid "share"
-msgstr ""
-
-#: src/Object/Post.php:365
-msgid "to"
-msgstr ""
-
-#: src/Object/Post.php:366
-msgid "via"
-msgstr ""
-
-#: src/Object/Post.php:367
-msgid "Wall-to-Wall"
-msgstr ""
-
-#: src/Object/Post.php:368
-msgid "via Wall-To-Wall:"
-msgstr ""
-
-#: src/Object/Post.php:427
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] ""
-msgstr[1] ""
-
-#: src/Object/Post.php:797
-msgid "Bold"
-msgstr ""
-
-#: src/Object/Post.php:798
-msgid "Italic"
-msgstr ""
-
-#: src/Object/Post.php:799
-msgid "Underline"
-msgstr ""
-
-#: src/Object/Post.php:800
-msgid "Quote"
-msgstr ""
-
-#: src/Object/Post.php:801
-msgid "Code"
-msgstr ""
-
-#: src/Object/Post.php:802
-msgid "Image"
-msgstr ""
-
-#: src/Object/Post.php:803
-msgid "Link"
-msgstr ""
-
-#: src/Object/Post.php:804
-msgid "Video"
-msgstr ""
-
-#: src/App.php:511
-msgid "Delete this item?"
-msgstr ""
-
-#: src/App.php:513
-msgid "show fewer"
+#: view/theme/duepuntozero/config.php:60
+msgid "slackr"
msgstr ""
-#: boot.php:795
-#, php-format
-msgid "Update %s failed. See error logs."
+#: view/theme/duepuntozero/config.php:74
+msgid "Variations"
msgstr ""
#: index.php:472
diff --git a/view/global.css b/view/global.css
index 30dbeeff0..9d62cf030 100644
--- a/view/global.css
+++ b/view/global.css
@@ -202,9 +202,17 @@ blockquote.shared_content {
}
#profile-photo-wrapper {
+ clear: both;
overflow: hidden;
}
+#newmember-tips {
+ font-size: 1.2em;
+ float: right;
+ margin-top: -32px;
+ padding-right: 10px;
+}
+
/* headers */
h1, h2, h3, h4, h5, h6 {
margin: 5px 0px 5px 0px;
diff --git a/view/install/style.css b/view/install/style.css
index 2f995d599..d6140a1bb 100644
--- a/view/install/style.css
+++ b/view/install/style.css
@@ -32,6 +32,9 @@ td.help {
td.help blockquote {
margin-left: 60px;
}
+.error_header {
+ margin-left: 60px;
+}
input[type="submit"] {
margin: 2em 0;
}
diff --git a/view/lang/de/messages.po b/view/lang/de/messages.po
index 7341e1729..55e591295 100644
--- a/view/lang/de/messages.po
+++ b/view/lang/de/messages.po
@@ -41,8 +41,8 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-04-20 09:30+0200\n"
-"PO-Revision-Date: 2018-04-21 05:39+0000\n"
+"POT-Creation-Date: 2018-04-22 11:15+0200\n"
+"PO-Revision-Date: 2018-04-23 04:59+0000\n"
"Last-Translator: Tobias Diekershoff \n"
"Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n"
"MIME-Version: 1.0\n"
@@ -51,67 +51,10 @@ msgstr ""
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21
-#: mod/display.php:72 mod/display.php:252 mod/display.php:354
-#: mod/admin.php:276 mod/admin.php:1854 mod/admin.php:2102
-msgid "Item not found."
-msgstr "Beitrag nicht gefunden."
-
-#: include/items.php:382
-msgid "Do you really want to delete this item?"
-msgstr "Möchtest Du wirklich dieses Item löschen?"
-
-#: include/items.php:384 mod/api.php:110 mod/suggest.php:38
-#: mod/dfrn_request.php:653 mod/message.php:138 mod/contacts.php:472
-#: mod/follow.php:150 mod/profiles.php:636 mod/profiles.php:639
-#: mod/profiles.php:661 mod/register.php:237 mod/settings.php:1105
-#: mod/settings.php:1111 mod/settings.php:1118 mod/settings.php:1122
-#: mod/settings.php:1126 mod/settings.php:1130 mod/settings.php:1134
-#: mod/settings.php:1138 mod/settings.php:1158 mod/settings.php:1159
-#: mod/settings.php:1160 mod/settings.php:1161 mod/settings.php:1162
-msgid "Yes"
-msgstr "Ja"
-
-#: include/items.php:387 include/conversation.php:1352 mod/fbrowser.php:103
-#: mod/fbrowser.php:134 mod/suggest.php:41 mod/dfrn_request.php:663
-#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149 mod/message.php:141
-#: mod/photos.php:248 mod/photos.php:324 mod/videos.php:147
-#: mod/contacts.php:475 mod/unfollow.php:117 mod/follow.php:161
-#: mod/settings.php:676 mod/settings.php:702
-msgid "Cancel"
-msgstr "Abbrechen"
-
-#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40
-#: mod/attach.php:38 mod/common.php:26 mod/crepair.php:98 mod/nogroup.php:28
-#: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28
-#: mod/notifications.php:73 mod/dfrn_confirm.php:68 mod/manage.php:131
-#: mod/wall_attach.php:74 mod/wall_attach.php:77 mod/poke.php:150
-#: mod/regmod.php:108 mod/viewcontacts.php:57 mod/wall_upload.php:103
-#: mod/wall_upload.php:106 mod/wallmessage.php:16 mod/wallmessage.php:40
-#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/editpost.php:18
-#: mod/fsuggest.php:80 mod/group.php:26 mod/message.php:59 mod/message.php:104
-#: mod/notes.php:30 mod/photos.php:174 mod/photos.php:1051 mod/cal.php:304
-#: mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43
-#: mod/delegate.php:54 mod/events.php:194 mod/item.php:160
-#: mod/ostatus_subscribe.php:16 mod/profile_photo.php:30
-#: mod/profile_photo.php:176 mod/profile_photo.php:187
-#: mod/profile_photo.php:200 mod/unfollow.php:15 mod/unfollow.php:57
-#: mod/unfollow.php:90 mod/dirfind.php:25 mod/follow.php:17 mod/follow.php:54
-#: mod/follow.php:118 mod/invite.php:20 mod/invite.php:111 mod/network.php:32
-#: mod/profiles.php:182 mod/profiles.php:606 mod/register.php:53
-#: mod/settings.php:42 mod/settings.php:141 mod/settings.php:665 index.php:444
-msgid "Permission denied."
-msgstr "Zugriff verweigert."
-
-#: include/items.php:471
-msgid "Archives"
-msgstr "Archiv"
-
-#: include/items.php:477 view/theme/vier/theme.php:259
-#: src/Content/ForumManager.php:130 src/Content/Widget.php:312
-#: src/Object/Post.php:430 src/App.php:512
-msgid "show more"
-msgstr "mehr anzeigen"
+#: boot.php:795
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
#: include/api.php:1202
#, php-format
@@ -133,460 +76,15 @@ msgstr[1] "Das wöchentliche Limit von %d Beiträgen wurde erreicht. Der Beitrag
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgstr "Das monatliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen."
-#: include/api.php:4523 mod/photos.php:88 mod/photos.php:194
-#: mod/photos.php:722 mod/photos.php:1149 mod/photos.php:1166
-#: mod/photos.php:1684 mod/profile_photo.php:85 mod/profile_photo.php:93
+#: include/api.php:4523 src/Model/User.php:549 src/Model/User.php:557
+#: src/Model/User.php:565 mod/profile_photo.php:85 mod/profile_photo.php:93
#: mod/profile_photo.php:101 mod/profile_photo.php:211
-#: mod/profile_photo.php:302 mod/profile_photo.php:312 src/Model/User.php:553
-#: src/Model/User.php:561 src/Model/User.php:569
+#: mod/profile_photo.php:302 mod/profile_photo.php:312 mod/photos.php:88
+#: mod/photos.php:194 mod/photos.php:722 mod/photos.php:1149
+#: mod/photos.php:1166 mod/photos.php:1684
msgid "Profile Photos"
msgstr "Profilbilder"
-#: include/conversation.php:144 include/conversation.php:282
-#: include/text.php:1753 src/Model/Item.php:1795
-msgid "event"
-msgstr "Event"
-
-#: include/conversation.php:147 include/conversation.php:157
-#: include/conversation.php:285 include/conversation.php:294
-#: mod/subthread.php:97 mod/tagger.php:72 src/Model/Item.php:1793
-#: src/Protocol/Diaspora.php:2039
-msgid "status"
-msgstr "Status"
-
-#: include/conversation.php:152 include/conversation.php:290
-#: include/text.php:1755 mod/subthread.php:97 mod/tagger.php:72
-#: src/Model/Item.php:1793
-msgid "photo"
-msgstr "Foto"
-
-#: include/conversation.php:164 src/Model/Item.php:1666
-#: src/Protocol/Diaspora.php:2035
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s"
-
-#: include/conversation.php:167 src/Model/Item.php:1671
-#, 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:170
-#, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr "%1$s nimmt an %2$ss %3$s teil."
-
-#: include/conversation.php:173
-#, 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:176
-#, 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:209 mod/dfrn_confirm.php:431
-#: src/Protocol/Diaspora.php:2510
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s ist nun mit %2$s befreundet"
-
-#: include/conversation.php:250
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stupste %2$s"
-
-#: include/conversation.php:304 mod/tagger.php:110
-#, 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:331
-msgid "post/item"
-msgstr "Nachricht/Beitrag"
-
-#: include/conversation.php:332
-#, 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:605 mod/photos.php:1501 mod/profiles.php:355
-msgid "Likes"
-msgstr "Likes"
-
-#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:359
-msgid "Dislikes"
-msgstr "Dislikes"
-
-#: include/conversation.php:606 include/conversation.php:1661
-#: mod/photos.php:1502
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] "Teilnehmend"
-msgstr[1] "Teilnehmend"
-
-#: include/conversation.php:606 mod/photos.php:1502
-msgid "Not attending"
-msgstr "Nicht teilnehmend"
-
-#: include/conversation.php:606 mod/photos.php:1502
-msgid "Might attend"
-msgstr "Eventuell teilnehmend"
-
-#: include/conversation.php:718 mod/photos.php:1569 src/Object/Post.php:178
-msgid "Select"
-msgstr "Auswählen"
-
-#: include/conversation.php:719 mod/photos.php:1570 mod/contacts.php:830
-#: mod/contacts.php:1035 mod/admin.php:1798 mod/settings.php:738
-#: src/Object/Post.php:179
-msgid "Delete"
-msgstr "Löschen"
-
-#: include/conversation.php:757 src/Object/Post.php:363
-#: src/Object/Post.php:364
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Das Profil von %s auf %s betrachten."
-
-#: include/conversation.php:769 src/Object/Post.php:351
-msgid "Categories:"
-msgstr "Kategorien:"
-
-#: include/conversation.php:770 src/Object/Post.php:352
-msgid "Filed under:"
-msgstr "Abgelegt unter:"
-
-#: include/conversation.php:777 src/Object/Post.php:377
-#, php-format
-msgid "%s from %s"
-msgstr "%s von %s"
-
-#: include/conversation.php:792
-msgid "View in context"
-msgstr "Im Zusammenhang betrachten"
-
-#: include/conversation.php:794 include/conversation.php:1334
-#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:264
-#: mod/message.php:433 mod/photos.php:1473 src/Object/Post.php:402
-msgid "Please wait"
-msgstr "Bitte warten"
-
-#: include/conversation.php:865
-msgid "remove"
-msgstr "löschen"
-
-#: include/conversation.php:869
-msgid "Delete Selected Items"
-msgstr "Lösche die markierten Beiträge"
-
-#: include/conversation.php:1039 view/theme/frio/theme.php:352
-msgid "Follow Thread"
-msgstr "Folge der Unterhaltung"
-
-#: include/conversation.php:1040 src/Model/Contact.php:652
-msgid "View Status"
-msgstr "Pinnwand anschauen"
-
-#: include/conversation.php:1041 include/conversation.php:1057
-#: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89
-#: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:592
-#: src/Model/Contact.php:605 src/Model/Contact.php:653
-msgid "View Profile"
-msgstr "Profil anschauen"
-
-#: include/conversation.php:1042 src/Model/Contact.php:654
-msgid "View Photos"
-msgstr "Bilder anschauen"
-
-#: include/conversation.php:1043 src/Model/Contact.php:655
-msgid "Network Posts"
-msgstr "Netzwerkbeiträge"
-
-#: include/conversation.php:1044 src/Model/Contact.php:656
-msgid "View Contact"
-msgstr "Kontakt anzeigen"
-
-#: include/conversation.php:1045 src/Model/Contact.php:658
-msgid "Send PM"
-msgstr "Private Nachricht senden"
-
-#: include/conversation.php:1049 src/Model/Contact.php:659
-msgid "Poke"
-msgstr "Anstupsen"
-
-#: include/conversation.php:1054 mod/allfriends.php:74 mod/suggest.php:83
-#: mod/match.php:90 mod/contacts.php:596 mod/dirfind.php:218
-#: mod/follow.php:143 src/Content/Widget.php:61 src/Model/Contact.php:606
-msgid "Connect/Follow"
-msgstr "Verbinden/Folgen"
-
-#: include/conversation.php:1173
-#, php-format
-msgid "%s likes this."
-msgstr "%s mag das."
-
-#: include/conversation.php:1176
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s mag das nicht."
-
-#: include/conversation.php:1179
-#, php-format
-msgid "%s attends."
-msgstr "%s nimmt teil."
-
-#: include/conversation.php:1182
-#, php-format
-msgid "%s doesn't attend."
-msgstr "%s nimmt nicht teil."
-
-#: include/conversation.php:1185
-#, php-format
-msgid "%s attends maybe."
-msgstr "%s nimmt eventuell teil."
-
-#: include/conversation.php:1196
-msgid "and"
-msgstr "und"
-
-#: include/conversation.php:1202
-#, php-format
-msgid "and %d other people"
-msgstr "und %dandere"
-
-#: include/conversation.php:1211
-#, php-format
-msgid "%2$d people like this"
-msgstr "%2$d Personen mögen das"
-
-#: include/conversation.php:1212
-#, php-format
-msgid "%s like this."
-msgstr "%s mögen das."
-
-#: include/conversation.php:1215
-#, php-format
-msgid "%2$d people don't like this"
-msgstr "%2$d Personen mögen das nicht"
-
-#: include/conversation.php:1216
-#, php-format
-msgid "%s don't like this."
-msgstr "%s mögen dies nicht."
-
-#: include/conversation.php:1219
-#, php-format
-msgid "%2$d people attend"
-msgstr "%2$d Personen nehmen teil"
-
-#: include/conversation.php:1220
-#, php-format
-msgid "%s attend."
-msgstr "%s nehmen teil."
-
-#: include/conversation.php:1223
-#, php-format
-msgid "%2$d people don't attend"
-msgstr "%2$d Personen nehmen nicht teil"
-
-#: include/conversation.php:1224
-#, php-format
-msgid "%s don't attend."
-msgstr "%s nehmen nicht teil."
-
-#: include/conversation.php:1227
-#, php-format
-msgid "%2$d people attend maybe"
-msgstr "%2$d Personen nehmen eventuell teil"
-
-#: include/conversation.php:1228
-#, php-format
-msgid "%s attend maybe."
-msgstr "%s nimmt eventuell teil."
-
-#: include/conversation.php:1258 include/conversation.php:1274
-msgid "Visible to everybody "
-msgstr "Für jedermann sichtbar"
-
-#: include/conversation.php:1259 include/conversation.php:1275
-#: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:200
-#: mod/message.php:207 mod/message.php:343 mod/message.php:350
-msgid "Please enter a link URL:"
-msgstr "Bitte gib die URL des Links ein:"
-
-#: include/conversation.php:1260 include/conversation.php:1276
-msgid "Please enter a video link/URL:"
-msgstr "Bitte Link/URL zum Video einfügen:"
-
-#: include/conversation.php:1261 include/conversation.php:1277
-msgid "Please enter an audio link/URL:"
-msgstr "Bitte Link/URL zum Audio einfügen:"
-
-#: include/conversation.php:1262 include/conversation.php:1278
-msgid "Tag term:"
-msgstr "Tag:"
-
-#: include/conversation.php:1263 include/conversation.php:1279
-#: mod/filer.php:34
-msgid "Save to Folder:"
-msgstr "In diesem Ordner speichern:"
-
-#: include/conversation.php:1264 include/conversation.php:1280
-msgid "Where are you right now?"
-msgstr "Wo hältst Du Dich jetzt gerade auf?"
-
-#: include/conversation.php:1265
-msgid "Delete item(s)?"
-msgstr "Einträge löschen?"
-
-#: include/conversation.php:1312
-msgid "New Post"
-msgstr "Neuer Beitrag"
-
-#: include/conversation.php:1315
-msgid "Share"
-msgstr "Teilen"
-
-#: include/conversation.php:1316 mod/wallmessage.php:143 mod/editpost.php:111
-#: mod/message.php:262 mod/message.php:430
-msgid "Upload photo"
-msgstr "Foto hochladen"
-
-#: include/conversation.php:1317 mod/editpost.php:112
-msgid "upload photo"
-msgstr "Bild hochladen"
-
-#: include/conversation.php:1318 mod/editpost.php:113
-msgid "Attach file"
-msgstr "Datei anhängen"
-
-#: include/conversation.php:1319 mod/editpost.php:114
-msgid "attach file"
-msgstr "Datei anhängen"
-
-#: include/conversation.php:1320 mod/wallmessage.php:144 mod/editpost.php:115
-#: mod/message.php:263 mod/message.php:431
-msgid "Insert web link"
-msgstr "Einen Link einfügen"
-
-#: include/conversation.php:1321 mod/editpost.php:116
-msgid "web link"
-msgstr "Weblink"
-
-#: include/conversation.php:1322 mod/editpost.php:117
-msgid "Insert video link"
-msgstr "Video-Adresse einfügen"
-
-#: include/conversation.php:1323 mod/editpost.php:118
-msgid "video link"
-msgstr "Video-Link"
-
-#: include/conversation.php:1324 mod/editpost.php:119
-msgid "Insert audio link"
-msgstr "Audio-Adresse einfügen"
-
-#: include/conversation.php:1325 mod/editpost.php:120
-msgid "audio link"
-msgstr "Audio-Link"
-
-#: include/conversation.php:1326 mod/editpost.php:121
-msgid "Set your location"
-msgstr "Deinen Standort festlegen"
-
-#: include/conversation.php:1327 mod/editpost.php:122
-msgid "set location"
-msgstr "Ort setzen"
-
-#: include/conversation.php:1328 mod/editpost.php:123
-msgid "Clear browser location"
-msgstr "Browser-Standort leeren"
-
-#: include/conversation.php:1329 mod/editpost.php:124
-msgid "clear location"
-msgstr "Ort löschen"
-
-#: include/conversation.php:1331 mod/editpost.php:138
-msgid "Set title"
-msgstr "Titel setzen"
-
-#: include/conversation.php:1333 mod/editpost.php:140
-msgid "Categories (comma-separated list)"
-msgstr "Kategorien (kommasepariert)"
-
-#: include/conversation.php:1335 mod/editpost.php:126
-msgid "Permission settings"
-msgstr "Berechtigungseinstellungen"
-
-#: include/conversation.php:1336 mod/editpost.php:155
-msgid "permissions"
-msgstr "Zugriffsrechte"
-
-#: include/conversation.php:1344 mod/editpost.php:135
-msgid "Public post"
-msgstr "Öffentlicher Beitrag"
-
-#: include/conversation.php:1348 mod/editpost.php:146 mod/photos.php:1492
-#: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528
-#: src/Object/Post.php:805
-msgid "Preview"
-msgstr "Vorschau"
-
-#: include/conversation.php:1357
-msgid "Post to Groups"
-msgstr "Poste an Gruppe"
-
-#: include/conversation.php:1358
-msgid "Post to Contacts"
-msgstr "Poste an Kontakte"
-
-#: include/conversation.php:1359
-msgid "Private post"
-msgstr "Privater Beitrag"
-
-#: include/conversation.php:1364 mod/editpost.php:153
-#: src/Model/Profile.php:342
-msgid "Message"
-msgstr "Nachricht"
-
-#: include/conversation.php:1365 mod/editpost.php:154
-msgid "Browser"
-msgstr "Browser"
-
-#: include/conversation.php:1632
-msgid "View all"
-msgstr "Zeige alle"
-
-#: include/conversation.php:1655
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "mag ich"
-msgstr[1] "Mag ich"
-
-#: include/conversation.php:1658
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "mag ich nicht"
-msgstr[1] "Mag ich nicht"
-
-#: include/conversation.php:1664
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] "Nicht teilnehmend "
-msgstr[1] "Nicht teilnehmend"
-
-#: include/conversation.php:1667 src/Content/ContactSelector.php:125
-msgid "Undecided"
-msgid_plural "Undecided"
-msgstr[0] "Unentschieden"
-msgstr[1] "Unentschieden"
-
-#: include/dba.php:58
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
-
#: include/enotify.php:31
msgid "Friendica Notification"
msgstr "Friendica-Benachrichtigung"
@@ -879,6 +377,461 @@ 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/conversation.php:144 include/conversation.php:282
+#: include/text.php:1753 src/Model/Item.php:1796
+msgid "event"
+msgstr "Event"
+
+#: include/conversation.php:147 include/conversation.php:157
+#: include/conversation.php:285 include/conversation.php:294
+#: src/Model/Item.php:1794 src/Protocol/Diaspora.php:2039 mod/subthread.php:97
+#: mod/tagger.php:72
+msgid "status"
+msgstr "Status"
+
+#: include/conversation.php:152 include/conversation.php:290
+#: include/text.php:1755 src/Model/Item.php:1794 mod/subthread.php:97
+#: mod/tagger.php:72
+msgid "photo"
+msgstr "Foto"
+
+#: include/conversation.php:164 src/Model/Item.php:1667
+#: src/Protocol/Diaspora.php:2035
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s"
+
+#: include/conversation.php:167 src/Model/Item.php:1672
+#, 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:170
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$s nimmt an %2$ss %3$s teil."
+
+#: include/conversation.php:173
+#, 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:176
+#, 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:209 src/Protocol/Diaspora.php:2510
+#: mod/dfrn_confirm.php:431
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s ist nun mit %2$s befreundet"
+
+#: include/conversation.php:250
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s stupste %2$s"
+
+#: include/conversation.php:304 mod/tagger.php:110
+#, 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:331
+msgid "post/item"
+msgstr "Nachricht/Beitrag"
+
+#: include/conversation.php:332
+#, 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:605 mod/profiles.php:355 mod/photos.php:1501
+msgid "Likes"
+msgstr "Likes"
+
+#: include/conversation.php:605 mod/profiles.php:359 mod/photos.php:1501
+msgid "Dislikes"
+msgstr "Dislikes"
+
+#: include/conversation.php:606 include/conversation.php:1661
+#: mod/photos.php:1502
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Teilnehmend"
+msgstr[1] "Teilnehmend"
+
+#: include/conversation.php:606 mod/photos.php:1502
+msgid "Not attending"
+msgstr "Nicht teilnehmend"
+
+#: include/conversation.php:606 mod/photos.php:1502
+msgid "Might attend"
+msgstr "Eventuell teilnehmend"
+
+#: include/conversation.php:718 src/Object/Post.php:178 mod/photos.php:1569
+msgid "Select"
+msgstr "Auswählen"
+
+#: include/conversation.php:719 src/Object/Post.php:179 mod/settings.php:738
+#: mod/admin.php:1812 mod/photos.php:1570 mod/contacts.php:830
+#: mod/contacts.php:1035
+msgid "Delete"
+msgstr "Löschen"
+
+#: include/conversation.php:757 src/Object/Post.php:363
+#: src/Object/Post.php:364
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Das Profil von %s auf %s betrachten."
+
+#: include/conversation.php:769 src/Object/Post.php:351
+msgid "Categories:"
+msgstr "Kategorien:"
+
+#: include/conversation.php:770 src/Object/Post.php:352
+msgid "Filed under:"
+msgstr "Abgelegt unter:"
+
+#: include/conversation.php:777 src/Object/Post.php:377
+#, php-format
+msgid "%s from %s"
+msgstr "%s von %s"
+
+#: include/conversation.php:792
+msgid "View in context"
+msgstr "Im Zusammenhang betrachten"
+
+#: include/conversation.php:794 include/conversation.php:1334
+#: src/Object/Post.php:402 mod/photos.php:1473 mod/message.php:264
+#: mod/message.php:433 mod/wallmessage.php:145 mod/editpost.php:125
+msgid "Please wait"
+msgstr "Bitte warten"
+
+#: include/conversation.php:865
+msgid "remove"
+msgstr "löschen"
+
+#: include/conversation.php:869
+msgid "Delete Selected Items"
+msgstr "Lösche die markierten Beiträge"
+
+#: include/conversation.php:1039 view/theme/frio/theme.php:352
+msgid "Follow Thread"
+msgstr "Folge der Unterhaltung"
+
+#: include/conversation.php:1040 src/Model/Contact.php:652
+msgid "View Status"
+msgstr "Pinnwand anschauen"
+
+#: include/conversation.php:1041 include/conversation.php:1057
+#: src/Model/Contact.php:592 src/Model/Contact.php:605
+#: src/Model/Contact.php:653 mod/directory.php:159 mod/dirfind.php:217
+#: mod/suggest.php:82 mod/allfriends.php:73 mod/match.php:89
+msgid "View Profile"
+msgstr "Profil anschauen"
+
+#: include/conversation.php:1042 src/Model/Contact.php:654
+msgid "View Photos"
+msgstr "Bilder anschauen"
+
+#: include/conversation.php:1043 src/Model/Contact.php:655
+msgid "Network Posts"
+msgstr "Netzwerkbeiträge"
+
+#: include/conversation.php:1044 src/Model/Contact.php:656
+msgid "View Contact"
+msgstr "Kontakt anzeigen"
+
+#: include/conversation.php:1045 src/Model/Contact.php:658
+msgid "Send PM"
+msgstr "Private Nachricht senden"
+
+#: include/conversation.php:1049 src/Model/Contact.php:659
+msgid "Poke"
+msgstr "Anstupsen"
+
+#: include/conversation.php:1054 src/Model/Contact.php:606
+#: src/Content/Widget.php:61 mod/dirfind.php:218 mod/suggest.php:83
+#: mod/allfriends.php:74 mod/follow.php:143 mod/contacts.php:596
+#: mod/match.php:90
+msgid "Connect/Follow"
+msgstr "Verbinden/Folgen"
+
+#: include/conversation.php:1173
+#, php-format
+msgid "%s likes this."
+msgstr "%s mag das."
+
+#: include/conversation.php:1176
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s mag das nicht."
+
+#: include/conversation.php:1179
+#, php-format
+msgid "%s attends."
+msgstr "%s nimmt teil."
+
+#: include/conversation.php:1182
+#, php-format
+msgid "%s doesn't attend."
+msgstr "%s nimmt nicht teil."
+
+#: include/conversation.php:1185
+#, php-format
+msgid "%s attends maybe."
+msgstr "%s nimmt eventuell teil."
+
+#: include/conversation.php:1196
+msgid "and"
+msgstr "und"
+
+#: include/conversation.php:1202
+#, php-format
+msgid "and %d other people"
+msgstr "und %dandere"
+
+#: include/conversation.php:1211
+#, php-format
+msgid "%2$d people like this"
+msgstr "%2$d Personen mögen das"
+
+#: include/conversation.php:1212
+#, php-format
+msgid "%s like this."
+msgstr "%s mögen das."
+
+#: include/conversation.php:1215
+#, php-format
+msgid "%2$d people don't like this"
+msgstr "%2$d Personen mögen das nicht"
+
+#: include/conversation.php:1216
+#, php-format
+msgid "%s don't like this."
+msgstr "%s mögen dies nicht."
+
+#: include/conversation.php:1219
+#, php-format
+msgid "%2$d people attend"
+msgstr "%2$d Personen nehmen teil"
+
+#: include/conversation.php:1220
+#, php-format
+msgid "%s attend."
+msgstr "%s nehmen teil."
+
+#: include/conversation.php:1223
+#, php-format
+msgid "%2$d people don't attend"
+msgstr "%2$d Personen nehmen nicht teil"
+
+#: include/conversation.php:1224
+#, php-format
+msgid "%s don't attend."
+msgstr "%s nehmen nicht teil."
+
+#: include/conversation.php:1227
+#, php-format
+msgid "%2$d people attend maybe"
+msgstr "%2$d Personen nehmen eventuell teil"
+
+#: include/conversation.php:1228
+#, php-format
+msgid "%s attend maybe."
+msgstr "%s nimmt eventuell teil."
+
+#: include/conversation.php:1258 include/conversation.php:1274
+msgid "Visible to everybody "
+msgstr "Für jedermann sichtbar"
+
+#: include/conversation.php:1259 include/conversation.php:1275
+#: mod/message.php:200 mod/message.php:207 mod/message.php:343
+#: mod/message.php:350 mod/wallmessage.php:120 mod/wallmessage.php:127
+msgid "Please enter a link URL:"
+msgstr "Bitte gib die URL des Links ein:"
+
+#: include/conversation.php:1260 include/conversation.php:1276
+msgid "Please enter a video link/URL:"
+msgstr "Bitte Link/URL zum Video einfügen:"
+
+#: include/conversation.php:1261 include/conversation.php:1277
+msgid "Please enter an audio link/URL:"
+msgstr "Bitte Link/URL zum Audio einfügen:"
+
+#: include/conversation.php:1262 include/conversation.php:1278
+msgid "Tag term:"
+msgstr "Tag:"
+
+#: include/conversation.php:1263 include/conversation.php:1279
+#: mod/filer.php:34
+msgid "Save to Folder:"
+msgstr "In diesem Ordner speichern:"
+
+#: include/conversation.php:1264 include/conversation.php:1280
+msgid "Where are you right now?"
+msgstr "Wo hältst Du Dich jetzt gerade auf?"
+
+#: include/conversation.php:1265
+msgid "Delete item(s)?"
+msgstr "Einträge löschen?"
+
+#: include/conversation.php:1312
+msgid "New Post"
+msgstr "Neuer Beitrag"
+
+#: include/conversation.php:1315
+msgid "Share"
+msgstr "Teilen"
+
+#: include/conversation.php:1316 mod/message.php:262 mod/message.php:430
+#: mod/wallmessage.php:143 mod/editpost.php:111
+msgid "Upload photo"
+msgstr "Foto hochladen"
+
+#: include/conversation.php:1317 mod/editpost.php:112
+msgid "upload photo"
+msgstr "Bild hochladen"
+
+#: include/conversation.php:1318 mod/editpost.php:113
+msgid "Attach file"
+msgstr "Datei anhängen"
+
+#: include/conversation.php:1319 mod/editpost.php:114
+msgid "attach file"
+msgstr "Datei anhängen"
+
+#: include/conversation.php:1320 mod/message.php:263 mod/message.php:431
+#: mod/wallmessage.php:144 mod/editpost.php:115
+msgid "Insert web link"
+msgstr "Einen Link einfügen"
+
+#: include/conversation.php:1321 mod/editpost.php:116
+msgid "web link"
+msgstr "Weblink"
+
+#: include/conversation.php:1322 mod/editpost.php:117
+msgid "Insert video link"
+msgstr "Video-Adresse einfügen"
+
+#: include/conversation.php:1323 mod/editpost.php:118
+msgid "video link"
+msgstr "Video-Link"
+
+#: include/conversation.php:1324 mod/editpost.php:119
+msgid "Insert audio link"
+msgstr "Audio-Adresse einfügen"
+
+#: include/conversation.php:1325 mod/editpost.php:120
+msgid "audio link"
+msgstr "Audio-Link"
+
+#: include/conversation.php:1326 mod/editpost.php:121
+msgid "Set your location"
+msgstr "Deinen Standort festlegen"
+
+#: include/conversation.php:1327 mod/editpost.php:122
+msgid "set location"
+msgstr "Ort setzen"
+
+#: include/conversation.php:1328 mod/editpost.php:123
+msgid "Clear browser location"
+msgstr "Browser-Standort leeren"
+
+#: include/conversation.php:1329 mod/editpost.php:124
+msgid "clear location"
+msgstr "Ort löschen"
+
+#: include/conversation.php:1331 mod/editpost.php:138
+msgid "Set title"
+msgstr "Titel setzen"
+
+#: include/conversation.php:1333 mod/editpost.php:140
+msgid "Categories (comma-separated list)"
+msgstr "Kategorien (kommasepariert)"
+
+#: include/conversation.php:1335 mod/editpost.php:126
+msgid "Permission settings"
+msgstr "Berechtigungseinstellungen"
+
+#: include/conversation.php:1336 mod/editpost.php:155
+msgid "permissions"
+msgstr "Zugriffsrechte"
+
+#: include/conversation.php:1344 mod/editpost.php:135
+msgid "Public post"
+msgstr "Öffentlicher Beitrag"
+
+#: include/conversation.php:1348 src/Object/Post.php:805 mod/events.php:528
+#: mod/photos.php:1492 mod/photos.php:1531 mod/photos.php:1604
+#: mod/editpost.php:146
+msgid "Preview"
+msgstr "Vorschau"
+
+#: include/conversation.php:1352 include/items.php:387 mod/suggest.php:41
+#: mod/settings.php:676 mod/settings.php:702 mod/fbrowser.php:103
+#: mod/fbrowser.php:134 mod/photos.php:248 mod/photos.php:324
+#: mod/message.php:141 mod/videos.php:147 mod/unfollow.php:117
+#: mod/dfrn_request.php:663 mod/follow.php:161 mod/contacts.php:475
+#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: include/conversation.php:1357
+msgid "Post to Groups"
+msgstr "Poste an Gruppe"
+
+#: include/conversation.php:1358
+msgid "Post to Contacts"
+msgstr "Poste an Kontakte"
+
+#: include/conversation.php:1359
+msgid "Private post"
+msgstr "Privater Beitrag"
+
+#: include/conversation.php:1364 src/Model/Profile.php:342
+#: mod/editpost.php:153
+msgid "Message"
+msgstr "Nachricht"
+
+#: include/conversation.php:1365 mod/editpost.php:154
+msgid "Browser"
+msgstr "Browser"
+
+#: include/conversation.php:1632
+msgid "View all"
+msgstr "Zeige alle"
+
+#: include/conversation.php:1655
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "mag ich"
+msgstr[1] "Mag ich"
+
+#: include/conversation.php:1658
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "mag ich nicht"
+msgstr[1] "Mag ich nicht"
+
+#: include/conversation.php:1664
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "Nicht teilnehmend "
+msgstr[1] "Nicht teilnehmend"
+
+#: include/conversation.php:1667 src/Content/ContactSelector.php:125
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] "Unentschieden"
+msgstr[1] "Unentschieden"
+
+#: include/dba.php:58
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
+
#: include/security.php:81
msgid "Welcome "
msgstr "Willkommen "
@@ -944,8 +897,8 @@ msgstr[1] "%d Kontakte"
msgid "View Contacts"
msgstr "Kontakte anzeigen"
-#: include/text.php:1010 mod/filer.php:35 mod/editpost.php:110
-#: mod/notes.php:67
+#: include/text.php:1010 mod/notes.php:67 mod/filer.php:35
+#: mod/editpost.php:110
msgid "Save"
msgstr "Speichern"
@@ -953,7 +906,7 @@ msgstr "Speichern"
msgid "Follow"
msgstr "Folge"
-#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142
+#: include/text.php:1016 src/Content/Nav.php:142 mod/search.php:155
msgid "Search"
msgstr "Suche"
@@ -965,19 +918,19 @@ msgstr "@name, !forum, #tags, content"
msgid "Full Text"
msgstr "Volltext"
-#: include/text.php:1026 src/Content/Nav.php:146
-#: src/Content/Widget/TagCloud.php:54
+#: include/text.php:1026 src/Content/Widget/TagCloud.php:54
+#: src/Content/Nav.php:146
msgid "Tags"
msgstr "Tags"
-#: include/text.php:1027 mod/viewcontacts.php:131 mod/contacts.php:814
-#: mod/contacts.php:875 view/theme/frio/theme.php:270 src/Content/Nav.php:147
-#: src/Content/Nav.php:212 src/Model/Profile.php:959 src/Model/Profile.php:962
+#: include/text.php:1027 src/Model/Profile.php:961 src/Model/Profile.php:964
+#: src/Content/Nav.php:147 src/Content/Nav.php:208 mod/viewcontacts.php:131
+#: mod/contacts.php:814 mod/contacts.php:875 view/theme/frio/theme.php:270
msgid "Contacts"
msgstr "Kontakte"
-#: include/text.php:1030 view/theme/vier/theme.php:254
-#: src/Content/ForumManager.php:125 src/Content/Nav.php:151
+#: include/text.php:1030 src/Content/ForumManager.php:125
+#: src/Content/Nav.php:151 view/theme/vier/theme.php:254
msgid "Forums"
msgstr "Foren"
@@ -1029,7 +982,7 @@ msgstr "eine Abfuhr erteilen"
msgid "rebuffed"
msgstr "abfuhrerteilte"
-#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:379
+#: include/text.php:1093 src/Model/Event.php:379 mod/settings.php:943
msgid "Monday"
msgstr "Montag"
@@ -1053,7 +1006,7 @@ msgstr "Freitag"
msgid "Saturday"
msgstr "Samstag"
-#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:378
+#: include/text.php:1093 src/Model/Event.php:378 mod/settings.php:943
msgid "Sunday"
msgstr "Sonntag"
@@ -1221,451 +1174,2261 @@ msgstr "Beitrag"
msgid "Item filed"
msgstr "Beitrag abgelegt"
-#: mod/allfriends.php:51
-msgid "No friends to display."
-msgstr "Keine Kontakte zum Anzeigen."
+#: include/items.php:342 mod/display.php:72 mod/display.php:252
+#: mod/display.php:354 mod/admin.php:276 mod/admin.php:1868 mod/admin.php:2116
+#: mod/viewsrc.php:21 mod/notice.php:22
+msgid "Item not found."
+msgstr "Beitrag nicht gefunden."
-#: mod/allfriends.php:90 mod/suggest.php:101 mod/match.php:105
-#: mod/dirfind.php:215 src/Content/Widget.php:37 src/Model/Profile.php:297
+#: include/items.php:382
+msgid "Do you really want to delete this item?"
+msgstr "Möchtest Du wirklich dieses Item löschen?"
+
+#: include/items.php:384 mod/suggest.php:38 mod/profiles.php:636
+#: mod/profiles.php:639 mod/profiles.php:661 mod/api.php:110
+#: mod/settings.php:1105 mod/settings.php:1111 mod/settings.php:1118
+#: mod/settings.php:1122 mod/settings.php:1126 mod/settings.php:1130
+#: mod/settings.php:1134 mod/settings.php:1138 mod/settings.php:1158
+#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161
+#: mod/settings.php:1162 mod/message.php:138 mod/dfrn_request.php:653
+#: mod/follow.php:150 mod/contacts.php:472 mod/register.php:237
+msgid "Yes"
+msgstr "Ja"
+
+#: include/items.php:401 mod/dirfind.php:25 mod/repair_ostatus.php:13
+#: mod/suggest.php:60 mod/profile_photo.php:30 mod/profile_photo.php:176
+#: mod/profile_photo.php:187 mod/profile_photo.php:200 mod/manage.php:131
+#: mod/uimport.php:28 mod/invite.php:20 mod/invite.php:111 mod/network.php:32
+#: mod/profiles.php:182 mod/profiles.php:606 mod/events.php:194
+#: mod/fsuggest.php:80 mod/attach.php:38 mod/allfriends.php:21
+#: mod/viewcontacts.php:57 mod/ostatus_subscribe.php:16 mod/api.php:35
+#: mod/api.php:40 mod/settings.php:42 mod/settings.php:141
+#: mod/settings.php:665 mod/regmod.php:108 mod/group.php:26
+#: mod/delegate.php:25 mod/delegate.php:43 mod/delegate.php:54
+#: mod/photos.php:174 mod/photos.php:1051 mod/nogroup.php:28
+#: mod/message.php:59 mod/message.php:104 mod/unfollow.php:15
+#: mod/unfollow.php:57 mod/unfollow.php:90 mod/wall_attach.php:74
+#: mod/wall_attach.php:77 mod/notes.php:30 mod/crepair.php:98 mod/poke.php:150
+#: mod/notifications.php:73 mod/follow.php:17 mod/follow.php:54
+#: mod/follow.php:118 mod/cal.php:304 mod/contacts.php:386
+#: mod/wallmessage.php:16 mod/wallmessage.php:40 mod/wallmessage.php:79
+#: mod/wallmessage.php:103 mod/dfrn_confirm.php:68 mod/wall_upload.php:103
+#: mod/wall_upload.php:106 mod/register.php:53 mod/common.php:26
+#: mod/item.php:160 mod/editpost.php:18 index.php:444
+msgid "Permission denied."
+msgstr "Zugriff verweigert."
+
+#: include/items.php:471
+msgid "Archives"
+msgstr "Archiv"
+
+#: include/items.php:477 src/Content/Widget.php:312
+#: src/Content/ForumManager.php:130 src/App.php:512 src/Object/Post.php:430
+#: view/theme/vier/theme.php:259
+msgid "show more"
+msgstr "mehr anzeigen"
+
+#: src/Model/Item.php:1677
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s nimmt an %2$ss %3$s teil."
+
+#: src/Model/Item.php:1682
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
+
+#: src/Model/Item.php:1687
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
+
+#: src/Model/Contact.php:657
+msgid "Drop Contact"
+msgstr "Kontakt löschen"
+
+#: src/Model/Contact.php:1060
+msgid "Organisation"
+msgstr "Organisation"
+
+#: src/Model/Contact.php:1063
+msgid "News"
+msgstr "Nachrichten"
+
+#: src/Model/Contact.php:1066
+msgid "Forum"
+msgstr "Forum"
+
+#: src/Model/Contact.php:1235 mod/dfrn_request.php:345
+msgid "Disallowed profile URL."
+msgstr "Nicht erlaubte Profil-URL."
+
+#: src/Model/Contact.php:1240 mod/friendica.php:128 mod/admin.php:353
+#: mod/admin.php:371 mod/dfrn_request.php:351
+msgid "Blocked domain"
+msgstr "Blockierte Domain"
+
+#: src/Model/Contact.php:1245
+msgid "Connect URL missing."
+msgstr "Connect-URL fehlt"
+
+#: src/Model/Contact.php:1254
+msgid ""
+"The contact could not be added. Please check the relevant network "
+"credentials in your Settings -> Social Networks page."
+msgstr "Der Kontakt konnte nicht hinzugefügt werden. Bitte überprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke"
+
+#: src/Model/Contact.php:1301
+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."
+
+#: src/Model/Contact.php:1302 src/Model/Contact.php:1316
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
+
+#: src/Model/Contact.php:1314
+msgid "The profile address specified does not provide adequate information."
+msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
+
+#: src/Model/Contact.php:1319
+msgid "An author or name was not found."
+msgstr "Es wurde kein Autor oder Name gefunden."
+
+#: src/Model/Contact.php:1322
+msgid "No browser URL could be matched to this address."
+msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
+
+#: src/Model/Contact.php:1325
+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."
+
+#: src/Model/Contact.php:1326
+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."
+
+#: src/Model/Contact.php:1332
+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."
+
+#: src/Model/Contact.php:1337
+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."
+
+#: src/Model/Contact.php:1388
+msgid "Unable to retrieve contact information."
+msgstr "Konnte die Kontaktinformationen nicht empfangen."
+
+#: src/Model/Contact.php:1537 mod/dfrn_request.php:568
+#: mod/dfrn_confirm.php:661
+msgid "[Name Withheld]"
+msgstr "[Name unterdrückt]"
+
+#: src/Model/Contact.php:1605 src/Protocol/DFRN.php:1482
+#, php-format
+msgid "%s's birthday"
+msgstr "%ss Geburtstag"
+
+#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Herzlichen Glückwunsch %s"
+
+#: src/Model/Mail.php:40 src/Model/Mail.php:174
+msgid "[no subject]"
+msgstr "[kein Betreff]"
+
+#: src/Model/Profile.php:97
+msgid "Requested account is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
+
+#: src/Model/Profile.php:118 mod/profile.php:37
+msgid "Requested profile is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
+
+#: src/Model/Profile.php:168 src/Model/Profile.php:399
+#: src/Model/Profile.php:863
+msgid "Edit profile"
+msgstr "Profil bearbeiten"
+
+#: src/Model/Profile.php:297 src/Content/Widget.php:37 mod/dirfind.php:215
+#: mod/suggest.php:101 mod/allfriends.php:90 mod/match.php:105
msgid "Connect"
msgstr "Verbinden"
-#: mod/api.php:85 mod/api.php:107
-msgid "Authorize application connection"
-msgstr "Verbindung der Applikation autorisieren"
+#: src/Model/Profile.php:336
+msgid "Atom feed"
+msgstr "Atom-Feed"
-#: mod/api.php:86
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
+#: src/Model/Profile.php:372 src/Content/Nav.php:205
+msgid "Profiles"
+msgstr "Profile"
-#: mod/api.php:95
-msgid "Please login to continue."
-msgstr "Bitte melde Dich an um fortzufahren."
+#: src/Model/Profile.php:372
+msgid "Manage/edit profiles"
+msgstr "Profile verwalten/editieren"
-#: mod/api.php:109
-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?"
+#: src/Model/Profile.php:379 src/Model/Profile.php:401 mod/profiles.php:777
+msgid "Change profile photo"
+msgstr "Profilbild ändern"
-#: mod/api.php:111 mod/dfrn_request.php:653 mod/follow.php:150
-#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661
-#: mod/register.php:238 mod/settings.php:1105 mod/settings.php:1111
-#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1126
-#: mod/settings.php:1130 mod/settings.php:1134 mod/settings.php:1138
-#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
-#: mod/settings.php:1161 mod/settings.php:1162
-msgid "No"
-msgstr "Nein"
+#: src/Model/Profile.php:380 mod/profiles.php:778
+msgid "Create New Profile"
+msgstr "Neues Profil anlegen"
-#: mod/apps.php:14 index.php:273
-msgid "You must be logged in to use addons. "
-msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
+#: src/Model/Profile.php:389 mod/profiles.php:767
+msgid "Profile Image"
+msgstr "Profilbild"
-#: mod/apps.php:19
-msgid "Applications"
-msgstr "Anwendungen"
+#: src/Model/Profile.php:392 mod/profiles.php:769
+msgid "visible to everybody"
+msgstr "sichtbar für jeden"
-#: mod/apps.php:22
-msgid "No installed applications."
-msgstr "Keine Applikationen installiert."
+#: src/Model/Profile.php:393 mod/profiles.php:675 mod/profiles.php:770
+msgid "Edit visibility"
+msgstr "Sichtbarkeit bearbeiten"
-#: mod/attach.php:15
-msgid "Item not available."
-msgstr "Beitrag nicht verfügbar."
+#: src/Model/Profile.php:417 src/Model/Event.php:60 src/Model/Event.php:85
+#: src/Model/Event.php:421 src/Model/Event.php:900 mod/directory.php:148
+#: mod/events.php:518 mod/notifications.php:247 mod/contacts.php:660
+msgid "Location:"
+msgstr "Ort:"
-#: mod/attach.php:25
-msgid "Item was not found."
-msgstr "Beitrag konnte nicht gefunden werden."
+#: src/Model/Profile.php:420 src/Model/Profile.php:749 mod/directory.php:151
+#: mod/notifications.php:253
+msgid "Gender:"
+msgstr "Geschlecht:"
-#: mod/common.php:91
-msgid "No contacts in common."
-msgstr "Keine gemeinsamen Kontakte."
+#: src/Model/Profile.php:421 src/Model/Profile.php:773 mod/directory.php:152
+msgid "Status:"
+msgstr "Status:"
-#: mod/common.php:140 mod/contacts.php:886
-msgid "Common Friends"
-msgstr "Gemeinsame Kontakte"
+#: src/Model/Profile.php:422 src/Model/Profile.php:790 mod/directory.php:153
+msgid "Homepage:"
+msgstr "Homepage:"
-#: mod/credits.php:18
-msgid "Credits"
-msgstr "Credits"
+#: src/Model/Profile.php:423 src/Model/Profile.php:810 mod/directory.php:154
+#: mod/notifications.php:249 mod/contacts.php:664
+msgid "About:"
+msgstr "Über:"
-#: mod/credits.php:19
-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 !"
+#: src/Model/Profile.php:424 mod/contacts.php:662
+msgid "XMPP:"
+msgstr "XMPP:"
-#: mod/crepair.php:87
-msgid "Contact settings applied."
-msgstr "Einstellungen zum Kontakt angewandt."
+#: src/Model/Profile.php:520 mod/notifications.php:261 mod/contacts.php:71
+msgid "Network:"
+msgstr "Netzwerk:"
-#: mod/crepair.php:89
-msgid "Contact update failed."
-msgstr "Konnte den Kontakt nicht aktualisieren."
+#: src/Model/Profile.php:550 src/Model/Profile.php:643
+msgid "g A l F d"
+msgstr "l, d. F G \\U\\h\\r"
-#: mod/crepair.php:110 mod/dfrn_confirm.php:131 mod/fsuggest.php:30
-#: mod/fsuggest.php:96
-msgid "Contact not found."
-msgstr "Kontakt nicht gefunden."
+#: src/Model/Profile.php:551
+msgid "F d"
+msgstr "d. F"
-#: mod/crepair.php:114
-msgid ""
-"WARNING: This is highly advanced and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
+#: src/Model/Profile.php:608 src/Model/Profile.php:707
+msgid "[today]"
+msgstr "[heute]"
-#: mod/crepair.php:115
-msgid ""
-"Please use your browser 'Back' button now if you are "
-"uncertain what to do on this page."
-msgstr "Bitte nutze den Zurück-Button Deines Browsers jetzt , wenn Du Dir unsicher bist, was Du tun willst."
+#: src/Model/Profile.php:619
+msgid "Birthday Reminders"
+msgstr "Geburtstagserinnerungen"
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "No mirroring"
-msgstr "Kein Spiegeln"
+#: src/Model/Profile.php:620
+msgid "Birthdays this week:"
+msgstr "Geburtstage diese Woche:"
-#: mod/crepair.php:129
-msgid "Mirror as forwarded posting"
-msgstr "Spiegeln als weitergeleitete Beiträge"
+#: src/Model/Profile.php:694
+msgid "[No description]"
+msgstr "[keine Beschreibung]"
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "Mirror as my own posting"
-msgstr "Spiegeln als meine eigenen Beiträge"
+#: src/Model/Profile.php:721
+msgid "Event Reminders"
+msgstr "Veranstaltungserinnerungen"
-#: mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr "Zurück zum Kontakteditor"
+#: src/Model/Profile.php:722
+msgid "Events this week:"
+msgstr "Veranstaltungen diese Woche"
-#: mod/crepair.php:146
-msgid "Refetch contact data"
-msgstr "Kontaktdaten neu laden"
-
-#: mod/crepair.php:148 mod/manage.php:184 mod/localtime.php:56
-#: mod/poke.php:199 mod/fsuggest.php:114 mod/message.php:265
-#: mod/message.php:432 mod/photos.php:1080 mod/photos.php:1160
-#: mod/photos.php:1445 mod/photos.php:1491 mod/photos.php:1530
-#: mod/photos.php:1603 mod/contacts.php:610 mod/events.php:530
-#: mod/install.php:251 mod/install.php:290 mod/invite.php:155
-#: mod/profiles.php:672 view/theme/duepuntozero/config.php:71
-#: view/theme/frio/config.php:113 view/theme/quattro/config.php:73
-#: view/theme/vier/config.php:119 src/Object/Post.php:796
-msgid "Submit"
-msgstr "Senden"
-
-#: mod/crepair.php:149
-msgid "Remote Self"
-msgstr "Entfernte Konten"
-
-#: mod/crepair.php:152
-msgid "Mirror postings from this contact"
-msgstr "Spiegle Beiträge dieses Kontakts"
-
-#: mod/crepair.php:154
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."
-
-#: mod/crepair.php:158 mod/admin.php:490 mod/admin.php:1781 mod/admin.php:1793
-#: mod/admin.php:1806 mod/admin.php:1822 mod/settings.php:677
-#: mod/settings.php:703
-msgid "Name"
-msgstr "Name"
-
-#: mod/crepair.php:159
-msgid "Account Nickname"
-msgstr "Konto-Spitzname"
-
-#: mod/crepair.php:160
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - überschreibt Name/Spitzname"
-
-#: mod/crepair.php:161
-msgid "Account URL"
-msgstr "Konto-URL"
-
-#: mod/crepair.php:162
-msgid "Friend Request URL"
-msgstr "URL für Kontaktschaftsanfragen"
-
-#: mod/crepair.php:163
-msgid "Friend Confirm URL"
-msgstr "URL für Bestätigungen von Kontaktanfragen"
-
-#: mod/crepair.php:164
-msgid "Notification Endpoint URL"
-msgstr "URL-Endpunkt für Benachrichtigungen"
-
-#: mod/crepair.php:165
-msgid "Poll/Feed URL"
-msgstr "Pull/Feed-URL"
-
-#: mod/crepair.php:166
-msgid "New photo from this URL"
-msgstr "Neues Foto von dieser URL"
-
-#: mod/fbrowser.php:34 view/theme/frio/theme.php:261 src/Content/Nav.php:102
-#: src/Model/Profile.php:906
-msgid "Photos"
-msgstr "Bilder"
-
-#: mod/fbrowser.php:43 mod/fbrowser.php:68 mod/photos.php:194
-#: mod/photos.php:1062 mod/photos.php:1149 mod/photos.php:1166
-#: mod/photos.php:1659 mod/photos.php:1673 src/Model/Photo.php:244
-#: src/Model/Photo.php:253
-msgid "Contact Photos"
-msgstr "Kontaktbilder"
-
-#: mod/fbrowser.php:105 mod/fbrowser.php:136 mod/profile_photo.php:250
-msgid "Upload"
-msgstr "Hochladen"
-
-#: mod/fbrowser.php:131
-msgid "Files"
-msgstr "Dateien"
-
-#: mod/fetch.php:16 mod/fetch.php:52 mod/fetch.php:65 mod/help.php:60
-#: mod/p.php:21 mod/p.php:48 mod/p.php:57 index.php:320
-msgid "Not Found"
-msgstr "Nicht gefunden"
-
-#: mod/hcard.php:18
-msgid "No profile"
-msgstr "Kein Profil"
-
-#: mod/help.php:48
-msgid "Help:"
-msgstr "Hilfe:"
-
-#: mod/help.php:54 view/theme/vier/theme.php:298 src/Content/Nav.php:134
-msgid "Help"
-msgstr "Hilfe"
-
-#: mod/help.php:63 index.php:325
-msgid "Page not found."
-msgstr "Seite nicht gefunden."
-
-#: mod/home.php:39
-#, php-format
-msgid "Welcome to %s"
-msgstr "Willkommen zu %s"
-
-#: mod/lockview.php:38 mod/lockview.php:46
-msgid "Remote privacy information not available."
-msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
-
-#: mod/lockview.php:55
-msgid "Visible to:"
-msgstr "Sichtbar für:"
-
-#: mod/maintenance.php:24
-msgid "System down for maintenance"
-msgstr "System zur Wartung abgeschaltet"
-
-#: mod/newmember.php:11
-msgid "Welcome to Friendica"
-msgstr "Willkommen bei Friendica"
-
-#: mod/newmember.php:12
-msgid "New Member Checklist"
-msgstr "Checkliste für neue Mitglieder"
-
-#: mod/newmember.php:14
-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:15
-msgid "Getting Started"
-msgstr "Einstieg"
-
-#: mod/newmember.php:17
-msgid "Friendica Walk-Through"
-msgstr "Friendica Rundgang"
-
-#: mod/newmember.php:17
-msgid ""
-"On your Quick Start page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."
-
-#: mod/newmember.php:19 mod/admin.php:1906 mod/admin.php:2175
-#: mod/settings.php:123 view/theme/frio/theme.php:269 src/Content/Nav.php:206
-msgid "Settings"
-msgstr "Einstellungen"
-
-#: mod/newmember.php:21
-msgid "Go to Your Settings"
-msgstr "Gehe zu deinen Einstellungen"
-
-#: mod/newmember.php:21
-msgid ""
-"On your Settings page - change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen.."
-
-#: mod/newmember.php:22
-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:24 mod/profperm.php:113 mod/contacts.php:671
-#: mod/contacts.php:863 view/theme/frio/theme.php:260 src/Content/Nav.php:101
-#: src/Model/Profile.php:732 src/Model/Profile.php:865
-#: src/Model/Profile.php:898
+#: src/Model/Profile.php:734 src/Model/Profile.php:867
+#: src/Model/Profile.php:900 src/Content/Nav.php:101 mod/contacts.php:671
+#: mod/contacts.php:863 mod/newmember.php:24 mod/profperm.php:113
+#: view/theme/frio/theme.php:260
msgid "Profile"
msgstr "Profil"
-#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:691
-msgid "Upload Profile Photo"
-msgstr "Profilbild hochladen"
+#: src/Model/Profile.php:742 mod/settings.php:1209
+msgid "Full Name:"
+msgstr "Kompletter Name:"
-#: mod/newmember.php:26
+#: src/Model/Profile.php:745
+msgid "Member since:"
+msgstr "Mitglied seit:"
+
+#: src/Model/Profile.php:753
+msgid "j F, Y"
+msgstr "j F, Y"
+
+#: src/Model/Profile.php:754
+msgid "j F"
+msgstr "j F"
+
+#: src/Model/Profile.php:762 src/Util/Temporal.php:147
+msgid "Birthday:"
+msgstr "Geburtstag:"
+
+#: src/Model/Profile.php:769
+msgid "Age:"
+msgstr "Alter:"
+
+#: src/Model/Profile.php:782
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "für %1$d %2$s"
+
+#: src/Model/Profile.php:786 mod/profiles.php:694
+msgid "Sexual Preference:"
+msgstr "Sexuelle Vorlieben:"
+
+#: src/Model/Profile.php:794 mod/profiles.php:721
+msgid "Hometown:"
+msgstr "Heimatort:"
+
+#: src/Model/Profile.php:798 mod/notifications.php:251 mod/follow.php:174
+#: mod/contacts.php:666
+msgid "Tags:"
+msgstr "Tags:"
+
+#: src/Model/Profile.php:802 mod/profiles.php:722
+msgid "Political Views:"
+msgstr "Politische Ansichten:"
+
+#: src/Model/Profile.php:806
+msgid "Religion:"
+msgstr "Religion:"
+
+#: src/Model/Profile.php:814
+msgid "Hobbies/Interests:"
+msgstr "Hobbies/Interessen:"
+
+#: src/Model/Profile.php:818 mod/profiles.php:726
+msgid "Likes:"
+msgstr "Likes:"
+
+#: src/Model/Profile.php:822 mod/profiles.php:727
+msgid "Dislikes:"
+msgstr "Dislikes:"
+
+#: src/Model/Profile.php:826
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformationen und Soziale Netzwerke:"
+
+#: src/Model/Profile.php:830
+msgid "Musical interests:"
+msgstr "Musikalische Interessen:"
+
+#: src/Model/Profile.php:834
+msgid "Books, literature:"
+msgstr "Literatur/Bücher:"
+
+#: src/Model/Profile.php:838
+msgid "Television:"
+msgstr "Fernsehen:"
+
+#: src/Model/Profile.php:842
+msgid "Film/dance/culture/entertainment:"
+msgstr "Filme/Tänze/Kultur/Unterhaltung:"
+
+#: src/Model/Profile.php:846
+msgid "Love/Romance:"
+msgstr "Liebesleben:"
+
+#: src/Model/Profile.php:850
+msgid "Work/employment:"
+msgstr "Arbeit/Beschäftigung:"
+
+#: src/Model/Profile.php:854
+msgid "School/education:"
+msgstr "Schule/Ausbildung:"
+
+#: src/Model/Profile.php:859
+msgid "Forums:"
+msgstr "Foren:"
+
+#: src/Model/Profile.php:868 mod/events.php:531
+msgid "Basic"
+msgstr "Allgemein"
+
+#: src/Model/Profile.php:869 mod/events.php:532 mod/admin.php:1351
+#: mod/contacts.php:895
+msgid "Advanced"
+msgstr "Erweitert"
+
+#: src/Model/Profile.php:892 src/Content/Nav.php:100 mod/contacts.php:669
+#: mod/contacts.php:855 view/theme/frio/theme.php:259
+msgid "Status"
+msgstr "Status"
+
+#: src/Model/Profile.php:895 mod/unfollow.php:132 mod/follow.php:186
+#: mod/contacts.php:858
+msgid "Status Messages and Posts"
+msgstr "Statusnachrichten und Beiträge"
+
+#: src/Model/Profile.php:903 mod/contacts.php:866
+msgid "Profile Details"
+msgstr "Profildetails"
+
+#: src/Model/Profile.php:908 src/Content/Nav.php:102 mod/fbrowser.php:34
+#: view/theme/frio/theme.php:261
+msgid "Photos"
+msgstr "Bilder"
+
+#: src/Model/Profile.php:911 mod/photos.php:108
+msgid "Photo Albums"
+msgstr "Fotoalben"
+
+#: src/Model/Profile.php:916 src/Model/Profile.php:919 src/Content/Nav.php:103
+#: view/theme/frio/theme.php:262
+msgid "Videos"
+msgstr "Videos"
+
+#: src/Model/Profile.php:928 src/Model/Profile.php:939 src/Content/Nav.php:104
+#: src/Content/Nav.php:169 mod/events.php:391 mod/cal.php:274
+#: view/theme/frio/theme.php:263 view/theme/frio/theme.php:267
+msgid "Events"
+msgstr "Veranstaltungen"
+
+#: src/Model/Profile.php:931 src/Model/Profile.php:942 src/Content/Nav.php:169
+#: view/theme/frio/theme.php:267
+msgid "Events and Calendar"
+msgstr "Ereignisse und Kalender"
+
+#: src/Model/Profile.php:950 mod/notes.php:52
+msgid "Personal Notes"
+msgstr "Persönliche Notizen"
+
+#: src/Model/Profile.php:953
+msgid "Only You Can See This"
+msgstr "Nur Du kannst das sehen"
+
+#: src/Model/Event.php:36 src/Model/Event.php:814 mod/localtime.php:19
+msgid "l F d, Y \\@ g:i A"
+msgstr "l, d. F Y\\, H:i"
+
+#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
+#: src/Model/Event.php:882
+msgid "Starts:"
+msgstr "Beginnt:"
+
+#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420
+#: src/Model/Event.php:886
+msgid "Finishes:"
+msgstr "Endet:"
+
+#: src/Model/Event.php:368
+msgid "all-day"
+msgstr "ganztägig"
+
+#: src/Model/Event.php:391
+msgid "Jun"
+msgstr "Jun"
+
+#: src/Model/Event.php:394
+msgid "Sept"
+msgstr "Sep"
+
+#: src/Model/Event.php:412 mod/events.php:400 mod/cal.php:280
+msgid "today"
+msgstr "Heute"
+
+#: src/Model/Event.php:413 src/Util/Temporal.php:304 mod/events.php:401
+#: mod/cal.php:281
+msgid "month"
+msgstr "Monat"
+
+#: src/Model/Event.php:414 src/Util/Temporal.php:305 mod/events.php:402
+#: mod/cal.php:282
+msgid "week"
+msgstr "Woche"
+
+#: src/Model/Event.php:415 src/Util/Temporal.php:306 mod/events.php:403
+#: mod/cal.php:283
+msgid "day"
+msgstr "Tag"
+
+#: src/Model/Event.php:417
+msgid "No events to display"
+msgstr "Keine Veranstaltung zum Anzeigen"
+
+#: src/Model/Event.php:543
+msgid "l, F j"
+msgstr "l, F j"
+
+#: src/Model/Event.php:566
+msgid "Edit event"
+msgstr "Veranstaltung bearbeiten"
+
+#: src/Model/Event.php:567
+msgid "Duplicate event"
+msgstr "Veranstaltung kopieren"
+
+#: src/Model/Event.php:568
+msgid "Delete event"
+msgstr "Veranstaltung löschen"
+
+#: src/Model/Event.php:815
+msgid "D g:i A"
+msgstr "D H:i"
+
+#: src/Model/Event.php:816
+msgid "g:i A"
+msgstr "H:i"
+
+#: src/Model/Event.php:901 src/Model/Event.php:903
+msgid "Show map"
+msgstr "Karte anzeigen"
+
+#: src/Model/Event.php:902
+msgid "Hide map"
+msgstr "Karte verbergen"
+
+#: src/Model/Group.php:44
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."
+"A deleted group with this name was revived. Existing item permissions "
+"may apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
-#: mod/newmember.php:27
-msgid "Edit Your Profile"
-msgstr "Editiere dein Profil"
+#: src/Model/Group.php:341
+msgid "Default privacy group for new contacts"
+msgstr "Voreingestellte Gruppe für neue Kontakte"
-#: mod/newmember.php:27
-msgid ""
-"Edit your default profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils."
+#: src/Model/Group.php:374
+msgid "Everybody"
+msgstr "Alle Kontakte"
-#: mod/newmember.php:28
-msgid "Profile Keywords"
-msgstr "Profil Schlüsselbegriffe"
+#: src/Model/Group.php:394
+msgid "edit"
+msgstr "bearbeiten"
-#: mod/newmember.php:28
-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."
+#: src/Model/Group.php:413 mod/network.php:202
+msgid "add"
+msgstr "hinzufügen"
-#: mod/newmember.php:30
-msgid "Connecting"
-msgstr "Verbindungen knüpfen"
-
-#: mod/newmember.php:36
-msgid "Importing Emails"
-msgstr "Emails Importieren"
-
-#: mod/newmember.php:36
-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:39
-msgid "Go to Your Contacts Page"
-msgstr "Gehe zu deiner Kontakt-Seite"
-
-#: mod/newmember.php:39
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the Add New Contact dialog."
-msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein."
-
-#: mod/newmember.php:40
-msgid "Go to Your Site's Directory"
-msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz"
-
-#: mod/newmember.php:40
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a Connect or Follow link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."
-
-#: mod/newmember.php:41
-msgid "Finding New People"
-msgstr "Neue Leute kennenlernen"
-
-#: mod/newmember.php:41
-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:43 src/Model/Group.php:414
+#: src/Model/Group.php:414 mod/newmember.php:43
msgid "Groups"
msgstr "Gruppen"
-#: mod/newmember.php:45
-msgid "Group Your Contacts"
-msgstr "Gruppiere deine Kontakte"
+#: src/Model/Group.php:418
+msgid "Edit group"
+msgstr "Gruppe bearbeiten"
-#: mod/newmember.php:45
+#: src/Model/Group.php:419
+msgid "Contacts not in any group"
+msgstr "Kontakte in keiner Gruppe"
+
+#: src/Model/Group.php:420
+msgid "Create a new group"
+msgstr "Neue Gruppe erstellen"
+
+#: src/Model/Group.php:421 mod/group.php:103 mod/group.php:199
+msgid "Group Name: "
+msgstr "Gruppenname:"
+
+#: src/Model/Group.php:422
+msgid "Edit groups"
+msgstr "Gruppen bearbeiten"
+
+#: src/Model/Photo.php:244 src/Model/Photo.php:253 mod/fbrowser.php:43
+#: mod/fbrowser.php:68 mod/photos.php:194 mod/photos.php:1062
+#: mod/photos.php:1149 mod/photos.php:1166 mod/photos.php:1659
+#: mod/photos.php:1673
+msgid "Contact Photos"
+msgstr "Kontaktbilder"
+
+#: src/Model/User.php:154
+msgid "Login failed"
+msgstr "Anmeldung fehlgeschlagen"
+
+#: src/Model/User.php:185
+msgid "Not enough information to authenticate"
+msgstr "Nicht genügend Informationen für die Authentifizierung"
+
+#: src/Model/User.php:214 src/Core/Console/NewPassword.php:74 mod/cal.php:297
+msgid "User not found"
+msgstr "Nutzer nicht gefunden"
+
+#: src/Model/User.php:335 mod/settings.php:384
+msgid "Passwords do not match. Password unchanged."
+msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
+
+#: src/Model/User.php:342
+msgid "An invitation is required."
+msgstr "Du benötigst eine Einladung."
+
+#: src/Model/User.php:346
+msgid "Invitation could not be verified."
+msgstr "Die Einladung konnte nicht überprüft werden."
+
+#: src/Model/User.php:353
+msgid "Invalid OpenID url"
+msgstr "Ungültige OpenID URL"
+
+#: src/Model/User.php:366 src/Module/Login.php:100
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."
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."
-#: mod/newmember.php:48
-msgid "Why Aren't My Posts Public?"
-msgstr "Warum sind meine Beiträge nicht öffentlich?"
+#: src/Model/User.php:366 src/Module/Login.php:100
+msgid "The error message was:"
+msgstr "Die Fehlermeldung lautete:"
-#: mod/newmember.php:48
+#: src/Model/User.php:372
+msgid "Please enter the required information."
+msgstr "Bitte trage die erforderlichen Informationen ein."
+
+#: src/Model/User.php:385
+msgid "Please use a shorter name."
+msgstr "Bitte verwende einen kürzeren Namen."
+
+#: src/Model/User.php:388
+msgid "Name too short."
+msgstr "Der Name ist zu kurz."
+
+#: src/Model/User.php:396
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."
+
+#: src/Model/User.php:401
+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."
+
+#: src/Model/User.php:405
+msgid "Not a valid email address."
+msgstr "Keine gültige E-Mail-Adresse."
+
+#: src/Model/User.php:409 src/Model/User.php:417
+msgid "Cannot use that email."
+msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
+
+#: src/Model/User.php:424
+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."
+
+#: src/Model/User.php:431 src/Model/User.php:487
+msgid "Nickname is already registered. Please choose another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
+
+#: src/Model/User.php:441
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
+
+#: src/Model/User.php:474 src/Model/User.php:478
+msgid "An error occurred during registration. Please try again."
+msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+
+#: src/Model/User.php:498 view/theme/duepuntozero/config.php:54
+msgid "default"
+msgstr "Standard"
+
+#: src/Model/User.php:503
+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."
+
+#: src/Model/User.php:510
+msgid "An error occurred creating your self contact. Please try again."
+msgstr "Bei der Erstellung deines self Kontakts ist ein Fehler aufgetreten. Bitte versuche es erneut."
+
+#: src/Model/User.php:515 src/Content/ContactSelector.php:169
+msgid "Friends"
+msgstr "Kontakte"
+
+#: src/Model/User.php:519
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."
+"An error occurred creating your default contact group. Please try again."
+msgstr "Bei der Erstellung deiner Standardgruppe für Kontakte ist ein Fehler aufgetreten. Bitte versuche es erneut."
-#: mod/newmember.php:52
-msgid "Getting Help"
-msgstr "Hilfe bekommen"
-
-#: mod/newmember.php:54
-msgid "Go to the Help Section"
-msgstr "Zum Hilfe Abschnitt gehen"
-
-#: mod/newmember.php:54
-msgid ""
-"Our help pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
-
-#: mod/nogroup.php:42 mod/viewcontacts.php:112 mod/contacts.php:619
-#: mod/contacts.php:959
+#: src/Model/User.php:593
#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Besuche %ss Profil [%s]"
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
+"\t\t"
+msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account muss noch vom Admin des Knotens geprüft werden."
-#: mod/nogroup.php:43 mod/contacts.php:960
-msgid "Edit contact"
-msgstr "Kontakt bearbeiten"
+#: src/Model/User.php:603
+#, php-format
+msgid "Registration at %s"
+msgstr "Registrierung als %s"
-#: mod/nogroup.php:63
-msgid "Contacts who are not members of a group"
-msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
+#: src/Model/User.php:621
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t\t"
+msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
-#: mod/p.php:14
-msgid "Not Extended"
-msgstr "Nicht erweitert."
+#: src/Model/User.php:625
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t\t%1$s\n"
+"\t\t\tPassword:\t\t%5$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\tIf you ever want to delete your account, you can do so at %3$s/removeme\n"
+"\n"
+"\t\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\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %3$s/removeme jederzeit tun.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s."
+
+#: src/Model/User.php:659 mod/admin.php:1611
+#, php-format
+msgid "Registration details for %s"
+msgstr "Details der Registration von %s"
+
+#: src/Content/Text/BBCode.php:416
+msgid "view full size"
+msgstr "Volle Größe anzeigen"
+
+#: src/Content/Text/BBCode.php:842 src/Content/Text/BBCode.php:1611
+#: src/Content/Text/BBCode.php:1612
+msgid "Image/photo"
+msgstr "Bild/Foto"
+
+#: src/Content/Text/BBCode.php:980
+#, php-format
+msgid "%2$s %3$s"
+msgstr "%2$s %3$s"
+
+#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560
+msgid "$1 wrote:"
+msgstr "$1 hat geschrieben:"
+
+#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
+
+#: src/Content/Text/BBCode.php:1740
+msgid "Invalid source protocol"
+msgstr "Ungültiges Quell-Protokoll"
+
+#: src/Content/Text/BBCode.php:1751
+msgid "Invalid link protocol"
+msgstr "Ungültiges Link-Protokoll"
+
+#: src/Content/Feature.php:79
+msgid "General Features"
+msgstr "Allgemeine Features"
+
+#: src/Content/Feature.php:81
+msgid "Multiple Profiles"
+msgstr "Mehrere Profile"
+
+#: src/Content/Feature.php:81
+msgid "Ability to create multiple profiles"
+msgstr "Möglichkeit mehrere Profile zu erstellen"
+
+#: src/Content/Feature.php:82
+msgid "Photo Location"
+msgstr "Aufnahmeort"
+
+#: src/Content/Feature.php:82
+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."
+
+#: src/Content/Feature.php:83
+msgid "Export Public Calendar"
+msgstr "Öffentlichen Kalender exportieren"
+
+#: src/Content/Feature.php:83
+msgid "Ability for visitors to download the public calendar"
+msgstr "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden"
+
+#: src/Content/Feature.php:88
+msgid "Post Composition Features"
+msgstr "Beitragserstellung Features"
+
+#: src/Content/Feature.php:89
+msgid "Post Preview"
+msgstr "Beitragsvorschau"
+
+#: src/Content/Feature.php:89
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
+
+#: src/Content/Feature.php:90
+msgid "Auto-mention Forums"
+msgstr "Foren automatisch erwähnen"
+
+#: src/Content/Feature.php:90
+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."
+
+#: src/Content/Feature.php:95
+msgid "Network Sidebar Widgets"
+msgstr "Widgets für Netzwerk und Seitenleiste"
+
+#: src/Content/Feature.php:96
+msgid "Search by Date"
+msgstr "Archiv"
+
+#: src/Content/Feature.php:96
+msgid "Ability to select posts by date ranges"
+msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
+
+#: src/Content/Feature.php:97 src/Content/Feature.php:127
+msgid "List Forums"
+msgstr "Zeige Foren"
+
+#: src/Content/Feature.php:97
+msgid "Enable widget to display the forums your are connected with"
+msgstr "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen"
+
+#: src/Content/Feature.php:98
+msgid "Group Filter"
+msgstr "Gruppen Filter"
+
+#: src/Content/Feature.php:98
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
+
+#: src/Content/Feature.php:99
+msgid "Network Filter"
+msgstr "Netzwerk Filter"
+
+#: src/Content/Feature.php:99
+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."
+
+#: src/Content/Feature.php:100 mod/network.php:201 mod/search.php:46
+msgid "Saved Searches"
+msgstr "Gespeicherte Suchen"
+
+#: src/Content/Feature.php:100
+msgid "Save search terms for re-use"
+msgstr "Speichere Suchanfragen für spätere Wiederholung."
+
+#: src/Content/Feature.php:105
+msgid "Network Tabs"
+msgstr "Netzwerk Reiter"
+
+#: src/Content/Feature.php:106
+msgid "Network Personal Tab"
+msgstr "Netzwerk-Reiter: Persönlich"
+
+#: src/Content/Feature.php:106
+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"
+
+#: src/Content/Feature.php:107
+msgid "Network New Tab"
+msgstr "Netzwerk-Reiter: Neue"
+
+#: src/Content/Feature.php:107
+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"
+
+#: src/Content/Feature.php:108
+msgid "Network Shared Links Tab"
+msgstr "Netzwerk-Reiter: Geteilte Links"
+
+#: src/Content/Feature.php:108
+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"
+
+#: src/Content/Feature.php:113
+msgid "Post/Comment Tools"
+msgstr "Werkzeuge für Beiträge und Kommentare"
+
+#: src/Content/Feature.php:114
+msgid "Multiple Deletion"
+msgstr "Mehrere Beiträge löschen"
+
+#: src/Content/Feature.php:114
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
+
+#: src/Content/Feature.php:115
+msgid "Edit Sent Posts"
+msgstr "Gesendete Beiträge editieren"
+
+#: src/Content/Feature.php:115
+msgid "Edit and correct posts and comments after sending"
+msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."
+
+#: src/Content/Feature.php:116
+msgid "Tagging"
+msgstr "Tagging"
+
+#: src/Content/Feature.php:116
+msgid "Ability to tag existing posts"
+msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
+
+#: src/Content/Feature.php:117
+msgid "Post Categories"
+msgstr "Beitragskategorien"
+
+#: src/Content/Feature.php:117
+msgid "Add categories to your posts"
+msgstr "Eigene Beiträge mit Kategorien versehen"
+
+#: src/Content/Feature.php:118 src/Content/Widget.php:200
+msgid "Saved Folders"
+msgstr "Gespeicherte Ordner"
+
+#: src/Content/Feature.php:118
+msgid "Ability to file posts under folders"
+msgstr "Beiträge in Ordnern speichern aktivieren"
+
+#: src/Content/Feature.php:119
+msgid "Dislike Posts"
+msgstr "Beiträge 'nicht mögen'"
+
+#: src/Content/Feature.php:119
+msgid "Ability to dislike posts/comments"
+msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
+
+#: src/Content/Feature.php:120
+msgid "Star Posts"
+msgstr "Beiträge Markieren"
+
+#: src/Content/Feature.php:120
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"
+
+#: src/Content/Feature.php:121
+msgid "Mute Post Notifications"
+msgstr "Benachrichtigungen für Beiträge Stumm schalten"
+
+#: src/Content/Feature.php:121
+msgid "Ability to mute notifications for a thread"
+msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
+
+#: src/Content/Feature.php:126
+msgid "Advanced Profile Settings"
+msgstr "Erweiterte Profil-Einstellungen"
+
+#: src/Content/Feature.php:127
+msgid "Show visitors public community forums at the Advanced Profile Page"
+msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"
+
+#: src/Content/Feature.php:128
+msgid "Tag Cloud"
+msgstr "Schlagwort Wolke"
+
+#: src/Content/Feature.php:128
+msgid "Provide a personal tag cloud on your profile page"
+msgstr "Wortwolke aus den von dir verwendeten Schlagwörtern im Profil anzeigen."
+
+#: src/Content/Feature.php:129
+msgid "Display Membership Date"
+msgstr "Mitgliedschaftsdatum anzeigen"
+
+#: src/Content/Feature.php:129
+msgid "Display membership date in profile"
+msgstr "Soll das Datum der Registrierung deines Accounts im Profil angezeigt werden."
+
+#: src/Content/Widget/CalendarExport.php:61
+msgid "Export"
+msgstr "Exportieren"
+
+#: src/Content/Widget/CalendarExport.php:62
+msgid "Export calendar as ical"
+msgstr "Kalender als ical exportieren"
+
+#: src/Content/Widget/CalendarExport.php:63
+msgid "Export calendar as csv"
+msgstr "Kalender als csv exportieren"
+
+#: src/Content/Widget.php:33
+msgid "Add New Contact"
+msgstr "Neuen Kontakt hinzufügen"
+
+#: src/Content/Widget.php:34
+msgid "Enter address or web location"
+msgstr "Adresse oder Web-Link eingeben"
+
+#: src/Content/Widget.php:35
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Beispiel: bob@example.com, http://example.com/barbara"
+
+#: src/Content/Widget.php:53
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d Einladung verfügbar"
+msgstr[1] "%d Einladungen verfügbar"
+
+#: src/Content/Widget.php:59
+msgid "Find People"
+msgstr "Leute finden"
+
+#: src/Content/Widget.php:60
+msgid "Enter name or interest"
+msgstr "Name oder Interessen eingeben"
+
+#: src/Content/Widget.php:62
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Beispiel: Robert Morgenstein, Angeln"
+
+#: src/Content/Widget.php:63 mod/directory.php:209 mod/contacts.php:820
+msgid "Find"
+msgstr "Finde"
+
+#: src/Content/Widget.php:64 mod/suggest.php:114 view/theme/vier/theme.php:203
+msgid "Friend Suggestions"
+msgstr "Kontaktvorschläge"
+
+#: src/Content/Widget.php:65 view/theme/vier/theme.php:202
+msgid "Similar Interests"
+msgstr "Ähnliche Interessen"
+
+#: src/Content/Widget.php:66
+msgid "Random Profile"
+msgstr "Zufälliges Profil"
+
+#: src/Content/Widget.php:67 view/theme/vier/theme.php:204
+msgid "Invite Friends"
+msgstr "Freunde einladen"
+
+#: src/Content/Widget.php:68
+msgid "View Global Directory"
+msgstr "Globales Verzeichnis betrachten"
+
+#: src/Content/Widget.php:159
+msgid "Networks"
+msgstr "Netzwerke"
+
+#: src/Content/Widget.php:162
+msgid "All Networks"
+msgstr "Alle Netzwerke"
+
+#: src/Content/Widget.php:203 src/Content/Widget.php:243
+msgid "Everything"
+msgstr "Alles"
+
+#: src/Content/Widget.php:240
+msgid "Categories"
+msgstr "Kategorien"
+
+#: src/Content/Widget.php:307
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d gemeinsamer Kontakt"
+msgstr[1] "%d gemeinsame Kontakte"
+
+#: src/Content/ContactSelector.php:55
+msgid "Frequently"
+msgstr "immer wieder"
+
+#: src/Content/ContactSelector.php:56
+msgid "Hourly"
+msgstr "Stündlich"
+
+#: src/Content/ContactSelector.php:57
+msgid "Twice daily"
+msgstr "Zweimal täglich"
+
+#: src/Content/ContactSelector.php:58
+msgid "Daily"
+msgstr "Täglich"
+
+#: src/Content/ContactSelector.php:59
+msgid "Weekly"
+msgstr "Wöchentlich"
+
+#: src/Content/ContactSelector.php:60
+msgid "Monthly"
+msgstr "Monatlich"
+
+#: src/Content/ContactSelector.php:79 mod/dfrn_request.php:656
+msgid "Friendica"
+msgstr "Friendica"
+
+#: src/Content/ContactSelector.php:80
+msgid "OStatus"
+msgstr "OStatus"
+
+#: src/Content/ContactSelector.php:81
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
+
+#: src/Content/ContactSelector.php:82 mod/admin.php:1796 mod/admin.php:1807
+#: mod/admin.php:1820 mod/admin.php:1838
+msgid "Email"
+msgstr "E-Mail"
+
+#: src/Content/ContactSelector.php:83 mod/settings.php:805
+msgid "Diaspora"
+msgstr "Diaspora"
+
+#: src/Content/ContactSelector.php:84
+msgid "Facebook"
+msgstr "Facebook"
+
+#: src/Content/ContactSelector.php:85
+msgid "Zot!"
+msgstr "Zott"
+
+#: src/Content/ContactSelector.php:86
+msgid "LinkedIn"
+msgstr "LinkedIn"
+
+#: src/Content/ContactSelector.php:87
+msgid "XMPP/IM"
+msgstr "XMPP/Chat"
+
+#: src/Content/ContactSelector.php:88
+msgid "MySpace"
+msgstr "MySpace"
+
+#: src/Content/ContactSelector.php:89
+msgid "Google+"
+msgstr "Google+"
+
+#: src/Content/ContactSelector.php:90
+msgid "pump.io"
+msgstr "pump.io"
+
+#: src/Content/ContactSelector.php:91
+msgid "Twitter"
+msgstr "Twitter"
+
+#: src/Content/ContactSelector.php:92
+msgid "Diaspora Connector"
+msgstr "Diaspora Connector"
+
+#: src/Content/ContactSelector.php:93
+msgid "GNU Social Connector"
+msgstr "GNU social Connector"
+
+#: src/Content/ContactSelector.php:94
+msgid "pnut"
+msgstr "pnut"
+
+#: src/Content/ContactSelector.php:95
+msgid "App.net"
+msgstr "App.net"
+
+#: src/Content/ContactSelector.php:125
+msgid "Male"
+msgstr "Männlich"
+
+#: src/Content/ContactSelector.php:125
+msgid "Female"
+msgstr "Weiblich"
+
+#: src/Content/ContactSelector.php:125
+msgid "Currently Male"
+msgstr "Momentan männlich"
+
+#: src/Content/ContactSelector.php:125
+msgid "Currently Female"
+msgstr "Momentan weiblich"
+
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Male"
+msgstr "Hauptsächlich männlich"
+
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Female"
+msgstr "Hauptsächlich weiblich"
+
+#: src/Content/ContactSelector.php:125
+msgid "Transgender"
+msgstr "Transgender"
+
+#: src/Content/ContactSelector.php:125
+msgid "Intersex"
+msgstr "Intersex"
+
+#: src/Content/ContactSelector.php:125
+msgid "Transsexual"
+msgstr "Transsexuell"
+
+#: src/Content/ContactSelector.php:125
+msgid "Hermaphrodite"
+msgstr "Hermaphrodit"
+
+#: src/Content/ContactSelector.php:125
+msgid "Neuter"
+msgstr "Neuter"
+
+#: src/Content/ContactSelector.php:125
+msgid "Non-specific"
+msgstr "Nicht spezifiziert"
+
+#: src/Content/ContactSelector.php:125
+msgid "Other"
+msgstr "Andere"
+
+#: src/Content/ContactSelector.php:147
+msgid "Males"
+msgstr "Männer"
+
+#: src/Content/ContactSelector.php:147
+msgid "Females"
+msgstr "Frauen"
+
+#: src/Content/ContactSelector.php:147
+msgid "Gay"
+msgstr "Schwul"
+
+#: src/Content/ContactSelector.php:147
+msgid "Lesbian"
+msgstr "Lesbisch"
+
+#: src/Content/ContactSelector.php:147
+msgid "No Preference"
+msgstr "Keine Vorlieben"
+
+#: src/Content/ContactSelector.php:147
+msgid "Bisexual"
+msgstr "Bisexuell"
+
+#: src/Content/ContactSelector.php:147
+msgid "Autosexual"
+msgstr "Autosexual"
+
+#: src/Content/ContactSelector.php:147
+msgid "Abstinent"
+msgstr "Abstinent"
+
+#: src/Content/ContactSelector.php:147
+msgid "Virgin"
+msgstr "Jungfrauen"
+
+#: src/Content/ContactSelector.php:147
+msgid "Deviant"
+msgstr "Deviant"
+
+#: src/Content/ContactSelector.php:147
+msgid "Fetish"
+msgstr "Fetish"
+
+#: src/Content/ContactSelector.php:147
+msgid "Oodles"
+msgstr "Oodles"
+
+#: src/Content/ContactSelector.php:147
+msgid "Nonsexual"
+msgstr "Nonsexual"
+
+#: src/Content/ContactSelector.php:169
+msgid "Single"
+msgstr "Single"
+
+#: src/Content/ContactSelector.php:169
+msgid "Lonely"
+msgstr "Einsam"
+
+#: src/Content/ContactSelector.php:169
+msgid "Available"
+msgstr "Verfügbar"
+
+#: src/Content/ContactSelector.php:169
+msgid "Unavailable"
+msgstr "Nicht verfügbar"
+
+#: src/Content/ContactSelector.php:169
+msgid "Has crush"
+msgstr "verknallt"
+
+#: src/Content/ContactSelector.php:169
+msgid "Infatuated"
+msgstr "verliebt"
+
+#: src/Content/ContactSelector.php:169
+msgid "Dating"
+msgstr "Dating"
+
+#: src/Content/ContactSelector.php:169
+msgid "Unfaithful"
+msgstr "Untreu"
+
+#: src/Content/ContactSelector.php:169
+msgid "Sex Addict"
+msgstr "Sexbesessen"
+
+#: src/Content/ContactSelector.php:169
+msgid "Friends/Benefits"
+msgstr "Freunde/Zuwendungen"
+
+#: src/Content/ContactSelector.php:169
+msgid "Casual"
+msgstr "Casual"
+
+#: src/Content/ContactSelector.php:169
+msgid "Engaged"
+msgstr "Verlobt"
+
+#: src/Content/ContactSelector.php:169
+msgid "Married"
+msgstr "Verheiratet"
+
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily married"
+msgstr "imaginär verheiratet"
+
+#: src/Content/ContactSelector.php:169
+msgid "Partners"
+msgstr "Partner"
+
+#: src/Content/ContactSelector.php:169
+msgid "Cohabiting"
+msgstr "zusammenlebend"
+
+#: src/Content/ContactSelector.php:169
+msgid "Common law"
+msgstr "wilde Ehe"
+
+#: src/Content/ContactSelector.php:169
+msgid "Happy"
+msgstr "Glücklich"
+
+#: src/Content/ContactSelector.php:169
+msgid "Not looking"
+msgstr "Nicht auf der Suche"
+
+#: src/Content/ContactSelector.php:169
+msgid "Swinger"
+msgstr "Swinger"
+
+#: src/Content/ContactSelector.php:169
+msgid "Betrayed"
+msgstr "Betrogen"
+
+#: src/Content/ContactSelector.php:169
+msgid "Separated"
+msgstr "Getrennt"
+
+#: src/Content/ContactSelector.php:169
+msgid "Unstable"
+msgstr "Unstabil"
+
+#: src/Content/ContactSelector.php:169
+msgid "Divorced"
+msgstr "Geschieden"
+
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily divorced"
+msgstr "imaginär geschieden"
+
+#: src/Content/ContactSelector.php:169
+msgid "Widowed"
+msgstr "Verwitwet"
+
+#: src/Content/ContactSelector.php:169
+msgid "Uncertain"
+msgstr "Unsicher"
+
+#: src/Content/ContactSelector.php:169
+msgid "It's complicated"
+msgstr "Ist kompliziert"
+
+#: src/Content/ContactSelector.php:169
+msgid "Don't care"
+msgstr "Ist mir nicht wichtig"
+
+#: src/Content/ContactSelector.php:169
+msgid "Ask me"
+msgstr "Frag mich"
+
+#: src/Content/OEmbed.php:253
+msgid "Embedding disabled"
+msgstr "Einbettungen deaktiviert"
+
+#: src/Content/OEmbed.php:373
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
+
+#: src/Content/ForumManager.php:127 view/theme/vier/theme.php:256
+msgid "External link to forum"
+msgstr "Externer Link zum Forum"
+
+#: src/Content/Nav.php:53
+msgid "Nothing new here"
+msgstr "Keine Neuigkeiten"
+
+#: src/Content/Nav.php:57
+msgid "Clear notifications"
+msgstr "Bereinige Benachrichtigungen"
+
+#: src/Content/Nav.php:97 src/Module/Login.php:311
+#: view/theme/frio/theme.php:256
+msgid "Logout"
+msgstr "Abmelden"
+
+#: src/Content/Nav.php:97 view/theme/frio/theme.php:256
+msgid "End this session"
+msgstr "Diese Sitzung beenden"
+
+#: src/Content/Nav.php:100 src/Content/Nav.php:181
+#: view/theme/frio/theme.php:259
+msgid "Your posts and conversations"
+msgstr "Deine Beiträge und Unterhaltungen"
+
+#: src/Content/Nav.php:101 view/theme/frio/theme.php:260
+msgid "Your profile page"
+msgstr "Deine Profilseite"
+
+#: src/Content/Nav.php:102 view/theme/frio/theme.php:261
+msgid "Your photos"
+msgstr "Deine Fotos"
+
+#: src/Content/Nav.php:103 view/theme/frio/theme.php:262
+msgid "Your videos"
+msgstr "Deine Videos"
+
+#: src/Content/Nav.php:104 view/theme/frio/theme.php:263
+msgid "Your events"
+msgstr "Deine Ereignisse"
+
+#: src/Content/Nav.php:105
+msgid "Personal notes"
+msgstr "Persönliche Notizen"
+
+#: src/Content/Nav.php:105
+msgid "Your personal notes"
+msgstr "Deine persönlichen Notizen"
+
+#: src/Content/Nav.php:114 src/Module/Login.php:312 mod/bookmarklet.php:23
+msgid "Login"
+msgstr "Anmeldung"
+
+#: src/Content/Nav.php:114
+msgid "Sign in"
+msgstr "Anmelden"
+
+#: src/Content/Nav.php:124 src/Content/Nav.php:181
+#: src/Core/NotificationsManager.php:192
+msgid "Home"
+msgstr "Pinnwand"
+
+#: src/Content/Nav.php:124
+msgid "Home Page"
+msgstr "Homepage"
+
+#: src/Content/Nav.php:128 src/Module/Login.php:283 mod/register.php:279
+msgid "Register"
+msgstr "Registrieren"
+
+#: src/Content/Nav.php:128
+msgid "Create an account"
+msgstr "Nutzerkonto erstellen"
+
+#: src/Content/Nav.php:134 mod/help.php:54 view/theme/vier/theme.php:298
+msgid "Help"
+msgstr "Hilfe"
+
+#: src/Content/Nav.php:134
+msgid "Help and documentation"
+msgstr "Hilfe und Dokumentation"
+
+#: src/Content/Nav.php:138
+msgid "Apps"
+msgstr "Apps"
+
+#: src/Content/Nav.php:138
+msgid "Addon applications, utilities, games"
+msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
+
+#: src/Content/Nav.php:142
+msgid "Search site content"
+msgstr "Inhalt der Seite durchsuchen"
+
+#: src/Content/Nav.php:165
+msgid "Community"
+msgstr "Gemeinschaft"
+
+#: src/Content/Nav.php:165
+msgid "Conversations on this and other servers"
+msgstr "Unterhaltungen auf diesem und anderer Server"
+
+#: src/Content/Nav.php:172
+msgid "Directory"
+msgstr "Verzeichnis"
+
+#: src/Content/Nav.php:172
+msgid "People directory"
+msgstr "Nutzerverzeichnis"
+
+#: src/Content/Nav.php:174 mod/admin.php:179
+msgid "Information"
+msgstr "Information"
+
+#: src/Content/Nav.php:174
+msgid "Information about this friendica instance"
+msgstr "Informationen zu dieser Friendica Instanz"
+
+#: src/Content/Nav.php:178 src/Core/NotificationsManager.php:178
+#: mod/admin.php:758 view/theme/frio/theme.php:266
+msgid "Network"
+msgstr "Netzwerk"
+
+#: src/Content/Nav.php:178 view/theme/frio/theme.php:266
+msgid "Conversations from your friends"
+msgstr "Unterhaltungen Deiner Kontakte"
+
+#: src/Content/Nav.php:179
+msgid "Network Reset"
+msgstr "Netzwerk zurücksetzen"
+
+#: src/Content/Nav.php:179
+msgid "Load Network page with no filters"
+msgstr "Netzwerk-Seite ohne Filter laden"
+
+#: src/Content/Nav.php:185 src/Core/NotificationsManager.php:199
+msgid "Introductions"
+msgstr "Kontaktanfragen"
+
+#: src/Content/Nav.php:185
+msgid "Friend Requests"
+msgstr "Kontaktanfragen"
+
+#: src/Content/Nav.php:186 mod/notifications.php:98
+msgid "Notifications"
+msgstr "Benachrichtigungen"
+
+#: src/Content/Nav.php:187
+msgid "See all notifications"
+msgstr "Alle Benachrichtigungen anzeigen"
+
+#: src/Content/Nav.php:188 mod/settings.php:870
+msgid "Mark as seen"
+msgstr "Als gelesen markieren"
+
+#: src/Content/Nav.php:188
+msgid "Mark all system notifications seen"
+msgstr "Markiere alle Systembenachrichtigungen als gelesen"
+
+#: src/Content/Nav.php:191 mod/message.php:112 view/theme/frio/theme.php:268
+msgid "Messages"
+msgstr "Nachrichten"
+
+#: src/Content/Nav.php:191 view/theme/frio/theme.php:268
+msgid "Private mail"
+msgstr "Private E-Mail"
+
+#: src/Content/Nav.php:192
+msgid "Inbox"
+msgstr "Eingang"
+
+#: src/Content/Nav.php:193
+msgid "Outbox"
+msgstr "Ausgang"
+
+#: src/Content/Nav.php:194 mod/message.php:30
+msgid "New Message"
+msgstr "Neue Nachricht"
+
+#: src/Content/Nav.php:197
+msgid "Manage"
+msgstr "Verwalten"
+
+#: src/Content/Nav.php:197
+msgid "Manage other pages"
+msgstr "Andere Seiten verwalten"
+
+#: src/Content/Nav.php:200 mod/settings.php:93
+msgid "Delegations"
+msgstr "Delegationen"
+
+#: src/Content/Nav.php:200 mod/delegate.php:169
+msgid "Delegate Page Management"
+msgstr "Delegiere das Management für die Seite"
+
+#: src/Content/Nav.php:202 mod/settings.php:123 mod/admin.php:1920
+#: mod/admin.php:2189 mod/newmember.php:19 view/theme/frio/theme.php:269
+msgid "Settings"
+msgstr "Einstellungen"
+
+#: src/Content/Nav.php:202 view/theme/frio/theme.php:269
+msgid "Account settings"
+msgstr "Kontoeinstellungen"
+
+#: src/Content/Nav.php:205
+msgid "Manage/Edit Profiles"
+msgstr "Profile Verwalten/Editieren"
+
+#: src/Content/Nav.php:208 view/theme/frio/theme.php:270
+msgid "Manage/edit friends and contacts"
+msgstr " Kontakte verwalten/editieren"
+
+#: src/Content/Nav.php:213 mod/admin.php:222
+msgid "Admin"
+msgstr "Administration"
+
+#: src/Content/Nav.php:213
+msgid "Site setup and configuration"
+msgstr "Einstellungen der Seite und Konfiguration"
+
+#: src/Content/Nav.php:216
+msgid "Navigation"
+msgstr "Navigation"
+
+#: src/Content/Nav.php:216
+msgid "Site map"
+msgstr "Sitemap"
+
+#: src/Worker/Delivery.php:390
+msgid "(no subject)"
+msgstr "(kein Betreff)"
+
+#: src/App.php:511
+msgid "Delete this item?"
+msgstr "Diesen Beitrag löschen?"
+
+#: src/App.php:513
+msgid "show fewer"
+msgstr "weniger anzeigen"
+
+#: src/Module/Login.php:86 src/Module/Login.php:134 mod/openid.php:116
+msgid "Login failed."
+msgstr "Anmeldung fehlgeschlagen."
+
+#: src/Module/Login.php:282
+msgid "Create a New Account"
+msgstr "Neues Konto erstellen"
+
+#: src/Module/Login.php:314 mod/lostpass.php:119
+msgid "Nickname or Email: "
+msgstr "Spitzname oder E-Mail:"
+
+#: src/Module/Login.php:315
+msgid "Password: "
+msgstr "Passwort: "
+
+#: src/Module/Login.php:316
+msgid "Remember me"
+msgstr "Anmeldedaten merken"
+
+#: src/Module/Login.php:319
+msgid "Or login using OpenID: "
+msgstr "Oder melde Dich mit Deiner OpenID an: "
+
+#: src/Module/Login.php:325
+msgid "Forgot your password?"
+msgstr "Passwort vergessen?"
+
+#: src/Module/Login.php:326 mod/lostpass.php:136
+msgid "Password Reset"
+msgstr "Passwort zurücksetzen"
+
+#: src/Module/Login.php:328
+msgid "Website Terms of Service"
+msgstr "Website Nutzungsbedingungen"
+
+#: src/Module/Login.php:329
+msgid "terms of service"
+msgstr "Nutzungsbedingungen"
+
+#: src/Module/Login.php:331
+msgid "Website Privacy Policy"
+msgstr "Website Datenschutzerklärung"
+
+#: src/Module/Login.php:332
+msgid "privacy policy"
+msgstr "Datenschutzerklärung"
+
+#: src/Module/Tos.php:48 mod/admin.php:188 mod/admin.php:302
+#: mod/register.php:288
+msgid "Terms of Service"
+msgstr "Nutzungsbedingungen"
+
+#: src/Module/Tos.php:51
+msgid "Privacy Statement"
+msgstr "Datenschutzerklärung"
+
+#: src/Module/Tos.php:52
+msgid ""
+"At the time of registration, and for providing communications between the "
+"user account and their contacts, the user has to provide a display name (pen"
+" name), an username (nickname) and a working email address. The names will "
+"be accessible on the profile page of the account by any visitor of the page,"
+" even if other profile details are not displayed. The email address will "
+"only be used to send the user notifications about interactions, but wont be "
+"visibly displayed. The listing of an account in the node's user directory or"
+" the global user directory is optional and can be controlled in the user "
+"settings, it is not necessary for communication."
+msgstr "Zum Zwecke der Registrierung und um die Kommunikation zwischen dem Nutzer und seinen Kontakten zu gewährleisten, muß der Nutzer einen Namen (auch Pseudonym) und einen Nutzernamen (Spitzname) sowie eine funktionierende E-Mail-Adresse angeben. Der Name ist auf der Profilseite für alle Nutzer sichtbar, auch wenn die Profildetails nicht angezeigt werden.\nDie E-Mail-Adresse wird nur zur Benachrichtigung des Nutzers verwendet, sie wird nirgends angezeigt. Die Anzeige des Nutzerkontos im Server-Verzeichnis bzw. dem weltweiten Verzeichnis erfolgt gemäß den Einstellungen des Nutzers, sie ist zur Kommunikation nicht zwingend notwendig."
+
+#: src/Module/Tos.php:53
+msgid ""
+"This data is required for communication and is passed on to the nodes of the"
+" communication partners. Users can enter additional private data that may be"
+" transmitted to the communication partners accounts."
+msgstr "Diese Daten sind für die Kommunikation notwendig und werden an die Knoten der Kommunikationspartner übermittelt. Nutzer können weitere private Angaben machen, die ebenfalls an die verwendeten Server der Kommunikationspartner übermittelt werden können."
+
+#: src/Module/Tos.php:54
+#, php-format
+msgid ""
+"At any point in time a logged in user can export their account data from the"
+" account settings . If the user wants "
+"to delete their account they can do so at %1$s/removeme . The deletion of the account will "
+"be permanent."
+msgstr "Angemeldete Nutzer können ihre Nutzerdaten jederzeit von den Kontoeinstellungen aus exportieren. Wenn ein Nutzer wünscht das Nutzerkonto zu löschen, so ist dies jederzeit unter %1$s/removeme möglich. Die Löschung des Nutzerkontos ist permanent."
+
+#: src/Module/Logout.php:28
+msgid "Logged out."
+msgstr "Abgemeldet."
+
+#: src/Object/Image.php:953 src/Object/Image.php:969 src/Object/Image.php:977
+#: src/Object/Image.php:1002 mod/wall_upload.php:231 mod/item.php:471
+msgid "Wall Photos"
+msgstr "Pinnwand-Bilder"
+
+#: src/Object/Post.php:128
+msgid "This entry was edited"
+msgstr "Dieser Beitrag wurde bearbeitet."
+
+#: src/Object/Post.php:149 mod/photos.php:1308
+msgid "Private Message"
+msgstr "Private Nachricht"
+
+#: src/Object/Post.php:155 src/Object/Post.php:157 mod/settings.php:737
+msgid "Edit"
+msgstr "Bearbeiten"
+
+#: src/Object/Post.php:182
+msgid "save to folder"
+msgstr "In Ordner speichern"
+
+#: src/Object/Post.php:235
+msgid "I will attend"
+msgstr "Ich werde teilnehmen"
+
+#: src/Object/Post.php:235
+msgid "I will not attend"
+msgstr "Ich werde nicht teilnehmen"
+
+#: src/Object/Post.php:235
+msgid "I might attend"
+msgstr "Ich werde eventuell teilnehmen"
+
+#: src/Object/Post.php:263
+msgid "add star"
+msgstr "markieren"
+
+#: src/Object/Post.php:264
+msgid "remove star"
+msgstr "Markierung entfernen"
+
+#: src/Object/Post.php:265
+msgid "toggle star status"
+msgstr "Markierung umschalten"
+
+#: src/Object/Post.php:268
+msgid "starred"
+msgstr "markiert"
+
+#: src/Object/Post.php:274
+msgid "ignore thread"
+msgstr "Thread ignorieren"
+
+#: src/Object/Post.php:275
+msgid "unignore thread"
+msgstr "Thread nicht mehr ignorieren"
+
+#: src/Object/Post.php:276
+msgid "toggle ignore status"
+msgstr "Ignoriert-Status ein-/ausschalten"
+
+#: src/Object/Post.php:279 mod/ostatus_subscribe.php:83
+msgid "ignored"
+msgstr "Ignoriert"
+
+#: src/Object/Post.php:285
+msgid "add tag"
+msgstr "Tag hinzufügen"
+
+#: src/Object/Post.php:296 mod/photos.php:1471
+msgid "I like this (toggle)"
+msgstr "Ich mag das (toggle)"
+
+#: src/Object/Post.php:296
+msgid "like"
+msgstr "mag ich"
+
+#: src/Object/Post.php:297 mod/photos.php:1472
+msgid "I don't like this (toggle)"
+msgstr "Ich mag das nicht (toggle)"
+
+#: src/Object/Post.php:297
+msgid "dislike"
+msgstr "mag ich nicht"
+
+#: src/Object/Post.php:300
+msgid "Share this"
+msgstr "Weitersagen"
+
+#: src/Object/Post.php:300
+msgid "share"
+msgstr "Teilen"
+
+#: src/Object/Post.php:365
+msgid "to"
+msgstr "zu"
+
+#: src/Object/Post.php:366
+msgid "via"
+msgstr "via"
+
+#: src/Object/Post.php:367
+msgid "Wall-to-Wall"
+msgstr "Wall-to-Wall"
+
+#: src/Object/Post.php:368
+msgid "via Wall-To-Wall:"
+msgstr "via Wall-To-Wall:"
+
+#: src/Object/Post.php:399 src/Object/Post.php:795 mod/photos.php:1490
+#: mod/photos.php:1529 mod/photos.php:1602
+msgid "Comment"
+msgstr "Kommentar"
+
+#: src/Object/Post.php:427
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d Kommentar"
+msgstr[1] "%d Kommentare"
+
+#: src/Object/Post.php:793 mod/photos.php:1488 mod/photos.php:1527
+#: mod/photos.php:1600 mod/contacts.php:953
+msgid "This is you"
+msgstr "Das bist Du"
+
+#: src/Object/Post.php:796 mod/manage.php:184 mod/invite.php:155
+#: mod/profiles.php:672 mod/events.php:530 mod/fsuggest.php:114
+#: mod/photos.php:1080 mod/photos.php:1160 mod/photos.php:1445
+#: mod/photos.php:1491 mod/photos.php:1530 mod/photos.php:1603
+#: mod/message.php:265 mod/message.php:432 mod/localtime.php:56
+#: mod/crepair.php:148 mod/poke.php:199 mod/contacts.php:610
+#: mod/install.php:251 mod/install.php:290 view/theme/quattro/config.php:73
+#: view/theme/frio/config.php:113 view/theme/vier/config.php:119
+#: view/theme/duepuntozero/config.php:71
+msgid "Submit"
+msgstr "Senden"
+
+#: src/Object/Post.php:797
+msgid "Bold"
+msgstr "Fett"
+
+#: src/Object/Post.php:798
+msgid "Italic"
+msgstr "Kursiv"
+
+#: src/Object/Post.php:799
+msgid "Underline"
+msgstr "Unterstrichen"
+
+#: src/Object/Post.php:800
+msgid "Quote"
+msgstr "Zitat"
+
+#: src/Object/Post.php:801
+msgid "Code"
+msgstr "Code"
+
+#: src/Object/Post.php:802
+msgid "Image"
+msgstr "Bild"
+
+#: src/Object/Post.php:803
+msgid "Link"
+msgstr "Link"
+
+#: src/Object/Post.php:804
+msgid "Video"
+msgstr "Video"
+
+#: src/Database/DBStructure.php:32
+msgid "There are no tables on MyISAM."
+msgstr "Es gibt keine MyISAM Tabellen."
+
+#: src/Database/DBStructure.php:75
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\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."
+
+#: src/Database/DBStructure.php:80
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
+
+#: src/Database/DBStructure.php:191
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n"
+
+#: src/Database/DBStructure.php:194
+msgid "Errors encountered performing database changes: "
+msgstr "Fehler beim Ändern der Datenbank aufgetreten"
+
+#: src/Database/DBStructure.php:210
+msgid ": Database update"
+msgstr ": Datenbank Update"
+
+#: src/Database/DBStructure.php:460
+#, php-format
+msgid "%s: updating %s table."
+msgstr "%s: aktualisiere Tabelle %s"
+
+#: src/Core/UserImport.php:104
+msgid "Error decoding account file"
+msgstr "Fehler beim Verarbeiten der Account Datei"
+
+#: src/Core/UserImport.php:110
+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?"
+
+#: src/Core/UserImport.php:118
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
+
+#: src/Core/UserImport.php:151
+msgid "User creation error"
+msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
+
+#: src/Core/UserImport.php:169
+msgid "User profile creation error"
+msgstr "Fehler beim Anlegen des Nutzerkontos"
+
+#: src/Core/UserImport.php:213
+#, 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"
+
+#: src/Core/UserImport.php:278
+msgid "Done. You can now login with your username and password"
+msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
+
+#: src/Core/Console/NewPassword.php:78 mod/settings.php:394
+msgid ""
+"The new password has been exposed in a public data dump, please choose "
+"another."
+msgstr "Das neuer Passwort wurde in einem öffentlichen Daten-Dump veröffentlicht. Bitte verwende ein anderes Passwort."
+
+#: src/Core/Console/NewPassword.php:82 mod/settings.php:409
+msgid "Password update failed. Please try again."
+msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
+
+#: src/Core/Console/NewPassword.php:85 mod/settings.php:407
+msgid "Password changed."
+msgstr "Passwort geändert."
+
+#: src/Core/Console/GlobalCommunityBlock.php:69 mod/admin.php:443
+#, php-format
+msgid "Could not find any contact entry for this URL (%s)"
+msgstr "Für die URL (%s) konnte kein Kontakt gefunden werden"
+
+#: src/Core/Console/GlobalCommunityBlock.php:72 mod/admin.php:441
+msgid "The contact has been blocked from the node"
+msgstr "Der Kontakt wurde von diesem Knoten geblockt"
+
+#: src/Core/ACL.php:295
+msgid "Post to Email"
+msgstr "An E-Mail senden"
+
+#: src/Core/ACL.php:301
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
+
+#: src/Core/ACL.php:300
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
+
+#: src/Core/ACL.php:307
+msgid "Visible to everybody"
+msgstr "Für jeden sichtbar"
+
+#: src/Core/ACL.php:308 view/theme/vier/config.php:115
+msgid "show"
+msgstr "zeigen"
+
+#: src/Core/ACL.php:309 view/theme/vier/config.php:115
+msgid "don't show"
+msgstr "nicht zeigen"
+
+#: src/Core/ACL.php:315 mod/editpost.php:134
+msgid "CC: email addresses"
+msgstr "Cc: E-Mail-Addressen"
+
+#: src/Core/ACL.php:316 mod/editpost.php:141
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Z.B.: bob@example.com, mary@example.com"
+
+#: src/Core/ACL.php:318 mod/events.php:533 mod/photos.php:1098
+#: mod/photos.php:1441
+msgid "Permissions"
+msgstr "Berechtigungen"
+
+#: src/Core/ACL.php:319
+msgid "Close"
+msgstr "Schließen"
+
+#: src/Core/NotificationsManager.php:171
+msgid "System"
+msgstr "System"
+
+#: src/Core/NotificationsManager.php:185 mod/network.php:955
+#: mod/profiles.php:687
+msgid "Personal"
+msgstr "Persönlich"
+
+#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s hat %ss Beitrag kommentiert"
+
+#: src/Core/NotificationsManager.php:267
+#, php-format
+msgid "%s created a new post"
+msgstr "%s hat einen neuen Beitrag erstellt"
+
+#: src/Core/NotificationsManager.php:281
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s mag %ss Beitrag"
+
+#: src/Core/NotificationsManager.php:294
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s mag %ss Beitrag nicht"
+
+#: src/Core/NotificationsManager.php:307
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%s nimmt an %s's Event teil"
+
+#: src/Core/NotificationsManager.php:320
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%s nimmt nicht an %s's Event teil"
+
+#: src/Core/NotificationsManager.php:333
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%s nimmt eventuell an %s's Event teil"
+
+#: src/Core/NotificationsManager.php:350
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s ist jetzt mit %s befreundet"
+
+#: src/Core/NotificationsManager.php:825
+msgid "Friend Suggestion"
+msgstr "Kontaktvorschlag"
+
+#: src/Core/NotificationsManager.php:851
+msgid "Friend/Connect Request"
+msgstr "Kontakt-/Freundschaftsanfrage"
+
+#: src/Core/NotificationsManager.php:851
+msgid "New Follower"
+msgstr "Neuer Bewunderer"
+
+#: src/Util/Temporal.php:81 src/Util/Temporal.php:83 mod/profiles.php:689
+msgid "Miscellaneous"
+msgstr "Verschiedenes"
+
+#: src/Util/Temporal.php:149 mod/profiles.php:712
+msgid "Age: "
+msgstr "Alter: "
+
+#: src/Util/Temporal.php:151
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "YYYY-MM-DD oder MM-DD"
+
+#: src/Util/Temporal.php:294
+msgid "never"
+msgstr "nie"
+
+#: src/Util/Temporal.php:300
+msgid "less than a second ago"
+msgstr "vor weniger als einer Sekunde"
+
+#: src/Util/Temporal.php:303
+msgid "year"
+msgstr "Jahr"
+
+#: src/Util/Temporal.php:303
+msgid "years"
+msgstr "Jahre"
+
+#: src/Util/Temporal.php:304
+msgid "months"
+msgstr "Monate"
+
+#: src/Util/Temporal.php:305
+msgid "weeks"
+msgstr "Wochen"
+
+#: src/Util/Temporal.php:306
+msgid "days"
+msgstr "Tage"
+
+#: src/Util/Temporal.php:307
+msgid "hour"
+msgstr "Stunde"
+
+#: src/Util/Temporal.php:307
+msgid "hours"
+msgstr "Stunden"
+
+#: src/Util/Temporal.php:308
+msgid "minute"
+msgstr "Minute"
+
+#: src/Util/Temporal.php:308
+msgid "minutes"
+msgstr "Minuten"
+
+#: src/Util/Temporal.php:309
+msgid "second"
+msgstr "Sekunde"
+
+#: src/Util/Temporal.php:309
+msgid "seconds"
+msgstr "Sekunden"
+
+#: src/Util/Temporal.php:318
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "vor %1$d %2$s"
+
+#: src/Protocol/OStatus.php:1251 mod/profile.php:80
+#, php-format
+msgid "%s's timeline"
+msgstr "Timeline von %s"
+
+#: src/Protocol/OStatus.php:1252 mod/profile.php:78
+#, php-format
+msgid "%s's posts"
+msgstr "Beiträge von %s"
+
+#: src/Protocol/OStatus.php:1253 mod/profile.php:79
+#, php-format
+msgid "%s's comments"
+msgstr "Kommentare von %s"
+
+#: src/Protocol/OStatus.php:1799
+#, php-format
+msgid "%s is now following %s."
+msgstr "%s folgt nun %s"
+
+#: src/Protocol/OStatus.php:1800
+msgid "following"
+msgstr "folgen"
+
+#: src/Protocol/OStatus.php:1803
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%s hat aufgehört %s zu folgen"
+
+#: src/Protocol/OStatus.php:1804
+msgid "stopped following"
+msgstr "wird nicht mehr gefolgt"
+
+#: src/Protocol/Diaspora.php:2680
+msgid "Sharing notification from Diaspora network"
+msgstr "Freigabe-Benachrichtigung von Diaspora"
+
+#: src/Protocol/Diaspora.php:3756
+msgid "Attachments:"
+msgstr "Anhänge:"
+
+#: mod/directory.php:42 mod/display.php:203 mod/viewcontacts.php:45
+#: mod/photos.php:932 mod/community.php:27 mod/videos.php:199
+#: mod/dfrn_request.php:607 mod/search.php:98 mod/search.php:104
+#: mod/probe.php:13 mod/webfinger.php:16
+msgid "Public access denied."
+msgstr "Öffentlicher Zugriff verweigert."
+
+#: mod/directory.php:202 view/theme/vier/theme.php:201
+msgid "Global Directory"
+msgstr "Weltweites Verzeichnis"
+
+#: mod/directory.php:204
+msgid "Find on this site"
+msgstr "Auf diesem Server suchen"
+
+#: mod/directory.php:206
+msgid "Results for:"
+msgstr "Ergebnisse für:"
+
+#: mod/directory.php:208
+msgid "Site Directory"
+msgstr "Verzeichnis"
+
+#: mod/directory.php:213
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
+
+#: mod/dirfind.php:49
+#, php-format
+msgid "People Search - %s"
+msgstr "Personensuche - %s"
+
+#: mod/dirfind.php:60
+#, php-format
+msgid "Forum Search - %s"
+msgstr "Forensuche - %s"
+
+#: mod/dirfind.php:253 mod/match.php:125
+msgid "No matches"
+msgstr "Keine Übereinstimmungen"
#: mod/repair_ostatus.php:18
msgid "Resubscribing to OStatus contacts"
@@ -1683,6 +3446,18 @@ msgstr "Erledigt"
msgid "Keep this window open until done."
msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
+#: mod/ping.php:292
+msgid "{0} wants to be your friend"
+msgstr "{0} möchte mit Dir in Kontakt treten"
+
+#: mod/ping.php:307
+msgid "{0} sent you a message"
+msgstr "{0} schickte Dir eine Nachricht"
+
+#: mod/ping.php:322
+msgid "{0} requested registration"
+msgstr "{0} möchte sich registrieren"
+
#: mod/suggest.php:36
msgid "Do you really want to delete this suggestion?"
msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
@@ -1697,12 +3472,134 @@ msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde,
msgid "Ignore/Hide"
msgstr "Ignorieren/Verbergen"
-#: mod/suggest.php:114 view/theme/vier/theme.php:203 src/Content/Widget.php:64
-msgid "Friend Suggestions"
-msgstr "Kontaktvorschläge"
+#: mod/display.php:313 mod/profile.php:173 mod/cal.php:142
+msgid "Access to this profile has been restricted."
+msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
-#: mod/update_community.php:27 mod/update_display.php:27
-#: mod/update_notes.php:40 mod/update_profile.php:39 mod/update_network.php:33
+#: mod/profile_photo.php:55
+msgid "Image uploaded but image cropping failed."
+msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
+
+#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104
+#: mod/profile_photo.php:315
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
+
+#: mod/profile_photo.php:125
+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:153 mod/photos.php:763 mod/photos.php:766
+#: mod/photos.php:795 mod/wall_upload.php:186
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr "Bildgröße überschreitet das Limit von %s"
+
+#: mod/profile_photo.php:162 mod/photos.php:818 mod/wall_upload.php:200
+msgid "Unable to process image."
+msgstr "Konnte das Bild nicht bearbeiten."
+
+#: mod/profile_photo.php:247
+msgid "Upload File:"
+msgstr "Datei hochladen:"
+
+#: mod/profile_photo.php:248
+msgid "Select a profile:"
+msgstr "Profil auswählen:"
+
+#: mod/profile_photo.php:249 mod/profiles.php:691 mod/newmember.php:26
+msgid "Upload Profile Photo"
+msgstr "Profilbild hochladen"
+
+#: mod/profile_photo.php:250 mod/fbrowser.php:105 mod/fbrowser.php:136
+msgid "Upload"
+msgstr "Hochladen"
+
+#: mod/profile_photo.php:253
+msgid "or"
+msgstr "oder"
+
+#: mod/profile_photo.php:253
+msgid "skip this step"
+msgstr "diesen Schritt überspringen"
+
+#: mod/profile_photo.php:253
+msgid "select a photo from your photo albums"
+msgstr "wähle ein Foto aus deinen Fotoalben"
+
+#: mod/profile_photo.php:266
+msgid "Crop Image"
+msgstr "Bild zurechtschneiden"
+
+#: mod/profile_photo.php:267
+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:269
+msgid "Done Editing"
+msgstr "Bearbeitung abgeschlossen"
+
+#: mod/profile_photo.php:305
+msgid "Image uploaded successfully."
+msgstr "Bild erfolgreich hochgeladen."
+
+#: mod/profile_photo.php:307 mod/photos.php:847 mod/wall_upload.php:239
+msgid "Image upload failed."
+msgstr "Hochladen des Bildes gescheitert."
+
+#: mod/removeme.php:43
+msgid "User deleted their account"
+msgstr "Gelöschter Nutzeraccount"
+
+#: mod/removeme.php:44
+msgid ""
+"On your Friendica node an user deleted their account. Please ensure that "
+"their data is removed from the backups."
+msgstr "Ein Nutzer deiner Friendica Instanz hat seinen Account gelöscht. Bitte stelle sicher, dass deren Daten aus deinen Backups entfernt werden."
+
+#: mod/removeme.php:45
+#, php-format
+msgid "The user id is %d"
+msgstr "Die ID des Users lautet %d"
+
+#: mod/removeme.php:76 mod/removeme.php:79
+msgid "Remove My Account"
+msgstr "Konto löschen"
+
+#: mod/removeme.php:77
+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:78
+msgid "Please enter your password for verification:"
+msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
+
+#: mod/manage.php:180
+msgid "Manage Identities and/or Pages"
+msgstr "Verwalte Identitäten und/oder Seiten"
+
+#: mod/manage.php:181
+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:182
+msgid "Select an identity to manage: "
+msgstr "Wähle eine Identität zum Verwalten aus: "
+
+#: mod/update_notes.php:40 mod/update_display.php:27
+#: mod/update_community.php:27 mod/update_network.php:33
+#: mod/update_profile.php:39
msgid "[Embedded content - reload page to view]"
msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
@@ -1747,190 +3644,114 @@ msgid ""
"select \"Export account\""
msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
-#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
+#: mod/invite.php:33
+msgid "Total invitation limit exceeded."
+msgstr "Limit für Einladungen erreicht."
+
+#: mod/invite.php:55
#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s heißt %2$s herzlich willkommen"
+msgid "%s : Not a valid email address."
+msgstr "%s: Keine gültige Email Adresse."
-#: mod/match.php:48
-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/invite.php:87
+msgid "Please join us on Friendica"
+msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
-#: mod/match.php:104
-msgid "is interested in:"
-msgstr "ist interessiert an:"
+#: mod/invite.php:96
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
-#: mod/match.php:120
-msgid "Profile Match"
-msgstr "Profilübereinstimmungen"
-
-#: mod/match.php:125 mod/dirfind.php:253
-msgid "No matches"
-msgstr "Keine Übereinstimmungen"
-
-#: mod/notifications.php:37
-msgid "Invalid request identifier."
-msgstr "Invalid request identifier."
-
-#: mod/notifications.php:46 mod/notifications.php:183
-#: mod/notifications.php:230
-msgid "Discard"
-msgstr "Verwerfen"
-
-#: mod/notifications.php:62 mod/notifications.php:182
-#: mod/notifications.php:266 mod/contacts.php:638 mod/contacts.php:828
-#: mod/contacts.php:1019
-msgid "Ignore"
-msgstr "Ignorieren"
-
-#: mod/notifications.php:98 src/Content/Nav.php:189
-msgid "Notifications"
-msgstr "Benachrichtigungen"
-
-#: mod/notifications.php:107
-msgid "Network Notifications"
-msgstr "Netzwerk Benachrichtigungen"
-
-#: mod/notifications.php:113 mod/notify.php:81
-msgid "System Notifications"
-msgstr "Systembenachrichtigungen"
-
-#: mod/notifications.php:119
-msgid "Personal Notifications"
-msgstr "Persönliche Benachrichtigungen"
-
-#: mod/notifications.php:125
-msgid "Home Notifications"
-msgstr "Pinnwand Benachrichtigungen"
-
-#: mod/notifications.php:155
-msgid "Show Ignored Requests"
-msgstr "Zeige ignorierte Anfragen"
-
-#: mod/notifications.php:155
-msgid "Hide Ignored Requests"
-msgstr "Verberge ignorierte Anfragen"
-
-#: mod/notifications.php:167 mod/notifications.php:237
-msgid "Notification type: "
-msgstr "Benachrichtigungstyp: "
-
-#: mod/notifications.php:170
+#: mod/invite.php:100
#, php-format
-msgid "suggested by %s"
-msgstr "vorgeschlagen von %s"
+msgid "%s : Message delivery failed."
+msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
-#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
-msgid "Hide this contact from others"
-msgstr "Verbirg diesen Kontakt vor Anderen"
+#: mod/invite.php:104
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d Nachricht gesendet."
+msgstr[1] "%d Nachrichten gesendet."
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "Post a new friend activity"
-msgstr "Neue-Kontakt Nachricht senden"
+#: mod/invite.php:122
+msgid "You have no more invitations available"
+msgstr "Du hast keine weiteren Einladungen"
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "if applicable"
-msgstr "falls anwendbar"
-
-#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1796
-msgid "Approve"
-msgstr "Genehmigen"
-
-#: mod/notifications.php:198
-msgid "Claims to be known to you: "
-msgstr "Behauptet Dich zu kennen: "
-
-#: mod/notifications.php:199
-msgid "yes"
-msgstr "ja"
-
-#: mod/notifications.php:199
-msgid "no"
-msgstr "nein"
-
-#: mod/notifications.php:200 mod/notifications.php:205
-msgid "Shall your connection be bidirectional or not?"
-msgstr "Soll die Verbindung beidseitig sein oder nicht?"
-
-#: mod/notifications.php:201 mod/notifications.php:206
+#: mod/invite.php:130
#, php-format
msgid ""
-"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
-"also receive updates from them in your news feed."
-msgstr "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s."
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
-#: mod/notifications.php:202
+#: mod/invite.php:132
#, php-format
msgid ""
-"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
-" will not receive updates from them in your news feed."
-msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
-#: mod/notifications.php:207
+#: mod/invite.php:133
#, php-format
msgid ""
-"Accepting %s as a sharer allows them to subscribe to your posts, but you "
-"will not receive updates from them in your news feed."
-msgstr "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."
-#: mod/notifications.php:218
-msgid "Friend"
-msgstr "Kontakt"
+#: mod/invite.php:137
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
-#: mod/notifications.php:219
-msgid "Sharer"
-msgstr "Teilenden"
+#: mod/invite.php:141
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks."
+msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden."
-#: mod/notifications.php:219
-msgid "Subscriber"
-msgstr "Abonnent"
-
-#: mod/notifications.php:247 mod/contacts.php:660 mod/events.php:518
-#: mod/directory.php:148 src/Model/Event.php:60 src/Model/Event.php:85
-#: src/Model/Event.php:421 src/Model/Event.php:900 src/Model/Profile.php:417
-msgid "Location:"
-msgstr "Ort:"
-
-#: mod/notifications.php:249 mod/contacts.php:664 mod/directory.php:154
-#: src/Model/Profile.php:423 src/Model/Profile.php:808
-msgid "About:"
-msgstr "Über:"
-
-#: mod/notifications.php:251 mod/contacts.php:666 mod/follow.php:174
-#: src/Model/Profile.php:796
-msgid "Tags:"
-msgstr "Tags:"
-
-#: mod/notifications.php:253 mod/directory.php:151 src/Model/Profile.php:420
-#: src/Model/Profile.php:747
-msgid "Gender:"
-msgstr "Geschlecht:"
-
-#: mod/notifications.php:258 mod/contacts.php:656 mod/unfollow.php:122
-#: mod/admin.php:490 mod/admin.php:500 mod/follow.php:166
-msgid "Profile URL"
-msgstr "Profil URL"
-
-#: mod/notifications.php:261 mod/contacts.php:71 src/Model/Profile.php:520
-msgid "Network:"
-msgstr "Netzwerk:"
-
-#: mod/notifications.php:275
-msgid "No introductions."
-msgstr "Keine Kontaktanfragen."
-
-#: mod/notifications.php:316
-msgid "Show unread"
-msgstr "Ungelesene anzeigen"
-
-#: mod/notifications.php:316
-msgid "Show all"
-msgstr "Alle anzeigen"
-
-#: mod/notifications.php:322
+#: mod/invite.php:140
#, php-format
-msgid "No more %s notifications."
-msgstr "Keine weiteren %s Benachrichtigungen"
+msgid "To accept this invitation, please visit and register at %s."
+msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s."
+
+#: mod/invite.php:147
+msgid "Send invitations"
+msgstr "Einladungen senden"
+
+#: mod/invite.php:148
+msgid "Enter email addresses, one per line:"
+msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
+
+#: mod/invite.php:149 mod/message.php:259 mod/message.php:426
+#: mod/wallmessage.php:141
+msgid "Your message:"
+msgstr "Deine Nachricht:"
+
+#: mod/invite.php:150
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
+
+#: mod/invite.php:152
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
+
+#: mod/invite.php:152
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
+
+#: mod/invite.php:154
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendi.ca"
+msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca."
#: mod/openid.php:29
msgid "OpenID protocol error. No ID returned."
@@ -1941,645 +3762,560 @@ msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
-#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:134
-msgid "Login failed."
-msgstr "Anmeldung fehlgeschlagen."
+#: mod/hcard.php:18
+msgid "No profile"
+msgstr "Kein Profil"
-#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149
-#: mod/profiles.php:196 mod/profiles.php:618
-msgid "Profile not found."
-msgstr "Profil nicht gefunden."
+#: mod/apps.php:14 index.php:273
+msgid "You must be logged in to use addons. "
+msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
-#: mod/dfrn_confirm.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/apps.php:19
+msgid "Applications"
+msgstr "Anwendungen"
-#: mod/dfrn_confirm.php:242
-msgid "Response from remote site was not understood."
-msgstr "Antwort der Gegenstelle unverständlich."
+#: mod/apps.php:22
+msgid "No installed applications."
+msgstr "Keine Applikationen installiert."
-#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr "Unerwartete Antwort der Gegenstelle: "
-
-#: mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "Bestätigung erfolgreich abgeschlossen."
-
-#: mod/dfrn_confirm.php:275
-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:278
-msgid "Introduction failed or was revoked."
-msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
-
-#: mod/dfrn_confirm.php:283
-msgid "Remote site reported: "
-msgstr "Gegenstelle meldet: "
-
-#: mod/dfrn_confirm.php:396
-msgid "Unable to set contact photo."
-msgstr "Konnte das Bild des Kontakts nicht speichern."
-
-#: mod/dfrn_confirm.php:498
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Für '%s' wurde kein Nutzer gefunden"
-
-#: mod/dfrn_confirm.php:508
-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:519
-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:535
-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:549
-#, 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:565
-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:576
-msgid "Unable to set your contact credentials on our system."
-msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
-
-#: mod/dfrn_confirm.php:631
-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:661 mod/dfrn_request.php:568
-#: src/Model/Contact.php:1537
-msgid "[Name Withheld]"
-msgstr "[Name unterdrückt]"
-
-#: mod/dfrn_confirm.php:694
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s ist %2$s beigetreten"
-
-#: mod/manage.php:180
-msgid "Manage Identities and/or Pages"
-msgstr "Verwalte Identitäten und/oder Seiten"
-
-#: mod/manage.php:181
-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:182
-msgid "Select an identity to manage: "
-msgstr "Wähle eine Identität zum Verwalten aus: "
-
-#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83
-#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112
-#: mod/wall_upload.php:155 mod/wall_upload.php:158
-msgid "Invalid request."
-msgstr "Ungültige Anfrage"
-
-#: mod/wall_attach.php:101
-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:101
-msgid "Or - did you try to upload an empty file?"
-msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
-
-#: mod/wall_attach.php:112
-#, 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:136 mod/wall_attach.php:152
-msgid "File upload failed."
-msgstr "Hochladen der Datei fehlgeschlagen."
-
-#: mod/dfrn_request.php:94
-msgid "This introduction has already been accepted."
-msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
-
-#: mod/dfrn_request.php:112 mod/dfrn_request.php:359
-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:116 mod/dfrn_request.php:363
-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:119 mod/dfrn_request.php:366
-msgid "Warning: profile location has no profile photo."
-msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
-
-#: mod/dfrn_request.php:123 mod/dfrn_request.php:370
-#, 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:162
-msgid "Introduction complete."
-msgstr "Kontaktanfrage abgeschlossen."
-
-#: mod/dfrn_request.php:199
-msgid "Unrecoverable protocol error."
-msgstr "Nicht behebbarer Protokollfehler."
-
-#: mod/dfrn_request.php:226
-msgid "Profile unavailable."
-msgstr "Profil nicht verfügbar."
-
-#: mod/dfrn_request.php:248
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s hat heute zu viele Kontaktanfragen erhalten."
-
-#: mod/dfrn_request.php:249
-msgid "Spam protection measures have been invoked."
-msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
-
-#: mod/dfrn_request.php:250
-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:280
-msgid "Invalid locator"
-msgstr "Ungültiger Locator"
-
-#: mod/dfrn_request.php:316
-msgid "You have already introduced yourself here."
-msgstr "Du hast Dich hier bereits vorgestellt."
-
-#: mod/dfrn_request.php:319
-#, 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:339
-msgid "Invalid profile URL."
-msgstr "Ungültige Profil-URL."
-
-#: mod/dfrn_request.php:345 src/Model/Contact.php:1235
-msgid "Disallowed profile URL."
-msgstr "Nicht erlaubte Profil-URL."
-
-#: mod/dfrn_request.php:351 mod/admin.php:353 mod/admin.php:371
-#: mod/friendica.php:128 src/Model/Contact.php:1240
-msgid "Blocked domain"
-msgstr "Blockierte Domain"
-
-#: mod/dfrn_request.php:419 mod/contacts.php:230
-msgid "Failed to update contact record."
-msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
-
-#: mod/dfrn_request.php:439
-msgid "Your introduction has been sent."
-msgstr "Deine Kontaktanfrage wurde gesendet."
-
-#: mod/dfrn_request.php:477
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
-msgstr "Entferntes abonnieren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. "
-
-#: mod/dfrn_request.php:493
-msgid "Please login to confirm introduction."
-msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
-
-#: mod/dfrn_request.php:501
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"this profile."
-msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."
-
-#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
-msgid "Confirm"
-msgstr "Bestätigen"
-
-#: mod/dfrn_request.php:527
-msgid "Hide this contact"
-msgstr "Verberge diesen Kontakt"
-
-#: mod/dfrn_request.php:530
-#, php-format
-msgid "Welcome home %s."
-msgstr "Willkommen zurück %s."
-
-#: mod/dfrn_request.php:531
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
-
-#: mod/dfrn_request.php:607 mod/probe.php:13 mod/search.php:98
-#: mod/search.php:104 mod/viewcontacts.php:45 mod/webfinger.php:16
-#: mod/community.php:27 mod/photos.php:932 mod/videos.php:199
-#: mod/display.php:203 mod/directory.php:42
-msgid "Public access denied."
-msgstr "Öffentlicher Zugriff verweigert."
-
-#: mod/dfrn_request.php:642
-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:645
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, follow "
-"this link to find a public Friendica site and join us today ."
-msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica Server zu finden und beizutreten."
-
-#: mod/dfrn_request.php:650
-msgid "Friend/Connection Request"
-msgstr "Kontaktanfrage"
-
-#: mod/dfrn_request.php:651
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@gnusocial.de"
-msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"
-
-#: mod/dfrn_request.php:652 mod/follow.php:149
-msgid "Please answer the following:"
-msgstr "Bitte beantworte folgendes:"
-
-#: mod/dfrn_request.php:653 mod/follow.php:150
-#, php-format
-msgid "Does %s know you?"
-msgstr "Kennt %s Dich?"
-
-#: mod/dfrn_request.php:654 mod/follow.php:151
-msgid "Add a personal note:"
-msgstr "Eine persönliche Notiz beifügen:"
-
-#: mod/dfrn_request.php:656 src/Content/ContactSelector.php:79
-msgid "Friendica"
-msgstr "Friendica"
-
-#: mod/dfrn_request.php:657
-msgid "GNU Social (Pleroma, Mastodon)"
-msgstr "GNU Social (Pleroma, Mastodon)"
-
-#: mod/dfrn_request.php:658
-msgid "Diaspora (Socialhome, Hubzilla)"
-msgstr "Diaspora (Socialhome, Hubzilla)"
-
-#: mod/dfrn_request.php:659
-#, php-format
-msgid ""
-" - please do not use this form. Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."
-
-#: mod/dfrn_request.php:660 mod/unfollow.php:113 mod/follow.php:157
-msgid "Your Identity Address:"
-msgstr "Adresse Deines Profils:"
-
-#: mod/dfrn_request.php:662 mod/unfollow.php:65 mod/follow.php:62
-msgid "Submit Request"
-msgstr "Anfrage abschicken"
-
-#: mod/filer.php:34
-msgid "- select -"
-msgstr "- auswählen -"
-
-#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814
-msgid "l F d, Y \\@ g:i A"
-msgstr "l, d. F Y\\, H:i"
-
-#: mod/localtime.php:33
-msgid "Time Conversion"
-msgstr "Zeitumrechnung"
-
-#: mod/localtime.php:35
-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:39
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC Zeit: %s"
-
-#: mod/localtime.php:42
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Aktuelle Zeitzone: %s"
-
-#: mod/localtime.php:46
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Umgerechnete lokale Zeit: %s"
-
-#: mod/localtime.php:52
-msgid "Please select your timezone:"
-msgstr "Bitte wähle Deine Zeitzone:"
-
-#: mod/notify.php:77
-msgid "No more system notifications."
-msgstr "Keine weiteren Systembenachrichtigungen."
-
-#: mod/ping.php:292
-msgid "{0} wants to be your friend"
-msgstr "{0} möchte mit Dir in Kontakt treten"
-
-#: mod/ping.php:307
-msgid "{0} sent you a message"
-msgstr "{0} schickte Dir eine Nachricht"
-
-#: mod/ping.php:322
-msgid "{0} requested registration"
-msgstr "{0} möchte sich registrieren"
-
-#: 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/probe.php:14 mod/webfinger.php:17
-msgid "Only logged in users are permitted to perform a probing."
-msgstr "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet."
-
-#: mod/profperm.php:28 mod/group.php:83 index.php:443
-msgid "Permission denied"
-msgstr "Zugriff verweigert"
-
-#: mod/profperm.php:34 mod/profperm.php:65
-msgid "Invalid profile identifier."
-msgstr "Ungültiger Profil-Bezeichner."
-
-#: mod/profperm.php:111
-msgid "Profile Visibility Editor"
-msgstr "Editor für die Profil-Sichtbarkeit"
-
-#: mod/profperm.php:115 mod/group.php:265
-msgid "Click on a contact to add or remove."
-msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
-
-#: mod/profperm.php:124
-msgid "Visible To"
-msgstr "Sichtbar für"
-
-#: mod/profperm.php:140
-msgid "All Contacts (with secure profile access)"
-msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
-
-#: mod/regmod.php:68
-msgid "Account approved."
-msgstr "Konto freigegeben."
-
-#: mod/regmod.php:93
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrierung für %s wurde zurückgezogen"
-
-#: mod/regmod.php:102
-msgid "Please login."
-msgstr "Bitte melde Dich an."
-
-#: mod/search.php:37 mod/network.php:194
+#: mod/network.php:194 mod/search.php:37
msgid "Remove term"
msgstr "Begriff entfernen"
-#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100
-msgid "Saved Searches"
-msgstr "Gespeicherte Suchen"
-
-#: mod/search.php:105
-msgid "Only logged in users are permitted to perform a search."
-msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
-
-#: mod/search.php:129
-msgid "Too Many Requests"
-msgstr "Zu viele Abfragen"
-
-#: mod/search.php:130
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."
-
-#: mod/search.php:228 mod/community.php:136
-msgid "No results."
-msgstr "Keine Ergebnisse."
-
-#: mod/search.php:234
+#: mod/network.php:547
#, php-format
-msgid "Items tagged with: %s"
-msgstr "Beiträge die mit %s getaggt sind"
+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 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/search.php:236 mod/contacts.php:819
+#: mod/network.php:550
+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:618
+msgid "No such group"
+msgstr "Es gibt keine solche Gruppe"
+
+#: mod/network.php:639 mod/group.php:216
+msgid "Group is empty"
+msgstr "Gruppe ist leer"
+
+#: mod/network.php:643
#, php-format
-msgid "Results for: %s"
-msgstr "Ergebnisse für: %s"
+msgid "Group: %s"
+msgstr "Gruppe: %s"
+
+#: mod/network.php:669
+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:672
+msgid "Invalid contact."
+msgstr "Ungültiger Kontakt."
+
+#: mod/network.php:936
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
+
+#: mod/network.php:939
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortieren"
+
+#: mod/network.php:944
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
+
+#: mod/network.php:947
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortieren"
+
+#: mod/network.php:958
+msgid "Posts that mention or involve you"
+msgstr "Beiträge, in denen es um Dich geht"
+
+#: mod/network.php:966
+msgid "New"
+msgstr "Neue"
+
+#: mod/network.php:969
+msgid "Activity Stream - by date"
+msgstr "Aktivitäten-Stream - nach Datum"
+
+#: mod/network.php:977
+msgid "Shared Links"
+msgstr "Geteilte Links"
+
+#: mod/network.php:980
+msgid "Interesting Links"
+msgstr "Interessante Links"
+
+#: mod/network.php:988
+msgid "Starred"
+msgstr "Markierte"
+
+#: mod/network.php:991
+msgid "Favourite Posts"
+msgstr "Favorisierte Beiträge"
+
+#: mod/friendica.php:77
+msgid "This is Friendica, version"
+msgstr "Dies ist Friendica, Version"
+
+#: mod/friendica.php:78
+msgid "running at web location"
+msgstr "die unter folgender Webadresse zu finden ist"
+
+#: mod/friendica.php:82
+msgid ""
+"Please visit Friendi.ca to learn more "
+"about the Friendica project."
+msgstr "Bitte besuche Friendi.ca um mehr über das Friendica Projekt zu erfahren."
+
+#: mod/friendica.php:86
+msgid "Bug reports and issues: please visit"
+msgstr "Probleme oder Fehler gefunden? Bitte besuche"
+
+#: mod/friendica.php:86
+msgid "the bugtracker at github"
+msgstr "den Bugtracker auf github"
+
+#: mod/friendica.php:89
+msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
+msgstr "Vorschläge, Lob usw.: E-Mail an \"Info\" at \"Friendi - dot ca\""
+
+#: mod/friendica.php:103
+msgid "Installed addons/apps:"
+msgstr "Installierte Apps und Addons"
+
+#: mod/friendica.php:117
+msgid "No installed addons/apps"
+msgstr "Es sind keine Addons oder Apps installiert"
+
+#: mod/friendica.php:122
+#, php-format
+msgid "Read about the Terms of Service of this node."
+msgstr "Erfahre mehr über die Nutzungsbedingungen dieses Knotens."
+
+#: mod/friendica.php:127
+msgid "On this server the following remote servers are blocked."
+msgstr "Auf diesem Server werden die folgenden entfernten Server blockiert."
+
+#: mod/friendica.php:128 mod/admin.php:354 mod/admin.php:372
+msgid "Reason for the block"
+msgstr "Begründung für die Blockierung"
#: mod/subthread.php:113
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr "%1$s folgt %2$s %3$s"
-#: mod/tagrm.php:47
-msgid "Tag removed"
-msgstr "Tag entfernt"
+#: mod/profiles.php:39 mod/profiles.php:149 mod/profiles.php:196
+#: mod/profiles.php:618 mod/dfrn_confirm.php:74
+msgid "Profile not found."
+msgstr "Profil nicht gefunden."
-#: mod/tagrm.php:85
-msgid "Remove Item Tag"
-msgstr "Gegenstands-Tag entfernen"
+#: mod/profiles.php:58
+msgid "Profile deleted."
+msgstr "Profil gelöscht."
-#: mod/tagrm.php:87
-msgid "Select a tag to remove: "
-msgstr "Wähle ein Tag zum Entfernen aus: "
+#: mod/profiles.php:74 mod/profiles.php:110
+msgid "Profile-"
+msgstr "Profil-"
-#: mod/tagrm.php:98 mod/delegate.php:177
-msgid "Remove"
-msgstr "Entfernen"
+#: mod/profiles.php:93 mod/profiles.php:132
+msgid "New profile created."
+msgstr "Neues Profil angelegt."
-#: mod/uexport.php:44
-msgid "Export account"
-msgstr "Account exportieren"
+#: mod/profiles.php:116
+msgid "Profile unavailable to clone."
+msgstr "Profil nicht zum Duplizieren verfügbar."
-#: mod/uexport.php:44
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."
+#: mod/profiles.php:206
+msgid "Profile Name is required."
+msgstr "Profilname ist erforderlich."
-#: mod/uexport.php:45
-msgid "Export all"
-msgstr "Alles exportieren"
+#: mod/profiles.php:347
+msgid "Marital Status"
+msgstr "Familienstand"
-#: mod/uexport.php:45
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."
+#: mod/profiles.php:351
+msgid "Romantic Partner"
+msgstr "Romanze"
-#: mod/uexport.php:52 mod/settings.php:107
-msgid "Export personal data"
-msgstr "Persönliche Daten exportieren"
+#: mod/profiles.php:363
+msgid "Work/Employment"
+msgstr "Arbeit / Beschäftigung"
-#: mod/viewcontacts.php:87
-msgid "No contacts."
-msgstr "Keine Kontakte."
+#: mod/profiles.php:366
+msgid "Religion"
+msgstr "Religion"
-#: mod/viewsrc.php:12
-msgid "Access denied."
-msgstr "Zugriff verweigert."
+#: mod/profiles.php:370
+msgid "Political Views"
+msgstr "Politische Ansichten"
-#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766
-#: mod/photos.php:795 mod/profile_photo.php:153
+#: mod/profiles.php:374
+msgid "Gender"
+msgstr "Geschlecht"
+
+#: mod/profiles.php:378
+msgid "Sexual Preference"
+msgstr "Sexuelle Vorlieben"
+
+#: mod/profiles.php:382
+msgid "XMPP"
+msgstr "XMPP"
+
+#: mod/profiles.php:386
+msgid "Homepage"
+msgstr "Webseite"
+
+#: mod/profiles.php:390 mod/profiles.php:686
+msgid "Interests"
+msgstr "Interessen"
+
+#: mod/profiles.php:394 mod/admin.php:490
+msgid "Address"
+msgstr "Adresse"
+
+#: mod/profiles.php:401 mod/profiles.php:682
+msgid "Location"
+msgstr "Wohnort"
+
+#: mod/profiles.php:486
+msgid "Profile updated."
+msgstr "Profil aktualisiert."
+
+#: mod/profiles.php:564
+msgid " and "
+msgstr " und "
+
+#: mod/profiles.php:573
+msgid "public profile"
+msgstr "öffentliches Profil"
+
+#: mod/profiles.php:576
#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "Bildgröße überschreitet das Limit von %s"
+msgid "%1$s changed %2$s to “%3$s”"
+msgstr "%1$s hat %2$s geändert auf “%3$s”"
-#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162
-msgid "Unable to process image."
-msgstr "Konnte das Bild nicht bearbeiten."
-
-#: mod/wall_upload.php:231 mod/item.php:471 src/Object/Image.php:953
-#: src/Object/Image.php:969 src/Object/Image.php:977 src/Object/Image.php:1002
-msgid "Wall Photos"
-msgstr "Pinnwand-Bilder"
-
-#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307
-msgid "Image upload failed."
-msgstr "Hochladen des Bildes gescheitert."
-
-#: mod/wallmessage.php:49 mod/wallmessage.php:112
+#: mod/profiles.php:577
#, 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."
+msgid " - Visit %1$s's %2$s"
+msgstr " – %1$ss %2$s besuchen"
-#: mod/wallmessage.php:57 mod/message.php:73
-msgid "No recipient selected."
-msgstr "Kein Empfänger gewählt."
-
-#: mod/wallmessage.php:60
-msgid "Unable to check your home location."
-msgstr "Konnte Deinen Heimatort nicht bestimmen."
-
-#: mod/wallmessage.php:63 mod/message.php:80
-msgid "Message could not be sent."
-msgstr "Nachricht konnte nicht gesendet werden."
-
-#: mod/wallmessage.php:66 mod/message.php:83
-msgid "Message collection failure."
-msgstr "Konnte Nachrichten nicht abrufen."
-
-#: mod/wallmessage.php:69 mod/message.php:86
-msgid "Message sent."
-msgstr "Nachricht gesendet."
-
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Kein Empfänger."
-
-#: mod/wallmessage.php:132 mod/message.php:250
-msgid "Send Private Message"
-msgstr "Private Nachricht senden"
-
-#: mod/wallmessage.php:133
+#: mod/profiles.php:579
#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
+
+#: mod/profiles.php:633
+msgid "Hide contacts and friends:"
+msgstr "Kontakte und Freunde verbergen"
+
+#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661
+#: mod/api.php:111 mod/settings.php:1105 mod/settings.php:1111
+#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1126
+#: mod/settings.php:1130 mod/settings.php:1134 mod/settings.php:1138
+#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
+#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:653
+#: mod/follow.php:150 mod/register.php:238
+msgid "No"
+msgstr "Nein"
+
+#: mod/profiles.php:638
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
+
+#: mod/profiles.php:658
+msgid "Show more profile fields:"
+msgstr "Zeige mehr Profil-Felder:"
+
+#: mod/profiles.php:670
+msgid "Profile Actions"
+msgstr "Profilaktionen"
+
+#: mod/profiles.php:671
+msgid "Edit Profile Details"
+msgstr "Profil bearbeiten"
+
+#: mod/profiles.php:673
+msgid "Change Profile Photo"
+msgstr "Profilbild ändern"
+
+#: mod/profiles.php:674
+msgid "View this profile"
+msgstr "Dieses Profil anzeigen"
+
+#: mod/profiles.php:676
+msgid "Create a new profile using these settings"
+msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
+
+#: mod/profiles.php:677
+msgid "Clone this profile"
+msgstr "Dieses Profil duplizieren"
+
+#: mod/profiles.php:678
+msgid "Delete this profile"
+msgstr "Dieses Profil löschen"
+
+#: mod/profiles.php:680
+msgid "Basic information"
+msgstr "Grundinformationen"
+
+#: mod/profiles.php:681
+msgid "Profile picture"
+msgstr "Profilbild"
+
+#: mod/profiles.php:683
+msgid "Preferences"
+msgstr "Vorlieben"
+
+#: mod/profiles.php:684
+msgid "Status information"
+msgstr "Status Informationen"
+
+#: mod/profiles.php:685
+msgid "Additional information"
+msgstr "Zusätzliche Informationen"
+
+#: mod/profiles.php:688
+msgid "Relation"
+msgstr "Beziehung"
+
+#: mod/profiles.php:692
+msgid "Your Gender:"
+msgstr "Dein Geschlecht:"
+
+#: mod/profiles.php:693
+msgid "♥ Marital Status:"
+msgstr "♥ Beziehungsstatus:"
+
+#: mod/profiles.php:695
+msgid "Example: fishing photography software"
+msgstr "Beispiel: Fischen Fotografie Software"
+
+#: mod/profiles.php:700
+msgid "Profile Name:"
+msgstr "Profilname:"
+
+#: mod/profiles.php:700 mod/events.php:508 mod/events.php:520
+msgid "Required"
+msgstr "Benötigt"
+
+#: mod/profiles.php:702
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."
+"This is your public profile. It may "
+"be visible to anybody using the internet."
+msgstr "Dies ist Dein öffentliches Profil. Es könnte für jeden Nutzer des Internets sichtbar sein."
-#: mod/wallmessage.php:134 mod/message.php:251 mod/message.php:421
-msgid "To:"
-msgstr "An:"
+#: mod/profiles.php:703
+msgid "Your Full Name:"
+msgstr "Dein kompletter Name:"
-#: mod/wallmessage.php:135 mod/message.php:255 mod/message.php:423
-msgid "Subject:"
-msgstr "Betreff:"
+#: mod/profiles.php:704
+msgid "Title/Description:"
+msgstr "Titel/Beschreibung:"
-#: mod/wallmessage.php:141 mod/message.php:259 mod/message.php:426
-#: mod/invite.php:149
-msgid "Your message:"
-msgstr "Deine Nachricht:"
+#: mod/profiles.php:707
+msgid "Street Address:"
+msgstr "Adresse:"
-#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:312
-msgid "Login"
-msgstr "Anmeldung"
+#: mod/profiles.php:708
+msgid "Locality/City:"
+msgstr "Wohnort:"
-#: mod/bookmarklet.php:51
-msgid "The post was created"
-msgstr "Der Beitrag wurde angelegt"
+#: mod/profiles.php:709
+msgid "Region/State:"
+msgstr "Region/Bundesstaat:"
-#: mod/community.php:46
-msgid "Community option not available."
-msgstr "Optionen für die Gemeinschaftsseite nicht verfügbar."
+#: mod/profiles.php:710
+msgid "Postal/Zip Code:"
+msgstr "Postleitzahl:"
-#: mod/community.php:63
-msgid "Not available."
-msgstr "Nicht verfügbar."
+#: mod/profiles.php:711
+msgid "Country:"
+msgstr "Land:"
-#: mod/community.php:76
-msgid "Local Community"
-msgstr "Lokale Gemeinschaft"
+#: mod/profiles.php:715
+msgid "Who: (if applicable)"
+msgstr "Wer: (falls anwendbar)"
-#: mod/community.php:79
-msgid "Posts from local users on this server"
-msgstr "Beiträge von Nutzern dieses Servers"
+#: mod/profiles.php:715
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
-#: mod/community.php:87
-msgid "Global Community"
-msgstr "Globale Gemeinschaft"
+#: mod/profiles.php:716
+msgid "Since [date]:"
+msgstr "Seit [Datum]:"
-#: mod/community.php:90
-msgid "Posts from users of the whole federated network"
-msgstr "Beiträge von Nutzern des gesamten föderalen Netzwerks"
+#: mod/profiles.php:718
+msgid "Tell us about yourself..."
+msgstr "Erzähle uns ein bisschen von Dir …"
-#: mod/community.php:180
+#: mod/profiles.php:719
+msgid "XMPP (Jabber) address:"
+msgstr "XMPP (Jabber) Adresse"
+
+#: mod/profiles.php:719
msgid ""
-"This community stream shows all public posts received by this node. They may"
-" not reflect the opinions of this node’s users."
-msgstr "Diese Gemeinschaftsseite zeigt alle öffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers."
+"The XMPP address will be propagated to your contacts so that they can follow"
+" you."
+msgstr "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können."
-#: mod/editpost.php:25 mod/editpost.php:35
-msgid "Item not found"
-msgstr "Beitrag nicht gefunden"
+#: mod/profiles.php:720
+msgid "Homepage URL:"
+msgstr "Adresse der Homepage:"
-#: mod/editpost.php:42
-msgid "Edit post"
-msgstr "Beitrag bearbeiten"
+#: mod/profiles.php:723
+msgid "Religious Views:"
+msgstr "Religiöse Ansichten:"
-#: mod/editpost.php:134 src/Core/ACL.php:315
-msgid "CC: email addresses"
-msgstr "Cc: E-Mail-Addressen"
+#: mod/profiles.php:724
+msgid "Public Keywords:"
+msgstr "Öffentliche Schlüsselwörter:"
-#: mod/editpost.php:141 src/Core/ACL.php:316
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Z.B.: bob@example.com, mary@example.com"
+#: mod/profiles.php:724
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)"
+
+#: mod/profiles.php:725
+msgid "Private Keywords:"
+msgstr "Private Schlüsselwörter:"
+
+#: mod/profiles.php:725
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
+
+#: mod/profiles.php:728
+msgid "Musical interests"
+msgstr "Musikalische Interessen"
+
+#: mod/profiles.php:729
+msgid "Books, literature"
+msgstr "Bücher, Literatur"
+
+#: mod/profiles.php:730
+msgid "Television"
+msgstr "Fernsehen"
+
+#: mod/profiles.php:731
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/Tänze/Kultur/Unterhaltung"
+
+#: mod/profiles.php:732
+msgid "Hobbies/Interests"
+msgstr "Hobbies/Interessen"
+
+#: mod/profiles.php:733
+msgid "Love/romance"
+msgstr "Liebe/Romantik"
+
+#: mod/profiles.php:734
+msgid "Work/employment"
+msgstr "Arbeit/Anstellung"
+
+#: mod/profiles.php:735
+msgid "School/education"
+msgstr "Schule/Ausbildung"
+
+#: mod/profiles.php:736
+msgid "Contact information and Social Networks"
+msgstr "Kontaktinformationen und Soziale Netzwerke"
+
+#: mod/profiles.php:776
+msgid "Edit/Manage Profiles"
+msgstr "Bearbeite/Verwalte Profile"
+
+#: mod/events.php:105 mod/events.php:107
+msgid "Event can not end before it has started."
+msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
+
+#: mod/events.php:114 mod/events.php:116
+msgid "Event title and start time are required."
+msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
+
+#: mod/events.php:392 mod/cal.php:275
+msgid "View"
+msgstr "Ansehen"
+
+#: mod/events.php:393
+msgid "Create New Event"
+msgstr "Neue Veranstaltung erstellen"
+
+#: mod/events.php:394 mod/cal.php:276
+msgid "Previous"
+msgstr "Vorherige"
+
+#: mod/events.php:395 mod/cal.php:277 mod/install.php:209
+msgid "Next"
+msgstr "Nächste"
+
+#: mod/events.php:404 mod/cal.php:284
+msgid "list"
+msgstr "Liste"
+
+#: mod/events.php:506
+msgid "Event details"
+msgstr "Veranstaltungsdetails"
+
+#: mod/events.php:507
+msgid "Starting date and Title are required."
+msgstr "Anfangszeitpunkt und Titel werden benötigt"
+
+#: mod/events.php:508 mod/events.php:509
+msgid "Event Starts:"
+msgstr "Veranstaltungsbeginn:"
+
+#: mod/events.php:510 mod/events.php:526
+msgid "Finish date/time is not known or not relevant"
+msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
+
+#: mod/events.php:512 mod/events.php:513
+msgid "Event Finishes:"
+msgstr "Veranstaltungsende:"
+
+#: mod/events.php:514 mod/events.php:527
+msgid "Adjust for viewer timezone"
+msgstr "An Zeitzone des Betrachters anpassen"
+
+#: mod/events.php:516
+msgid "Description:"
+msgstr "Beschreibung"
+
+#: mod/events.php:520 mod/events.php:522
+msgid "Title:"
+msgstr "Titel:"
+
+#: mod/events.php:523 mod/events.php:524
+msgid "Share this event"
+msgstr "Veranstaltung teilen"
+
+#: mod/events.php:552
+msgid "Failed to remove event"
+msgstr "Entfernen der Veranstaltung fehlgeschlagen"
+
+#: mod/events.php:554
+msgid "Event removed"
+msgstr "Veranstaltung enfternt"
+
+#: mod/notify.php:77
+msgid "No more system notifications."
+msgstr "Keine weiteren Systembenachrichtigungen."
+
+#: mod/notify.php:81 mod/notifications.php:113
+msgid "System Notifications"
+msgstr "Systembenachrichtigungen"
+
+#: mod/fsuggest.php:30 mod/fsuggest.php:96 mod/crepair.php:110
+#: mod/dfrn_confirm.php:131
+msgid "Contact not found."
+msgstr "Kontakt nicht gefunden."
#: mod/fsuggest.php:72
msgid "Friend suggestion sent."
@@ -2594,6 +4330,959 @@ msgstr "Kontakte vorschlagen"
msgid "Suggest a friend for %s"
msgstr "Schlage %s einen Kontakt vor"
+#: mod/attach.php:15
+msgid "Item not available."
+msgstr "Beitrag nicht verfügbar."
+
+#: mod/attach.php:25
+msgid "Item was not found."
+msgstr "Beitrag konnte nicht gefunden werden."
+
+#: mod/allfriends.php:51
+msgid "No friends to display."
+msgstr "Keine Kontakte zum Anzeigen."
+
+#: mod/viewcontacts.php:87
+msgid "No contacts."
+msgstr "Keine Kontakte."
+
+#: mod/viewcontacts.php:112 mod/nogroup.php:42 mod/contacts.php:619
+#: mod/contacts.php:959
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Besuche %ss Profil [%s]"
+
+#: mod/ostatus_subscribe.php:21
+msgid "Subscribing to OStatus contacts"
+msgstr "OStatus Kontakten folgen"
+
+#: mod/ostatus_subscribe.php:33
+msgid "No contact provided."
+msgstr "Keine Kontakte gefunden."
+
+#: mod/ostatus_subscribe.php:40
+msgid "Couldn't fetch information for contact."
+msgstr "Konnte die Kontaktinformationen nicht einholen."
+
+#: mod/ostatus_subscribe.php:50
+msgid "Couldn't fetch friends for contact."
+msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen."
+
+#: mod/ostatus_subscribe.php:78
+msgid "success"
+msgstr "Erfolg"
+
+#: mod/ostatus_subscribe.php:80
+msgid "failed"
+msgstr "Fehlgeschlagen"
+
+#: mod/api.php:85 mod/api.php:107
+msgid "Authorize application connection"
+msgstr "Verbindung der Applikation autorisieren"
+
+#: mod/api.php:86
+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:95
+msgid "Please login to continue."
+msgstr "Bitte melde Dich an um fortzufahren."
+
+#: mod/api.php:109
+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/settings.php:50 mod/photos.php:126
+msgid "everybody"
+msgstr "jeder"
+
+#: mod/settings.php:55
+msgid "Account"
+msgstr "Nutzerkonto"
+
+#: mod/settings.php:64 mod/admin.php:187
+msgid "Additional features"
+msgstr "Zusätzliche Features"
+
+#: mod/settings.php:72
+msgid "Display"
+msgstr "Anzeige"
+
+#: mod/settings.php:79 mod/settings.php:842
+msgid "Social Networks"
+msgstr "Soziale Netzwerke"
+
+#: mod/settings.php:86 mod/admin.php:185 mod/admin.php:1918 mod/admin.php:1978
+msgid "Addons"
+msgstr "Addons"
+
+#: mod/settings.php:100
+msgid "Connected apps"
+msgstr "Verbundene Programme"
+
+#: mod/settings.php:107 mod/uexport.php:52
+msgid "Export personal data"
+msgstr "Persönliche Daten exportieren"
+
+#: mod/settings.php:114
+msgid "Remove account"
+msgstr "Konto löschen"
+
+#: mod/settings.php:168
+msgid "Missing some important data!"
+msgstr "Wichtige Daten fehlen!"
+
+#: mod/settings.php:170 mod/settings.php:701 mod/contacts.php:826
+msgid "Update"
+msgstr "Aktualisierungen"
+
+#: mod/settings.php:279
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
+
+#: mod/settings.php:284
+msgid "Email settings updated."
+msgstr "E-Mail Einstellungen bearbeitet."
+
+#: mod/settings.php:300
+msgid "Features updated"
+msgstr "Features aktualisiert"
+
+#: mod/settings.php:372
+msgid "Relocate message has been send to your contacts"
+msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
+
+#: mod/settings.php:389
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
+
+#: mod/settings.php:400
+msgid "Wrong password."
+msgstr "Falsches Passwort."
+
+#: mod/settings.php:496
+msgid " Please use a shorter name."
+msgstr " Bitte verwende einen kürzeren Namen."
+
+#: mod/settings.php:499
+msgid " Name too short."
+msgstr " Name ist zu kurz."
+
+#: mod/settings.php:507
+msgid "Wrong Password"
+msgstr "Falsches Passwort"
+
+#: mod/settings.php:512
+msgid "Invalid email."
+msgstr "Ungültige E-Mail-Adresse."
+
+#: mod/settings.php:519
+msgid "Cannot change to that email."
+msgstr "Ändern der E-Mail nicht möglich. "
+
+#: mod/settings.php:572
+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:575
+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:615
+msgid "Settings updated."
+msgstr "Einstellungen aktualisiert."
+
+#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
+msgid "Add application"
+msgstr "Programm hinzufügen"
+
+#: mod/settings.php:675 mod/settings.php:784 mod/settings.php:872
+#: mod/settings.php:961 mod/settings.php:1194 mod/admin.php:307
+#: mod/admin.php:1346 mod/admin.php:1979 mod/admin.php:2232 mod/admin.php:2306
+#: mod/admin.php:2453 mod/delegate.php:168
+msgid "Save Settings"
+msgstr "Einstellungen speichern"
+
+#: mod/settings.php:677 mod/settings.php:703 mod/admin.php:490
+#: mod/admin.php:1796 mod/admin.php:1807 mod/admin.php:1820 mod/admin.php:1836
+#: mod/crepair.php:158
+msgid "Name"
+msgstr "Name"
+
+#: mod/settings.php:678 mod/settings.php:704
+msgid "Consumer Key"
+msgstr "Consumer Key"
+
+#: mod/settings.php:679 mod/settings.php:705
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
+
+#: mod/settings.php:680 mod/settings.php:706
+msgid "Redirect"
+msgstr "Umleiten"
+
+#: mod/settings.php:681 mod/settings.php:707
+msgid "Icon url"
+msgstr "Icon URL"
+
+#: mod/settings.php:692
+msgid "You can't edit this application."
+msgstr "Du kannst dieses Programm nicht bearbeiten."
+
+#: mod/settings.php:735
+msgid "Connected Apps"
+msgstr "Verbundene Programme"
+
+#: mod/settings.php:739
+msgid "Client key starts with"
+msgstr "Anwenderschlüssel beginnt mit"
+
+#: mod/settings.php:740
+msgid "No name"
+msgstr "Kein Name"
+
+#: mod/settings.php:741
+msgid "Remove authorization"
+msgstr "Autorisierung entziehen"
+
+#: mod/settings.php:752
+msgid "No Addon settings configured"
+msgstr "Keine Addon-Einstellungen konfiguriert"
+
+#: mod/settings.php:761
+msgid "Addon Settings"
+msgstr "Addon Einstellungen"
+
+#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443
+msgid "Off"
+msgstr "Aus"
+
+#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443
+msgid "On"
+msgstr "An"
+
+#: mod/settings.php:782
+msgid "Additional Features"
+msgstr "Zusätzliche Features"
+
+#: mod/settings.php:805 mod/settings.php:806
+msgid "enabled"
+msgstr "eingeschaltet"
+
+#: mod/settings.php:805 mod/settings.php:806
+msgid "disabled"
+msgstr "ausgeschaltet"
+
+#: mod/settings.php:805 mod/settings.php:806
+#, 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:806
+msgid "GNU Social (OStatus)"
+msgstr "GNU Social (OStatus)"
+
+#: mod/settings.php:837
+msgid "Email access is disabled on this site."
+msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
+
+#: mod/settings.php:847
+msgid "General Social Media Settings"
+msgstr "Allgemeine Einstellungen zu Sozialen Medien"
+
+#: mod/settings.php:848
+msgid "Disable Content Warning"
+msgstr "Inhaltswarnungen ausschalten"
+
+#: mod/settings.php:848
+msgid ""
+"Users on networks like Mastodon or Pleroma are able to set a content warning"
+" field which collapse their post by default. This disables the automatic "
+"collapsing and sets the content warning as the post title. Doesn't affect "
+"any other content filtering you eventually set up."
+msgstr "Nutzer von anderen Netzwerken, wie z.B. Mastodon oder Pleroma, können Inhaltswarnungen, welche die Beiträge standardmäßig einklappen. Diese Einstellung deaktiviert das automatische Einklappt solcher Beiträge und setzt die Inhaltswarnung als Titel des Beitrags. Wenn du andere Filtereinstellungen vorgenommen hast, werden diese hierdurch nicht beeinflusst."
+
+#: mod/settings.php:849
+msgid "Disable intelligent shortening"
+msgstr "Intelligentes Link kürzen ausschalten"
+
+#: mod/settings.php:849
+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:850
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
+
+#: mod/settings.php:850
+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:851
+msgid "Default group for OStatus contacts"
+msgstr "Voreingestellte Gruppe für OStatus Kontakte"
+
+#: mod/settings.php:852
+msgid "Your legacy GNU Social account"
+msgstr "Dein alter GNU Social Account"
+
+#: mod/settings.php:852
+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:855
+msgid "Repair OStatus subscriptions"
+msgstr "OStatus Abonnements reparieren"
+
+#: mod/settings.php:859
+msgid "Email/Mailbox Setup"
+msgstr "E-Mail/Postfach-Einstellungen"
+
+#: mod/settings.php:860
+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:861
+msgid "Last successful email check:"
+msgstr "Letzter erfolgreicher E-Mail Check"
+
+#: mod/settings.php:863
+msgid "IMAP server name:"
+msgstr "IMAP-Server-Name:"
+
+#: mod/settings.php:864
+msgid "IMAP port:"
+msgstr "IMAP-Port:"
+
+#: mod/settings.php:865
+msgid "Security:"
+msgstr "Sicherheit:"
+
+#: mod/settings.php:865 mod/settings.php:870
+msgid "None"
+msgstr "Keine"
+
+#: mod/settings.php:866
+msgid "Email login name:"
+msgstr "E-Mail-Login-Name:"
+
+#: mod/settings.php:867
+msgid "Email password:"
+msgstr "E-Mail-Passwort:"
+
+#: mod/settings.php:868
+msgid "Reply-to address:"
+msgstr "Reply-to Adresse:"
+
+#: mod/settings.php:869
+msgid "Send public posts to all email contacts:"
+msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
+
+#: mod/settings.php:870
+msgid "Action after import:"
+msgstr "Aktion nach Import:"
+
+#: mod/settings.php:870
+msgid "Move to folder"
+msgstr "In einen Ordner verschieben"
+
+#: mod/settings.php:871
+msgid "Move to folder:"
+msgstr "In diesen Ordner verschieben:"
+
+#: mod/settings.php:905 mod/admin.php:1236
+msgid "No special theme for mobile devices"
+msgstr "Kein spezielles Theme für mobile Geräte verwenden."
+
+#: mod/settings.php:914
+#, php-format
+msgid "%s - (Unsupported)"
+msgstr "%s - (Nicht unterstützt)"
+
+#: mod/settings.php:916
+#, php-format
+msgid "%s - (Experimental)"
+msgstr "%s - (Experimentell)"
+
+#: mod/settings.php:959
+msgid "Display Settings"
+msgstr "Anzeige-Einstellungen"
+
+#: mod/settings.php:965 mod/settings.php:989
+msgid "Display Theme:"
+msgstr "Theme:"
+
+#: mod/settings.php:966
+msgid "Mobile Theme:"
+msgstr "Mobiles Theme"
+
+#: mod/settings.php:967
+msgid "Suppress warning of insecure networks"
+msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
+
+#: mod/settings.php:967
+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:968
+msgid "Update browser every xx seconds"
+msgstr "Browser alle xx Sekunden aktualisieren"
+
+#: mod/settings.php:968
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
+msgstr "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten."
+
+#: mod/settings.php:969
+msgid "Number of items to display per page:"
+msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
+
+#: mod/settings.php:969 mod/settings.php:970
+msgid "Maximum of 100 items"
+msgstr "Maximal 100 Beiträge"
+
+#: mod/settings.php:970
+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:971
+msgid "Don't show emoticons"
+msgstr "Keine Smilies anzeigen"
+
+#: mod/settings.php:972
+msgid "Calendar"
+msgstr "Kalender"
+
+#: mod/settings.php:973
+msgid "Beginning of week:"
+msgstr "Wochenbeginn:"
+
+#: mod/settings.php:974
+msgid "Don't show notices"
+msgstr "Info-Popups nicht anzeigen"
+
+#: mod/settings.php:975
+msgid "Infinite scroll"
+msgstr "Endloses Scrollen"
+
+#: mod/settings.php:976
+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:976
+msgid ""
+"When disabled, the network page is updated all the time, which could be "
+"confusing while reading."
+msgstr "Wenn dies deaktiviert ist, wird die Netzwerk Seite aktualisiert, wann immer neue Beiträge eintreffen, egal an welcher Stelle gerade gelesen wird."
+
+#: mod/settings.php:977
+msgid "Bandwith Saver Mode"
+msgstr "Bandbreiten-Spar-Modus"
+
+#: mod/settings.php:977
+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:978
+msgid "Smart Threading"
+msgstr "Intelligentes Threading"
+
+#: mod/settings.php:978
+msgid ""
+"When enabled, suppress extraneous thread indentation while keeping it where "
+"it matters. Only works if threading is available and enabled."
+msgstr "Ist dies aktiviert, werden Einrückungen in Unterhaltungen unterdrückt wo sie nicht benötigt werden. Werden sie benötigt, werden die Threads weiterhin eingerückt."
+
+#: mod/settings.php:980
+msgid "General Theme Settings"
+msgstr "Allgemeine Themeneinstellungen"
+
+#: mod/settings.php:981
+msgid "Custom Theme Settings"
+msgstr "Benutzerdefinierte Theme Einstellungen"
+
+#: mod/settings.php:982
+msgid "Content Settings"
+msgstr "Einstellungen zum Inhalt"
+
+#: mod/settings.php:983 view/theme/quattro/config.php:75
+#: view/theme/frio/config.php:115 view/theme/vier/config.php:121
+#: view/theme/duepuntozero/config.php:73
+msgid "Theme settings"
+msgstr "Themeneinstellungen"
+
+#: mod/settings.php:1002
+msgid "Unable to find your profile. Please contact your admin."
+msgstr "Konnte dein Profil nicht finden. Bitte kontaktiere den Admin."
+
+#: mod/settings.php:1044
+msgid "Account Types"
+msgstr "Kontenarten"
+
+#: mod/settings.php:1045
+msgid "Personal Page Subtypes"
+msgstr "Unterarten der persönlichen Seite"
+
+#: mod/settings.php:1046
+msgid "Community Forum Subtypes"
+msgstr "Unterarten des Gemeinschaftsforums"
+
+#: mod/settings.php:1053 mod/admin.php:1746
+msgid "Personal Page"
+msgstr "Persönliche Seite"
+
+#: mod/settings.php:1054
+msgid "Account for a personal profile."
+msgstr "Konto für ein persönliches Profil."
+
+#: mod/settings.php:1057 mod/admin.php:1747
+msgid "Organisation Page"
+msgstr "Organisationsseite"
+
+#: mod/settings.php:1058
+msgid ""
+"Account for an organisation that automatically approves contact requests as "
+"\"Followers\"."
+msgstr "Konto für eine Organisation, das Kontaktanfragen automatisch als \"Follower\" annimmt."
+
+#: mod/settings.php:1061 mod/admin.php:1748
+msgid "News Page"
+msgstr "Nachrichtenseite"
+
+#: mod/settings.php:1062
+msgid ""
+"Account for a news reflector that automatically approves contact requests as"
+" \"Followers\"."
+msgstr "Konto für einen Feedspiegel, das Kontaktanfragen automatisch als \"Follower\" annimmt."
+
+#: mod/settings.php:1065 mod/admin.php:1749
+msgid "Community Forum"
+msgstr "Gemeinschaftsforum"
+
+#: mod/settings.php:1066
+msgid "Account for community discussions."
+msgstr "Konto für Diskussionsforen. "
+
+#: mod/settings.php:1069 mod/admin.php:1739
+msgid "Normal Account Page"
+msgstr "Normales Konto"
+
+#: mod/settings.php:1070
+msgid ""
+"Account for a regular personal profile that requires manual approval of "
+"\"Friends\" and \"Followers\"."
+msgstr "Konto für ein normales persönliches Profil. Kontaktanfragen müssen manuell als \"Friend\" oder \"Follower\" bestätigt werden."
+
+#: mod/settings.php:1073 mod/admin.php:1740
+msgid "Soapbox Page"
+msgstr "Marktschreier-Konto"
+
+#: mod/settings.php:1074
+msgid ""
+"Account for a public profile that automatically approves contact requests as"
+" \"Followers\"."
+msgstr "Konto für ein öffentliches Profil, das Kontaktanfragen automatisch als \"Follower\" annimmt."
+
+#: mod/settings.php:1077 mod/admin.php:1741
+msgid "Public Forum"
+msgstr "Öffentliches Forum"
+
+#: mod/settings.php:1078
+msgid "Automatically approves all contact requests."
+msgstr "Bestätigt alle Kontaktanfragen automatisch."
+
+#: mod/settings.php:1081 mod/admin.php:1742
+msgid "Automatic Friend Page"
+msgstr "Automatische Freunde Seite"
+
+#: mod/settings.php:1082
+msgid ""
+"Account for a popular profile that automatically approves contact requests "
+"as \"Friends\"."
+msgstr "Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als \"Friend\" annimmt."
+
+#: mod/settings.php:1085
+msgid "Private Forum [Experimental]"
+msgstr "Privates Forum [Versuchsstadium]"
+
+#: mod/settings.php:1086
+msgid "Requires manual approval of contact requests."
+msgstr "Kontaktanfragen müssen manuell bestätigt werden."
+
+#: mod/settings.php:1097
+msgid "OpenID:"
+msgstr "OpenID:"
+
+#: mod/settings.php:1097
+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:1105
+msgid "Publish your default profile in your local site directory?"
+msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
+
+#: mod/settings.php:1105
+#, php-format
+msgid ""
+"Your profile will be published in the global friendica directories (e.g. %s ). Your profile will be visible in public."
+msgstr "Dein Profil wird in den globalen Friendica Verzeichnissen (z.B. %s ) veröffentlicht. Dein Profil wird öffentlich auffindbar sein."
+
+#: mod/settings.php:1111
+msgid "Publish your default profile in the global social directory?"
+msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
+
+#: mod/settings.php:1111
+#, php-format
+msgid ""
+"Your profile will be published in this node's local "
+"directory . Your profile details may be publicly visible depending on the"
+" system settings."
+msgstr "Dein Profil wird im lokalen Verzeichnis dieses Knotens veröffentlicht. Je nach Systemeinstellungen kann es öffentlich auffindbar sein."
+
+#: mod/settings.php:1118
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
+
+#: mod/settings.php:1118
+msgid ""
+"Your contact list won't be shown in your default profile page. You can "
+"decide to show your contact list separately for each additional profile you "
+"create"
+msgstr "Die Liste deiner Kontakte wird nicht in deinem Standard-Profil angezeigt werden. Du kannst für jedes weitere Profil diese Entscheidung separat einstellen."
+
+#: mod/settings.php:1122
+msgid "Hide your profile details from anonymous viewers?"
+msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
+
+#: mod/settings.php:1122
+msgid ""
+"Anonymous visitors will only see your profile picture, your display name and"
+" the nickname you are using on your profile page. Disables posting public "
+"messages to Diaspora and other networks."
+msgstr "Anonyme Besucher deines Profils werden ausschließlich dein Profilbild, deinen Namen sowie deinen Spitznamen sehen. Ist diese Option aktiv, können keine öffentlichen Beiträge zu Diaspora und anderen Netzwerken veröffentlicht werden."
+
+#: mod/settings.php:1126
+msgid "Allow friends to post to your profile page?"
+msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
+
+#: mod/settings.php:1126
+msgid ""
+"Your contacts may write posts on your profile wall. These posts will be "
+"distributed to your contacts"
+msgstr "Deine Kontakte können Beiträge auf deiner Pinnwand hinterlassen. Diese werden an deine Kontakte verteilt."
+
+#: mod/settings.php:1130
+msgid "Allow friends to tag your posts?"
+msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
+
+#: mod/settings.php:1130
+msgid "Your contacts can add additional tags to your posts."
+msgstr "Deine Kontakte dürfen deine Beiträge mit zusätzlichen Schlagworten versehen."
+
+#: mod/settings.php:1134
+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:1134
+msgid ""
+"If you like, Friendica may suggest new members to add you as a contact."
+msgstr "Wenn du magst, kann Friendica dich neuen Mitgliedern als Kontakt vorschlagen."
+
+#: mod/settings.php:1138
+msgid "Permit unknown people to send you private mail?"
+msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
+
+#: mod/settings.php:1138
+msgid ""
+"Friendica network users may send you private messages even if they are not "
+"in your contact list."
+msgstr "Nutzer des Friendica Netzwerks können dir private Nachrichten senden, selbst wenn sie nicht in deine Kontaktliste sind."
+
+#: mod/settings.php:1142
+msgid "Profile is not published ."
+msgstr "Profil ist nicht veröffentlicht ."
+
+#: mod/settings.php:1148
+#, php-format
+msgid "Your Identity Address is '%s' or '%s'."
+msgstr "Die Adresse deines Profils lautet '%s' oder '%s'."
+
+#: mod/settings.php:1155
+msgid "Automatically expire posts after this many days:"
+msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
+
+#: mod/settings.php:1155
+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:1156
+msgid "Advanced expiration settings"
+msgstr "Erweiterte Verfallseinstellungen"
+
+#: mod/settings.php:1157
+msgid "Advanced Expiration"
+msgstr "Erweitertes Verfallen"
+
+#: mod/settings.php:1158
+msgid "Expire posts:"
+msgstr "Beiträge verfallen lassen:"
+
+#: mod/settings.php:1159
+msgid "Expire personal notes:"
+msgstr "Persönliche Notizen verfallen lassen:"
+
+#: mod/settings.php:1160
+msgid "Expire starred posts:"
+msgstr "Markierte Beiträge verfallen lassen:"
+
+#: mod/settings.php:1161
+msgid "Expire photos:"
+msgstr "Fotos verfallen lassen:"
+
+#: mod/settings.php:1162
+msgid "Only expire posts by others:"
+msgstr "Nur Beiträge anderer verfallen:"
+
+#: mod/settings.php:1192
+msgid "Account Settings"
+msgstr "Kontoeinstellungen"
+
+#: mod/settings.php:1200
+msgid "Password Settings"
+msgstr "Passwort-Einstellungen"
+
+#: mod/settings.php:1201 mod/register.php:273
+msgid "New Password:"
+msgstr "Neues Passwort:"
+
+#: mod/settings.php:1202 mod/register.php:274
+msgid "Confirm:"
+msgstr "Bestätigen:"
+
+#: mod/settings.php:1202
+msgid "Leave password fields blank unless changing"
+msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
+
+#: mod/settings.php:1203
+msgid "Current Password:"
+msgstr "Aktuelles Passwort:"
+
+#: mod/settings.php:1203 mod/settings.php:1204
+msgid "Your current password to confirm the changes"
+msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
+
+#: mod/settings.php:1204
+msgid "Password:"
+msgstr "Passwort:"
+
+#: mod/settings.php:1208
+msgid "Basic Settings"
+msgstr "Grundeinstellungen"
+
+#: mod/settings.php:1210
+msgid "Email Address:"
+msgstr "E-Mail-Adresse:"
+
+#: mod/settings.php:1211
+msgid "Your Timezone:"
+msgstr "Deine Zeitzone:"
+
+#: mod/settings.php:1212
+msgid "Your Language:"
+msgstr "Deine Sprache:"
+
+#: mod/settings.php:1212
+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:1213
+msgid "Default Post Location:"
+msgstr "Standardstandort:"
+
+#: mod/settings.php:1214
+msgid "Use Browser Location:"
+msgstr "Standort des Browsers verwenden:"
+
+#: mod/settings.php:1217
+msgid "Security and Privacy Settings"
+msgstr "Sicherheits- und Privatsphäre-Einstellungen"
+
+#: mod/settings.php:1219
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
+
+#: mod/settings.php:1219 mod/settings.php:1248
+msgid "(to prevent spam abuse)"
+msgstr "(um SPAM zu vermeiden)"
+
+#: mod/settings.php:1220
+msgid "Default Post Permissions"
+msgstr "Standard-Zugriffsrechte für Beiträge"
+
+#: mod/settings.php:1221
+msgid "(click to open/close)"
+msgstr "(klicke zum öffnen/schließen)"
+
+#: mod/settings.php:1229 mod/photos.php:1106 mod/photos.php:1449
+msgid "Show to Groups"
+msgstr "Zeige den Gruppen"
+
+#: mod/settings.php:1230 mod/photos.php:1107 mod/photos.php:1450
+msgid "Show to Contacts"
+msgstr "Zeige den Kontakten"
+
+#: mod/settings.php:1231
+msgid "Default Private Post"
+msgstr "Privater Standardbeitrag"
+
+#: mod/settings.php:1232
+msgid "Default Public Post"
+msgstr "Öffentlicher Standardbeitrag"
+
+#: mod/settings.php:1236
+msgid "Default Permissions for New Posts"
+msgstr "Standardberechtigungen für neue Beiträge"
+
+#: mod/settings.php:1248
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
+
+#: mod/settings.php:1251
+msgid "Notification Settings"
+msgstr "Benachrichtigungseinstellungen"
+
+#: mod/settings.php:1252
+msgid "By default post a status message when:"
+msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
+
+#: mod/settings.php:1253
+msgid "accepting a friend request"
+msgstr "– Du eine Kontaktanfrage akzeptierst"
+
+#: mod/settings.php:1254
+msgid "joining a forum/community"
+msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
+
+#: mod/settings.php:1255
+msgid "making an interesting profile change"
+msgstr "– Du eine interessante Änderung an Deinem Profil durchführst"
+
+#: mod/settings.php:1256
+msgid "Send a notification email when:"
+msgstr "Benachrichtigungs-E-Mail senden wenn:"
+
+#: mod/settings.php:1257
+msgid "You receive an introduction"
+msgstr "– Du eine Kontaktanfrage erhältst"
+
+#: mod/settings.php:1258
+msgid "Your introductions are confirmed"
+msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
+
+#: mod/settings.php:1259
+msgid "Someone writes on your profile wall"
+msgstr "– jemand etwas auf Deine Pinnwand schreibt"
+
+#: mod/settings.php:1260
+msgid "Someone writes a followup comment"
+msgstr "– jemand auch einen Kommentar verfasst"
+
+#: mod/settings.php:1261
+msgid "You receive a private message"
+msgstr "– Du eine private Nachricht erhältst"
+
+#: mod/settings.php:1262
+msgid "You receive a friend suggestion"
+msgstr "– Du eine Empfehlung erhältst"
+
+#: mod/settings.php:1263
+msgid "You are tagged in a post"
+msgstr "– Du in einem Beitrag erwähnt wirst"
+
+#: mod/settings.php:1264
+msgid "You are poked/prodded/etc. in a post"
+msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
+
+#: mod/settings.php:1266
+msgid "Activate desktop notifications"
+msgstr "Desktop Benachrichtigungen einschalten"
+
+#: mod/settings.php:1266
+msgid "Show desktop popup on new notifications"
+msgstr "Desktop Benachrichtigungen einschalten"
+
+#: mod/settings.php:1268
+msgid "Text-only notification emails"
+msgstr "Benachrichtigungs E-Mail als Rein-Text."
+
+#: mod/settings.php:1270
+msgid "Send text only notification emails, without the html part"
+msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
+
+#: mod/settings.php:1272
+msgid "Show detailled notifications"
+msgstr "Detaillierte Benachrichtigungen anzeigen"
+
+#: mod/settings.php:1274
+msgid ""
+"Per default, notifications are condensed to a single notification per item. "
+"When enabled every notification is displayed."
+msgstr "Normalerweise werde alle Benachrichtigungen zu einem Thema zusammengefasst in einer einzigen Mitteilung. Wenn diese Option aktiviert ist, wird jede Mitteilung angezeigt."
+
+#: mod/settings.php:1276
+msgid "Advanced Account/Page Type Settings"
+msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
+
+#: mod/settings.php:1277
+msgid "Change the behaviour of this account for special situations"
+msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
+
+#: mod/settings.php:1280
+msgid "Relocate"
+msgstr "Umziehen"
+
+#: mod/settings.php:1281
+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:1282
+msgid "Resend relocate message to contacts"
+msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
+
+#: mod/regmod.php:68
+msgid "Account approved."
+msgstr "Konto freigegeben."
+
+#: mod/regmod.php:93
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrierung für %s wurde zurückgezogen"
+
+#: mod/regmod.php:102
+msgid "Please login."
+msgstr "Bitte melde Dich an."
+
#: mod/group.php:36
msgid "Group created."
msgstr "Gruppe erstellt."
@@ -2610,6 +5299,10 @@ msgstr "Gruppe nicht gefunden."
msgid "Group name changed."
msgstr "Gruppenname geändert."
+#: mod/group.php:83 mod/profperm.php:28 index.php:443
+msgid "Permission denied"
+msgstr "Zugriff verweigert"
+
#: mod/group.php:97
msgid "Save Group"
msgstr "Gruppe speichern"
@@ -2618,10 +5311,6 @@ msgstr "Gruppe speichern"
msgid "Create a group of contacts/friends."
msgstr "Eine Kontaktgruppe anlegen."
-#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
-msgid "Group Name: "
-msgstr "Gruppenname:"
-
#: mod/group.php:127
msgid "Group removed."
msgstr "Gruppe entfernt."
@@ -2650,10 +5339,6 @@ msgstr "Mitglieder"
msgid "All Contacts"
msgstr "Alle Kontakte"
-#: mod/group.php:216 mod/network.php:639
-msgid "Group is empty"
-msgstr "Gruppe ist leer"
-
#: mod/group.php:229
msgid "Remove Contact"
msgstr "Kontakt löschen"
@@ -2662,1424 +5347,18 @@ msgstr "Kontakt löschen"
msgid "Add Contact"
msgstr "Kontakt hinzufügen"
-#: mod/message.php:30 src/Content/Nav.php:198
-msgid "New Message"
-msgstr "Neue Nachricht"
+#: mod/group.php:265 mod/profperm.php:115
+msgid "Click on a contact to add or remove."
+msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
-#: mod/message.php:77
-msgid "Unable to locate contact information."
-msgstr "Konnte die Kontaktinformationen nicht finden."
-
-#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:195
-msgid "Messages"
-msgstr "Nachrichten"
-
-#: mod/message.php:136
-msgid "Do you really want to delete this message?"
-msgstr "Möchtest Du wirklich diese Nachricht löschen?"
-
-#: mod/message.php:156
-msgid "Message deleted."
-msgstr "Nachricht gelöscht."
-
-#: mod/message.php:185
-msgid "Conversation removed."
-msgstr "Unterhaltung gelöscht."
-
-#: mod/message.php:291
-msgid "No messages."
-msgstr "Keine Nachrichten."
-
-#: mod/message.php:330
-msgid "Message not available."
-msgstr "Nachricht nicht verfügbar."
-
-#: mod/message.php:397
-msgid "Delete message"
-msgstr "Nachricht löschen"
-
-#: mod/message.php:399 mod/message.php:500
-msgid "D, d M Y - g:i A"
-msgstr "D, d. M Y - H:i"
-
-#: mod/message.php:414 mod/message.php:497
-msgid "Delete conversation"
-msgstr "Unterhaltung löschen"
-
-#: mod/message.php:416
-msgid ""
-"No secure communications available. You may be able to "
-"respond from the sender's profile page."
-msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."
-
-#: mod/message.php:420
-msgid "Send Reply"
-msgstr "Antwort senden"
-
-#: mod/message.php:471
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "'Unbekannter Absender - %s"
-
-#: mod/message.php:473
-#, php-format
-msgid "You and %s"
-msgstr "Du und %s"
-
-#: mod/message.php:475
-#, php-format
-msgid "%s and You"
-msgstr "%s und Du"
-
-#: mod/message.php:503
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d Nachricht"
-msgstr[1] "%d Nachrichten"
-
-#: mod/notes.php:52 src/Model/Profile.php:948
-msgid "Personal Notes"
-msgstr "Persönliche Notizen"
-
-#: mod/photos.php:108 src/Model/Profile.php:909
-msgid "Photo Albums"
-msgstr "Fotoalben"
-
-#: mod/photos.php:109 mod/photos.php:1713
-msgid "Recent Photos"
-msgstr "Neueste Fotos"
-
-#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
-msgid "Upload New Photos"
-msgstr "Neue Fotos hochladen"
-
-#: mod/photos.php:126 mod/settings.php:50
-msgid "everybody"
-msgstr "jeder"
-
-#: mod/photos.php:184
-msgid "Contact information unavailable"
-msgstr "Kontaktinformationen nicht verfügbar"
-
-#: mod/photos.php:204
-msgid "Album not found."
-msgstr "Album nicht gefunden."
-
-#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
-msgid "Delete Album"
-msgstr "Album löschen"
-
-#: mod/photos.php:243
-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:310 mod/photos.php:321 mod/photos.php:1446
-msgid "Delete Photo"
-msgstr "Foto löschen"
-
-#: mod/photos.php:319
-msgid "Do you really want to delete this photo?"
-msgstr "Möchtest Du wirklich dieses Foto löschen?"
-
-#: mod/photos.php:667
-msgid "a photo"
-msgstr "einem Foto"
-
-#: mod/photos.php:667
-#, 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:769
-msgid "Image upload didn't complete, please try again"
-msgstr "Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut."
-
-#: mod/photos.php:772
-msgid "Image file is missing"
-msgstr "Bilddatei konnte nicht gefunden werden."
-
-#: mod/photos.php:777
-msgid ""
-"Server can't accept new file upload at this time, please contact your "
-"administrator"
-msgstr "Der Server kann derzeit keine neuen Datei Uploads akzeptieren. Bitte kontaktiere deinen Administrator."
-
-#: mod/photos.php:803
-msgid "Image file is empty."
-msgstr "Bilddatei ist leer."
-
-#: mod/photos.php:940
-msgid "No photos selected"
-msgstr "Keine Bilder ausgewählt"
-
-#: mod/photos.php:1036 mod/videos.php:309
-msgid "Access to this item is restricted."
-msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
-
-#: mod/photos.php:1090
-msgid "Upload Photos"
-msgstr "Bilder hochladen"
-
-#: mod/photos.php:1094 mod/photos.php:1156
-msgid "New album name: "
-msgstr "Name des neuen Albums: "
-
-#: mod/photos.php:1095
-msgid "or existing album name: "
-msgstr "oder existierender Albumname: "
-
-#: mod/photos.php:1096
-msgid "Do not show a status post for this upload"
-msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
-
-#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533
-#: src/Core/ACL.php:318
-msgid "Permissions"
-msgstr "Berechtigungen"
-
-#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1229
-msgid "Show to Groups"
-msgstr "Zeige den Gruppen"
-
-#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1230
-msgid "Show to Contacts"
-msgstr "Zeige den Kontakten"
-
-#: mod/photos.php:1167
-msgid "Edit Album"
-msgstr "Album bearbeiten"
-
-#: mod/photos.php:1172
-msgid "Show Newest First"
-msgstr "Zeige neueste zuerst"
-
-#: mod/photos.php:1174
-msgid "Show Oldest First"
-msgstr "Zeige älteste zuerst"
-
-#: mod/photos.php:1195 mod/photos.php:1698
-msgid "View Photo"
-msgstr "Foto betrachten"
-
-#: mod/photos.php:1236
-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:1238
-msgid "Photo not available"
-msgstr "Foto nicht verfügbar"
-
-#: mod/photos.php:1301
-msgid "View photo"
-msgstr "Fotos ansehen"
-
-#: mod/photos.php:1301
-msgid "Edit photo"
-msgstr "Foto bearbeiten"
-
-#: mod/photos.php:1302
-msgid "Use as profile photo"
-msgstr "Als Profilbild verwenden"
-
-#: mod/photos.php:1308 src/Object/Post.php:149
-msgid "Private Message"
-msgstr "Private Nachricht"
-
-#: mod/photos.php:1327
-msgid "View Full Size"
-msgstr "Betrachte Originalgröße"
-
-#: mod/photos.php:1414
-msgid "Tags: "
-msgstr "Tags: "
-
-#: mod/photos.php:1417
-msgid "[Remove any tag]"
-msgstr "[Tag entfernen]"
-
-#: mod/photos.php:1432
-msgid "New album name"
-msgstr "Name des neuen Albums"
-
-#: mod/photos.php:1433
-msgid "Caption"
-msgstr "Bildunterschrift"
-
-#: mod/photos.php:1434
-msgid "Add a Tag"
-msgstr "Tag hinzufügen"
-
-#: mod/photos.php:1434
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-
-#: mod/photos.php:1435
-msgid "Do not rotate"
-msgstr "Nicht rotieren"
-
-#: mod/photos.php:1436
-msgid "Rotate CW (right)"
-msgstr "Drehen US (rechts)"
-
-#: mod/photos.php:1437
-msgid "Rotate CCW (left)"
-msgstr "Drehen EUS (links)"
-
-#: mod/photos.php:1471 src/Object/Post.php:296
-msgid "I like this (toggle)"
-msgstr "Ich mag das (toggle)"
-
-#: mod/photos.php:1472 src/Object/Post.php:297
-msgid "I don't like this (toggle)"
-msgstr "Ich mag das nicht (toggle)"
-
-#: mod/photos.php:1488 mod/photos.php:1527 mod/photos.php:1600
-#: mod/contacts.php:953 src/Object/Post.php:793
-msgid "This is you"
-msgstr "Das bist Du"
-
-#: mod/photos.php:1490 mod/photos.php:1529 mod/photos.php:1602
-#: src/Object/Post.php:399 src/Object/Post.php:795
-msgid "Comment"
-msgstr "Kommentar"
-
-#: mod/photos.php:1634
-msgid "Map"
-msgstr "Karte"
-
-#: mod/photos.php:1704 mod/videos.php:387
-msgid "View Album"
-msgstr "Album betrachten"
-
-#: mod/profile.php:37 src/Model/Profile.php:118
-msgid "Requested profile is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
-
-#: mod/profile.php:78 src/Protocol/OStatus.php:1252
-#, php-format
-msgid "%s's posts"
-msgstr "Beiträge von %s"
-
-#: mod/profile.php:79 src/Protocol/OStatus.php:1253
-#, php-format
-msgid "%s's comments"
-msgstr "Kommentare von %s"
-
-#: mod/profile.php:80 src/Protocol/OStatus.php:1251
-#, php-format
-msgid "%s's timeline"
-msgstr "Timeline von %s"
-
-#: mod/profile.php:173 mod/cal.php:142 mod/display.php:313
-msgid "Access to this profile has been restricted."
-msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
-
-#: mod/profile.php:194
-msgid "Tips for New Members"
-msgstr "Tipps für neue Nutzer"
-
-#: mod/videos.php:139
-msgid "Do you really want to delete this video?"
-msgstr "Möchtest Du dieses Video wirklich löschen?"
-
-#: mod/videos.php:144
-msgid "Delete Video"
-msgstr "Video Löschen"
-
-#: mod/videos.php:207
-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/cal.php:274 mod/events.php:391 view/theme/frio/theme.php:263
-#: view/theme/frio/theme.php:267 src/Content/Nav.php:104
-#: src/Content/Nav.php:169 src/Model/Profile.php:926 src/Model/Profile.php:937
-msgid "Events"
-msgstr "Veranstaltungen"
-
-#: mod/cal.php:275 mod/events.php:392
-msgid "View"
-msgstr "Ansehen"
-
-#: mod/cal.php:276 mod/events.php:394
-msgid "Previous"
-msgstr "Vorherige"
-
-#: mod/cal.php:277 mod/events.php:395 mod/install.php:209
-msgid "Next"
-msgstr "Nächste"
-
-#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
-msgid "today"
-msgstr "Heute"
-
-#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
-#: src/Model/Event.php:413
-msgid "month"
-msgstr "Monat"
-
-#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
-#: src/Model/Event.php:414
-msgid "week"
-msgstr "Woche"
-
-#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
-#: src/Model/Event.php:415
-msgid "day"
-msgstr "Tag"
-
-#: mod/cal.php:284 mod/events.php:404
-msgid "list"
-msgstr "Liste"
-
-#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214
-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:332
-msgid "calendar"
-msgstr "Kalender"
-
-#: mod/contacts.php:157
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] "%d Kontakt bearbeitet."
-msgstr[1] "%d Kontakte bearbeitet."
-
-#: mod/contacts.php:184 mod/contacts.php:400
-msgid "Could not access contact record."
-msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
-
-#: mod/contacts.php:194
-msgid "Could not locate selected profile."
-msgstr "Konnte das ausgewählte Profil nicht finden."
-
-#: mod/contacts.php:228
-msgid "Contact updated."
-msgstr "Kontakt aktualisiert."
-
-#: mod/contacts.php:421
-msgid "Contact has been blocked"
-msgstr "Kontakt wurde blockiert"
-
-#: mod/contacts.php:421
-msgid "Contact has been unblocked"
-msgstr "Kontakt wurde wieder freigegeben"
-
-#: mod/contacts.php:432
-msgid "Contact has been ignored"
-msgstr "Kontakt wurde ignoriert"
-
-#: mod/contacts.php:432
-msgid "Contact has been unignored"
-msgstr "Kontakt wird nicht mehr ignoriert"
-
-#: mod/contacts.php:443
-msgid "Contact has been archived"
-msgstr "Kontakt wurde archiviert"
-
-#: mod/contacts.php:443
-msgid "Contact has been unarchived"
-msgstr "Kontakt wurde aus dem Archiv geholt"
-
-#: mod/contacts.php:467
-msgid "Drop contact"
-msgstr "Kontakt löschen"
-
-#: mod/contacts.php:470 mod/contacts.php:823
-msgid "Do you really want to delete this contact?"
-msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
-
-#: mod/contacts.php:488
-msgid "Contact has been removed."
-msgstr "Kontakt wurde entfernt."
-
-#: mod/contacts.php:519
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Du hast mit %s eine beidseitige Freundschaft"
-
-#: mod/contacts.php:523
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Du teilst mit %s"
-
-#: mod/contacts.php:527
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s teilt mit Dir"
-
-#: mod/contacts.php:547
-msgid "Private communications are not available for this contact."
-msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
-
-#: mod/contacts.php:549
-msgid "Never"
-msgstr "Niemals"
-
-#: mod/contacts.php:552
-msgid "(Update was successful)"
-msgstr "(Aktualisierung war erfolgreich)"
-
-#: mod/contacts.php:552
-msgid "(Update was not successful)"
-msgstr "(Aktualisierung war nicht erfolgreich)"
-
-#: mod/contacts.php:554 mod/contacts.php:992
-msgid "Suggest friends"
-msgstr "Kontakte vorschlagen"
-
-#: mod/contacts.php:558
-#, php-format
-msgid "Network type: %s"
-msgstr "Netzwerktyp: %s"
-
-#: mod/contacts.php:563
-msgid "Communications lost with this contact!"
-msgstr "Verbindungen mit diesem Kontakt verloren!"
-
-#: mod/contacts.php:569
-msgid "Fetch further information for feeds"
-msgstr "Weitere Informationen zu Feeds holen"
-
-#: mod/contacts.php:571
-msgid ""
-"Fetch information like preview pictures, title and teaser from the feed "
-"item. You can activate this if the feed doesn't contain much text. Keywords "
-"are taken from the meta header in the feed item and are posted as hash tags."
-msgstr "Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht all zu viel Text beinhaltet. Schlagwörter werden auf den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet."
-
-#: mod/contacts.php:572 mod/admin.php:1272 mod/admin.php:1435
-#: mod/admin.php:1445
-msgid "Disabled"
-msgstr "Deaktiviert"
-
-#: mod/contacts.php:573
-msgid "Fetch information"
-msgstr "Beziehe Information"
-
-#: mod/contacts.php:574
-msgid "Fetch keywords"
-msgstr "Schlüsselwprter abrufen"
-
-#: mod/contacts.php:575
-msgid "Fetch information and keywords"
-msgstr "Beziehe Information und Schlüsselworte"
-
-#: mod/contacts.php:599 mod/unfollow.php:100
-msgid "Disconnect/Unfollow"
-msgstr "Verbindung lösen/Nicht mehr folgen"
-
-#: mod/contacts.php:608
-msgid "Contact"
-msgstr "Kontakt"
-
-#: mod/contacts.php:611
-msgid "Profile Visibility"
-msgstr "Profil-Sichtbarkeit"
-
-#: mod/contacts.php:612
-#, 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:613
-msgid "Contact Information / Notes"
-msgstr "Kontakt Informationen / Notizen"
-
-#: mod/contacts.php:614
-msgid "Their personal note"
-msgstr "Die persönliche Mitteilung"
-
-#: mod/contacts.php:616
-msgid "Edit contact notes"
-msgstr "Notizen zum Kontakt bearbeiten"
-
-#: mod/contacts.php:620
-msgid "Block/Unblock contact"
-msgstr "Kontakt blockieren/freischalten"
-
-#: mod/contacts.php:621
-msgid "Ignore contact"
-msgstr "Ignoriere den Kontakt"
-
-#: mod/contacts.php:622
-msgid "Repair URL settings"
-msgstr "URL Einstellungen reparieren"
-
-#: mod/contacts.php:623
-msgid "View conversations"
-msgstr "Unterhaltungen anzeigen"
-
-#: mod/contacts.php:628
-msgid "Last update:"
-msgstr "Letzte Aktualisierung: "
-
-#: mod/contacts.php:630
-msgid "Update public posts"
-msgstr "Öffentliche Beiträge aktualisieren"
-
-#: mod/contacts.php:632 mod/contacts.php:1002
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
-
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:485 mod/admin.php:1800
-msgid "Unblock"
-msgstr "Entsperren"
-
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:484 mod/admin.php:1799
-msgid "Block"
-msgstr "Sperren"
-
-#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
-msgid "Unignore"
-msgstr "Ignorieren aufheben"
-
-#: mod/contacts.php:642
-msgid "Currently blocked"
-msgstr "Derzeit geblockt"
-
-#: mod/contacts.php:643
-msgid "Currently ignored"
-msgstr "Derzeit ignoriert"
-
-#: mod/contacts.php:644
-msgid "Currently archived"
-msgstr "Momentan archiviert"
-
-#: mod/contacts.php:645
-msgid "Awaiting connection acknowledge"
-msgstr "Bedarf der Bestätigung des Kontakts"
-
-#: mod/contacts.php:646
-msgid ""
-"Replies/likes to your public posts may still be visible"
-msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein"
-
-#: mod/contacts.php:647
-msgid "Notification for new posts"
-msgstr "Benachrichtigung bei neuen Beiträgen"
-
-#: mod/contacts.php:647
-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:650
-msgid "Blacklisted keywords"
-msgstr "Blacklistete Schlüsselworte "
-
-#: mod/contacts.php:650
-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:662 src/Model/Profile.php:424
-msgid "XMPP:"
-msgstr "XMPP:"
-
-#: mod/contacts.php:667
-msgid "Actions"
-msgstr "Aktionen"
-
-#: mod/contacts.php:669 mod/contacts.php:855 view/theme/frio/theme.php:259
-#: src/Content/Nav.php:100 src/Model/Profile.php:890
-msgid "Status"
-msgstr "Status"
-
-#: mod/contacts.php:670
-msgid "Contact Settings"
-msgstr "Kontakteinstellungen"
-
-#: mod/contacts.php:711
-msgid "Suggestions"
-msgstr "Kontaktvorschläge"
-
-#: mod/contacts.php:714
-msgid "Suggest potential friends"
-msgstr "Kontakte vorschlagen"
-
-#: mod/contacts.php:722
-msgid "Show all contacts"
-msgstr "Alle Kontakte anzeigen"
-
-#: mod/contacts.php:727
-msgid "Unblocked"
-msgstr "Ungeblockt"
-
-#: mod/contacts.php:730
-msgid "Only show unblocked contacts"
-msgstr "Nur nicht-blockierte Kontakte anzeigen"
-
-#: mod/contacts.php:735
-msgid "Blocked"
-msgstr "Geblockt"
-
-#: mod/contacts.php:738
-msgid "Only show blocked contacts"
-msgstr "Nur blockierte Kontakte anzeigen"
-
-#: mod/contacts.php:743
-msgid "Ignored"
-msgstr "Ignoriert"
-
-#: mod/contacts.php:746
-msgid "Only show ignored contacts"
-msgstr "Nur ignorierte Kontakte anzeigen"
-
-#: mod/contacts.php:751
-msgid "Archived"
-msgstr "Archiviert"
-
-#: mod/contacts.php:754
-msgid "Only show archived contacts"
-msgstr "Nur archivierte Kontakte anzeigen"
-
-#: mod/contacts.php:759
-msgid "Hidden"
-msgstr "Verborgen"
-
-#: mod/contacts.php:762
-msgid "Only show hidden contacts"
-msgstr "Nur verborgene Kontakte anzeigen"
-
-#: mod/contacts.php:818
-msgid "Search your contacts"
-msgstr "Suche in deinen Kontakten"
-
-#: mod/contacts.php:820 mod/directory.php:209 src/Content/Widget.php:63
-msgid "Find"
-msgstr "Finde"
-
-#: mod/contacts.php:826 mod/settings.php:170 mod/settings.php:701
-msgid "Update"
-msgstr "Aktualisierungen"
-
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Archive"
-msgstr "Archivieren"
-
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Unarchive"
-msgstr "Aus Archiv zurückholen"
-
-#: mod/contacts.php:832
-msgid "Batch Actions"
-msgstr "Stapelverarbeitung"
-
-#: mod/contacts.php:858 mod/unfollow.php:132 mod/follow.php:186
-#: src/Model/Profile.php:893
-msgid "Status Messages and Posts"
-msgstr "Statusnachrichten und Beiträge"
-
-#: mod/contacts.php:866 src/Model/Profile.php:901
-msgid "Profile Details"
-msgstr "Profildetails"
-
-#: mod/contacts.php:878
-msgid "View all contacts"
-msgstr "Alle Kontakte anzeigen"
-
-#: mod/contacts.php:889
-msgid "View all common friends"
-msgstr "Alle Kontakte anzeigen"
-
-#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1351
-#: src/Model/Profile.php:867
-msgid "Advanced"
-msgstr "Erweitert"
-
-#: mod/contacts.php:898
-msgid "Advanced Contact Settings"
-msgstr "Fortgeschrittene Kontakteinstellungen"
-
-#: mod/contacts.php:930
-msgid "Mutual Friendship"
-msgstr "Beidseitige Freundschaft"
-
-#: mod/contacts.php:934
-msgid "is a fan of yours"
-msgstr "ist ein Fan von dir"
-
-#: mod/contacts.php:938
-msgid "you are a fan of"
-msgstr "Du bist Fan von"
-
-#: mod/contacts.php:1013
-msgid "Toggle Blocked status"
-msgstr "Geblockt-Status ein-/ausschalten"
-
-#: mod/contacts.php:1021
-msgid "Toggle Ignored status"
-msgstr "Ignoriert-Status ein-/ausschalten"
-
-#: mod/contacts.php:1029
-msgid "Toggle Archive status"
-msgstr "Archiviert-Status ein-/ausschalten"
-
-#: mod/contacts.php:1037
-msgid "Delete contact"
-msgstr "Lösche den Kontakt"
-
-#: mod/delegate.php:37
-msgid "Parent user not found."
-msgstr "Verwalter nicht gefunden."
-
-#: mod/delegate.php:144
-msgid "No parent user"
-msgstr "Kein Verwalter"
-
-#: mod/delegate.php:159
-msgid "Parent Password:"
-msgstr "Passwort des Verwalters"
-
-#: mod/delegate.php:159
-msgid ""
-"Please enter the password of the parent account to legitimize your request."
-msgstr "Bitte gib das Passwort des Verwalters ein um deine Anfrage zu bestätigen."
-
-#: mod/delegate.php:164
-msgid "Parent User"
-msgstr "Verwalter"
-
-#: mod/delegate.php:167
-msgid ""
-"Parent users have total control about this account, including the account "
-"settings. Please double check whom you give this access."
-msgstr "Verwalter haben Zugriff auf alle Funktionen dieses Benutzerkontos und können dessen Einstellungen ändern."
-
-#: mod/delegate.php:168 mod/admin.php:307 mod/admin.php:1346
-#: mod/admin.php:1965 mod/admin.php:2218 mod/admin.php:2292 mod/admin.php:2439
-#: mod/settings.php:675 mod/settings.php:784 mod/settings.php:872
-#: mod/settings.php:961 mod/settings.php:1194
-msgid "Save Settings"
-msgstr "Einstellungen speichern"
-
-#: mod/delegate.php:169 src/Content/Nav.php:204
-msgid "Delegate Page Management"
-msgstr "Delegiere das Management für die Seite"
-
-#: mod/delegate.php:170
-msgid "Delegates"
-msgstr "Bevollmächtigte"
-
-#: mod/delegate.php:172
-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:173
-msgid "Existing Page Delegates"
-msgstr "Vorhandene Bevollmächtigte für die Seite"
-
-#: mod/delegate.php:175
-msgid "Potential Delegates"
-msgstr "Potentielle Bevollmächtigte"
-
-#: mod/delegate.php:178
-msgid "Add"
-msgstr "Hinzufügen"
-
-#: mod/delegate.php:179
-msgid "No entries."
-msgstr "Keine Einträge."
-
-#: mod/events.php:105 mod/events.php:107
-msgid "Event can not end before it has started."
-msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
-
-#: mod/events.php:114 mod/events.php:116
-msgid "Event title and start time are required."
-msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
-
-#: mod/events.php:393
-msgid "Create New Event"
-msgstr "Neue Veranstaltung erstellen"
-
-#: mod/events.php:506
-msgid "Event details"
-msgstr "Veranstaltungsdetails"
-
-#: mod/events.php:507
-msgid "Starting date and Title are required."
-msgstr "Anfangszeitpunkt und Titel werden benötigt"
-
-#: mod/events.php:508 mod/events.php:509
-msgid "Event Starts:"
-msgstr "Veranstaltungsbeginn:"
-
-#: mod/events.php:508 mod/events.php:520 mod/profiles.php:700
-msgid "Required"
-msgstr "Benötigt"
-
-#: mod/events.php:510 mod/events.php:526
-msgid "Finish date/time is not known or not relevant"
-msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
-
-#: mod/events.php:512 mod/events.php:513
-msgid "Event Finishes:"
-msgstr "Veranstaltungsende:"
-
-#: mod/events.php:514 mod/events.php:527
-msgid "Adjust for viewer timezone"
-msgstr "An Zeitzone des Betrachters anpassen"
-
-#: mod/events.php:516
-msgid "Description:"
-msgstr "Beschreibung"
-
-#: mod/events.php:520 mod/events.php:522
-msgid "Title:"
-msgstr "Titel:"
-
-#: mod/events.php:523 mod/events.php:524
-msgid "Share this event"
-msgstr "Veranstaltung teilen"
-
-#: mod/events.php:531 src/Model/Profile.php:866
-msgid "Basic"
-msgstr "Allgemein"
-
-#: mod/events.php:552
-msgid "Failed to remove event"
-msgstr "Entfernen der Veranstaltung fehlgeschlagen"
-
-#: mod/events.php:554
-msgid "Event removed"
-msgstr "Veranstaltung enfternt"
-
-#: mod/feedtest.php:20
-msgid "You must be logged in to use this module"
-msgstr "Du musst eingeloggt sein um dieses Modul benutzen zu können."
-
-#: mod/feedtest.php:48
-msgid "Source URL"
-msgstr "URL der Quelle"
-
-#: mod/install.php:114
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica-Server für soziale Netzwerke – Setup"
-
-#: mod/install.php:120
-msgid "Could not connect to database."
-msgstr "Verbindung zur Datenbank gescheitert."
-
-#: mod/install.php:124
-msgid "Could not create table."
-msgstr "Tabelle konnte nicht angelegt werden."
-
-#: mod/install.php:130
-msgid "Your Friendica site database has been installed."
-msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
-
-#: mod/install.php:135
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
-
-#: mod/install.php:136 mod/install.php:208 mod/install.php:558
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Lies bitte die \"INSTALL.txt\"."
-
-#: mod/install.php:148
-msgid "Database already in use."
-msgstr "Die Datenbank wird bereits verwendet."
-
-#: mod/install.php:205
-msgid "System check"
-msgstr "Systemtest"
-
-#: mod/install.php:210
-msgid "Check again"
-msgstr "Noch einmal testen"
-
-#: mod/install.php:230
-msgid "Database connection"
-msgstr "Datenbankverbindung"
-
-#: mod/install.php:231
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."
-
-#: mod/install.php:232
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."
-
-#: mod/install.php:233
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."
-
-#: mod/install.php:237
-msgid "Database Server Name"
-msgstr "Datenbank-Server"
-
-#: mod/install.php:238
-msgid "Database Login Name"
-msgstr "Datenbank-Nutzer"
-
-#: mod/install.php:239
-msgid "Database Login Password"
-msgstr "Datenbank-Passwort"
-
-#: mod/install.php:239
-msgid "For security reasons the password must not be empty"
-msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein."
-
-#: mod/install.php:240
-msgid "Database Name"
-msgstr "Datenbank-Name"
-
-#: mod/install.php:241 mod/install.php:281
-msgid "Site administrator email address"
-msgstr "E-Mail-Adresse des Administrators"
-
-#: mod/install.php:241 mod/install.php:281
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."
-
-#: mod/install.php:245 mod/install.php:284
-msgid "Please select a default timezone for your website"
-msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
-
-#: mod/install.php:271
-msgid "Site settings"
-msgstr "Server-Einstellungen"
-
-#: mod/install.php:285
-msgid "System Language:"
-msgstr "Systemsprache:"
-
-#: mod/install.php:285
-msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
-msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"
-
-#: mod/install.php:325
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
-
-#: mod/install.php:326
-msgid ""
-"If you don't have a command line version of PHP installed on your server, "
-"you will not be able to run the background processing. See 'Setup the worker' "
-msgstr "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten'für das Worker Setup' "
-
-#: mod/install.php:330
-msgid "PHP executable path"
-msgstr "Pfad zu PHP"
-
-#: mod/install.php:330
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
-
-#: mod/install.php:335
-msgid "Command line PHP"
-msgstr "Kommandozeilen-PHP"
-
-#: mod/install.php:344
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
-
-#: mod/install.php:345
-msgid "Found PHP version: "
-msgstr "Gefundene PHP Version:"
-
-#: mod/install.php:347
-msgid "PHP cli binary"
-msgstr "PHP CLI Binary"
-
-#: mod/install.php:358
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."
-
-#: mod/install.php:359
-msgid "This is required for message delivery to work."
-msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
-
-#: mod/install.php:361
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
-
-#: mod/install.php:384
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
-
-#: mod/install.php:385
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
-
-#: mod/install.php:387
-msgid "Generate encryption keys"
-msgstr "Schlüssel erzeugen"
-
-#: mod/install.php:394
-msgid "libCurl PHP module"
-msgstr "PHP: libCurl-Modul"
-
-#: mod/install.php:395
-msgid "GD graphics PHP module"
-msgstr "PHP: GD-Grafikmodul"
-
-#: mod/install.php:396
-msgid "OpenSSL PHP module"
-msgstr "PHP: OpenSSL-Modul"
-
-#: mod/install.php:397
-msgid "PDO or MySQLi PHP module"
-msgstr "PDO oder MySQLi PHP Modul"
-
-#: mod/install.php:398
-msgid "mb_string PHP module"
-msgstr "PHP: mb_string-Modul"
-
-#: mod/install.php:399
-msgid "XML PHP module"
-msgstr "XML PHP Modul"
-
-#: mod/install.php:400
-msgid "iconv PHP module"
-msgstr "PHP iconv Modul"
-
-#: mod/install.php:401
-msgid "POSIX PHP module"
-msgstr "PHP POSIX Modul"
-
-#: mod/install.php:405 mod/install.php:407
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
-
-#: mod/install.php:405
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
-
-#: mod/install.php:413
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
-
-#: mod/install.php:417
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
-
-#: mod/install.php:421
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
-
-#: mod/install.php:425
-msgid "Error: PDO or MySQLi PHP module required but not installed."
-msgstr "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert."
-
-#: mod/install.php:429
-msgid "Error: The MySQL driver for PDO is not installed."
-msgstr "Fehler: der MySQL Treiber für PDO ist nicht installiert"
-
-#: mod/install.php:433
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
-
-#: mod/install.php:437
-msgid "Error: iconv PHP module required but not installed."
-msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
-
-#: mod/install.php:441
-msgid "Error: POSIX PHP module required but not installed."
-msgstr "Fehler POSIX PHP Modul erforderlich aber nicht installiert."
-
-#: mod/install.php:451
-msgid "Error, XML PHP module required but not installed."
-msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
-
-#: mod/install.php:463
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
-
-#: mod/install.php:464
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."
-
-#: mod/install.php:465
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."
-
-#: mod/install.php:466
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."
-
-#: mod/install.php:469
-msgid ".htconfig.php is writable"
-msgstr "Schreibrechte auf .htconfig.php"
-
-#: mod/install.php:479
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
-
-#: mod/install.php:480
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
-
-#: mod/install.php:481
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
-
-#: mod/install.php:482
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
-
-#: mod/install.php:485
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 ist schreibbar"
-
-#: mod/install.php:501
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
-
-#: mod/install.php:503
-msgid "Url rewrite is working"
-msgstr "URL rewrite funktioniert"
-
-#: mod/install.php:522
-msgid "ImageMagick PHP extension is not installed"
-msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
-
-#: mod/install.php:524
-msgid "ImageMagick PHP extension is installed"
-msgstr "ImageMagick PHP Erweiterung ist installiert"
-
-#: mod/install.php:526
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagick unterstützt GIF"
-
-#: mod/install.php:533
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."
-
-#: mod/install.php:556
-msgid "What next "
-msgstr "Wie geht es weiter? "
-
-#: mod/install.php:557
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"worker."
-msgstr "Wichtig: Du musst [manuell] einen Cronjob (o.ä.) für den Worker einrichten."
-
-#: mod/install.php:560
-#, php-format
-msgid ""
-"Go to your new Friendica node registration page "
-"and register as new user. Remember to use the same email you have entered as"
-" administrator email. This will allow you to enter the site admin panel."
-msgstr "Du solltest nun die Seite zur Nutzerregistrierung deiner neuen Friendica Instanz besuchen und einen neuen Nutzer einrichten. Bitte denke daran die selbe E-Mail Adresse anzugeben, die du auch als Administrator E-Mail angegeben hast, damit du das Admin-Panel verwenden kannst."
-
-#: mod/item.php:114
-msgid "Unable to locate original post."
-msgstr "Konnte den Originalbeitrag nicht finden."
-
-#: mod/item.php:274
-msgid "Empty post discarded."
-msgstr "Leerer Beitrag wurde verworfen."
-
-#: mod/item.php:799
-#, 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:801
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Du kannst sie online unter %s besuchen"
-
-#: mod/item.php:802
-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:806
-#, php-format
-msgid "%s posted an update."
-msgstr "%s hat ein Update veröffentlicht."
-
-#: mod/oexchange.php:30
-msgid "Post successful."
-msgstr "Beitrag erfolgreich veröffentlicht."
-
-#: mod/ostatus_subscribe.php:21
-msgid "Subscribing to OStatus contacts"
-msgstr "OStatus Kontakten folgen"
-
-#: mod/ostatus_subscribe.php:33
-msgid "No contact provided."
-msgstr "Keine Kontakte gefunden."
-
-#: mod/ostatus_subscribe.php:40
-msgid "Couldn't fetch information for contact."
-msgstr "Konnte die Kontaktinformationen nicht einholen."
-
-#: mod/ostatus_subscribe.php:50
-msgid "Couldn't fetch friends for contact."
-msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen."
-
-#: mod/ostatus_subscribe.php:78
-msgid "success"
-msgstr "Erfolg"
-
-#: mod/ostatus_subscribe.php:80
-msgid "failed"
-msgstr "Fehlgeschlagen"
-
-#: mod/ostatus_subscribe.php:83 src/Object/Post.php:279
-msgid "ignored"
-msgstr "Ignoriert"
-
-#: mod/profile_photo.php:55
-msgid "Image uploaded but image cropping failed."
-msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
-
-#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104
-#: mod/profile_photo.php:315
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
-
-#: mod/profile_photo.php:125
-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:247
-msgid "Upload File:"
-msgstr "Datei hochladen:"
-
-#: mod/profile_photo.php:248
-msgid "Select a profile:"
-msgstr "Profil auswählen:"
-
-#: mod/profile_photo.php:253
-msgid "or"
-msgstr "oder"
-
-#: mod/profile_photo.php:253
-msgid "skip this step"
-msgstr "diesen Schritt überspringen"
-
-#: mod/profile_photo.php:253
-msgid "select a photo from your photo albums"
-msgstr "wähle ein Foto aus deinen Fotoalben"
-
-#: mod/profile_photo.php:266
-msgid "Crop Image"
-msgstr "Bild zurechtschneiden"
-
-#: mod/profile_photo.php:267
-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:269
-msgid "Done Editing"
-msgstr "Bearbeitung abgeschlossen"
-
-#: mod/profile_photo.php:305
-msgid "Image uploaded successfully."
-msgstr "Bild erfolgreich hochgeladen."
-
-#: mod/unfollow.php:34
-msgid "Contact wasn't found or can't be unfollowed."
-msgstr "Der Kontakt konnte nicht gefunden oder nicht entfolgt werden."
-
-#: mod/unfollow.php:47
-msgid "Contact unfollowed"
-msgstr "Kontakt wird nicht mehr gefolgt"
-
-#: mod/unfollow.php:73
-msgid "You aren't a friend of this contact."
-msgstr "Du hast keine beidseitige Freundschaft mit diesem Kontakt."
-
-#: mod/unfollow.php:79
-msgid "Unfollowing is currently not supported by your network."
-msgstr "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt."
+#: mod/fbrowser.php:131
+msgid "Files"
+msgstr "Dateien"
#: mod/admin.php:106
msgid "Theme settings updated."
msgstr "Themeneinstellungen aktualisiert."
-#: mod/admin.php:179 src/Content/Nav.php:174
-msgid "Information"
-msgstr "Information"
-
#: mod/admin.php:180
msgid "Overview"
msgstr "Übersicht"
@@ -4096,27 +5375,14 @@ msgstr "Konfiguration"
msgid "Site"
msgstr "Seite"
-#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1788 mod/admin.php:1804
+#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1802 mod/admin.php:1818
msgid "Users"
msgstr "Nutzer"
-#: mod/admin.php:185 mod/admin.php:1904 mod/admin.php:1964 mod/settings.php:86
-msgid "Addons"
-msgstr "Addons"
-
-#: mod/admin.php:186 mod/admin.php:2173 mod/admin.php:2217
+#: mod/admin.php:186 mod/admin.php:2187 mod/admin.php:2231
msgid "Themes"
msgstr "Themen"
-#: mod/admin.php:187 mod/settings.php:64
-msgid "Additional features"
-msgstr "Zusätzliche Features"
-
-#: mod/admin.php:188 mod/admin.php:302 mod/register.php:288
-#: src/Module/Tos.php:48
-msgid "Terms of Service"
-msgstr "Nutzungsbedingungen"
-
#: mod/admin.php:189
msgid "Database"
msgstr "Datenbank"
@@ -4145,11 +5411,11 @@ msgstr "Server Blockliste"
msgid "Delete Item"
msgstr "Eintrag löschen"
-#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2291
+#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2305
msgid "Logs"
msgstr "Protokolle"
-#: mod/admin.php:198 mod/admin.php:2358
+#: mod/admin.php:198 mod/admin.php:2372
msgid "View Logs"
msgstr "Protokolle anzeigen"
@@ -4169,10 +5435,6 @@ msgstr "Adresse untersuchen"
msgid "check webfinger"
msgstr "Webfinger überprüfen"
-#: mod/admin.php:222 src/Content/Nav.php:217
-msgid "Admin"
-msgstr "Administration"
-
#: mod/admin.php:223
msgid "Addon Features"
msgstr "Addon Features"
@@ -4183,8 +5445,8 @@ msgstr "Nutzeranmeldungen die auf Bestätigung warten"
#: mod/admin.php:301 mod/admin.php:361 mod/admin.php:478 mod/admin.php:520
#: mod/admin.php:717 mod/admin.php:752 mod/admin.php:848 mod/admin.php:1344
-#: mod/admin.php:1787 mod/admin.php:1903 mod/admin.php:1963 mod/admin.php:2172
-#: mod/admin.php:2216 mod/admin.php:2290 mod/admin.php:2357
+#: mod/admin.php:1801 mod/admin.php:1917 mod/admin.php:1977 mod/admin.php:2186
+#: mod/admin.php:2230 mod/admin.php:2304 mod/admin.php:2371
msgid "Administration"
msgstr "Administration"
@@ -4223,10 +5485,6 @@ msgstr "Füge hier die Nutzungsbedingungen deines Knotens ein. Du kannst BBCode
msgid "The blocked domain"
msgstr "Die blockierte Domain"
-#: mod/admin.php:354 mod/admin.php:372 mod/friendica.php:128
-msgid "Reason for the block"
-msgstr "Begründung für die Blockierung"
-
#: mod/admin.php:354 mod/admin.php:367
msgid "The reason why you blocked this domain."
msgstr "Die Begründung warum du diese Domain blockiert hast."
@@ -4300,15 +5558,6 @@ msgstr "Server zur Blockliste hinzugefügt."
msgid "Site blocklist updated."
msgstr "Blockliste aktualisiert."
-#: mod/admin.php:441 src/Core/Console/GlobalCommunityBlock.php:72
-msgid "The contact has been blocked from the node"
-msgstr "Der Kontakt wurde von diesem Knoten geblockt"
-
-#: mod/admin.php:443 src/Core/Console/GlobalCommunityBlock.php:69
-#, php-format
-msgid "Could not find any contact entry for this URL (%s)"
-msgstr "Für die URL (%s) konnte kein Kontakt gefunden werden"
-
#: mod/admin.php:450
#, php-format
msgid "%s contact unblocked"
@@ -4330,7 +5579,7 @@ msgstr "Auf dieser Seite kannst du Accounts von anderen Knoten blockieren und da
msgid "Block Remote Contact"
msgstr "Blockiere entfernten Kontakt"
-#: mod/admin.php:482 mod/admin.php:1790
+#: mod/admin.php:482 mod/admin.php:1804
msgid "select all"
msgstr "Alle auswählen"
@@ -4338,6 +5587,16 @@ msgstr "Alle auswählen"
msgid "select none"
msgstr "Auswahl aufheben"
+#: mod/admin.php:484 mod/admin.php:1813 mod/contacts.php:637
+#: mod/contacts.php:827 mod/contacts.php:1011
+msgid "Block"
+msgstr "Sperren"
+
+#: mod/admin.php:485 mod/admin.php:1814 mod/contacts.php:637
+#: mod/contacts.php:827 mod/contacts.php:1011
+msgid "Unblock"
+msgstr "Entsperren"
+
#: mod/admin.php:486
msgid "No remote contact is blocked from this node."
msgstr "Derzeit werden keine Kontakte auf diesem Knoten blockiert."
@@ -4354,9 +5613,10 @@ msgstr "Blockieren von weiteren Kontakten"
msgid "Photo"
msgstr "Foto:"
-#: mod/admin.php:490 mod/profiles.php:394
-msgid "Address"
-msgstr "Adresse"
+#: mod/admin.php:490 mod/admin.php:500 mod/unfollow.php:122
+#: mod/notifications.php:258 mod/follow.php:166 mod/contacts.php:656
+msgid "Profile URL"
+msgstr "Profil URL"
#: mod/admin.php:498
#, php-format
@@ -4434,11 +5694,6 @@ msgstr "Empfänger Name"
msgid "Recipient Profile"
msgstr "Empfänger Profil"
-#: mod/admin.php:758 view/theme/frio/theme.php:266
-#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:178
-msgid "Network"
-msgstr "Netzwerk"
-
#: mod/admin.php:759
msgid "Created"
msgstr "Erstellt"
@@ -4490,19 +5745,19 @@ msgid ""
" check your crontab settings."
msgstr "Der Hintergrundprozess (worker) wurde zuletzt um %s UTC ausgeführt. Das war vor mehr als einer Stunde. Bitte überprüfe deine crontab Einstellungen."
-#: mod/admin.php:816 mod/admin.php:1739
+#: mod/admin.php:816
msgid "Normal Account"
msgstr "Normales Konto"
-#: mod/admin.php:817 mod/admin.php:1740
+#: mod/admin.php:817
msgid "Automatic Follower Account"
msgstr "Automatisch folgendes Konto (Marktschreier)"
-#: mod/admin.php:818 mod/admin.php:1741
+#: mod/admin.php:818
msgid "Public Forum Account"
msgstr "Öffentliches Forum Konto"
-#: mod/admin.php:819 mod/admin.php:1742
+#: mod/admin.php:819
msgid "Automatic Friend Account"
msgstr "Automatische Freunde Seite"
@@ -4546,10 +5801,6 @@ msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus %1$s
log file.\\r\\n Check to see "
"if file %1$s exist and is readable."
msgstr "Fehler beim Öffnen der Logdatei %1$s .\\r\\n Bitte überprüfe ob die Datei %1$s existiert und gelesen werden kann."
-#: mod/admin.php:2337
+#: mod/admin.php:2351
#, php-format
msgid ""
"Couldn't open %1$s log file.\\r\\n Check to see if file"
" %1$s is readable."
msgstr "Konnte die Logdatei %1$s nicht öffnen.\\r\\n Bitte stelle sicher, dass die Datei %1$s lesbar ist."
-#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775
-msgid "Off"
-msgstr "Aus"
-
-#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775
-msgid "On"
-msgstr "An"
-
-#: mod/admin.php:2429
+#: mod/admin.php:2443
#, php-format
msgid "Lock feature %s"
msgstr "Feature festlegen: %s"
-#: mod/admin.php:2437
+#: mod/admin.php:2451
msgid "Manage Additional Features"
msgstr "Zusätzliche Features Verwalten"
-#: mod/babel.php:22
-msgid "Source input"
-msgstr "Originaltext:"
+#: mod/delegate.php:37
+msgid "Parent user not found."
+msgstr "Verwalter nicht gefunden."
-#: mod/babel.php:28
-msgid "BBCode::convert (raw HTML)"
-msgstr "BBCode::convert (pures HTML)"
+#: mod/delegate.php:144
+msgid "No parent user"
+msgstr "Kein Verwalter"
-#: mod/babel.php:33
-msgid "BBCode::convert"
-msgstr "BBCode::convert"
+#: mod/delegate.php:159
+msgid "Parent Password:"
+msgstr "Passwort des Verwalters"
-#: mod/babel.php:39
-msgid "BBCode::convert => HTML::toBBCode"
-msgstr "BBCode::convert => HTML::toBBCode"
+#: mod/delegate.php:159
+msgid ""
+"Please enter the password of the parent account to legitimize your request."
+msgstr "Bitte gib das Passwort des Verwalters ein um deine Anfrage zu bestätigen."
-#: mod/babel.php:45
-msgid "BBCode::toMarkdown"
-msgstr "BBCode::toMarkdown"
+#: mod/delegate.php:164
+msgid "Parent User"
+msgstr "Verwalter"
-#: mod/babel.php:51
-msgid "BBCode::toMarkdown => Markdown::convert"
-msgstr "BBCode::toMarkdown => Markdown::convert"
+#: mod/delegate.php:167
+msgid ""
+"Parent users have total control about this account, including the account "
+"settings. Please double check whom you give this access."
+msgstr "Verwalter haben Zugriff auf alle Funktionen dieses Benutzerkontos und können dessen Einstellungen ändern."
-#: mod/babel.php:57
-msgid "BBCode::toMarkdown => Markdown::toBBCode"
-msgstr "BBCode::toMarkdown => Markdown::toBBCode"
+#: mod/delegate.php:170
+msgid "Delegates"
+msgstr "Bevollmächtigte"
-#: mod/babel.php:63
-msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
-msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
+#: mod/delegate.php:172
+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/babel.php:70
-msgid "Source input \\x28Diaspora format\\x29"
-msgstr "Original Text \\x28Diaspora Fromat\\x29"
+#: mod/delegate.php:173
+msgid "Existing Page Delegates"
+msgstr "Vorhandene Bevollmächtigte für die Seite"
-#: mod/babel.php:76
-msgid "Markdown::toBBCode"
-msgstr "Markdown::toBBCode"
+#: mod/delegate.php:175
+msgid "Potential Delegates"
+msgstr "Potentielle Bevollmächtigte"
-#: mod/babel.php:83
-msgid "Raw HTML input"
-msgstr "Reine HTML Eingabe"
+#: mod/delegate.php:177 mod/tagrm.php:98
+msgid "Remove"
+msgstr "Entfernen"
-#: mod/babel.php:88
-msgid "HTML Input"
-msgstr "HTML Eingabe"
+#: mod/delegate.php:178
+msgid "Add"
+msgstr "Hinzufügen"
-#: mod/babel.php:94
-msgid "HTML::toBBCode"
-msgstr "HTML::toBBCode"
+#: mod/delegate.php:179
+msgid "No entries."
+msgstr "Keine Einträge."
-#: mod/babel.php:100
-msgid "HTML::toPlaintext"
-msgstr "HTML::toPlaintext"
+#: mod/photos.php:109 mod/photos.php:1713
+msgid "Recent Photos"
+msgstr "Neueste Fotos"
-#: mod/babel.php:108
-msgid "Source text"
-msgstr "Quelltext"
+#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
+msgid "Upload New Photos"
+msgstr "Neue Fotos hochladen"
-#: mod/babel.php:109
-msgid "BBCode"
-msgstr "BBCode"
+#: mod/photos.php:184
+msgid "Contact information unavailable"
+msgstr "Kontaktinformationen nicht verfügbar"
-#: mod/babel.php:110
-msgid "Markdown"
-msgstr "Markdown"
+#: mod/photos.php:204
+msgid "Album not found."
+msgstr "Album nicht gefunden."
-#: mod/babel.php:111
-msgid "HTML"
-msgstr "HTML"
+#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
+msgid "Delete Album"
+msgstr "Album löschen"
-#: mod/directory.php:152 src/Model/Profile.php:421 src/Model/Profile.php:771
-msgid "Status:"
-msgstr "Status:"
+#: mod/photos.php:243
+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/directory.php:153 src/Model/Profile.php:422 src/Model/Profile.php:788
-msgid "Homepage:"
-msgstr "Homepage:"
+#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
+msgid "Delete Photo"
+msgstr "Foto löschen"
-#: mod/directory.php:202 view/theme/vier/theme.php:201
-msgid "Global Directory"
-msgstr "Weltweites Verzeichnis"
+#: mod/photos.php:319
+msgid "Do you really want to delete this photo?"
+msgstr "Möchtest Du wirklich dieses Foto löschen?"
-#: mod/directory.php:204
-msgid "Find on this site"
-msgstr "Auf diesem Server suchen"
+#: mod/photos.php:667
+msgid "a photo"
+msgstr "einem Foto"
-#: mod/directory.php:206
-msgid "Results for:"
-msgstr "Ergebnisse für:"
-
-#: mod/directory.php:208
-msgid "Site Directory"
-msgstr "Verzeichnis"
-
-#: mod/directory.php:213
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
-
-#: mod/dirfind.php:49
+#: mod/photos.php:667
#, php-format
-msgid "People Search - %s"
-msgstr "Personensuche - %s"
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s wurde von %3$s in %2$s getaggt"
-#: mod/dirfind.php:60
+#: mod/photos.php:769
+msgid "Image upload didn't complete, please try again"
+msgstr "Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut."
+
+#: mod/photos.php:772
+msgid "Image file is missing"
+msgstr "Bilddatei konnte nicht gefunden werden."
+
+#: mod/photos.php:777
+msgid ""
+"Server can't accept new file upload at this time, please contact your "
+"administrator"
+msgstr "Der Server kann derzeit keine neuen Datei Uploads akzeptieren. Bitte kontaktiere deinen Administrator."
+
+#: mod/photos.php:803
+msgid "Image file is empty."
+msgstr "Bilddatei ist leer."
+
+#: mod/photos.php:940
+msgid "No photos selected"
+msgstr "Keine Bilder ausgewählt"
+
+#: mod/photos.php:1036 mod/videos.php:309
+msgid "Access to this item is restricted."
+msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
+
+#: mod/photos.php:1090
+msgid "Upload Photos"
+msgstr "Bilder hochladen"
+
+#: mod/photos.php:1094 mod/photos.php:1156
+msgid "New album name: "
+msgstr "Name des neuen Albums: "
+
+#: mod/photos.php:1095
+msgid "or existing album name: "
+msgstr "oder existierender Albumname: "
+
+#: mod/photos.php:1096
+msgid "Do not show a status post for this upload"
+msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
+
+#: mod/photos.php:1167
+msgid "Edit Album"
+msgstr "Album bearbeiten"
+
+#: mod/photos.php:1172
+msgid "Show Newest First"
+msgstr "Zeige neueste zuerst"
+
+#: mod/photos.php:1174
+msgid "Show Oldest First"
+msgstr "Zeige älteste zuerst"
+
+#: mod/photos.php:1195 mod/photos.php:1698
+msgid "View Photo"
+msgstr "Foto betrachten"
+
+#: mod/photos.php:1236
+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:1238
+msgid "Photo not available"
+msgstr "Foto nicht verfügbar"
+
+#: mod/photos.php:1301
+msgid "View photo"
+msgstr "Fotos ansehen"
+
+#: mod/photos.php:1301
+msgid "Edit photo"
+msgstr "Foto bearbeiten"
+
+#: mod/photos.php:1302
+msgid "Use as profile photo"
+msgstr "Als Profilbild verwenden"
+
+#: mod/photos.php:1327
+msgid "View Full Size"
+msgstr "Betrachte Originalgröße"
+
+#: mod/photos.php:1414
+msgid "Tags: "
+msgstr "Tags: "
+
+#: mod/photos.php:1417
+msgid "[Remove any tag]"
+msgstr "[Tag entfernen]"
+
+#: mod/photos.php:1432
+msgid "New album name"
+msgstr "Name des neuen Albums"
+
+#: mod/photos.php:1433
+msgid "Caption"
+msgstr "Bildunterschrift"
+
+#: mod/photos.php:1434
+msgid "Add a Tag"
+msgstr "Tag hinzufügen"
+
+#: mod/photos.php:1434
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+
+#: mod/photos.php:1435
+msgid "Do not rotate"
+msgstr "Nicht rotieren"
+
+#: mod/photos.php:1436
+msgid "Rotate CW (right)"
+msgstr "Drehen US (rechts)"
+
+#: mod/photos.php:1437
+msgid "Rotate CCW (left)"
+msgstr "Drehen EUS (links)"
+
+#: mod/photos.php:1634
+msgid "Map"
+msgstr "Karte"
+
+#: mod/photos.php:1704 mod/videos.php:387
+msgid "View Album"
+msgstr "Album betrachten"
+
+#: mod/nogroup.php:43 mod/contacts.php:960
+msgid "Edit contact"
+msgstr "Kontakt bearbeiten"
+
+#: mod/nogroup.php:63
+msgid "Contacts who are not members of a group"
+msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
+
+#: mod/community.php:46
+msgid "Community option not available."
+msgstr "Optionen für die Gemeinschaftsseite nicht verfügbar."
+
+#: mod/community.php:63
+msgid "Not available."
+msgstr "Nicht verfügbar."
+
+#: mod/community.php:76
+msgid "Local Community"
+msgstr "Lokale Gemeinschaft"
+
+#: mod/community.php:79
+msgid "Posts from local users on this server"
+msgstr "Beiträge von Nutzern dieses Servers"
+
+#: mod/community.php:87
+msgid "Global Community"
+msgstr "Globale Gemeinschaft"
+
+#: mod/community.php:90
+msgid "Posts from users of the whole federated network"
+msgstr "Beiträge von Nutzern des gesamten föderalen Netzwerks"
+
+#: mod/community.php:136 mod/search.php:228
+msgid "No results."
+msgstr "Keine Ergebnisse."
+
+#: mod/community.php:180
+msgid ""
+"This community stream shows all public posts received by this node. They may"
+" not reflect the opinions of this node’s users."
+msgstr "Diese Gemeinschaftsseite zeigt alle öffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers."
+
+#: mod/message.php:73 mod/wallmessage.php:57
+msgid "No recipient selected."
+msgstr "Kein Empfänger gewählt."
+
+#: mod/message.php:77
+msgid "Unable to locate contact information."
+msgstr "Konnte die Kontaktinformationen nicht finden."
+
+#: mod/message.php:80 mod/wallmessage.php:63
+msgid "Message could not be sent."
+msgstr "Nachricht konnte nicht gesendet werden."
+
+#: mod/message.php:83 mod/wallmessage.php:66
+msgid "Message collection failure."
+msgstr "Konnte Nachrichten nicht abrufen."
+
+#: mod/message.php:86 mod/wallmessage.php:69
+msgid "Message sent."
+msgstr "Nachricht gesendet."
+
+#: mod/message.php:136
+msgid "Do you really want to delete this message?"
+msgstr "Möchtest Du wirklich diese Nachricht löschen?"
+
+#: mod/message.php:156
+msgid "Message deleted."
+msgstr "Nachricht gelöscht."
+
+#: mod/message.php:185
+msgid "Conversation removed."
+msgstr "Unterhaltung gelöscht."
+
+#: mod/message.php:250 mod/wallmessage.php:132
+msgid "Send Private Message"
+msgstr "Private Nachricht senden"
+
+#: mod/message.php:251 mod/message.php:421 mod/wallmessage.php:134
+msgid "To:"
+msgstr "An:"
+
+#: mod/message.php:255 mod/message.php:423 mod/wallmessage.php:135
+msgid "Subject:"
+msgstr "Betreff:"
+
+#: mod/message.php:291
+msgid "No messages."
+msgstr "Keine Nachrichten."
+
+#: mod/message.php:330
+msgid "Message not available."
+msgstr "Nachricht nicht verfügbar."
+
+#: mod/message.php:397
+msgid "Delete message"
+msgstr "Nachricht löschen"
+
+#: mod/message.php:399 mod/message.php:500
+msgid "D, d M Y - g:i A"
+msgstr "D, d. M Y - H:i"
+
+#: mod/message.php:414 mod/message.php:497
+msgid "Delete conversation"
+msgstr "Unterhaltung löschen"
+
+#: mod/message.php:416
+msgid ""
+"No secure communications available. You may be able to "
+"respond from the sender's profile page."
+msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."
+
+#: mod/message.php:420
+msgid "Send Reply"
+msgstr "Antwort senden"
+
+#: mod/message.php:471
#, php-format
-msgid "Forum Search - %s"
-msgstr "Forensuche - %s"
+msgid "Unknown sender - %s"
+msgstr "'Unbekannter Absender - %s"
+
+#: mod/message.php:473
+#, php-format
+msgid "You and %s"
+msgstr "Du und %s"
+
+#: mod/message.php:475
+#, php-format
+msgid "%s and You"
+msgstr "%s und Du"
+
+#: mod/message.php:503
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d Nachricht"
+msgstr[1] "%d Nachrichten"
+
+#: mod/videos.php:139
+msgid "Do you really want to delete this video?"
+msgstr "Möchtest Du dieses Video wirklich löschen?"
+
+#: mod/videos.php:144
+msgid "Delete Video"
+msgstr "Video Löschen"
+
+#: mod/videos.php:207
+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/credits.php:18
+msgid "Credits"
+msgstr "Credits"
+
+#: mod/credits.php:19
+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/unfollow.php:34
+msgid "Contact wasn't found or can't be unfollowed."
+msgstr "Der Kontakt konnte nicht gefunden oder nicht entfolgt werden."
+
+#: mod/unfollow.php:47
+msgid "Contact unfollowed"
+msgstr "Kontakt wird nicht mehr gefolgt"
+
+#: mod/unfollow.php:65 mod/dfrn_request.php:662 mod/follow.php:62
+msgid "Submit Request"
+msgstr "Anfrage abschicken"
+
+#: mod/unfollow.php:73
+msgid "You aren't a friend of this contact."
+msgstr "Du hast keine beidseitige Freundschaft mit diesem Kontakt."
+
+#: mod/unfollow.php:79
+msgid "Unfollowing is currently not supported by your network."
+msgstr "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt."
+
+#: mod/unfollow.php:100 mod/contacts.php:599
+msgid "Disconnect/Unfollow"
+msgstr "Verbindung lösen/Nicht mehr folgen"
+
+#: mod/unfollow.php:113 mod/dfrn_request.php:660 mod/follow.php:157
+msgid "Your Identity Address:"
+msgstr "Adresse Deines Profils:"
+
+#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83
+#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112
+#: mod/wall_upload.php:155 mod/wall_upload.php:158
+msgid "Invalid request."
+msgstr "Ungültige Anfrage"
+
+#: mod/wall_attach.php:101
+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:101
+msgid "Or - did you try to upload an empty file?"
+msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
+
+#: mod/wall_attach.php:112
+#, 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:136 mod/wall_attach.php:152
+msgid "File upload failed."
+msgstr "Hochladen der Datei fehlgeschlagen."
+
+#: mod/profile.php:194
+msgid "Tips for New Members"
+msgstr "Tipps für neue Nutzer"
+
+#: mod/localtime.php:33
+msgid "Time Conversion"
+msgstr "Zeitumrechnung"
+
+#: mod/localtime.php:35
+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:39
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC Zeit: %s"
+
+#: mod/localtime.php:42
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aktuelle Zeitzone: %s"
+
+#: mod/localtime.php:46
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Umgerechnete lokale Zeit: %s"
+
+#: mod/localtime.php:52
+msgid "Please select your timezone:"
+msgstr "Bitte wähle Deine Zeitzone:"
+
+#: mod/dfrn_request.php:94
+msgid "This introduction has already been accepted."
+msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
+
+#: mod/dfrn_request.php:112 mod/dfrn_request.php:359
+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:116 mod/dfrn_request.php:363
+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:119 mod/dfrn_request.php:366
+msgid "Warning: profile location has no profile photo."
+msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
+
+#: mod/dfrn_request.php:123 mod/dfrn_request.php:370
+#, 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:162
+msgid "Introduction complete."
+msgstr "Kontaktanfrage abgeschlossen."
+
+#: mod/dfrn_request.php:199
+msgid "Unrecoverable protocol error."
+msgstr "Nicht behebbarer Protokollfehler."
+
+#: mod/dfrn_request.php:226
+msgid "Profile unavailable."
+msgstr "Profil nicht verfügbar."
+
+#: mod/dfrn_request.php:248
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s hat heute zu viele Kontaktanfragen erhalten."
+
+#: mod/dfrn_request.php:249
+msgid "Spam protection measures have been invoked."
+msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
+
+#: mod/dfrn_request.php:250
+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:280
+msgid "Invalid locator"
+msgstr "Ungültiger Locator"
+
+#: mod/dfrn_request.php:316
+msgid "You have already introduced yourself here."
+msgstr "Du hast Dich hier bereits vorgestellt."
+
+#: mod/dfrn_request.php:319
+#, 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:339
+msgid "Invalid profile URL."
+msgstr "Ungültige Profil-URL."
+
+#: mod/dfrn_request.php:419 mod/contacts.php:230
+msgid "Failed to update contact record."
+msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
+
+#: mod/dfrn_request.php:439
+msgid "Your introduction has been sent."
+msgstr "Deine Kontaktanfrage wurde gesendet."
+
+#: mod/dfrn_request.php:477
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
+msgstr "Entferntes abonnieren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. "
+
+#: mod/dfrn_request.php:493
+msgid "Please login to confirm introduction."
+msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
+
+#: mod/dfrn_request.php:501
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"this profile."
+msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."
+
+#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
+msgid "Confirm"
+msgstr "Bestätigen"
+
+#: mod/dfrn_request.php:527
+msgid "Hide this contact"
+msgstr "Verberge diesen Kontakt"
+
+#: mod/dfrn_request.php:530
+#, php-format
+msgid "Welcome home %s."
+msgstr "Willkommen zurück %s."
+
+#: mod/dfrn_request.php:531
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
+
+#: mod/dfrn_request.php:642
+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:645
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, follow "
+"this link to find a public Friendica site and join us today ."
+msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica Server zu finden und beizutreten."
+
+#: mod/dfrn_request.php:650
+msgid "Friend/Connection Request"
+msgstr "Kontaktanfrage"
+
+#: mod/dfrn_request.php:651
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@gnusocial.de"
+msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"
+
+#: mod/dfrn_request.php:652 mod/follow.php:149
+msgid "Please answer the following:"
+msgstr "Bitte beantworte folgendes:"
+
+#: mod/dfrn_request.php:653 mod/follow.php:150
+#, php-format
+msgid "Does %s know you?"
+msgstr "Kennt %s Dich?"
+
+#: mod/dfrn_request.php:654 mod/follow.php:151
+msgid "Add a personal note:"
+msgstr "Eine persönliche Notiz beifügen:"
+
+#: mod/dfrn_request.php:657
+msgid "GNU Social (Pleroma, Mastodon)"
+msgstr "GNU Social (Pleroma, Mastodon)"
+
+#: mod/dfrn_request.php:658
+msgid "Diaspora (Socialhome, Hubzilla)"
+msgstr "Diaspora (Socialhome, Hubzilla)"
+
+#: mod/dfrn_request.php:659
+#, 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/crepair.php:87
+msgid "Contact settings applied."
+msgstr "Einstellungen zum Kontakt angewandt."
+
+#: mod/crepair.php:89
+msgid "Contact update failed."
+msgstr "Konnte den Kontakt nicht aktualisieren."
+
+#: mod/crepair.php:114
+msgid ""
+"WARNING: This is highly advanced and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
+
+#: mod/crepair.php:115
+msgid ""
+"Please use your browser 'Back' button now if you are "
+"uncertain what to do on this page."
+msgstr "Bitte nutze den Zurück-Button Deines Browsers jetzt , wenn Du Dir unsicher bist, was Du tun willst."
+
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "No mirroring"
+msgstr "Kein Spiegeln"
+
+#: mod/crepair.php:129
+msgid "Mirror as forwarded posting"
+msgstr "Spiegeln als weitergeleitete Beiträge"
+
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "Mirror as my own posting"
+msgstr "Spiegeln als meine eigenen Beiträge"
+
+#: mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr "Zurück zum Kontakteditor"
+
+#: mod/crepair.php:146
+msgid "Refetch contact data"
+msgstr "Kontaktdaten neu laden"
+
+#: mod/crepair.php:149
+msgid "Remote Self"
+msgstr "Entfernte Konten"
+
+#: mod/crepair.php:152
+msgid "Mirror postings from this contact"
+msgstr "Spiegle Beiträge dieses Kontakts"
+
+#: mod/crepair.php:154
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."
+
+#: mod/crepair.php:159
+msgid "Account Nickname"
+msgstr "Konto-Spitzname"
+
+#: mod/crepair.php:160
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - überschreibt Name/Spitzname"
+
+#: mod/crepair.php:161
+msgid "Account URL"
+msgstr "Konto-URL"
+
+#: mod/crepair.php:162
+msgid "Friend Request URL"
+msgstr "URL für Kontaktschaftsanfragen"
+
+#: mod/crepair.php:163
+msgid "Friend Confirm URL"
+msgstr "URL für Bestätigungen von Kontaktanfragen"
+
+#: mod/crepair.php:164
+msgid "Notification Endpoint URL"
+msgstr "URL-Endpunkt für Benachrichtigungen"
+
+#: mod/crepair.php:165
+msgid "Poll/Feed URL"
+msgstr "Pull/Feed-URL"
+
+#: mod/crepair.php:166
+msgid "New photo from this URL"
+msgstr "Neues Foto von dieser URL"
+
+#: mod/home.php:39
+#, php-format
+msgid "Welcome to %s"
+msgstr "Willkommen zu %s"
+
+#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s heißt %2$s herzlich willkommen"
+
+#: 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/oexchange.php:30
+msgid "Post successful."
+msgstr "Beitrag erfolgreich veröffentlicht."
+
+#: mod/viewsrc.php:12
+msgid "Access denied."
+msgstr "Zugriff verweigert."
+
+#: mod/notifications.php:37
+msgid "Invalid request identifier."
+msgstr "Invalid request identifier."
+
+#: mod/notifications.php:46 mod/notifications.php:183
+#: mod/notifications.php:230
+msgid "Discard"
+msgstr "Verwerfen"
+
+#: mod/notifications.php:62 mod/notifications.php:182
+#: mod/notifications.php:266 mod/contacts.php:638 mod/contacts.php:828
+#: mod/contacts.php:1019
+msgid "Ignore"
+msgstr "Ignorieren"
+
+#: mod/notifications.php:107
+msgid "Network Notifications"
+msgstr "Netzwerk Benachrichtigungen"
+
+#: mod/notifications.php:119
+msgid "Personal Notifications"
+msgstr "Persönliche Benachrichtigungen"
+
+#: mod/notifications.php:125
+msgid "Home Notifications"
+msgstr "Pinnwand Benachrichtigungen"
+
+#: mod/notifications.php:155
+msgid "Show Ignored Requests"
+msgstr "Zeige ignorierte Anfragen"
+
+#: mod/notifications.php:155
+msgid "Hide Ignored Requests"
+msgstr "Verberge ignorierte Anfragen"
+
+#: mod/notifications.php:167 mod/notifications.php:237
+msgid "Notification type: "
+msgstr "Benachrichtigungstyp: "
+
+#: mod/notifications.php:170
+#, php-format
+msgid "suggested by %s"
+msgstr "vorgeschlagen von %s"
+
+#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
+msgid "Hide this contact from others"
+msgstr "Verbirg diesen Kontakt vor Anderen"
+
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "Post a new friend activity"
+msgstr "Neue-Kontakt Nachricht senden"
+
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "if applicable"
+msgstr "falls anwendbar"
+
+#: mod/notifications.php:198
+msgid "Claims to be known to you: "
+msgstr "Behauptet Dich zu kennen: "
+
+#: mod/notifications.php:199
+msgid "yes"
+msgstr "ja"
+
+#: mod/notifications.php:199
+msgid "no"
+msgstr "nein"
+
+#: mod/notifications.php:200 mod/notifications.php:205
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Soll die Verbindung beidseitig sein oder nicht?"
+
+#: mod/notifications.php:201 mod/notifications.php:206
+#, php-format
+msgid ""
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
+msgstr "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s."
+
+#: mod/notifications.php:202
+#, php-format
+msgid ""
+"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
+" will not receive updates from them in your news feed."
+msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
+
+#: mod/notifications.php:207
+#, php-format
+msgid ""
+"Accepting %s as a sharer allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
+msgstr "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
+
+#: mod/notifications.php:218
+msgid "Friend"
+msgstr "Kontakt"
+
+#: mod/notifications.php:219
+msgid "Sharer"
+msgstr "Teilenden"
+
+#: mod/notifications.php:219
+msgid "Subscriber"
+msgstr "Abonnent"
+
+#: mod/notifications.php:275
+msgid "No introductions."
+msgstr "Keine Kontaktanfragen."
+
+#: mod/notifications.php:316
+msgid "Show unread"
+msgstr "Ungelesene anzeigen"
+
+#: mod/notifications.php:316
+msgid "Show all"
+msgstr "Alle anzeigen"
+
+#: mod/notifications.php:322
+#, php-format
+msgid "No more %s notifications."
+msgstr "Keine weiteren %s Benachrichtigungen"
+
+#: mod/p.php:14
+msgid "Not Extended"
+msgstr "Nicht erweitert."
+
+#: mod/p.php:21 mod/p.php:48 mod/p.php:57 mod/fetch.php:16 mod/fetch.php:52
+#: mod/fetch.php:65 mod/help.php:60 index.php:320
+msgid "Not Found"
+msgstr "Nicht gefunden"
#: mod/follow.php:45
msgid "The contact could not be added."
@@ -5913,152 +7941,366 @@ msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugef
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/friendica.php:77
-msgid "This is Friendica, version"
-msgstr "Dies ist Friendica, Version"
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
+msgstr "Dieses Kalenderformat wird nicht unterstützt."
-#: mod/friendica.php:78
-msgid "running at web location"
-msgstr "die unter folgender Webadresse zu finden ist"
+#: mod/cal.php:315
+msgid "No exportable data found"
+msgstr "Keine exportierbaren Daten gefunden"
-#: mod/friendica.php:82
+#: mod/cal.php:332
+msgid "calendar"
+msgstr "Kalender"
+
+#: mod/contacts.php:157
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d Kontakt bearbeitet."
+msgstr[1] "%d Kontakte bearbeitet."
+
+#: mod/contacts.php:184 mod/contacts.php:400
+msgid "Could not access contact record."
+msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
+
+#: mod/contacts.php:194
+msgid "Could not locate selected profile."
+msgstr "Konnte das ausgewählte Profil nicht finden."
+
+#: mod/contacts.php:228
+msgid "Contact updated."
+msgstr "Kontakt aktualisiert."
+
+#: mod/contacts.php:421
+msgid "Contact has been blocked"
+msgstr "Kontakt wurde blockiert"
+
+#: mod/contacts.php:421
+msgid "Contact has been unblocked"
+msgstr "Kontakt wurde wieder freigegeben"
+
+#: mod/contacts.php:432
+msgid "Contact has been ignored"
+msgstr "Kontakt wurde ignoriert"
+
+#: mod/contacts.php:432
+msgid "Contact has been unignored"
+msgstr "Kontakt wird nicht mehr ignoriert"
+
+#: mod/contacts.php:443
+msgid "Contact has been archived"
+msgstr "Kontakt wurde archiviert"
+
+#: mod/contacts.php:443
+msgid "Contact has been unarchived"
+msgstr "Kontakt wurde aus dem Archiv geholt"
+
+#: mod/contacts.php:467
+msgid "Drop contact"
+msgstr "Kontakt löschen"
+
+#: mod/contacts.php:470 mod/contacts.php:823
+msgid "Do you really want to delete this contact?"
+msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
+
+#: mod/contacts.php:488
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
+
+#: mod/contacts.php:519
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Du hast mit %s eine beidseitige Freundschaft"
+
+#: mod/contacts.php:523
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Du teilst mit %s"
+
+#: mod/contacts.php:527
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s teilt mit Dir"
+
+#: mod/contacts.php:547
+msgid "Private communications are not available for this contact."
+msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
+
+#: mod/contacts.php:549
+msgid "Never"
+msgstr "Niemals"
+
+#: mod/contacts.php:552
+msgid "(Update was successful)"
+msgstr "(Aktualisierung war erfolgreich)"
+
+#: mod/contacts.php:552
+msgid "(Update was not successful)"
+msgstr "(Aktualisierung war nicht erfolgreich)"
+
+#: mod/contacts.php:554 mod/contacts.php:992
+msgid "Suggest friends"
+msgstr "Kontakte vorschlagen"
+
+#: mod/contacts.php:558
+#, php-format
+msgid "Network type: %s"
+msgstr "Netzwerktyp: %s"
+
+#: mod/contacts.php:563
+msgid "Communications lost with this contact!"
+msgstr "Verbindungen mit diesem Kontakt verloren!"
+
+#: mod/contacts.php:569
+msgid "Fetch further information for feeds"
+msgstr "Weitere Informationen zu Feeds holen"
+
+#: mod/contacts.php:571
msgid ""
-"Please visit Friendi.ca to learn more "
-"about the Friendica project."
-msgstr "Bitte besuche Friendi.ca um mehr über das Friendica Projekt zu erfahren."
+"Fetch information like preview pictures, title and teaser from the feed "
+"item. You can activate this if the feed doesn't contain much text. Keywords "
+"are taken from the meta header in the feed item and are posted as hash tags."
+msgstr "Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht all zu viel Text beinhaltet. Schlagwörter werden auf den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet."
-#: mod/friendica.php:86
-msgid "Bug reports and issues: please visit"
-msgstr "Probleme oder Fehler gefunden? Bitte besuche"
+#: mod/contacts.php:573
+msgid "Fetch information"
+msgstr "Beziehe Information"
-#: mod/friendica.php:86
-msgid "the bugtracker at github"
-msgstr "den Bugtracker auf github"
+#: mod/contacts.php:574
+msgid "Fetch keywords"
+msgstr "Schlüsselwprter abrufen"
-#: mod/friendica.php:89
-msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
-msgstr "Vorschläge, Lob usw.: E-Mail an \"Info\" at \"Friendi - dot ca\""
+#: mod/contacts.php:575
+msgid "Fetch information and keywords"
+msgstr "Beziehe Information und Schlüsselworte"
-#: mod/friendica.php:103
-msgid "Installed addons/apps:"
-msgstr "Installierte Apps und Addons"
+#: mod/contacts.php:608
+msgid "Contact"
+msgstr "Kontakt"
-#: mod/friendica.php:117
-msgid "No installed addons/apps"
-msgstr "Es sind keine Addons oder Apps installiert"
+#: mod/contacts.php:611
+msgid "Profile Visibility"
+msgstr "Profil-Sichtbarkeit"
-#: mod/friendica.php:122
-#, php-format
-msgid "Read about the Terms of Service of this node."
-msgstr "Erfahre mehr über die Nutzungsbedingungen dieses Knotens."
-
-#: mod/friendica.php:127
-msgid "On this server the following remote servers are blocked."
-msgstr "Auf diesem Server werden die folgenden entfernten Server blockiert."
-
-#: mod/invite.php:33
-msgid "Total invitation limit exceeded."
-msgstr "Limit für Einladungen erreicht."
-
-#: mod/invite.php:55
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Keine gültige Email Adresse."
-
-#: mod/invite.php:87
-msgid "Please join us on Friendica"
-msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
-
-#: mod/invite.php:96
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
-
-#: mod/invite.php:100
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
-
-#: mod/invite.php:104
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d Nachricht gesendet."
-msgstr[1] "%d Nachrichten gesendet."
-
-#: mod/invite.php:122
-msgid "You have no more invitations available"
-msgstr "Du hast keine weiteren Einladungen"
-
-#: mod/invite.php:130
+#: mod/contacts.php:612
#, php-format
msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
+"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/invite.php:132
+#: mod/contacts.php:613
+msgid "Contact Information / Notes"
+msgstr "Kontakt Informationen / Notizen"
+
+#: mod/contacts.php:614
+msgid "Their personal note"
+msgstr "Die persönliche Mitteilung"
+
+#: mod/contacts.php:616
+msgid "Edit contact notes"
+msgstr "Notizen zum Kontakt bearbeiten"
+
+#: mod/contacts.php:620
+msgid "Block/Unblock contact"
+msgstr "Kontakt blockieren/freischalten"
+
+#: mod/contacts.php:621
+msgid "Ignore contact"
+msgstr "Ignoriere den Kontakt"
+
+#: mod/contacts.php:622
+msgid "Repair URL settings"
+msgstr "URL Einstellungen reparieren"
+
+#: mod/contacts.php:623
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
+
+#: mod/contacts.php:628
+msgid "Last update:"
+msgstr "Letzte Aktualisierung: "
+
+#: mod/contacts.php:630
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
+
+#: mod/contacts.php:632 mod/contacts.php:1002
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
+
+#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
+msgid "Unignore"
+msgstr "Ignorieren aufheben"
+
+#: mod/contacts.php:642
+msgid "Currently blocked"
+msgstr "Derzeit geblockt"
+
+#: mod/contacts.php:643
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
+
+#: mod/contacts.php:644
+msgid "Currently archived"
+msgstr "Momentan archiviert"
+
+#: mod/contacts.php:645
+msgid "Awaiting connection acknowledge"
+msgstr "Bedarf der Bestätigung des Kontakts"
+
+#: mod/contacts.php:646
+msgid ""
+"Replies/likes to your public posts may still be visible"
+msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein"
+
+#: mod/contacts.php:647
+msgid "Notification for new posts"
+msgstr "Benachrichtigung bei neuen Beiträgen"
+
+#: mod/contacts.php:647
+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:650
+msgid "Blacklisted keywords"
+msgstr "Blacklistete Schlüsselworte "
+
+#: mod/contacts.php:650
+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:667
+msgid "Actions"
+msgstr "Aktionen"
+
+#: mod/contacts.php:670
+msgid "Contact Settings"
+msgstr "Kontakteinstellungen"
+
+#: mod/contacts.php:711
+msgid "Suggestions"
+msgstr "Kontaktvorschläge"
+
+#: mod/contacts.php:714
+msgid "Suggest potential friends"
+msgstr "Kontakte vorschlagen"
+
+#: mod/contacts.php:722
+msgid "Show all contacts"
+msgstr "Alle Kontakte anzeigen"
+
+#: mod/contacts.php:727
+msgid "Unblocked"
+msgstr "Ungeblockt"
+
+#: mod/contacts.php:730
+msgid "Only show unblocked contacts"
+msgstr "Nur nicht-blockierte Kontakte anzeigen"
+
+#: mod/contacts.php:735
+msgid "Blocked"
+msgstr "Geblockt"
+
+#: mod/contacts.php:738
+msgid "Only show blocked contacts"
+msgstr "Nur blockierte Kontakte anzeigen"
+
+#: mod/contacts.php:743
+msgid "Ignored"
+msgstr "Ignoriert"
+
+#: mod/contacts.php:746
+msgid "Only show ignored contacts"
+msgstr "Nur ignorierte Kontakte anzeigen"
+
+#: mod/contacts.php:751
+msgid "Archived"
+msgstr "Archiviert"
+
+#: mod/contacts.php:754
+msgid "Only show archived contacts"
+msgstr "Nur archivierte Kontakte anzeigen"
+
+#: mod/contacts.php:759
+msgid "Hidden"
+msgstr "Verborgen"
+
+#: mod/contacts.php:762
+msgid "Only show hidden contacts"
+msgstr "Nur verborgene Kontakte anzeigen"
+
+#: mod/contacts.php:818
+msgid "Search your contacts"
+msgstr "Suche in deinen Kontakten"
+
+#: mod/contacts.php:819 mod/search.php:236
#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
+msgid "Results for: %s"
+msgstr "Ergebnisse für: %s"
-#: mod/invite.php:133
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Archive"
+msgstr "Archivieren"
-#: mod/invite.php:137
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
-#: mod/invite.php:141
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks."
-msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden."
+#: mod/contacts.php:832
+msgid "Batch Actions"
+msgstr "Stapelverarbeitung"
-#: mod/invite.php:140
-#, php-format
-msgid "To accept this invitation, please visit and register at %s."
-msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s."
+#: mod/contacts.php:878
+msgid "View all contacts"
+msgstr "Alle Kontakte anzeigen"
-#: mod/invite.php:147
-msgid "Send invitations"
-msgstr "Einladungen senden"
+#: mod/contacts.php:886 mod/common.php:140
+msgid "Common Friends"
+msgstr "Gemeinsame Kontakte"
-#: mod/invite.php:148
-msgid "Enter email addresses, one per line:"
-msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
+#: mod/contacts.php:889
+msgid "View all common friends"
+msgstr "Alle Kontakte anzeigen"
-#: mod/invite.php:150
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
+#: mod/contacts.php:898
+msgid "Advanced Contact Settings"
+msgstr "Fortgeschrittene Kontakteinstellungen"
-#: mod/invite.php:152
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
+#: mod/contacts.php:930
+msgid "Mutual Friendship"
+msgstr "Beidseitige Freundschaft"
-#: mod/invite.php:152
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
+#: mod/contacts.php:934
+msgid "is a fan of yours"
+msgstr "ist ein Fan von dir"
-#: mod/invite.php:154
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendi.ca"
-msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca."
+#: mod/contacts.php:938
+msgid "you are a fan of"
+msgstr "Du bist Fan von"
+
+#: mod/contacts.php:1013
+msgid "Toggle Blocked status"
+msgstr "Geblockt-Status ein-/ausschalten"
+
+#: mod/contacts.php:1021
+msgid "Toggle Ignored status"
+msgstr "Ignoriert-Status ein-/ausschalten"
+
+#: mod/contacts.php:1029
+msgid "Toggle Archive status"
+msgstr "Archiviert-Status ein-/ausschalten"
+
+#: mod/contacts.php:1037
+msgid "Delete contact"
+msgstr "Lösche den Kontakt"
+
+#: mod/bookmarklet.php:51
+msgid "The post was created"
+msgstr "Der Beitrag wurde angelegt"
#: mod/lostpass.php:27
msgid "No valid account found."
@@ -6126,18 +8368,10 @@ 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:119 src/Module/Login.php:314
-msgid "Nickname or Email: "
-msgstr "Spitzname oder E-Mail:"
-
#: mod/lostpass.php:120
msgid "Reset"
msgstr "Zurücksetzen"
-#: mod/lostpass.php:136 src/Module/Login.php:326
-msgid "Password Reset"
-msgstr "Passwort zurücksetzen"
-
#: mod/lostpass.php:137
msgid "Your password has been reset as requested."
msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
@@ -6190,433 +8424,784 @@ msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin
msgid "Your password has been changed at %s"
msgstr "Auf %s wurde Dein Passwort geändert"
-#: mod/network.php:202 src/Model/Group.php:413
-msgid "add"
-msgstr "hinzufügen"
+#: mod/install.php:114
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica-Server für soziale Netzwerke – Setup"
-#: mod/network.php:547
+#: mod/install.php:120
+msgid "Could not connect to database."
+msgstr "Verbindung zur Datenbank gescheitert."
+
+#: mod/install.php:124
+msgid "Could not create table."
+msgstr "Tabelle konnte nicht angelegt werden."
+
+#: mod/install.php:130
+msgid "Your Friendica site database has been installed."
+msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
+
+#: mod/install.php:135
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
+
+#: mod/install.php:136 mod/install.php:208 mod/install.php:558
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Lies bitte die \"INSTALL.txt\"."
+
+#: mod/install.php:148
+msgid "Database already in use."
+msgstr "Die Datenbank wird bereits verwendet."
+
+#: mod/install.php:205
+msgid "System check"
+msgstr "Systemtest"
+
+#: mod/install.php:210
+msgid "Check again"
+msgstr "Noch einmal testen"
+
+#: mod/install.php:230
+msgid "Database connection"
+msgstr "Datenbankverbindung"
+
+#: mod/install.php:231
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."
+
+#: mod/install.php:232
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."
+
+#: mod/install.php:233
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."
+
+#: mod/install.php:237
+msgid "Database Server Name"
+msgstr "Datenbank-Server"
+
+#: mod/install.php:238
+msgid "Database Login Name"
+msgstr "Datenbank-Nutzer"
+
+#: mod/install.php:239
+msgid "Database Login Password"
+msgstr "Datenbank-Passwort"
+
+#: mod/install.php:239
+msgid "For security reasons the password must not be empty"
+msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein."
+
+#: mod/install.php:240
+msgid "Database Name"
+msgstr "Datenbank-Name"
+
+#: mod/install.php:241 mod/install.php:281
+msgid "Site administrator email address"
+msgstr "E-Mail-Adresse des Administrators"
+
+#: mod/install.php:241 mod/install.php:281
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."
+
+#: mod/install.php:245 mod/install.php:284
+msgid "Please select a default timezone for your website"
+msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
+
+#: mod/install.php:271
+msgid "Site settings"
+msgstr "Server-Einstellungen"
+
+#: mod/install.php:285
+msgid "System Language:"
+msgstr "Systemsprache:"
+
+#: mod/install.php:285
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"
+
+#: mod/install.php:325
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
+
+#: mod/install.php:326
+msgid ""
+"If you don't have a command line version of PHP installed on your server, "
+"you will not be able to run the background processing. See 'Setup the worker' "
+msgstr "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten'für das Worker Setup' "
+
+#: mod/install.php:330
+msgid "PHP executable path"
+msgstr "Pfad zu PHP"
+
+#: mod/install.php:330
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
+
+#: mod/install.php:335
+msgid "Command line PHP"
+msgstr "Kommandozeilen-PHP"
+
+#: mod/install.php:344
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
+
+#: mod/install.php:345
+msgid "Found PHP version: "
+msgstr "Gefundene PHP Version:"
+
+#: mod/install.php:347
+msgid "PHP cli binary"
+msgstr "PHP CLI Binary"
+
+#: mod/install.php:358
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."
+
+#: mod/install.php:359
+msgid "This is required for message delivery to work."
+msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
+
+#: mod/install.php:361
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
+
+#: mod/install.php:384
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
+
+#: mod/install.php:385
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
+
+#: mod/install.php:387
+msgid "Generate encryption keys"
+msgstr "Schlüssel erzeugen"
+
+#: mod/install.php:394
+msgid "libCurl PHP module"
+msgstr "PHP: libCurl-Modul"
+
+#: mod/install.php:395
+msgid "GD graphics PHP module"
+msgstr "PHP: GD-Grafikmodul"
+
+#: mod/install.php:396
+msgid "OpenSSL PHP module"
+msgstr "PHP: OpenSSL-Modul"
+
+#: mod/install.php:397
+msgid "PDO or MySQLi PHP module"
+msgstr "PDO oder MySQLi PHP Modul"
+
+#: mod/install.php:398
+msgid "mb_string PHP module"
+msgstr "PHP: mb_string-Modul"
+
+#: mod/install.php:399
+msgid "XML PHP module"
+msgstr "XML PHP Modul"
+
+#: mod/install.php:400
+msgid "iconv PHP module"
+msgstr "PHP iconv Modul"
+
+#: mod/install.php:401
+msgid "POSIX PHP module"
+msgstr "PHP POSIX Modul"
+
+#: mod/install.php:405 mod/install.php:407
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
+
+#: mod/install.php:405
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
+
+#: mod/install.php:413
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
+
+#: mod/install.php:417
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
+
+#: mod/install.php:421
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
+
+#: mod/install.php:425
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert."
+
+#: mod/install.php:429
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr "Fehler: der MySQL Treiber für PDO ist nicht installiert"
+
+#: mod/install.php:433
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
+
+#: mod/install.php:437
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
+
+#: mod/install.php:441
+msgid "Error: POSIX PHP module required but not installed."
+msgstr "Fehler POSIX PHP Modul erforderlich aber nicht installiert."
+
+#: mod/install.php:451
+msgid "Error, XML PHP module required but not installed."
+msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
+
+#: mod/install.php:463
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
+
+#: mod/install.php:464
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."
+
+#: mod/install.php:465
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."
+
+#: mod/install.php:466
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."
+
+#: mod/install.php:469
+msgid ".htconfig.php is writable"
+msgstr "Schreibrechte auf .htconfig.php"
+
+#: mod/install.php:479
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
+
+#: mod/install.php:480
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
+
+#: mod/install.php:481
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
+
+#: mod/install.php:482
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
+
+#: mod/install.php:485
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 ist schreibbar"
+
+#: mod/install.php:501
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
+
+#: mod/install.php:503
+msgid "Url rewrite is working"
+msgstr "URL rewrite funktioniert"
+
+#: mod/install.php:522
+msgid "ImageMagick PHP extension is not installed"
+msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
+
+#: mod/install.php:524
+msgid "ImageMagick PHP extension is installed"
+msgstr "ImageMagick PHP Erweiterung ist installiert"
+
+#: mod/install.php:526
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick unterstützt GIF"
+
+#: mod/install.php:533
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."
+
+#: mod/install.php:556
+msgid "What next "
+msgstr "Wie geht es weiter? "
+
+#: mod/install.php:557
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"worker."
+msgstr "Wichtig: Du musst [manuell] einen Cronjob (o.ä.) für den Worker einrichten."
+
+#: mod/install.php:560
#, php-format
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 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."
+"Go to your new Friendica node registration page "
+"and register as new user. Remember to use the same email you have entered as"
+" administrator email. This will allow you to enter the site admin panel."
+msgstr "Du solltest nun die Seite zur Nutzerregistrierung deiner neuen Friendica Instanz besuchen und einen neuen Nutzer einrichten. Bitte denke daran die selbe E-Mail Adresse anzugeben, die du auch als Administrator E-Mail angegeben hast, damit du das Admin-Panel verwenden kannst."
-#: mod/network.php:550
-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/babel.php:23
+msgid "Source input"
+msgstr "Originaltext:"
-#: mod/network.php:618
-msgid "No such group"
-msgstr "Es gibt keine solche Gruppe"
+#: mod/babel.php:29
+msgid "BBCode::toPlaintext"
+msgstr "BBCode::toPlaintext"
-#: mod/network.php:643
+#: mod/babel.php:35
+msgid "BBCode::convert (raw HTML)"
+msgstr "BBCode::convert (pures HTML)"
+
+#: mod/babel.php:40
+msgid "BBCode::convert"
+msgstr "BBCode::convert"
+
+#: mod/babel.php:46
+msgid "BBCode::convert => HTML::toBBCode"
+msgstr "BBCode::convert => HTML::toBBCode"
+
+#: mod/babel.php:52
+msgid "BBCode::toMarkdown"
+msgstr "BBCode::toMarkdown"
+
+#: mod/babel.php:58
+msgid "BBCode::toMarkdown => Markdown::convert"
+msgstr "BBCode::toMarkdown => Markdown::convert"
+
+#: mod/babel.php:64
+msgid "BBCode::toMarkdown => Markdown::toBBCode"
+msgstr "BBCode::toMarkdown => Markdown::toBBCode"
+
+#: mod/babel.php:70
+msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
+msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
+
+#: mod/babel.php:77
+msgid "Source input \\x28Diaspora format\\x29"
+msgstr "Original Text \\x28Diaspora Fromat\\x29"
+
+#: mod/babel.php:83
+msgid "Markdown::toBBCode"
+msgstr "Markdown::toBBCode"
+
+#: mod/babel.php:90
+msgid "Raw HTML input"
+msgstr "Reine HTML Eingabe"
+
+#: mod/babel.php:95
+msgid "HTML Input"
+msgstr "HTML Eingabe"
+
+#: mod/babel.php:101
+msgid "HTML::toBBCode"
+msgstr "HTML::toBBCode"
+
+#: mod/babel.php:107
+msgid "HTML::toPlaintext"
+msgstr "HTML::toPlaintext"
+
+#: mod/babel.php:115
+msgid "Source text"
+msgstr "Quelltext"
+
+#: mod/babel.php:116
+msgid "BBCode"
+msgstr "BBCode"
+
+#: mod/babel.php:117
+msgid "Markdown"
+msgstr "Markdown"
+
+#: mod/babel.php:118
+msgid "HTML"
+msgstr "HTML"
+
+#: mod/lockview.php:38 mod/lockview.php:46
+msgid "Remote privacy information not available."
+msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
+
+#: mod/lockview.php:55
+msgid "Visible to:"
+msgstr "Sichtbar für:"
+
+#: mod/wallmessage.php:49 mod/wallmessage.php:112
#, php-format
-msgid "Group: %s"
-msgstr "Gruppe: %s"
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
-#: mod/network.php:669
-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/wallmessage.php:60
+msgid "Unable to check your home location."
+msgstr "Konnte Deinen Heimatort nicht bestimmen."
-#: mod/network.php:672
-msgid "Invalid contact."
-msgstr "Ungültiger Kontakt."
+#: mod/wallmessage.php:86 mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Kein Empfänger."
-#: mod/network.php:936
-msgid "Commented Order"
-msgstr "Neueste Kommentare"
-
-#: mod/network.php:939
-msgid "Sort by Comment Date"
-msgstr "Nach Kommentardatum sortieren"
-
-#: mod/network.php:944
-msgid "Posted Order"
-msgstr "Neueste Beiträge"
-
-#: mod/network.php:947
-msgid "Sort by Post Date"
-msgstr "Nach Beitragsdatum sortieren"
-
-#: mod/network.php:955 mod/profiles.php:687
-#: src/Core/NotificationsManager.php:185
-msgid "Personal"
-msgstr "Persönlich"
-
-#: mod/network.php:958
-msgid "Posts that mention or involve you"
-msgstr "Beiträge, in denen es um Dich geht"
-
-#: mod/network.php:966
-msgid "New"
-msgstr "Neue"
-
-#: mod/network.php:969
-msgid "Activity Stream - by date"
-msgstr "Aktivitäten-Stream - nach Datum"
-
-#: mod/network.php:977
-msgid "Shared Links"
-msgstr "Geteilte Links"
-
-#: mod/network.php:980
-msgid "Interesting Links"
-msgstr "Interessante Links"
-
-#: mod/network.php:988
-msgid "Starred"
-msgstr "Markierte"
-
-#: mod/network.php:991
-msgid "Favourite Posts"
-msgstr "Favorisierte Beiträge"
-
-#: mod/profiles.php:58
-msgid "Profile deleted."
-msgstr "Profil gelöscht."
-
-#: mod/profiles.php:74 mod/profiles.php:110
-msgid "Profile-"
-msgstr "Profil-"
-
-#: mod/profiles.php:93 mod/profiles.php:132
-msgid "New profile created."
-msgstr "Neues Profil angelegt."
-
-#: mod/profiles.php:116
-msgid "Profile unavailable to clone."
-msgstr "Profil nicht zum Duplizieren verfügbar."
-
-#: mod/profiles.php:206
-msgid "Profile Name is required."
-msgstr "Profilname ist erforderlich."
-
-#: mod/profiles.php:347
-msgid "Marital Status"
-msgstr "Familienstand"
-
-#: mod/profiles.php:351
-msgid "Romantic Partner"
-msgstr "Romanze"
-
-#: mod/profiles.php:363
-msgid "Work/Employment"
-msgstr "Arbeit / Beschäftigung"
-
-#: mod/profiles.php:366
-msgid "Religion"
-msgstr "Religion"
-
-#: mod/profiles.php:370
-msgid "Political Views"
-msgstr "Politische Ansichten"
-
-#: mod/profiles.php:374
-msgid "Gender"
-msgstr "Geschlecht"
-
-#: mod/profiles.php:378
-msgid "Sexual Preference"
-msgstr "Sexuelle Vorlieben"
-
-#: mod/profiles.php:382
-msgid "XMPP"
-msgstr "XMPP"
-
-#: mod/profiles.php:386
-msgid "Homepage"
-msgstr "Webseite"
-
-#: mod/profiles.php:390 mod/profiles.php:686
-msgid "Interests"
-msgstr "Interessen"
-
-#: mod/profiles.php:401 mod/profiles.php:682
-msgid "Location"
-msgstr "Wohnort"
-
-#: mod/profiles.php:486
-msgid "Profile updated."
-msgstr "Profil aktualisiert."
-
-#: mod/profiles.php:564
-msgid " and "
-msgstr " und "
-
-#: mod/profiles.php:573
-msgid "public profile"
-msgstr "öffentliches Profil"
-
-#: mod/profiles.php:576
+#: mod/wallmessage.php:133
#, php-format
-msgid "%1$s changed %2$s to “%3$s”"
-msgstr "%1$s hat %2$s geändert auf “%3$s”"
-
-#: mod/profiles.php:577
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " – %1$ss %2$s besuchen"
-
-#: mod/profiles.php:579
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
-
-#: mod/profiles.php:633
-msgid "Hide contacts and friends:"
-msgstr "Kontakte und Freunde verbergen"
-
-#: mod/profiles.php:638
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
-
-#: mod/profiles.php:658
-msgid "Show more profile fields:"
-msgstr "Zeige mehr Profil-Felder:"
-
-#: mod/profiles.php:670
-msgid "Profile Actions"
-msgstr "Profilaktionen"
-
-#: mod/profiles.php:671
-msgid "Edit Profile Details"
-msgstr "Profil bearbeiten"
-
-#: mod/profiles.php:673
-msgid "Change Profile Photo"
-msgstr "Profilbild ändern"
-
-#: mod/profiles.php:674
-msgid "View this profile"
-msgstr "Dieses Profil anzeigen"
-
-#: mod/profiles.php:675 mod/profiles.php:770 src/Model/Profile.php:393
-msgid "Edit visibility"
-msgstr "Sichtbarkeit bearbeiten"
-
-#: mod/profiles.php:676
-msgid "Create a new profile using these settings"
-msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
-
-#: mod/profiles.php:677
-msgid "Clone this profile"
-msgstr "Dieses Profil duplizieren"
-
-#: mod/profiles.php:678
-msgid "Delete this profile"
-msgstr "Dieses Profil löschen"
-
-#: mod/profiles.php:680
-msgid "Basic information"
-msgstr "Grundinformationen"
-
-#: mod/profiles.php:681
-msgid "Profile picture"
-msgstr "Profilbild"
-
-#: mod/profiles.php:683
-msgid "Preferences"
-msgstr "Vorlieben"
-
-#: mod/profiles.php:684
-msgid "Status information"
-msgstr "Status Informationen"
-
-#: mod/profiles.php:685
-msgid "Additional information"
-msgstr "Zusätzliche Informationen"
-
-#: mod/profiles.php:688
-msgid "Relation"
-msgstr "Beziehung"
-
-#: mod/profiles.php:689 src/Util/Temporal.php:81 src/Util/Temporal.php:83
-msgid "Miscellaneous"
-msgstr "Verschiedenes"
-
-#: mod/profiles.php:692
-msgid "Your Gender:"
-msgstr "Dein Geschlecht:"
-
-#: mod/profiles.php:693
-msgid "♥ Marital Status:"
-msgstr "♥ Beziehungsstatus:"
-
-#: mod/profiles.php:694 src/Model/Profile.php:784
-msgid "Sexual Preference:"
-msgstr "Sexuelle Vorlieben:"
-
-#: mod/profiles.php:695
-msgid "Example: fishing photography software"
-msgstr "Beispiel: Fischen Fotografie Software"
-
-#: mod/profiles.php:700
-msgid "Profile Name:"
-msgstr "Profilname:"
-
-#: mod/profiles.php:702
msgid ""
-"This is your public profile. It may "
-"be visible to anybody using the internet."
-msgstr "Dies ist Dein öffentliches Profil. Es könnte für jeden Nutzer des Internets sichtbar sein."
+"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/profiles.php:703
-msgid "Your Full Name:"
-msgstr "Dein kompletter Name:"
+#: mod/match.php:48
+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/profiles.php:704
-msgid "Title/Description:"
-msgstr "Titel/Beschreibung:"
+#: mod/match.php:104
+msgid "is interested in:"
+msgstr "ist interessiert an:"
-#: mod/profiles.php:707
-msgid "Street Address:"
-msgstr "Adresse:"
+#: mod/match.php:120
+msgid "Profile Match"
+msgstr "Profilübereinstimmungen"
-#: mod/profiles.php:708
-msgid "Locality/City:"
-msgstr "Wohnort:"
+#: mod/maintenance.php:24
+msgid "System down for maintenance"
+msgstr "System zur Wartung abgeschaltet"
-#: mod/profiles.php:709
-msgid "Region/State:"
-msgstr "Region/Bundesstaat:"
+#: mod/tagrm.php:47
+msgid "Tag removed"
+msgstr "Tag entfernt"
-#: mod/profiles.php:710
-msgid "Postal/Zip Code:"
-msgstr "Postleitzahl:"
+#: mod/tagrm.php:85
+msgid "Remove Item Tag"
+msgstr "Gegenstands-Tag entfernen"
-#: mod/profiles.php:711
-msgid "Country:"
-msgstr "Land:"
+#: mod/tagrm.php:87
+msgid "Select a tag to remove: "
+msgstr "Wähle ein Tag zum Entfernen aus: "
-#: mod/profiles.php:712 src/Util/Temporal.php:149
-msgid "Age: "
-msgstr "Alter: "
+#: mod/feedtest.php:20
+msgid "You must be logged in to use this module"
+msgstr "Du musst eingeloggt sein um dieses Modul benutzen zu können."
-#: mod/profiles.php:715
-msgid "Who: (if applicable)"
-msgstr "Wer: (falls anwendbar)"
+#: mod/feedtest.php:48
+msgid "Source URL"
+msgstr "URL der Quelle"
-#: mod/profiles.php:715
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
+#: mod/search.php:105
+msgid "Only logged in users are permitted to perform a search."
+msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
-#: mod/profiles.php:716
-msgid "Since [date]:"
-msgstr "Seit [Datum]:"
+#: mod/search.php:129
+msgid "Too Many Requests"
+msgstr "Zu viele Abfragen"
-#: mod/profiles.php:718
-msgid "Tell us about yourself..."
-msgstr "Erzähle uns ein bisschen von Dir …"
+#: mod/search.php:130
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."
-#: mod/profiles.php:719
-msgid "XMPP (Jabber) address:"
-msgstr "XMPP (Jabber) Adresse"
+#: mod/search.php:234
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Beiträge die mit %s getaggt sind"
-#: mod/profiles.php:719
+#: mod/uexport.php:44
+msgid "Export account"
+msgstr "Account exportieren"
+
+#: mod/uexport.php:44
msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow"
-" you."
-msgstr "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können."
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."
-#: mod/profiles.php:720
-msgid "Homepage URL:"
-msgstr "Adresse der Homepage:"
+#: mod/uexport.php:45
+msgid "Export all"
+msgstr "Alles exportieren"
-#: mod/profiles.php:721 src/Model/Profile.php:792
-msgid "Hometown:"
-msgstr "Heimatort:"
+#: mod/uexport.php:45
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."
-#: mod/profiles.php:722 src/Model/Profile.php:800
-msgid "Political Views:"
-msgstr "Politische Ansichten:"
+#: mod/newmember.php:11
+msgid "Welcome to Friendica"
+msgstr "Willkommen bei Friendica"
-#: mod/profiles.php:723
-msgid "Religious Views:"
-msgstr "Religiöse Ansichten:"
+#: mod/newmember.php:12
+msgid "New Member Checklist"
+msgstr "Checkliste für neue Mitglieder"
-#: mod/profiles.php:724
-msgid "Public Keywords:"
-msgstr "Öffentliche Schlüsselwörter:"
+#: mod/newmember.php:14
+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/profiles.php:724
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)"
+#: mod/newmember.php:15
+msgid "Getting Started"
+msgstr "Einstieg"
-#: mod/profiles.php:725
-msgid "Private Keywords:"
-msgstr "Private Schlüsselwörter:"
+#: mod/newmember.php:17
+msgid "Friendica Walk-Through"
+msgstr "Friendica Rundgang"
-#: mod/profiles.php:725
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
+#: mod/newmember.php:17
+msgid ""
+"On your Quick Start page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."
-#: mod/profiles.php:726 src/Model/Profile.php:816
-msgid "Likes:"
-msgstr "Likes:"
+#: mod/newmember.php:21
+msgid "Go to Your Settings"
+msgstr "Gehe zu deinen Einstellungen"
-#: mod/profiles.php:727 src/Model/Profile.php:820
-msgid "Dislikes:"
-msgstr "Dislikes:"
+#: mod/newmember.php:21
+msgid ""
+"On your Settings page - change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen.."
-#: mod/profiles.php:728
-msgid "Musical interests"
-msgstr "Musikalische Interessen"
+#: mod/newmember.php:22
+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/profiles.php:729
-msgid "Books, literature"
-msgstr "Bücher, Literatur"
+#: mod/newmember.php:26
+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/profiles.php:730
-msgid "Television"
-msgstr "Fernsehen"
+#: mod/newmember.php:27
+msgid "Edit Your Profile"
+msgstr "Editiere dein Profil"
-#: mod/profiles.php:731
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/Tänze/Kultur/Unterhaltung"
+#: mod/newmember.php:27
+msgid ""
+"Edit your default profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils."
-#: mod/profiles.php:732
-msgid "Hobbies/Interests"
-msgstr "Hobbies/Interessen"
+#: mod/newmember.php:28
+msgid "Profile Keywords"
+msgstr "Profil Schlüsselbegriffe"
-#: mod/profiles.php:733
-msgid "Love/romance"
-msgstr "Liebe/Romantik"
+#: mod/newmember.php:28
+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/profiles.php:734
-msgid "Work/employment"
-msgstr "Arbeit/Anstellung"
+#: mod/newmember.php:30
+msgid "Connecting"
+msgstr "Verbindungen knüpfen"
-#: mod/profiles.php:735
-msgid "School/education"
-msgstr "Schule/Ausbildung"
+#: mod/newmember.php:36
+msgid "Importing Emails"
+msgstr "Emails Importieren"
-#: mod/profiles.php:736
-msgid "Contact information and Social Networks"
-msgstr "Kontaktinformationen und Soziale Netzwerke"
+#: mod/newmember.php:36
+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/profiles.php:767 src/Model/Profile.php:389
-msgid "Profile Image"
-msgstr "Profilbild"
+#: mod/newmember.php:39
+msgid "Go to Your Contacts Page"
+msgstr "Gehe zu deiner Kontakt-Seite"
-#: mod/profiles.php:769 src/Model/Profile.php:392
-msgid "visible to everybody"
-msgstr "sichtbar für jeden"
+#: mod/newmember.php:39
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the Add New Contact dialog."
+msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein."
-#: mod/profiles.php:776
-msgid "Edit/Manage Profiles"
-msgstr "Bearbeite/Verwalte Profile"
+#: mod/newmember.php:40
+msgid "Go to Your Site's Directory"
+msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz"
-#: mod/profiles.php:777 src/Model/Profile.php:379 src/Model/Profile.php:401
-msgid "Change profile photo"
-msgstr "Profilbild ändern"
+#: mod/newmember.php:40
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a Connect or Follow link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."
-#: mod/profiles.php:778 src/Model/Profile.php:380
-msgid "Create New Profile"
-msgstr "Neues Profil anlegen"
+#: mod/newmember.php:41
+msgid "Finding New People"
+msgstr "Neue Leute kennenlernen"
+
+#: mod/newmember.php:41
+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:45
+msgid "Group Your Contacts"
+msgstr "Gruppiere deine Kontakte"
+
+#: mod/newmember.php:45
+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:48
+msgid "Why Aren't My Posts Public?"
+msgstr "Warum sind meine Beiträge nicht öffentlich?"
+
+#: mod/newmember.php:48
+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:52
+msgid "Getting Help"
+msgstr "Hilfe bekommen"
+
+#: mod/newmember.php:54
+msgid "Go to the Help Section"
+msgstr "Zum Hilfe Abschnitt gehen"
+
+#: mod/newmember.php:54
+msgid ""
+"Our help pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
+
+#: mod/dfrn_confirm.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:249 mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "Unerwartete Antwort der Gegenstelle: "
+
+#: mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "Bestätigung erfolgreich abgeschlossen."
+
+#: mod/dfrn_confirm.php:275
+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:278
+msgid "Introduction failed or was revoked."
+msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
+
+#: mod/dfrn_confirm.php:283
+msgid "Remote site reported: "
+msgstr "Gegenstelle meldet: "
+
+#: mod/dfrn_confirm.php:396
+msgid "Unable to set contact photo."
+msgstr "Konnte das Bild des Kontakts nicht speichern."
+
+#: mod/dfrn_confirm.php:498
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Für '%s' wurde kein Nutzer gefunden"
+
+#: mod/dfrn_confirm.php:508
+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:519
+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:535
+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:549
+#, 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:565
+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:576
+msgid "Unable to set your contact credentials on our system."
+msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
+
+#: mod/dfrn_confirm.php:631
+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:694
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s ist %2$s beigetreten"
+
+#: mod/filer.php:34
+msgid "- select -"
+msgstr "- auswählen -"
#: mod/register.php:99
msgid ""
@@ -6688,18 +9273,10 @@ msgid ""
"be an existing address.)"
msgstr "Deine E-Mail Adresse (Informationen zur Registrierung werden an diese Adresse gesendet, darum muss sie existieren.)"
-#: mod/register.php:273 mod/settings.php:1201
-msgid "New Password:"
-msgstr "Neues Passwort:"
-
#: mod/register.php:273
msgid "Leave empty for an auto generated password."
msgstr "Leer lassen um das Passwort automatisch zu generieren."
-#: mod/register.php:274 mod/settings.php:1202
-msgid "Confirm:"
-msgstr "Bestätigen:"
-
#: mod/register.php:275
#, php-format
msgid ""
@@ -6711,923 +9288,104 @@ msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstab
msgid "Choose a nickname: "
msgstr "Spitznamen wählen: "
-#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283
-msgid "Register"
-msgstr "Registrieren"
-
#: mod/register.php:286
msgid "Import your profile to this friendica instance"
msgstr "Importiere Dein Profil auf diese Friendica Instanz"
-#: mod/removeme.php:43
-msgid "User deleted their account"
-msgstr "Gelöschter Nutzeraccount"
+#: mod/common.php:91
+msgid "No contacts in common."
+msgstr "Keine gemeinsamen Kontakte."
-#: mod/removeme.php:44
-msgid ""
-"On your Friendica node an user deleted their account. Please ensure that "
-"their data is removed from the backups."
-msgstr "Ein Nutzer deiner Friendica Instanz hat seinen Account gelöscht. Bitte stelle sicher, dass deren Daten aus deinen Backups entfernt werden."
+#: mod/probe.php:14 mod/webfinger.php:17
+msgid "Only logged in users are permitted to perform a probing."
+msgstr "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet."
-#: mod/removeme.php:45
-#, php-format
-msgid "The user id is %d"
-msgstr "Die ID des Users lautet %d"
+#: mod/help.php:48
+msgid "Help:"
+msgstr "Hilfe:"
-#: mod/removeme.php:76 mod/removeme.php:79
-msgid "Remove My Account"
-msgstr "Konto löschen"
+#: mod/help.php:63 index.php:325
+msgid "Page not found."
+msgstr "Seite nicht gefunden."
-#: mod/removeme.php:77
-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/profperm.php:34 mod/profperm.php:65
+msgid "Invalid profile identifier."
+msgstr "Ungültiger Profil-Bezeichner."
-#: mod/removeme.php:78
-msgid "Please enter your password for verification:"
-msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
+#: mod/profperm.php:111
+msgid "Profile Visibility Editor"
+msgstr "Editor für die Profil-Sichtbarkeit"
-#: mod/settings.php:72
-msgid "Display"
-msgstr "Anzeige"
+#: mod/profperm.php:124
+msgid "Visible To"
+msgstr "Sichtbar für"
-#: mod/settings.php:79 mod/settings.php:842
-msgid "Social Networks"
-msgstr "Soziale Netzwerke"
+#: mod/profperm.php:140
+msgid "All Contacts (with secure profile access)"
+msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
-#: mod/settings.php:93 src/Content/Nav.php:204
-msgid "Delegations"
-msgstr "Delegationen"
+#: mod/item.php:114
+msgid "Unable to locate original post."
+msgstr "Konnte den Originalbeitrag nicht finden."
-#: mod/settings.php:100
-msgid "Connected apps"
-msgstr "Verbundene Programme"
+#: mod/item.php:274
+msgid "Empty post discarded."
+msgstr "Leerer Beitrag wurde verworfen."
-#: mod/settings.php:114
-msgid "Remove account"
-msgstr "Konto löschen"
-
-#: mod/settings.php:168
-msgid "Missing some important data!"
-msgstr "Wichtige Daten fehlen!"
-
-#: mod/settings.php:279
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
-
-#: mod/settings.php:284
-msgid "Email settings updated."
-msgstr "E-Mail Einstellungen bearbeitet."
-
-#: mod/settings.php:300
-msgid "Features updated"
-msgstr "Features aktualisiert"
-
-#: mod/settings.php:372
-msgid "Relocate message has been send to your contacts"
-msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
-
-#: mod/settings.php:384 src/Model/User.php:339
-msgid "Passwords do not match. Password unchanged."
-msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
-
-#: mod/settings.php:389
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
-
-#: mod/settings.php:394 src/Core/Console/NewPassword.php:87
-msgid ""
-"The new password has been exposed in a public data dump, please choose "
-"another."
-msgstr "Das neuer Passwort wurde in einem öffentlichen Daten-Dump veröffentlicht. Bitte verwende ein anderes Passwort."
-
-#: mod/settings.php:400
-msgid "Wrong password."
-msgstr "Falsches Passwort."
-
-#: mod/settings.php:407 src/Core/Console/NewPassword.php:94
-msgid "Password changed."
-msgstr "Passwort geändert."
-
-#: mod/settings.php:409 src/Core/Console/NewPassword.php:91
-msgid "Password update failed. Please try again."
-msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
-
-#: mod/settings.php:496
-msgid " Please use a shorter name."
-msgstr " Bitte verwende einen kürzeren Namen."
-
-#: mod/settings.php:499
-msgid " Name too short."
-msgstr " Name ist zu kurz."
-
-#: mod/settings.php:507
-msgid "Wrong Password"
-msgstr "Falsches Passwort"
-
-#: mod/settings.php:512
-msgid "Invalid email."
-msgstr "Ungültige E-Mail-Adresse."
-
-#: mod/settings.php:519
-msgid "Cannot change to that email."
-msgstr "Ändern der E-Mail nicht möglich. "
-
-#: mod/settings.php:572
-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:575
-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:615
-msgid "Settings updated."
-msgstr "Einstellungen aktualisiert."
-
-#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
-msgid "Add application"
-msgstr "Programm hinzufügen"
-
-#: mod/settings.php:678 mod/settings.php:704
-msgid "Consumer Key"
-msgstr "Consumer Key"
-
-#: mod/settings.php:679 mod/settings.php:705
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
-
-#: mod/settings.php:680 mod/settings.php:706
-msgid "Redirect"
-msgstr "Umleiten"
-
-#: mod/settings.php:681 mod/settings.php:707
-msgid "Icon url"
-msgstr "Icon URL"
-
-#: mod/settings.php:692
-msgid "You can't edit this application."
-msgstr "Du kannst dieses Programm nicht bearbeiten."
-
-#: mod/settings.php:735
-msgid "Connected Apps"
-msgstr "Verbundene Programme"
-
-#: mod/settings.php:737 src/Object/Post.php:155 src/Object/Post.php:157
-msgid "Edit"
-msgstr "Bearbeiten"
-
-#: mod/settings.php:739
-msgid "Client key starts with"
-msgstr "Anwenderschlüssel beginnt mit"
-
-#: mod/settings.php:740
-msgid "No name"
-msgstr "Kein Name"
-
-#: mod/settings.php:741
-msgid "Remove authorization"
-msgstr "Autorisierung entziehen"
-
-#: mod/settings.php:752
-msgid "No Addon settings configured"
-msgstr "Keine Addon-Einstellungen konfiguriert"
-
-#: mod/settings.php:761
-msgid "Addon Settings"
-msgstr "Addon Einstellungen"
-
-#: mod/settings.php:782
-msgid "Additional Features"
-msgstr "Zusätzliche Features"
-
-#: mod/settings.php:805 src/Content/ContactSelector.php:83
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: mod/settings.php:805 mod/settings.php:806
-msgid "enabled"
-msgstr "eingeschaltet"
-
-#: mod/settings.php:805 mod/settings.php:806
-msgid "disabled"
-msgstr "ausgeschaltet"
-
-#: mod/settings.php:805 mod/settings.php:806
-#, 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:806
-msgid "GNU Social (OStatus)"
-msgstr "GNU Social (OStatus)"
-
-#: mod/settings.php:837
-msgid "Email access is disabled on this site."
-msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
-
-#: mod/settings.php:847
-msgid "General Social Media Settings"
-msgstr "Allgemeine Einstellungen zu Sozialen Medien"
-
-#: mod/settings.php:848
-msgid "Disable Content Warning"
-msgstr "Inhaltswarnungen ausschalten"
-
-#: mod/settings.php:848
-msgid ""
-"Users on networks like Mastodon or Pleroma are able to set a content warning"
-" field which collapse their post by default. This disables the automatic "
-"collapsing and sets the content warning as the post title. Doesn't affect "
-"any other content filtering you eventually set up."
-msgstr "Nutzer von anderen Netzwerken, wie z.B. Mastodon oder Pleroma, können Inhaltswarnungen, welche die Beiträge standardmäßig einklappen. Diese Einstellung deaktiviert das automatische Einklappt solcher Beiträge und setzt die Inhaltswarnung als Titel des Beitrags. Wenn du andere Filtereinstellungen vorgenommen hast, werden diese hierdurch nicht beeinflusst."
-
-#: mod/settings.php:849
-msgid "Disable intelligent shortening"
-msgstr "Intelligentes Link kürzen ausschalten"
-
-#: mod/settings.php:849
-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:850
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
-msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
-
-#: mod/settings.php:850
-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:851
-msgid "Default group for OStatus contacts"
-msgstr "Voreingestellte Gruppe für OStatus Kontakte"
-
-#: mod/settings.php:852
-msgid "Your legacy GNU Social account"
-msgstr "Dein alter GNU Social Account"
-
-#: mod/settings.php:852
-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:855
-msgid "Repair OStatus subscriptions"
-msgstr "OStatus Abonnements reparieren"
-
-#: mod/settings.php:859
-msgid "Email/Mailbox Setup"
-msgstr "E-Mail/Postfach-Einstellungen"
-
-#: mod/settings.php:860
-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:861
-msgid "Last successful email check:"
-msgstr "Letzter erfolgreicher E-Mail Check"
-
-#: mod/settings.php:863
-msgid "IMAP server name:"
-msgstr "IMAP-Server-Name:"
-
-#: mod/settings.php:864
-msgid "IMAP port:"
-msgstr "IMAP-Port:"
-
-#: mod/settings.php:865
-msgid "Security:"
-msgstr "Sicherheit:"
-
-#: mod/settings.php:865 mod/settings.php:870
-msgid "None"
-msgstr "Keine"
-
-#: mod/settings.php:866
-msgid "Email login name:"
-msgstr "E-Mail-Login-Name:"
-
-#: mod/settings.php:867
-msgid "Email password:"
-msgstr "E-Mail-Passwort:"
-
-#: mod/settings.php:868
-msgid "Reply-to address:"
-msgstr "Reply-to Adresse:"
-
-#: mod/settings.php:869
-msgid "Send public posts to all email contacts:"
-msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
-
-#: mod/settings.php:870
-msgid "Action after import:"
-msgstr "Aktion nach Import:"
-
-#: mod/settings.php:870 src/Content/Nav.php:191
-msgid "Mark as seen"
-msgstr "Als gelesen markieren"
-
-#: mod/settings.php:870
-msgid "Move to folder"
-msgstr "In einen Ordner verschieben"
-
-#: mod/settings.php:871
-msgid "Move to folder:"
-msgstr "In diesen Ordner verschieben:"
-
-#: mod/settings.php:914
-#, php-format
-msgid "%s - (Unsupported)"
-msgstr "%s - (Nicht unterstützt)"
-
-#: mod/settings.php:916
-#, php-format
-msgid "%s - (Experimental)"
-msgstr "%s - (Experimentell)"
-
-#: mod/settings.php:959
-msgid "Display Settings"
-msgstr "Anzeige-Einstellungen"
-
-#: mod/settings.php:965 mod/settings.php:989
-msgid "Display Theme:"
-msgstr "Theme:"
-
-#: mod/settings.php:966
-msgid "Mobile Theme:"
-msgstr "Mobiles Theme"
-
-#: mod/settings.php:967
-msgid "Suppress warning of insecure networks"
-msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
-
-#: mod/settings.php:967
-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:968
-msgid "Update browser every xx seconds"
-msgstr "Browser alle xx Sekunden aktualisieren"
-
-#: mod/settings.php:968
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
-msgstr "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten."
-
-#: mod/settings.php:969
-msgid "Number of items to display per page:"
-msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
-
-#: mod/settings.php:969 mod/settings.php:970
-msgid "Maximum of 100 items"
-msgstr "Maximal 100 Beiträge"
-
-#: mod/settings.php:970
-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:971
-msgid "Don't show emoticons"
-msgstr "Keine Smilies anzeigen"
-
-#: mod/settings.php:972
-msgid "Calendar"
-msgstr "Kalender"
-
-#: mod/settings.php:973
-msgid "Beginning of week:"
-msgstr "Wochenbeginn:"
-
-#: mod/settings.php:974
-msgid "Don't show notices"
-msgstr "Info-Popups nicht anzeigen"
-
-#: mod/settings.php:975
-msgid "Infinite scroll"
-msgstr "Endloses Scrollen"
-
-#: mod/settings.php:976
-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:976
-msgid ""
-"When disabled, the network page is updated all the time, which could be "
-"confusing while reading."
-msgstr "Wenn dies deaktiviert ist, wird die Netzwerk Seite aktualisiert, wann immer neue Beiträge eintreffen, egal an welcher Stelle gerade gelesen wird."
-
-#: mod/settings.php:977
-msgid "Bandwith Saver Mode"
-msgstr "Bandbreiten-Spar-Modus"
-
-#: mod/settings.php:977
-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:978
-msgid "Smart Threading"
-msgstr "Intelligentes Threading"
-
-#: mod/settings.php:978
-msgid ""
-"When enabled, suppress extraneous thread indentation while keeping it where "
-"it matters. Only works if threading is available and enabled."
-msgstr "Ist dies aktiviert, werden Einrückungen in Unterhaltungen unterdrückt wo sie nicht benötigt werden. Werden sie benötigt, werden die Threads weiterhin eingerückt."
-
-#: mod/settings.php:980
-msgid "General Theme Settings"
-msgstr "Allgemeine Themeneinstellungen"
-
-#: mod/settings.php:981
-msgid "Custom Theme Settings"
-msgstr "Benutzerdefinierte Theme Einstellungen"
-
-#: mod/settings.php:982
-msgid "Content Settings"
-msgstr "Einstellungen zum Inhalt"
-
-#: mod/settings.php:983 view/theme/duepuntozero/config.php:73
-#: view/theme/frio/config.php:115 view/theme/quattro/config.php:75
-#: view/theme/vier/config.php:121
-msgid "Theme settings"
-msgstr "Themeneinstellungen"
-
-#: mod/settings.php:1002
-msgid "Unable to find your profile. Please contact your admin."
-msgstr "Konnte dein Profil nicht finden. Bitte kontaktiere den Admin."
-
-#: mod/settings.php:1044
-msgid "Account Types"
-msgstr "Kontenarten"
-
-#: mod/settings.php:1045
-msgid "Personal Page Subtypes"
-msgstr "Unterarten der persönlichen Seite"
-
-#: mod/settings.php:1046
-msgid "Community Forum Subtypes"
-msgstr "Unterarten des Gemeinschaftsforums"
-
-#: mod/settings.php:1053
-msgid "Personal Page"
-msgstr "Persönliche Seite"
-
-#: mod/settings.php:1054
-msgid "Account for a personal profile."
-msgstr "Konto für ein persönliches Profil."
-
-#: mod/settings.php:1057
-msgid "Organisation Page"
-msgstr "Organisationsseite"
-
-#: mod/settings.php:1058
-msgid ""
-"Account for an organisation that automatically approves contact requests as "
-"\"Followers\"."
-msgstr "Konto für eine Organisation, das Kontaktanfragen automatisch als \"Follower\" annimmt."
-
-#: mod/settings.php:1061
-msgid "News Page"
-msgstr "Nachrichtenseite"
-
-#: mod/settings.php:1062
-msgid ""
-"Account for a news reflector that automatically approves contact requests as"
-" \"Followers\"."
-msgstr "Konto für einen Feedspiegel, das Kontaktanfragen automatisch als \"Follower\" annimmt."
-
-#: mod/settings.php:1065
-msgid "Community Forum"
-msgstr "Gemeinschaftsforum"
-
-#: mod/settings.php:1066
-msgid "Account for community discussions."
-msgstr "Konto für Diskussionsforen. "
-
-#: mod/settings.php:1069
-msgid "Normal Account Page"
-msgstr "Normales Konto"
-
-#: mod/settings.php:1070
-msgid ""
-"Account for a regular personal profile that requires manual approval of "
-"\"Friends\" and \"Followers\"."
-msgstr "Konto für ein normales persönliches Profil. Kontaktanfragen müssen manuell als \"Friend\" oder \"Follower\" bestätigt werden."
-
-#: mod/settings.php:1073
-msgid "Soapbox Page"
-msgstr "Marktschreier-Konto"
-
-#: mod/settings.php:1074
-msgid ""
-"Account for a public profile that automatically approves contact requests as"
-" \"Followers\"."
-msgstr "Konto für ein öffentliches Profil, das Kontaktanfragen automatisch als \"Follower\" annimmt."
-
-#: mod/settings.php:1077
-msgid "Public Forum"
-msgstr "Öffentliches Forum"
-
-#: mod/settings.php:1078
-msgid "Automatically approves all contact requests."
-msgstr "Bestätigt alle Kontaktanfragen automatisch."
-
-#: mod/settings.php:1081
-msgid "Automatic Friend Page"
-msgstr "Automatische Freunde Seite"
-
-#: mod/settings.php:1082
-msgid ""
-"Account for a popular profile that automatically approves contact requests "
-"as \"Friends\"."
-msgstr "Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als \"Friend\" annimmt."
-
-#: mod/settings.php:1085
-msgid "Private Forum [Experimental]"
-msgstr "Privates Forum [Versuchsstadium]"
-
-#: mod/settings.php:1086
-msgid "Requires manual approval of contact requests."
-msgstr "Kontaktanfragen müssen manuell bestätigt werden."
-
-#: mod/settings.php:1097
-msgid "OpenID:"
-msgstr "OpenID:"
-
-#: mod/settings.php:1097
-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:1105
-msgid "Publish your default profile in your local site directory?"
-msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
-
-#: mod/settings.php:1105
+#: mod/item.php:799
#, php-format
msgid ""
-"Your profile will be published in the global friendica directories (e.g. %s ). Your profile will be visible in public."
-msgstr "Dein Profil wird in den globalen Friendica Verzeichnissen (z.B. %s ) veröffentlicht. Dein Profil wird öffentlich auffindbar sein."
+"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/settings.php:1111
-msgid "Publish your default profile in the global social directory?"
-msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
-
-#: mod/settings.php:1111
+#: mod/item.php:801
#, php-format
+msgid "You may visit them online at %s"
+msgstr "Du kannst sie online unter %s besuchen"
+
+#: mod/item.php:802
msgid ""
-"Your profile will be published in this node's local "
-"directory . Your profile details may be publicly visible depending on the"
-" system settings."
-msgstr "Dein Profil wird im lokalen Verzeichnis dieses Knotens veröffentlicht. Je nach Systemeinstellungen kann es öffentlich auffindbar sein."
+"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/settings.php:1118
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
-
-#: mod/settings.php:1118
-msgid ""
-"Your contact list won't be shown in your default profile page. You can "
-"decide to show your contact list separately for each additional profile you "
-"create"
-msgstr "Die Liste deiner Kontakte wird nicht in deinem Standard-Profil angezeigt werden. Du kannst für jedes weitere Profil diese Entscheidung separat einstellen."
-
-#: mod/settings.php:1122
-msgid "Hide your profile details from anonymous viewers?"
-msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
-
-#: mod/settings.php:1122
-msgid ""
-"Anonymous visitors will only see your profile picture, your display name and"
-" the nickname you are using on your profile page. Disables posting public "
-"messages to Diaspora and other networks."
-msgstr "Anonyme Besucher deines Profils werden ausschließlich dein Profilbild, deinen Namen sowie deinen Spitznamen sehen. Ist diese Option aktiv, können keine öffentlichen Beiträge zu Diaspora und anderen Netzwerken veröffentlicht werden."
-
-#: mod/settings.php:1126
-msgid "Allow friends to post to your profile page?"
-msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
-
-#: mod/settings.php:1126
-msgid ""
-"Your contacts may write posts on your profile wall. These posts will be "
-"distributed to your contacts"
-msgstr "Deine Kontakte können Beiträge auf deiner Pinnwand hinterlassen. Diese werden an deine Kontakte verteilt."
-
-#: mod/settings.php:1130
-msgid "Allow friends to tag your posts?"
-msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
-
-#: mod/settings.php:1130
-msgid "Your contacts can add additional tags to your posts."
-msgstr "Deine Kontakte dürfen deine Beiträge mit zusätzlichen Schlagworten versehen."
-
-#: mod/settings.php:1134
-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:1134
-msgid ""
-"If you like, Friendica may suggest new members to add you as a contact."
-msgstr "Wenn du magst, kann Friendica dich neuen Mitgliedern als Kontakt vorschlagen."
-
-#: mod/settings.php:1138
-msgid "Permit unknown people to send you private mail?"
-msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
-
-#: mod/settings.php:1138
-msgid ""
-"Friendica network users may send you private messages even if they are not "
-"in your contact list."
-msgstr "Nutzer des Friendica Netzwerks können dir private Nachrichten senden, selbst wenn sie nicht in deine Kontaktliste sind."
-
-#: mod/settings.php:1142
-msgid "Profile is not published ."
-msgstr "Profil ist nicht veröffentlicht ."
-
-#: mod/settings.php:1148
+#: mod/item.php:806
#, php-format
-msgid "Your Identity Address is '%s' or '%s'."
-msgstr "Die Adresse deines Profils lautet '%s' oder '%s'."
+msgid "%s posted an update."
+msgstr "%s hat ein Update veröffentlicht."
-#: mod/settings.php:1155
-msgid "Automatically expire posts after this many days:"
-msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
+#: mod/editpost.php:25 mod/editpost.php:35
+msgid "Item not found"
+msgstr "Beitrag nicht gefunden"
-#: mod/settings.php:1155
-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/editpost.php:42
+msgid "Edit post"
+msgstr "Beitrag bearbeiten"
-#: mod/settings.php:1156
-msgid "Advanced expiration settings"
-msgstr "Erweiterte Verfallseinstellungen"
+#: view/theme/quattro/config.php:76
+msgid "Alignment"
+msgstr "Ausrichtung"
-#: mod/settings.php:1157
-msgid "Advanced Expiration"
-msgstr "Erweitertes Verfallen"
+#: view/theme/quattro/config.php:76
+msgid "Left"
+msgstr "Links"
-#: mod/settings.php:1158
-msgid "Expire posts:"
-msgstr "Beiträge verfallen lassen:"
+#: view/theme/quattro/config.php:76
+msgid "Center"
+msgstr "Mitte"
-#: mod/settings.php:1159
-msgid "Expire personal notes:"
-msgstr "Persönliche Notizen verfallen lassen:"
+#: view/theme/quattro/config.php:77
+msgid "Color scheme"
+msgstr "Farbschema"
-#: mod/settings.php:1160
-msgid "Expire starred posts:"
-msgstr "Markierte Beiträge verfallen lassen:"
+#: view/theme/quattro/config.php:78
+msgid "Posts font size"
+msgstr "Schriftgröße in Beiträgen"
-#: mod/settings.php:1161
-msgid "Expire photos:"
-msgstr "Fotos verfallen lassen:"
-
-#: mod/settings.php:1162
-msgid "Only expire posts by others:"
-msgstr "Nur Beiträge anderer verfallen:"
-
-#: mod/settings.php:1192
-msgid "Account Settings"
-msgstr "Kontoeinstellungen"
-
-#: mod/settings.php:1200
-msgid "Password Settings"
-msgstr "Passwort-Einstellungen"
-
-#: mod/settings.php:1202
-msgid "Leave password fields blank unless changing"
-msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
-
-#: mod/settings.php:1203
-msgid "Current Password:"
-msgstr "Aktuelles Passwort:"
-
-#: mod/settings.php:1203 mod/settings.php:1204
-msgid "Your current password to confirm the changes"
-msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
-
-#: mod/settings.php:1204
-msgid "Password:"
-msgstr "Passwort:"
-
-#: mod/settings.php:1208
-msgid "Basic Settings"
-msgstr "Grundeinstellungen"
-
-#: mod/settings.php:1209 src/Model/Profile.php:740
-msgid "Full Name:"
-msgstr "Kompletter Name:"
-
-#: mod/settings.php:1210
-msgid "Email Address:"
-msgstr "E-Mail-Adresse:"
-
-#: mod/settings.php:1211
-msgid "Your Timezone:"
-msgstr "Deine Zeitzone:"
-
-#: mod/settings.php:1212
-msgid "Your Language:"
-msgstr "Deine Sprache:"
-
-#: mod/settings.php:1212
-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:1213
-msgid "Default Post Location:"
-msgstr "Standardstandort:"
-
-#: mod/settings.php:1214
-msgid "Use Browser Location:"
-msgstr "Standort des Browsers verwenden:"
-
-#: mod/settings.php:1217
-msgid "Security and Privacy Settings"
-msgstr "Sicherheits- und Privatsphäre-Einstellungen"
-
-#: mod/settings.php:1219
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
-
-#: mod/settings.php:1219 mod/settings.php:1248
-msgid "(to prevent spam abuse)"
-msgstr "(um SPAM zu vermeiden)"
-
-#: mod/settings.php:1220
-msgid "Default Post Permissions"
-msgstr "Standard-Zugriffsrechte für Beiträge"
-
-#: mod/settings.php:1221
-msgid "(click to open/close)"
-msgstr "(klicke zum öffnen/schließen)"
-
-#: mod/settings.php:1231
-msgid "Default Private Post"
-msgstr "Privater Standardbeitrag"
-
-#: mod/settings.php:1232
-msgid "Default Public Post"
-msgstr "Öffentlicher Standardbeitrag"
-
-#: mod/settings.php:1236
-msgid "Default Permissions for New Posts"
-msgstr "Standardberechtigungen für neue Beiträge"
-
-#: mod/settings.php:1248
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
-
-#: mod/settings.php:1251
-msgid "Notification Settings"
-msgstr "Benachrichtigungseinstellungen"
-
-#: mod/settings.php:1252
-msgid "By default post a status message when:"
-msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
-
-#: mod/settings.php:1253
-msgid "accepting a friend request"
-msgstr "– Du eine Kontaktanfrage akzeptierst"
-
-#: mod/settings.php:1254
-msgid "joining a forum/community"
-msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
-
-#: mod/settings.php:1255
-msgid "making an interesting profile change"
-msgstr "– Du eine interessante Änderung an Deinem Profil durchführst"
-
-#: mod/settings.php:1256
-msgid "Send a notification email when:"
-msgstr "Benachrichtigungs-E-Mail senden wenn:"
-
-#: mod/settings.php:1257
-msgid "You receive an introduction"
-msgstr "– Du eine Kontaktanfrage erhältst"
-
-#: mod/settings.php:1258
-msgid "Your introductions are confirmed"
-msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
-
-#: mod/settings.php:1259
-msgid "Someone writes on your profile wall"
-msgstr "– jemand etwas auf Deine Pinnwand schreibt"
-
-#: mod/settings.php:1260
-msgid "Someone writes a followup comment"
-msgstr "– jemand auch einen Kommentar verfasst"
-
-#: mod/settings.php:1261
-msgid "You receive a private message"
-msgstr "– Du eine private Nachricht erhältst"
-
-#: mod/settings.php:1262
-msgid "You receive a friend suggestion"
-msgstr "– Du eine Empfehlung erhältst"
-
-#: mod/settings.php:1263
-msgid "You are tagged in a post"
-msgstr "– Du in einem Beitrag erwähnt wirst"
-
-#: mod/settings.php:1264
-msgid "You are poked/prodded/etc. in a post"
-msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
-
-#: mod/settings.php:1266
-msgid "Activate desktop notifications"
-msgstr "Desktop Benachrichtigungen einschalten"
-
-#: mod/settings.php:1266
-msgid "Show desktop popup on new notifications"
-msgstr "Desktop Benachrichtigungen einschalten"
-
-#: mod/settings.php:1268
-msgid "Text-only notification emails"
-msgstr "Benachrichtigungs E-Mail als Rein-Text."
-
-#: mod/settings.php:1270
-msgid "Send text only notification emails, without the html part"
-msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
-
-#: mod/settings.php:1272
-msgid "Show detailled notifications"
-msgstr "Detaillierte Benachrichtigungen anzeigen"
-
-#: mod/settings.php:1274
-msgid ""
-"Per default, notifications are condensed to a single notification per item. "
-"When enabled every notification is displayed."
-msgstr "Normalerweise werde alle Benachrichtigungen zu einem Thema zusammengefasst in einer einzigen Mitteilung. Wenn diese Option aktiviert ist, wird jede Mitteilung angezeigt."
-
-#: mod/settings.php:1276
-msgid "Advanced Account/Page Type Settings"
-msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
-
-#: mod/settings.php:1277
-msgid "Change the behaviour of this account for special situations"
-msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
-
-#: mod/settings.php:1280
-msgid "Relocate"
-msgstr "Umziehen"
-
-#: mod/settings.php:1281
-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:1282
-msgid "Resend relocate message to contacts"
-msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
-
-#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502
-msgid "default"
-msgstr "Standard"
-
-#: view/theme/duepuntozero/config.php:55
-msgid "greenzero"
-msgstr "greenzero"
-
-#: view/theme/duepuntozero/config.php:56
-msgid "purplezero"
-msgstr "purplezero"
-
-#: view/theme/duepuntozero/config.php:57
-msgid "easterbunny"
-msgstr "easterbunny"
-
-#: view/theme/duepuntozero/config.php:58
-msgid "darkzero"
-msgstr "darkzero"
-
-#: view/theme/duepuntozero/config.php:59
-msgid "comix"
-msgstr "comix"
-
-#: view/theme/duepuntozero/config.php:60
-msgid "slackr"
-msgstr "slackr"
-
-#: view/theme/duepuntozero/config.php:74
-msgid "Variations"
-msgstr "Variationen"
+#: view/theme/quattro/config.php:79
+msgid "Textareas font size"
+msgstr "Schriftgröße in Eingabefeldern"
#: view/theme/frio/php/Image.php:25
msgid "Repeat the image"
@@ -7721,98 +9479,10 @@ msgstr "Gast"
msgid "Visitor"
msgstr "Besucher"
-#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
-#: src/Module/Login.php:311
-msgid "Logout"
-msgstr "Abmelden"
-
-#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
-msgid "End this session"
-msgstr "Diese Sitzung beenden"
-
-#: view/theme/frio/theme.php:259 src/Content/Nav.php:100
-#: src/Content/Nav.php:181
-msgid "Your posts and conversations"
-msgstr "Deine Beiträge und Unterhaltungen"
-
-#: view/theme/frio/theme.php:260 src/Content/Nav.php:101
-msgid "Your profile page"
-msgstr "Deine Profilseite"
-
-#: view/theme/frio/theme.php:261 src/Content/Nav.php:102
-msgid "Your photos"
-msgstr "Deine Fotos"
-
-#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
-#: src/Model/Profile.php:914 src/Model/Profile.php:917
-msgid "Videos"
-msgstr "Videos"
-
-#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
-msgid "Your videos"
-msgstr "Deine Videos"
-
-#: view/theme/frio/theme.php:263 src/Content/Nav.php:104
-msgid "Your events"
-msgstr "Deine Ereignisse"
-
-#: view/theme/frio/theme.php:266 src/Content/Nav.php:178
-msgid "Conversations from your friends"
-msgstr "Unterhaltungen Deiner Kontakte"
-
-#: view/theme/frio/theme.php:267 src/Content/Nav.php:169
-#: src/Model/Profile.php:929 src/Model/Profile.php:940
-msgid "Events and Calendar"
-msgstr "Ereignisse und Kalender"
-
-#: view/theme/frio/theme.php:268 src/Content/Nav.php:195
-msgid "Private mail"
-msgstr "Private E-Mail"
-
-#: view/theme/frio/theme.php:269 src/Content/Nav.php:206
-msgid "Account settings"
-msgstr "Kontoeinstellungen"
-
-#: view/theme/frio/theme.php:270 src/Content/Nav.php:212
-msgid "Manage/edit friends and contacts"
-msgstr " Kontakte verwalten/editieren"
-
-#: view/theme/quattro/config.php:76
-msgid "Alignment"
-msgstr "Ausrichtung"
-
-#: view/theme/quattro/config.php:76
-msgid "Left"
-msgstr "Links"
-
-#: view/theme/quattro/config.php:76
-msgid "Center"
-msgstr "Mitte"
-
-#: view/theme/quattro/config.php:77
-msgid "Color scheme"
-msgstr "Farbschema"
-
-#: view/theme/quattro/config.php:78
-msgid "Posts font size"
-msgstr "Schriftgröße in Beiträgen"
-
-#: view/theme/quattro/config.php:79
-msgid "Textareas font size"
-msgstr "Schriftgröße in Eingabefeldern"
-
#: view/theme/vier/config.php:75
msgid "Comma separated list of helper forums"
msgstr "Komma-Separierte Liste der Helfer-Foren"
-#: view/theme/vier/config.php:115 src/Core/ACL.php:309
-msgid "don't show"
-msgstr "nicht zeigen"
-
-#: view/theme/vier/config.php:115 src/Core/ACL.php:308
-msgid "show"
-msgstr "zeigen"
-
#: view/theme/vier/config.php:122
msgid "Set style"
msgstr "Stil auswählen"
@@ -7845,1705 +9515,37 @@ msgstr "Letzte Nutzer"
msgid "Local Directory"
msgstr "Lokales Verzeichnis"
-#: view/theme/vier/theme.php:202 src/Content/Widget.php:65
-msgid "Similar Interests"
-msgstr "Ähnliche Interessen"
-
-#: view/theme/vier/theme.php:204 src/Content/Widget.php:67
-msgid "Invite Friends"
-msgstr "Freunde einladen"
-
-#: view/theme/vier/theme.php:256 src/Content/ForumManager.php:127
-msgid "External link to forum"
-msgstr "Externer Link zum Forum"
-
#: view/theme/vier/theme.php:292
msgid "Quick Start"
msgstr "Schnell-Start"
-#: src/Core/UserImport.php:104
-msgid "Error decoding account file"
-msgstr "Fehler beim Verarbeiten der Account Datei"
+#: view/theme/duepuntozero/config.php:55
+msgid "greenzero"
+msgstr "greenzero"
-#: src/Core/UserImport.php:110
-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?"
+#: view/theme/duepuntozero/config.php:56
+msgid "purplezero"
+msgstr "purplezero"
-#: src/Core/UserImport.php:118
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
+#: view/theme/duepuntozero/config.php:57
+msgid "easterbunny"
+msgstr "easterbunny"
-#: src/Core/UserImport.php:151
-msgid "User creation error"
-msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
+#: view/theme/duepuntozero/config.php:58
+msgid "darkzero"
+msgstr "darkzero"
-#: src/Core/UserImport.php:169
-msgid "User profile creation error"
-msgstr "Fehler beim Anlegen des Nutzerkontos"
+#: view/theme/duepuntozero/config.php:59
+msgid "comix"
+msgstr "comix"
-#: src/Core/UserImport.php:213
-#, 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"
+#: view/theme/duepuntozero/config.php:60
+msgid "slackr"
+msgstr "slackr"
-#: src/Core/UserImport.php:278
-msgid "Done. You can now login with your username and password"
-msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
-
-#: src/Core/ACL.php:295
-msgid "Post to Email"
-msgstr "An E-Mail senden"
-
-#: src/Core/ACL.php:301
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
-
-#: src/Core/ACL.php:300
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
-
-#: src/Core/ACL.php:307
-msgid "Visible to everybody"
-msgstr "Für jeden sichtbar"
-
-#: src/Core/ACL.php:319
-msgid "Close"
-msgstr "Schließen"
-
-#: src/Core/Console/NewPassword.php:78
-msgid "Enter new password: "
-msgstr "Neues Passwort eingeben:"
-
-#: src/Core/Console/NewPassword.php:83 src/Model/User.php:262
-msgid "Password can't be empty"
-msgstr "Das Passwort kann nicht leer sein"
-
-#: src/Core/NotificationsManager.php:171
-msgid "System"
-msgstr "System"
-
-#: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124
-#: src/Content/Nav.php:181
-msgid "Home"
-msgstr "Pinnwand"
-
-#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:186
-msgid "Introductions"
-msgstr "Kontaktanfragen"
-
-#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s hat %ss Beitrag kommentiert"
-
-#: src/Core/NotificationsManager.php:267
-#, php-format
-msgid "%s created a new post"
-msgstr "%s hat einen neuen Beitrag erstellt"
-
-#: src/Core/NotificationsManager.php:281
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s mag %ss Beitrag"
-
-#: src/Core/NotificationsManager.php:294
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s mag %ss Beitrag nicht"
-
-#: src/Core/NotificationsManager.php:307
-#, php-format
-msgid "%s is attending %s's event"
-msgstr "%s nimmt an %s's Event teil"
-
-#: src/Core/NotificationsManager.php:320
-#, php-format
-msgid "%s is not attending %s's event"
-msgstr "%s nimmt nicht an %s's Event teil"
-
-#: src/Core/NotificationsManager.php:333
-#, php-format
-msgid "%s may attend %s's event"
-msgstr "%s nimmt eventuell an %s's Event teil"
-
-#: src/Core/NotificationsManager.php:350
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s ist jetzt mit %s befreundet"
-
-#: src/Core/NotificationsManager.php:825
-msgid "Friend Suggestion"
-msgstr "Kontaktvorschlag"
-
-#: src/Core/NotificationsManager.php:851
-msgid "Friend/Connect Request"
-msgstr "Kontakt-/Freundschaftsanfrage"
-
-#: src/Core/NotificationsManager.php:851
-msgid "New Follower"
-msgstr "Neuer Bewunderer"
-
-#: src/Util/Temporal.php:147 src/Model/Profile.php:760
-msgid "Birthday:"
-msgstr "Geburtstag:"
-
-#: src/Util/Temporal.php:151
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "YYYY-MM-DD oder MM-DD"
-
-#: src/Util/Temporal.php:294
-msgid "never"
-msgstr "nie"
-
-#: src/Util/Temporal.php:300
-msgid "less than a second ago"
-msgstr "vor weniger als einer Sekunde"
-
-#: src/Util/Temporal.php:303
-msgid "year"
-msgstr "Jahr"
-
-#: src/Util/Temporal.php:303
-msgid "years"
-msgstr "Jahre"
-
-#: src/Util/Temporal.php:304
-msgid "months"
-msgstr "Monate"
-
-#: src/Util/Temporal.php:305
-msgid "weeks"
-msgstr "Wochen"
-
-#: src/Util/Temporal.php:306
-msgid "days"
-msgstr "Tage"
-
-#: src/Util/Temporal.php:307
-msgid "hour"
-msgstr "Stunde"
-
-#: src/Util/Temporal.php:307
-msgid "hours"
-msgstr "Stunden"
-
-#: src/Util/Temporal.php:308
-msgid "minute"
-msgstr "Minute"
-
-#: src/Util/Temporal.php:308
-msgid "minutes"
-msgstr "Minuten"
-
-#: src/Util/Temporal.php:309
-msgid "second"
-msgstr "Sekunde"
-
-#: src/Util/Temporal.php:309
-msgid "seconds"
-msgstr "Sekunden"
-
-#: src/Util/Temporal.php:318
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "vor %1$d %2$s"
-
-#: src/Content/Text/BBCode.php:555
-msgid "view full size"
-msgstr "Volle Größe anzeigen"
-
-#: src/Content/Text/BBCode.php:981 src/Content/Text/BBCode.php:1750
-#: src/Content/Text/BBCode.php:1751
-msgid "Image/photo"
-msgstr "Bild/Foto"
-
-#: src/Content/Text/BBCode.php:1119
-#, php-format
-msgid "%2$s %3$s"
-msgstr "%2$s %3$s"
-
-#: src/Content/Text/BBCode.php:1677 src/Content/Text/BBCode.php:1699
-msgid "$1 wrote:"
-msgstr "$1 hat geschrieben:"
-
-#: src/Content/Text/BBCode.php:1759 src/Content/Text/BBCode.php:1760
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
-
-#: src/Content/Text/BBCode.php:1879
-msgid "Invalid source protocol"
-msgstr "Ungültiges Quell-Protokoll"
-
-#: src/Content/Text/BBCode.php:1890
-msgid "Invalid link protocol"
-msgstr "Ungültiges Link-Protokoll"
-
-#: src/Content/Nav.php:53
-msgid "Nothing new here"
-msgstr "Keine Neuigkeiten"
-
-#: src/Content/Nav.php:57
-msgid "Clear notifications"
-msgstr "Bereinige Benachrichtigungen"
-
-#: src/Content/Nav.php:105
-msgid "Personal notes"
-msgstr "Persönliche Notizen"
-
-#: src/Content/Nav.php:105
-msgid "Your personal notes"
-msgstr "Deine persönlichen Notizen"
-
-#: src/Content/Nav.php:114
-msgid "Sign in"
-msgstr "Anmelden"
-
-#: src/Content/Nav.php:124
-msgid "Home Page"
-msgstr "Homepage"
-
-#: src/Content/Nav.php:128
-msgid "Create an account"
-msgstr "Nutzerkonto erstellen"
-
-#: src/Content/Nav.php:134
-msgid "Help and documentation"
-msgstr "Hilfe und Dokumentation"
-
-#: src/Content/Nav.php:138
-msgid "Apps"
-msgstr "Apps"
-
-#: src/Content/Nav.php:138
-msgid "Addon applications, utilities, games"
-msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
-
-#: src/Content/Nav.php:142
-msgid "Search site content"
-msgstr "Inhalt der Seite durchsuchen"
-
-#: src/Content/Nav.php:165
-msgid "Community"
-msgstr "Gemeinschaft"
-
-#: src/Content/Nav.php:165
-msgid "Conversations on this and other servers"
-msgstr "Unterhaltungen auf diesem und anderer Server"
-
-#: src/Content/Nav.php:172
-msgid "Directory"
-msgstr "Verzeichnis"
-
-#: src/Content/Nav.php:172
-msgid "People directory"
-msgstr "Nutzerverzeichnis"
-
-#: src/Content/Nav.php:174
-msgid "Information about this friendica instance"
-msgstr "Informationen zu dieser Friendica Instanz"
-
-#: src/Content/Nav.php:179
-msgid "Network Reset"
-msgstr "Netzwerk zurücksetzen"
-
-#: src/Content/Nav.php:179
-msgid "Load Network page with no filters"
-msgstr "Netzwerk-Seite ohne Filter laden"
-
-#: src/Content/Nav.php:186
-msgid "Friend Requests"
-msgstr "Kontaktanfragen"
-
-#: src/Content/Nav.php:190
-msgid "See all notifications"
-msgstr "Alle Benachrichtigungen anzeigen"
-
-#: src/Content/Nav.php:191
-msgid "Mark all system notifications seen"
-msgstr "Markiere alle Systembenachrichtigungen als gelesen"
-
-#: src/Content/Nav.php:196
-msgid "Inbox"
-msgstr "Eingang"
-
-#: src/Content/Nav.php:197
-msgid "Outbox"
-msgstr "Ausgang"
-
-#: src/Content/Nav.php:201
-msgid "Manage"
-msgstr "Verwalten"
-
-#: src/Content/Nav.php:201
-msgid "Manage other pages"
-msgstr "Andere Seiten verwalten"
-
-#: src/Content/Nav.php:209 src/Model/Profile.php:372
-msgid "Profiles"
-msgstr "Profile"
-
-#: src/Content/Nav.php:209
-msgid "Manage/Edit Profiles"
-msgstr "Profile Verwalten/Editieren"
-
-#: src/Content/Nav.php:217
-msgid "Site setup and configuration"
-msgstr "Einstellungen der Seite und Konfiguration"
-
-#: src/Content/Nav.php:220
-msgid "Navigation"
-msgstr "Navigation"
-
-#: src/Content/Nav.php:220
-msgid "Site map"
-msgstr "Sitemap"
-
-#: src/Content/Feature.php:79
-msgid "General Features"
-msgstr "Allgemeine Features"
-
-#: src/Content/Feature.php:81
-msgid "Multiple Profiles"
-msgstr "Mehrere Profile"
-
-#: src/Content/Feature.php:81
-msgid "Ability to create multiple profiles"
-msgstr "Möglichkeit mehrere Profile zu erstellen"
-
-#: src/Content/Feature.php:82
-msgid "Photo Location"
-msgstr "Aufnahmeort"
-
-#: src/Content/Feature.php:82
-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."
-
-#: src/Content/Feature.php:83
-msgid "Export Public Calendar"
-msgstr "Öffentlichen Kalender exportieren"
-
-#: src/Content/Feature.php:83
-msgid "Ability for visitors to download the public calendar"
-msgstr "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden"
-
-#: src/Content/Feature.php:88
-msgid "Post Composition Features"
-msgstr "Beitragserstellung Features"
-
-#: src/Content/Feature.php:89
-msgid "Post Preview"
-msgstr "Beitragsvorschau"
-
-#: src/Content/Feature.php:89
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
-
-#: src/Content/Feature.php:90
-msgid "Auto-mention Forums"
-msgstr "Foren automatisch erwähnen"
-
-#: src/Content/Feature.php:90
-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."
-
-#: src/Content/Feature.php:95
-msgid "Network Sidebar Widgets"
-msgstr "Widgets für Netzwerk und Seitenleiste"
-
-#: src/Content/Feature.php:96
-msgid "Search by Date"
-msgstr "Archiv"
-
-#: src/Content/Feature.php:96
-msgid "Ability to select posts by date ranges"
-msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
-
-#: src/Content/Feature.php:97 src/Content/Feature.php:127
-msgid "List Forums"
-msgstr "Zeige Foren"
-
-#: src/Content/Feature.php:97
-msgid "Enable widget to display the forums your are connected with"
-msgstr "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen"
-
-#: src/Content/Feature.php:98
-msgid "Group Filter"
-msgstr "Gruppen Filter"
-
-#: src/Content/Feature.php:98
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
-
-#: src/Content/Feature.php:99
-msgid "Network Filter"
-msgstr "Netzwerk Filter"
-
-#: src/Content/Feature.php:99
-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."
-
-#: src/Content/Feature.php:100
-msgid "Save search terms for re-use"
-msgstr "Speichere Suchanfragen für spätere Wiederholung."
-
-#: src/Content/Feature.php:105
-msgid "Network Tabs"
-msgstr "Netzwerk Reiter"
-
-#: src/Content/Feature.php:106
-msgid "Network Personal Tab"
-msgstr "Netzwerk-Reiter: Persönlich"
-
-#: src/Content/Feature.php:106
-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"
-
-#: src/Content/Feature.php:107
-msgid "Network New Tab"
-msgstr "Netzwerk-Reiter: Neue"
-
-#: src/Content/Feature.php:107
-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"
-
-#: src/Content/Feature.php:108
-msgid "Network Shared Links Tab"
-msgstr "Netzwerk-Reiter: Geteilte Links"
-
-#: src/Content/Feature.php:108
-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"
-
-#: src/Content/Feature.php:113
-msgid "Post/Comment Tools"
-msgstr "Werkzeuge für Beiträge und Kommentare"
-
-#: src/Content/Feature.php:114
-msgid "Multiple Deletion"
-msgstr "Mehrere Beiträge löschen"
-
-#: src/Content/Feature.php:114
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
-
-#: src/Content/Feature.php:115
-msgid "Edit Sent Posts"
-msgstr "Gesendete Beiträge editieren"
-
-#: src/Content/Feature.php:115
-msgid "Edit and correct posts and comments after sending"
-msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."
-
-#: src/Content/Feature.php:116
-msgid "Tagging"
-msgstr "Tagging"
-
-#: src/Content/Feature.php:116
-msgid "Ability to tag existing posts"
-msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
-
-#: src/Content/Feature.php:117
-msgid "Post Categories"
-msgstr "Beitragskategorien"
-
-#: src/Content/Feature.php:117
-msgid "Add categories to your posts"
-msgstr "Eigene Beiträge mit Kategorien versehen"
-
-#: src/Content/Feature.php:118 src/Content/Widget.php:200
-msgid "Saved Folders"
-msgstr "Gespeicherte Ordner"
-
-#: src/Content/Feature.php:118
-msgid "Ability to file posts under folders"
-msgstr "Beiträge in Ordnern speichern aktivieren"
-
-#: src/Content/Feature.php:119
-msgid "Dislike Posts"
-msgstr "Beiträge 'nicht mögen'"
-
-#: src/Content/Feature.php:119
-msgid "Ability to dislike posts/comments"
-msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
-
-#: src/Content/Feature.php:120
-msgid "Star Posts"
-msgstr "Beiträge Markieren"
-
-#: src/Content/Feature.php:120
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"
-
-#: src/Content/Feature.php:121
-msgid "Mute Post Notifications"
-msgstr "Benachrichtigungen für Beiträge Stumm schalten"
-
-#: src/Content/Feature.php:121
-msgid "Ability to mute notifications for a thread"
-msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
-
-#: src/Content/Feature.php:126
-msgid "Advanced Profile Settings"
-msgstr "Erweiterte Profil-Einstellungen"
-
-#: src/Content/Feature.php:127
-msgid "Show visitors public community forums at the Advanced Profile Page"
-msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"
-
-#: src/Content/Feature.php:128
-msgid "Tag Cloud"
-msgstr "Schlagwort Wolke"
-
-#: src/Content/Feature.php:128
-msgid "Provide a personal tag cloud on your profile page"
-msgstr "Wortwolke aus den von dir verwendeten Schlagwörtern im Profil anzeigen."
-
-#: src/Content/Feature.php:129
-msgid "Display Membership Date"
-msgstr "Mitgliedschaftsdatum anzeigen"
-
-#: src/Content/Feature.php:129
-msgid "Display membership date in profile"
-msgstr "Soll das Datum der Registrierung deines Accounts im Profil angezeigt werden."
-
-#: src/Content/OEmbed.php:253
-msgid "Embedding disabled"
-msgstr "Einbettungen deaktiviert"
-
-#: src/Content/OEmbed.php:373
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
-
-#: src/Content/Widget/CalendarExport.php:61
-msgid "Export"
-msgstr "Exportieren"
-
-#: src/Content/Widget/CalendarExport.php:62
-msgid "Export calendar as ical"
-msgstr "Kalender als ical exportieren"
-
-#: src/Content/Widget/CalendarExport.php:63
-msgid "Export calendar as csv"
-msgstr "Kalender als csv exportieren"
-
-#: src/Content/Widget.php:33
-msgid "Add New Contact"
-msgstr "Neuen Kontakt hinzufügen"
-
-#: src/Content/Widget.php:34
-msgid "Enter address or web location"
-msgstr "Adresse oder Web-Link eingeben"
-
-#: src/Content/Widget.php:35
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Beispiel: bob@example.com, http://example.com/barbara"
-
-#: src/Content/Widget.php:53
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d Einladung verfügbar"
-msgstr[1] "%d Einladungen verfügbar"
-
-#: src/Content/Widget.php:59
-msgid "Find People"
-msgstr "Leute finden"
-
-#: src/Content/Widget.php:60
-msgid "Enter name or interest"
-msgstr "Name oder Interessen eingeben"
-
-#: src/Content/Widget.php:62
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Beispiel: Robert Morgenstein, Angeln"
-
-#: src/Content/Widget.php:66
-msgid "Random Profile"
-msgstr "Zufälliges Profil"
-
-#: src/Content/Widget.php:68
-msgid "View Global Directory"
-msgstr "Globales Verzeichnis betrachten"
-
-#: src/Content/Widget.php:159
-msgid "Networks"
-msgstr "Netzwerke"
-
-#: src/Content/Widget.php:162
-msgid "All Networks"
-msgstr "Alle Netzwerke"
-
-#: src/Content/Widget.php:203 src/Content/Widget.php:243
-msgid "Everything"
-msgstr "Alles"
-
-#: src/Content/Widget.php:240
-msgid "Categories"
-msgstr "Kategorien"
-
-#: src/Content/Widget.php:307
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d gemeinsamer Kontakt"
-msgstr[1] "%d gemeinsame Kontakte"
-
-#: src/Content/ContactSelector.php:55
-msgid "Frequently"
-msgstr "immer wieder"
-
-#: src/Content/ContactSelector.php:56
-msgid "Hourly"
-msgstr "Stündlich"
-
-#: src/Content/ContactSelector.php:57
-msgid "Twice daily"
-msgstr "Zweimal täglich"
-
-#: src/Content/ContactSelector.php:58
-msgid "Daily"
-msgstr "Täglich"
-
-#: src/Content/ContactSelector.php:59
-msgid "Weekly"
-msgstr "Wöchentlich"
-
-#: src/Content/ContactSelector.php:60
-msgid "Monthly"
-msgstr "Monatlich"
-
-#: src/Content/ContactSelector.php:80
-msgid "OStatus"
-msgstr "OStatus"
-
-#: src/Content/ContactSelector.php:81
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
-
-#: src/Content/ContactSelector.php:84
-msgid "Facebook"
-msgstr "Facebook"
-
-#: src/Content/ContactSelector.php:85
-msgid "Zot!"
-msgstr "Zott"
-
-#: src/Content/ContactSelector.php:86
-msgid "LinkedIn"
-msgstr "LinkedIn"
-
-#: src/Content/ContactSelector.php:87
-msgid "XMPP/IM"
-msgstr "XMPP/Chat"
-
-#: src/Content/ContactSelector.php:88
-msgid "MySpace"
-msgstr "MySpace"
-
-#: src/Content/ContactSelector.php:89
-msgid "Google+"
-msgstr "Google+"
-
-#: src/Content/ContactSelector.php:90
-msgid "pump.io"
-msgstr "pump.io"
-
-#: src/Content/ContactSelector.php:91
-msgid "Twitter"
-msgstr "Twitter"
-
-#: src/Content/ContactSelector.php:92
-msgid "Diaspora Connector"
-msgstr "Diaspora Connector"
-
-#: src/Content/ContactSelector.php:93
-msgid "GNU Social Connector"
-msgstr "GNU social Connector"
-
-#: src/Content/ContactSelector.php:94
-msgid "pnut"
-msgstr "pnut"
-
-#: src/Content/ContactSelector.php:95
-msgid "App.net"
-msgstr "App.net"
-
-#: src/Content/ContactSelector.php:125
-msgid "Male"
-msgstr "Männlich"
-
-#: src/Content/ContactSelector.php:125
-msgid "Female"
-msgstr "Weiblich"
-
-#: src/Content/ContactSelector.php:125
-msgid "Currently Male"
-msgstr "Momentan männlich"
-
-#: src/Content/ContactSelector.php:125
-msgid "Currently Female"
-msgstr "Momentan weiblich"
-
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Male"
-msgstr "Hauptsächlich männlich"
-
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Female"
-msgstr "Hauptsächlich weiblich"
-
-#: src/Content/ContactSelector.php:125
-msgid "Transgender"
-msgstr "Transgender"
-
-#: src/Content/ContactSelector.php:125
-msgid "Intersex"
-msgstr "Intersex"
-
-#: src/Content/ContactSelector.php:125
-msgid "Transsexual"
-msgstr "Transsexuell"
-
-#: src/Content/ContactSelector.php:125
-msgid "Hermaphrodite"
-msgstr "Hermaphrodit"
-
-#: src/Content/ContactSelector.php:125
-msgid "Neuter"
-msgstr "Neuter"
-
-#: src/Content/ContactSelector.php:125
-msgid "Non-specific"
-msgstr "Nicht spezifiziert"
-
-#: src/Content/ContactSelector.php:125
-msgid "Other"
-msgstr "Andere"
-
-#: src/Content/ContactSelector.php:147
-msgid "Males"
-msgstr "Männer"
-
-#: src/Content/ContactSelector.php:147
-msgid "Females"
-msgstr "Frauen"
-
-#: src/Content/ContactSelector.php:147
-msgid "Gay"
-msgstr "Schwul"
-
-#: src/Content/ContactSelector.php:147
-msgid "Lesbian"
-msgstr "Lesbisch"
-
-#: src/Content/ContactSelector.php:147
-msgid "No Preference"
-msgstr "Keine Vorlieben"
-
-#: src/Content/ContactSelector.php:147
-msgid "Bisexual"
-msgstr "Bisexuell"
-
-#: src/Content/ContactSelector.php:147
-msgid "Autosexual"
-msgstr "Autosexual"
-
-#: src/Content/ContactSelector.php:147
-msgid "Abstinent"
-msgstr "Abstinent"
-
-#: src/Content/ContactSelector.php:147
-msgid "Virgin"
-msgstr "Jungfrauen"
-
-#: src/Content/ContactSelector.php:147
-msgid "Deviant"
-msgstr "Deviant"
-
-#: src/Content/ContactSelector.php:147
-msgid "Fetish"
-msgstr "Fetish"
-
-#: src/Content/ContactSelector.php:147
-msgid "Oodles"
-msgstr "Oodles"
-
-#: src/Content/ContactSelector.php:147
-msgid "Nonsexual"
-msgstr "Nonsexual"
-
-#: src/Content/ContactSelector.php:169
-msgid "Single"
-msgstr "Single"
-
-#: src/Content/ContactSelector.php:169
-msgid "Lonely"
-msgstr "Einsam"
-
-#: src/Content/ContactSelector.php:169
-msgid "Available"
-msgstr "Verfügbar"
-
-#: src/Content/ContactSelector.php:169
-msgid "Unavailable"
-msgstr "Nicht verfügbar"
-
-#: src/Content/ContactSelector.php:169
-msgid "Has crush"
-msgstr "verknallt"
-
-#: src/Content/ContactSelector.php:169
-msgid "Infatuated"
-msgstr "verliebt"
-
-#: src/Content/ContactSelector.php:169
-msgid "Dating"
-msgstr "Dating"
-
-#: src/Content/ContactSelector.php:169
-msgid "Unfaithful"
-msgstr "Untreu"
-
-#: src/Content/ContactSelector.php:169
-msgid "Sex Addict"
-msgstr "Sexbesessen"
-
-#: src/Content/ContactSelector.php:169 src/Model/User.php:519
-msgid "Friends"
-msgstr "Kontakte"
-
-#: src/Content/ContactSelector.php:169
-msgid "Friends/Benefits"
-msgstr "Freunde/Zuwendungen"
-
-#: src/Content/ContactSelector.php:169
-msgid "Casual"
-msgstr "Casual"
-
-#: src/Content/ContactSelector.php:169
-msgid "Engaged"
-msgstr "Verlobt"
-
-#: src/Content/ContactSelector.php:169
-msgid "Married"
-msgstr "Verheiratet"
-
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily married"
-msgstr "imaginär verheiratet"
-
-#: src/Content/ContactSelector.php:169
-msgid "Partners"
-msgstr "Partner"
-
-#: src/Content/ContactSelector.php:169
-msgid "Cohabiting"
-msgstr "zusammenlebend"
-
-#: src/Content/ContactSelector.php:169
-msgid "Common law"
-msgstr "wilde Ehe"
-
-#: src/Content/ContactSelector.php:169
-msgid "Happy"
-msgstr "Glücklich"
-
-#: src/Content/ContactSelector.php:169
-msgid "Not looking"
-msgstr "Nicht auf der Suche"
-
-#: src/Content/ContactSelector.php:169
-msgid "Swinger"
-msgstr "Swinger"
-
-#: src/Content/ContactSelector.php:169
-msgid "Betrayed"
-msgstr "Betrogen"
-
-#: src/Content/ContactSelector.php:169
-msgid "Separated"
-msgstr "Getrennt"
-
-#: src/Content/ContactSelector.php:169
-msgid "Unstable"
-msgstr "Unstabil"
-
-#: src/Content/ContactSelector.php:169
-msgid "Divorced"
-msgstr "Geschieden"
-
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily divorced"
-msgstr "imaginär geschieden"
-
-#: src/Content/ContactSelector.php:169
-msgid "Widowed"
-msgstr "Verwitwet"
-
-#: src/Content/ContactSelector.php:169
-msgid "Uncertain"
-msgstr "Unsicher"
-
-#: src/Content/ContactSelector.php:169
-msgid "It's complicated"
-msgstr "Ist kompliziert"
-
-#: src/Content/ContactSelector.php:169
-msgid "Don't care"
-msgstr "Ist mir nicht wichtig"
-
-#: src/Content/ContactSelector.php:169
-msgid "Ask me"
-msgstr "Frag mich"
-
-#: src/Database/DBStructure.php:32
-msgid "There are no tables on MyISAM."
-msgstr "Es gibt keine MyISAM Tabellen."
-
-#: src/Database/DBStructure.php:75
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\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."
-
-#: src/Database/DBStructure.php:80
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
-
-#: src/Database/DBStructure.php:191
-#, php-format
-msgid ""
-"\n"
-"Error %d occurred during database update:\n"
-"%s\n"
-msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n"
-
-#: src/Database/DBStructure.php:194
-msgid "Errors encountered performing database changes: "
-msgstr "Fehler beim Ändern der Datenbank aufgetreten"
-
-#: src/Database/DBStructure.php:210
-msgid ": Database update"
-msgstr ": Datenbank Update"
-
-#: src/Database/DBStructure.php:460
-#, php-format
-msgid "%s: updating %s table."
-msgstr "%s: aktualisiere Tabelle %s"
-
-#: src/Model/Mail.php:40 src/Model/Mail.php:174
-msgid "[no subject]"
-msgstr "[kein Betreff]"
-
-#: src/Model/Item.php:1676
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s nimmt an %2$ss %3$s teil."
-
-#: src/Model/Item.php:1681
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
-
-#: src/Model/Item.php:1686
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
-
-#: src/Model/Contact.php:657
-msgid "Drop Contact"
-msgstr "Kontakt löschen"
-
-#: src/Model/Contact.php:1060
-msgid "Organisation"
-msgstr "Organisation"
-
-#: src/Model/Contact.php:1063
-msgid "News"
-msgstr "Nachrichten"
-
-#: src/Model/Contact.php:1066
-msgid "Forum"
-msgstr "Forum"
-
-#: src/Model/Contact.php:1245
-msgid "Connect URL missing."
-msgstr "Connect-URL fehlt"
-
-#: src/Model/Contact.php:1254
-msgid ""
-"The contact could not be added. Please check the relevant network "
-"credentials in your Settings -> Social Networks page."
-msgstr "Der Kontakt konnte nicht hinzugefügt werden. Bitte überprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke"
-
-#: src/Model/Contact.php:1301
-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."
-
-#: src/Model/Contact.php:1302 src/Model/Contact.php:1316
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
-
-#: src/Model/Contact.php:1314
-msgid "The profile address specified does not provide adequate information."
-msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
-
-#: src/Model/Contact.php:1319
-msgid "An author or name was not found."
-msgstr "Es wurde kein Autor oder Name gefunden."
-
-#: src/Model/Contact.php:1322
-msgid "No browser URL could be matched to this address."
-msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
-
-#: src/Model/Contact.php:1325
-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."
-
-#: src/Model/Contact.php:1326
-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."
-
-#: src/Model/Contact.php:1332
-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."
-
-#: src/Model/Contact.php:1337
-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."
-
-#: src/Model/Contact.php:1388
-msgid "Unable to retrieve contact information."
-msgstr "Konnte die Kontaktinformationen nicht empfangen."
-
-#: src/Model/Contact.php:1605
-#, php-format
-msgid "%s's birthday"
-msgstr "%ss Geburtstag"
-
-#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Herzlichen Glückwunsch %s"
-
-#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
-#: src/Model/Event.php:882
-msgid "Starts:"
-msgstr "Beginnt:"
-
-#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420
-#: src/Model/Event.php:886
-msgid "Finishes:"
-msgstr "Endet:"
-
-#: src/Model/Event.php:368
-msgid "all-day"
-msgstr "ganztägig"
-
-#: src/Model/Event.php:391
-msgid "Jun"
-msgstr "Jun"
-
-#: src/Model/Event.php:394
-msgid "Sept"
-msgstr "Sep"
-
-#: src/Model/Event.php:417
-msgid "No events to display"
-msgstr "Keine Veranstaltung zum Anzeigen"
-
-#: src/Model/Event.php:543
-msgid "l, F j"
-msgstr "l, F j"
-
-#: src/Model/Event.php:566
-msgid "Edit event"
-msgstr "Veranstaltung bearbeiten"
-
-#: src/Model/Event.php:567
-msgid "Duplicate event"
-msgstr "Veranstaltung kopieren"
-
-#: src/Model/Event.php:568
-msgid "Delete event"
-msgstr "Veranstaltung löschen"
-
-#: src/Model/Event.php:815
-msgid "D g:i A"
-msgstr "D H:i"
-
-#: src/Model/Event.php:816
-msgid "g:i A"
-msgstr "H:i"
-
-#: src/Model/Event.php:901 src/Model/Event.php:903
-msgid "Show map"
-msgstr "Karte anzeigen"
-
-#: src/Model/Event.php:902
-msgid "Hide map"
-msgstr "Karte verbergen"
-
-#: src/Model/Group.php:44
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"may apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
-
-#: src/Model/Group.php:341
-msgid "Default privacy group for new contacts"
-msgstr "Voreingestellte Gruppe für neue Kontakte"
-
-#: src/Model/Group.php:374
-msgid "Everybody"
-msgstr "Alle Kontakte"
-
-#: src/Model/Group.php:394
-msgid "edit"
-msgstr "bearbeiten"
-
-#: src/Model/Group.php:418
-msgid "Edit group"
-msgstr "Gruppe bearbeiten"
-
-#: src/Model/Group.php:419
-msgid "Contacts not in any group"
-msgstr "Kontakte in keiner Gruppe"
-
-#: src/Model/Group.php:420
-msgid "Create a new group"
-msgstr "Neue Gruppe erstellen"
-
-#: src/Model/Group.php:422
-msgid "Edit groups"
-msgstr "Gruppen bearbeiten"
-
-#: src/Model/Profile.php:97
-msgid "Requested account is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
-
-#: src/Model/Profile.php:168 src/Model/Profile.php:399
-#: src/Model/Profile.php:861
-msgid "Edit profile"
-msgstr "Profil bearbeiten"
-
-#: src/Model/Profile.php:336
-msgid "Atom feed"
-msgstr "Atom-Feed"
-
-#: src/Model/Profile.php:372
-msgid "Manage/edit profiles"
-msgstr "Profile verwalten/editieren"
-
-#: src/Model/Profile.php:550 src/Model/Profile.php:643
-msgid "g A l F d"
-msgstr "l, d. F G \\U\\h\\r"
-
-#: src/Model/Profile.php:551
-msgid "F d"
-msgstr "d. F"
-
-#: src/Model/Profile.php:608 src/Model/Profile.php:705
-msgid "[today]"
-msgstr "[heute]"
-
-#: src/Model/Profile.php:619
-msgid "Birthday Reminders"
-msgstr "Geburtstagserinnerungen"
-
-#: src/Model/Profile.php:620
-msgid "Birthdays this week:"
-msgstr "Geburtstage diese Woche:"
-
-#: src/Model/Profile.php:692
-msgid "[No description]"
-msgstr "[keine Beschreibung]"
-
-#: src/Model/Profile.php:719
-msgid "Event Reminders"
-msgstr "Veranstaltungserinnerungen"
-
-#: src/Model/Profile.php:720
-msgid "Events this week:"
-msgstr "Veranstaltungen diese Woche"
-
-#: src/Model/Profile.php:743
-msgid "Member since:"
-msgstr "Mitglied seit:"
-
-#: src/Model/Profile.php:751
-msgid "j F, Y"
-msgstr "j F, Y"
-
-#: src/Model/Profile.php:752
-msgid "j F"
-msgstr "j F"
-
-#: src/Model/Profile.php:767
-msgid "Age:"
-msgstr "Alter:"
-
-#: src/Model/Profile.php:780
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "für %1$d %2$s"
-
-#: src/Model/Profile.php:804
-msgid "Religion:"
-msgstr "Religion:"
-
-#: src/Model/Profile.php:812
-msgid "Hobbies/Interests:"
-msgstr "Hobbies/Interessen:"
-
-#: src/Model/Profile.php:824
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformationen und Soziale Netzwerke:"
-
-#: src/Model/Profile.php:828
-msgid "Musical interests:"
-msgstr "Musikalische Interessen:"
-
-#: src/Model/Profile.php:832
-msgid "Books, literature:"
-msgstr "Literatur/Bücher:"
-
-#: src/Model/Profile.php:836
-msgid "Television:"
-msgstr "Fernsehen:"
-
-#: src/Model/Profile.php:840
-msgid "Film/dance/culture/entertainment:"
-msgstr "Filme/Tänze/Kultur/Unterhaltung:"
-
-#: src/Model/Profile.php:844
-msgid "Love/Romance:"
-msgstr "Liebesleben:"
-
-#: src/Model/Profile.php:848
-msgid "Work/employment:"
-msgstr "Arbeit/Beschäftigung:"
-
-#: src/Model/Profile.php:852
-msgid "School/education:"
-msgstr "Schule/Ausbildung:"
-
-#: src/Model/Profile.php:857
-msgid "Forums:"
-msgstr "Foren:"
-
-#: src/Model/Profile.php:951
-msgid "Only You Can See This"
-msgstr "Nur Du kannst das sehen"
-
-#: src/Model/User.php:154
-msgid "Login failed"
-msgstr "Anmeldung fehlgeschlagen"
-
-#: src/Model/User.php:185
-msgid "Not enough information to authenticate"
-msgstr "Nicht genügend Informationen für die Authentifizierung"
-
-#: src/Model/User.php:346
-msgid "An invitation is required."
-msgstr "Du benötigst eine Einladung."
-
-#: src/Model/User.php:350
-msgid "Invitation could not be verified."
-msgstr "Die Einladung konnte nicht überprüft werden."
-
-#: src/Model/User.php:357
-msgid "Invalid OpenID url"
-msgstr "Ungültige OpenID URL"
-
-#: src/Model/User.php:370 src/Module/Login.php:100
-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."
-
-#: src/Model/User.php:370 src/Module/Login.php:100
-msgid "The error message was:"
-msgstr "Die Fehlermeldung lautete:"
-
-#: src/Model/User.php:376
-msgid "Please enter the required information."
-msgstr "Bitte trage die erforderlichen Informationen ein."
-
-#: src/Model/User.php:389
-msgid "Please use a shorter name."
-msgstr "Bitte verwende einen kürzeren Namen."
-
-#: src/Model/User.php:392
-msgid "Name too short."
-msgstr "Der Name ist zu kurz."
-
-#: src/Model/User.php:400
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."
-
-#: src/Model/User.php:405
-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."
-
-#: src/Model/User.php:409
-msgid "Not a valid email address."
-msgstr "Keine gültige E-Mail-Adresse."
-
-#: src/Model/User.php:413 src/Model/User.php:421
-msgid "Cannot use that email."
-msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
-
-#: src/Model/User.php:428
-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."
-
-#: src/Model/User.php:435 src/Model/User.php:491
-msgid "Nickname is already registered. Please choose another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
-
-#: src/Model/User.php:445
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
-
-#: src/Model/User.php:478 src/Model/User.php:482
-msgid "An error occurred during registration. Please try again."
-msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
-
-#: src/Model/User.php:507
-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."
-
-#: src/Model/User.php:514
-msgid "An error occurred creating your self contact. Please try again."
-msgstr "Bei der Erstellung deines self Kontakts ist ein Fehler aufgetreten. Bitte versuche es erneut."
-
-#: src/Model/User.php:523
-msgid ""
-"An error occurred creating your default contact group. Please try again."
-msgstr "Bei der Erstellung deiner Standardgruppe für Kontakte ist ein Fehler aufgetreten. Bitte versuche es erneut."
-
-#: src/Model/User.php:597
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
-"\t\t"
-msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account muss noch vom Admin des Knotens geprüft werden."
-
-#: src/Model/User.php:607
-#, php-format
-msgid "Registration at %s"
-msgstr "Registrierung als %s"
-
-#: src/Model/User.php:625
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t\t"
-msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
-
-#: src/Model/User.php:629
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t\t%1$s\n"
-"\t\t\tPassword:\t\t%5$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\tIf you ever want to delete your account, you can do so at %3$s/removeme\n"
-"\n"
-"\t\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\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %3$s/removeme jederzeit tun.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s."
-
-#: src/Protocol/OStatus.php:1799
-#, php-format
-msgid "%s is now following %s."
-msgstr "%s folgt nun %s"
-
-#: src/Protocol/OStatus.php:1800
-msgid "following"
-msgstr "folgen"
-
-#: src/Protocol/OStatus.php:1803
-#, php-format
-msgid "%s stopped following %s."
-msgstr "%s hat aufgehört %s zu folgen"
-
-#: src/Protocol/OStatus.php:1804
-msgid "stopped following"
-msgstr "wird nicht mehr gefolgt"
-
-#: src/Protocol/DFRN.php:1482
-#, php-format
-msgid "%s\\'s birthday"
-msgstr "%ss Geburtstag"
-
-#: src/Protocol/Diaspora.php:2680
-msgid "Sharing notification from Diaspora network"
-msgstr "Freigabe-Benachrichtigung von Diaspora"
-
-#: src/Protocol/Diaspora.php:3756
-msgid "Attachments:"
-msgstr "Anhänge:"
-
-#: src/Worker/Delivery.php:390
-msgid "(no subject)"
-msgstr "(kein Betreff)"
-
-#: src/Module/Login.php:282
-msgid "Create a New Account"
-msgstr "Neues Konto erstellen"
-
-#: src/Module/Login.php:315
-msgid "Password: "
-msgstr "Passwort: "
-
-#: src/Module/Login.php:316
-msgid "Remember me"
-msgstr "Anmeldedaten merken"
-
-#: src/Module/Login.php:319
-msgid "Or login using OpenID: "
-msgstr "Oder melde Dich mit Deiner OpenID an: "
-
-#: src/Module/Login.php:325
-msgid "Forgot your password?"
-msgstr "Passwort vergessen?"
-
-#: src/Module/Login.php:328
-msgid "Website Terms of Service"
-msgstr "Website Nutzungsbedingungen"
-
-#: src/Module/Login.php:329
-msgid "terms of service"
-msgstr "Nutzungsbedingungen"
-
-#: src/Module/Login.php:331
-msgid "Website Privacy Policy"
-msgstr "Website Datenschutzerklärung"
-
-#: src/Module/Login.php:332
-msgid "privacy policy"
-msgstr "Datenschutzerklärung"
-
-#: src/Module/Logout.php:28
-msgid "Logged out."
-msgstr "Abgemeldet."
-
-#: src/Module/Tos.php:51
-msgid "Privacy Statement"
-msgstr "Datenschutzerklärung"
-
-#: src/Module/Tos.php:52
-msgid ""
-"At the time of registration, and for providing communications between the "
-"user account and their contacts, the user has to provide a display name (pen"
-" name), an username (nickname) and a working email address. The names will "
-"be accessible on the profile page of the account by any visitor of the page,"
-" even if other profile details are not displayed. The email address will "
-"only be used to send the user notifications about interactions, but wont be "
-"visibly displayed. The listing of an account in the node's user directory or"
-" the global user directory is optional and can be controlled in the user "
-"settings, it is not necessary for communication."
-msgstr "Zum Zwecke der Registrierung und um die Kommunikation zwischen dem Nutzer und seinen Kontakten zu gewährleisten, muß der Nutzer einen Namen (auch Pseudonym) und einen Nutzernamen (Spitzname) sowie eine funktionierende E-Mail-Adresse angeben. Der Name ist auf der Profilseite für alle Nutzer sichtbar, auch wenn die Profildetails nicht angezeigt werden.\nDie E-Mail-Adresse wird nur zur Benachrichtigung des Nutzers verwendet, sie wird nirgends angezeigt. Die Anzeige des Nutzerkontos im Server-Verzeichnis bzw. dem weltweiten Verzeichnis erfolgt gemäß den Einstellungen des Nutzers, sie ist zur Kommunikation nicht zwingend notwendig."
-
-#: src/Module/Tos.php:53
-msgid ""
-"This data is required for communication and is passed on to the nodes of the"
-" communication partners. Users can enter additional private data that may be"
-" transmitted to the communication partners accounts."
-msgstr "Diese Daten sind für die Kommunikation notwendig und werden an die Knoten der Kommunikationspartner übermittelt. Nutzer können weitere private Angaben machen, die ebenfalls an die verwendeten Server der Kommunikationspartner übermittelt werden können."
-
-#: src/Module/Tos.php:54
-#, php-format
-msgid ""
-"At any point in time a logged in user can export their account data from the"
-" account settings . If the user wants "
-"to delete their account they can do so at %1$s/removeme . The deletion of the account will "
-"be permanent."
-msgstr "Angemeldete Nutzer können ihre Nutzerdaten jederzeit von den Kontoeinstellungen aus exportieren. Wenn ein Nutzer wünscht das Nutzerkonto zu löschen, so ist dies jederzeit unter %1$s/removeme möglich. Die Löschung des Nutzerkontos ist permanent."
-
-#: src/Object/Post.php:128
-msgid "This entry was edited"
-msgstr "Dieser Beitrag wurde bearbeitet."
-
-#: src/Object/Post.php:182
-msgid "save to folder"
-msgstr "In Ordner speichern"
-
-#: src/Object/Post.php:235
-msgid "I will attend"
-msgstr "Ich werde teilnehmen"
-
-#: src/Object/Post.php:235
-msgid "I will not attend"
-msgstr "Ich werde nicht teilnehmen"
-
-#: src/Object/Post.php:235
-msgid "I might attend"
-msgstr "Ich werde eventuell teilnehmen"
-
-#: src/Object/Post.php:263
-msgid "add star"
-msgstr "markieren"
-
-#: src/Object/Post.php:264
-msgid "remove star"
-msgstr "Markierung entfernen"
-
-#: src/Object/Post.php:265
-msgid "toggle star status"
-msgstr "Markierung umschalten"
-
-#: src/Object/Post.php:268
-msgid "starred"
-msgstr "markiert"
-
-#: src/Object/Post.php:274
-msgid "ignore thread"
-msgstr "Thread ignorieren"
-
-#: src/Object/Post.php:275
-msgid "unignore thread"
-msgstr "Thread nicht mehr ignorieren"
-
-#: src/Object/Post.php:276
-msgid "toggle ignore status"
-msgstr "Ignoriert-Status ein-/ausschalten"
-
-#: src/Object/Post.php:285
-msgid "add tag"
-msgstr "Tag hinzufügen"
-
-#: src/Object/Post.php:296
-msgid "like"
-msgstr "mag ich"
-
-#: src/Object/Post.php:297
-msgid "dislike"
-msgstr "mag ich nicht"
-
-#: src/Object/Post.php:300
-msgid "Share this"
-msgstr "Weitersagen"
-
-#: src/Object/Post.php:300
-msgid "share"
-msgstr "Teilen"
-
-#: src/Object/Post.php:365
-msgid "to"
-msgstr "zu"
-
-#: src/Object/Post.php:366
-msgid "via"
-msgstr "via"
-
-#: src/Object/Post.php:367
-msgid "Wall-to-Wall"
-msgstr "Wall-to-Wall"
-
-#: src/Object/Post.php:368
-msgid "via Wall-To-Wall:"
-msgstr "via Wall-To-Wall:"
-
-#: src/Object/Post.php:427
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d Kommentar"
-msgstr[1] "%d Kommentare"
-
-#: src/Object/Post.php:797
-msgid "Bold"
-msgstr "Fett"
-
-#: src/Object/Post.php:798
-msgid "Italic"
-msgstr "Kursiv"
-
-#: src/Object/Post.php:799
-msgid "Underline"
-msgstr "Unterstrichen"
-
-#: src/Object/Post.php:800
-msgid "Quote"
-msgstr "Zitat"
-
-#: src/Object/Post.php:801
-msgid "Code"
-msgstr "Code"
-
-#: src/Object/Post.php:802
-msgid "Image"
-msgstr "Bild"
-
-#: src/Object/Post.php:803
-msgid "Link"
-msgstr "Link"
-
-#: src/Object/Post.php:804
-msgid "Video"
-msgstr "Video"
-
-#: src/App.php:511
-msgid "Delete this item?"
-msgstr "Diesen Beitrag löschen?"
-
-#: src/App.php:513
-msgid "show fewer"
-msgstr "weniger anzeigen"
-
-#: boot.php:795
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
+#: view/theme/duepuntozero/config.php:74
+msgid "Variations"
+msgstr "Variationen"
#: index.php:472
msgid "toggle mobile"
diff --git a/view/lang/de/strings.php b/view/lang/de/strings.php
index a1213fcd7..37d4561ec 100644
--- a/view/lang/de/strings.php
+++ b/view/lang/de/strings.php
@@ -5,13 +5,7 @@ function string_plural_select_de($n){
return ($n != 1);;
}}
;
-$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["show more"] = "mehr anzeigen";
+$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [
0 => "Das tägliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen.",
1 => "Das tägliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen.",
@@ -22,6 +16,65 @@ $a->strings["Weekly posting limit of %d post reached. The post was rejected."] =
];
$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Das monatliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen.";
$a->strings["Profile Photos"] = "Profilbilder";
+$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["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Email erhalten um %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht um %2\$s geschickt.";
+$a->strings["a private message"] = "eine private Nachricht";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s.";
+$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 um %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]"] = "[Friendica System Benachrichtigung]";
+$a->strings["registration request"] = "Registrierungsanfrage";
+$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["event"] = "Event";
$a->strings["status"] = "Status";
$a->strings["photo"] = "Foto";
@@ -109,6 +162,7 @@ $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";
@@ -132,65 +186,6 @@ $a->strings["Undecided"] = [
1 => "Unentschieden",
];
$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
-$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["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Email erhalten um %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht um %2\$s geschickt.";
-$a->strings["a private message"] = "eine private Nachricht";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s.";
-$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 um %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]"] = "[Friendica System Benachrichtigung]";
-$a->strings["registration request"] = "Registrierungsanfrage";
-$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["Welcome "] = "Willkommen ";
$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
$a->strings["Welcome back "] = "Willkommen zurück ";
@@ -279,104 +274,567 @@ $a->strings["comment"] = [
];
$a->strings["post"] = "Beitrag";
$a->strings["Item filed"] = "Beitrag abgelegt";
-$a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen.";
+$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["show more"] = "mehr anzeigen";
+$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["Drop Contact"] = "Kontakt löschen";
+$a->strings["Organisation"] = "Organisation";
+$a->strings["News"] = "Nachrichten";
+$a->strings["Forum"] = "Forum";
+$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
+$a->strings["Blocked domain"] = "Blockierte Domain";
+$a->strings["Connect URL missing."] = "Connect-URL fehlt";
+$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Der Kontakt konnte nicht hinzugefügt werden. Bitte überprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke";
+$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["[Name Withheld]"] = "[Name unterdrückt]";
+$a->strings["%s's birthday"] = "%ss Geburtstag";
+$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
+$a->strings["[no subject]"] = "[kein Betreff]";
+$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
+$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
+$a->strings["Edit profile"] = "Profil bearbeiten";
$a->strings["Connect"] = "Verbinden";
-$a->strings["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["No"] = "Nein";
-$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["Item not available."] = "Beitrag nicht verfügbar.";
-$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
-$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
-$a->strings["Common Friends"] = "Gemeinsame Kontakte";
-$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["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["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
-$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers jetzt , wenn Du Dir unsicher bist, was Du tun willst.";
-$a->strings["No mirroring"] = "Kein Spiegeln";
-$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
-$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
-$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
-$a->strings["Refetch contact data"] = "Kontaktdaten neu laden";
-$a->strings["Submit"] = "Senden";
-$a->strings["Remote Self"] = "Entfernte Konten";
-$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden.";
-$a->strings["Name"] = "Name";
-$a->strings["Account Nickname"] = "Konto-Spitzname";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
-$a->strings["Account URL"] = "Konto-URL";
-$a->strings["Friend Request URL"] = "URL für Kontaktschaftsanfragen";
-$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["Photos"] = "Bilder";
-$a->strings["Contact Photos"] = "Kontaktbilder";
-$a->strings["Upload"] = "Hochladen";
-$a->strings["Files"] = "Dateien";
-$a->strings["Not Found"] = "Nicht gefunden";
-$a->strings["No profile"] = "Kein Profil";
-$a->strings["Help:"] = "Hilfe:";
-$a->strings["Help"] = "Hilfe";
-$a->strings["Page not found."] = "Seite nicht gefunden.";
-$a->strings["Welcome to %s"] = "Willkommen zu %s";
-$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
-$a->strings["Visible to:"] = "Sichtbar für:";
-$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
-$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
-$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
-$a->strings["Getting Started"] = "Einstieg";
-$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
-$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst.";
-$a->strings["Settings"] = "Einstellungen";
-$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
-$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um 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["Atom feed"] = "Atom-Feed";
+$a->strings["Profiles"] = "Profile";
+$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
+$a->strings["Change profile photo"] = "Profilbild ändern";
+$a->strings["Create New Profile"] = "Neues Profil anlegen";
+$a->strings["Profile Image"] = "Profilbild";
+$a->strings["visible to everybody"] = "sichtbar für jeden";
+$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
+$a->strings["Location:"] = "Ort:";
+$a->strings["Gender:"] = "Geschlecht:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Homepage:";
+$a->strings["About:"] = "Über:";
+$a->strings["XMPP:"] = "XMPP:";
+$a->strings["Network:"] = "Netzwerk:";
+$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r";
+$a->strings["F d"] = "d. F";
+$a->strings["[today]"] = "[heute]";
+$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen";
+$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:";
+$a->strings["[No description]"] = "[keine Beschreibung]";
+$a->strings["Event Reminders"] = "Veranstaltungserinnerungen";
+$a->strings["Events this week:"] = "Veranstaltungen diese Woche";
$a->strings["Profile"] = "Profil";
-$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue 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 default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner 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 Add New Contact 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 Neuen Kontakt hinzufügen ein.";
-$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst.";
-$a->strings["Finding New People"] = "Neue Leute kennenlernen";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue 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["Full Name:"] = "Kompletter Name:";
+$a->strings["Member since:"] = "Mitglied seit:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Geburtstag:";
+$a->strings["Age:"] = "Alter:";
+$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:";
+$a->strings["Hometown:"] = "Heimatort:";
+$a->strings["Tags:"] = "Tags:";
+$a->strings["Political Views:"] = "Politische Ansichten:";
+$a->strings["Religion:"] = "Religion:";
+$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
+$a->strings["Likes:"] = "Likes:";
+$a->strings["Dislikes:"] = "Dislikes:";
+$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:";
+$a->strings["Musical interests:"] = "Musikalische Interessen:";
+$a->strings["Books, literature:"] = "Literatur/Bücher:";
+$a->strings["Television:"] = "Fernsehen:";
+$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:";
+$a->strings["Love/Romance:"] = "Liebesleben:";
+$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:";
+$a->strings["School/education:"] = "Schule/Ausbildung:";
+$a->strings["Forums:"] = "Foren:";
+$a->strings["Basic"] = "Allgemein";
+$a->strings["Advanced"] = "Erweitert";
+$a->strings["Status"] = "Status";
+$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
+$a->strings["Profile Details"] = "Profildetails";
+$a->strings["Photos"] = "Bilder";
+$a->strings["Photo Albums"] = "Fotoalben";
+$a->strings["Videos"] = "Videos";
+$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["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
+$a->strings["Starts:"] = "Beginnt:";
+$a->strings["Finishes:"] = "Endet:";
+$a->strings["all-day"] = "ganztägig";
+$a->strings["Jun"] = "Jun";
+$a->strings["Sept"] = "Sep";
+$a->strings["today"] = "Heute";
+$a->strings["month"] = "Monat";
+$a->strings["week"] = "Woche";
+$a->strings["day"] = "Tag";
+$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["Duplicate event"] = "Veranstaltung kopieren";
+$a->strings["Delete event"] = "Veranstaltung löschen";
+$a->strings["D g:i A"] = "D H:i";
+$a->strings["g:i A"] = "H:i";
+$a->strings["Show map"] = "Karte anzeigen";
+$a->strings["Hide map"] = "Karte verbergen";
+$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
+$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
+$a->strings["Everybody"] = "Alle Kontakte";
+$a->strings["edit"] = "bearbeiten";
+$a->strings["add"] = "hinzufügen";
$a->strings["Groups"] = "Gruppen";
-$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige 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 help pages may be consulted for detail on other program features and resources."] = "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
-$a->strings["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["Not Extended"] = "Nicht erweitert.";
+$a->strings["Edit group"] = "Gruppe bearbeiten";
+$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
+$a->strings["Create a new group"] = "Neue Gruppe erstellen";
+$a->strings["Group Name: "] = "Gruppenname:";
+$a->strings["Edit groups"] = "Gruppen bearbeiten";
+$a->strings["Contact Photos"] = "Kontaktbilder";
+$a->strings["Login failed"] = "Anmeldung fehlgeschlagen";
+$a->strings["Not enough information to authenticate"] = "Nicht genügend Informationen für die Authentifizierung";
+$a->strings["User not found"] = "Nutzer nicht gefunden";
+$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["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["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["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["An error occurred creating your self contact. Please try again."] = "Bei der Erstellung deines self Kontakts ist ein Fehler aufgetreten. Bitte versuche es erneut.";
+$a->strings["Friends"] = "Kontakte";
+$a->strings["An error occurred creating your default contact group. Please try again."] = "Bei der Erstellung deiner Standardgruppe für Kontakte ist ein Fehler aufgetreten. Bitte versuche es erneut.";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account muss noch vom Admin des Knotens geprüft werden.";
+$a->strings["Registration at %s"] = "Registrierung als %s";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet.";
+$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$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\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\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\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %3\$s/removeme jederzeit tun.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s.";
+$a->strings["Registration details for %s"] = "Details der Registration von %s";
+$a->strings["view full size"] = "Volle Größe anzeigen";
+$a->strings["Image/photo"] = "Bild/Foto";
+$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s";
+$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
+$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
+$a->strings["Invalid source protocol"] = "Ungültiges Quell-Protokoll";
+$a->strings["Invalid link protocol"] = "Ungültiges Link-Protokoll";
+$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["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["Saved Folders"] = "Gespeicherte Ordner";
+$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
+$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
+$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
+$a->strings["Star Posts"] = "Beiträge Markieren";
+$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren";
+$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten";
+$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
+$a->strings["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["Tag Cloud"] = "Schlagwort Wolke";
+$a->strings["Provide a personal tag cloud on your profile page"] = "Wortwolke aus den von dir verwendeten Schlagwörtern im Profil anzeigen.";
+$a->strings["Display Membership Date"] = "Mitgliedschaftsdatum anzeigen";
+$a->strings["Display membership date in profile"] = "Soll das Datum der Registrierung deines Accounts im Profil angezeigt werden.";
+$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["Add New Contact"] = "Neuen Kontakt hinzufügen";
+$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
+$a->strings["%d invitation available"] = [
+ 0 => "%d Einladung verfügbar",
+ 1 => "%d Einladungen verfügbar",
+];
+$a->strings["Find People"] = "Leute finden";
+$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
+$a->strings["Find"] = "Finde";
+$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
+$a->strings["Similar Interests"] = "Ähnliche Interessen";
+$a->strings["Random Profile"] = "Zufälliges Profil";
+$a->strings["Invite Friends"] = "Freunde einladen";
+$a->strings["View Global Directory"] = "Globales Verzeichnis betrachten";
+$a->strings["Networks"] = "Netzwerke";
+$a->strings["All Networks"] = "Alle Netzwerke";
+$a->strings["Everything"] = "Alles";
+$a->strings["Categories"] = "Kategorien";
+$a->strings["%d contact in common"] = [
+ 0 => "%d gemeinsamer Kontakt",
+ 1 => "%d gemeinsame Kontakte",
+];
+$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 Connector";
+$a->strings["GNU Social Connector"] = "GNU social Connector";
+$a->strings["pnut"] = "pnut";
+$a->strings["App.net"] = "App.net";
+$a->strings["Male"] = "Männlich";
+$a->strings["Female"] = "Weiblich";
+$a->strings["Currently Male"] = "Momentan männlich";
+$a->strings["Currently Female"] = "Momentan weiblich";
+$a->strings["Mostly Male"] = "Hauptsächlich männlich";
+$a->strings["Mostly Female"] = "Hauptsächlich weiblich";
+$a->strings["Transgender"] = "Transgender";
+$a->strings["Intersex"] = "Intersex";
+$a->strings["Transsexual"] = "Transsexuell";
+$a->strings["Hermaphrodite"] = "Hermaphrodit";
+$a->strings["Neuter"] = "Neuter";
+$a->strings["Non-specific"] = "Nicht spezifiziert";
+$a->strings["Other"] = "Andere";
+$a->strings["Males"] = "Männer";
+$a->strings["Females"] = "Frauen";
+$a->strings["Gay"] = "Schwul";
+$a->strings["Lesbian"] = "Lesbisch";
+$a->strings["No Preference"] = "Keine Vorlieben";
+$a->strings["Bisexual"] = "Bisexuell";
+$a->strings["Autosexual"] = "Autosexual";
+$a->strings["Abstinent"] = "Abstinent";
+$a->strings["Virgin"] = "Jungfrauen";
+$a->strings["Deviant"] = "Deviant";
+$a->strings["Fetish"] = "Fetish";
+$a->strings["Oodles"] = "Oodles";
+$a->strings["Nonsexual"] = "Nonsexual";
+$a->strings["Single"] = "Single";
+$a->strings["Lonely"] = "Einsam";
+$a->strings["Available"] = "Verfügbar";
+$a->strings["Unavailable"] = "Nicht verfügbar";
+$a->strings["Has crush"] = "verknallt";
+$a->strings["Infatuated"] = "verliebt";
+$a->strings["Dating"] = "Dating";
+$a->strings["Unfaithful"] = "Untreu";
+$a->strings["Sex Addict"] = "Sexbesessen";
+$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen";
+$a->strings["Casual"] = "Casual";
+$a->strings["Engaged"] = "Verlobt";
+$a->strings["Married"] = "Verheiratet";
+$a->strings["Imaginarily married"] = "imaginär verheiratet";
+$a->strings["Partners"] = "Partner";
+$a->strings["Cohabiting"] = "zusammenlebend";
+$a->strings["Common law"] = "wilde Ehe";
+$a->strings["Happy"] = "Glücklich";
+$a->strings["Not looking"] = "Nicht auf der Suche";
+$a->strings["Swinger"] = "Swinger";
+$a->strings["Betrayed"] = "Betrogen";
+$a->strings["Separated"] = "Getrennt";
+$a->strings["Unstable"] = "Unstabil";
+$a->strings["Divorced"] = "Geschieden";
+$a->strings["Imaginarily divorced"] = "imaginär geschieden";
+$a->strings["Widowed"] = "Verwitwet";
+$a->strings["Uncertain"] = "Unsicher";
+$a->strings["It's complicated"] = "Ist kompliziert";
+$a->strings["Don't care"] = "Ist mir nicht wichtig";
+$a->strings["Ask me"] = "Frag mich";
+$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
+$a->strings["Embedded content"] = "Eingebetteter Inhalt";
+$a->strings["External link to forum"] = "Externer Link zum Forum";
+$a->strings["Nothing new here"] = "Keine Neuigkeiten";
+$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
+$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";
+$a->strings["Your photos"] = "Deine Fotos";
+$a->strings["Your videos"] = "Deine Videos";
+$a->strings["Your events"] = "Deine Ereignisse";
+$a->strings["Personal notes"] = "Persönliche Notizen";
+$a->strings["Your personal notes"] = "Deine persönlichen Notizen";
+$a->strings["Login"] = "Anmeldung";
+$a->strings["Sign in"] = "Anmelden";
+$a->strings["Home"] = "Pinnwand";
+$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 site content"] = "Inhalt der Seite durchsuchen";
+$a->strings["Community"] = "Gemeinschaft";
+$a->strings["Conversations on this and other servers"] = "Unterhaltungen auf diesem und anderer Server";
+$a->strings["Directory"] = "Verzeichnis";
+$a->strings["People directory"] = "Nutzerverzeichnis";
+$a->strings["Information"] = "Information";
+$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz";
+$a->strings["Network"] = "Netzwerk";
+$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte";
+$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
+$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
+$a->strings["Introductions"] = "Kontaktanfragen";
+$a->strings["Friend Requests"] = "Kontaktanfragen";
+$a->strings["Notifications"] = "Benachrichtigungen";
+$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
+$a->strings["Mark as seen"] = "Als gelesen markieren";
+$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
+$a->strings["Messages"] = "Nachrichten";
+$a->strings["Private mail"] = "Private E-Mail";
+$a->strings["Inbox"] = "Eingang";
+$a->strings["Outbox"] = "Ausgang";
+$a->strings["New Message"] = "Neue Nachricht";
+$a->strings["Manage"] = "Verwalten";
+$a->strings["Manage other pages"] = "Andere Seiten verwalten";
+$a->strings["Delegations"] = "Delegationen";
+$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
+$a->strings["Settings"] = "Einstellungen";
+$a->strings["Account settings"] = "Kontoeinstellungen";
+$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
+$a->strings["Manage/edit friends and contacts"] = " Kontakte verwalten/editieren";
+$a->strings["Admin"] = "Administration";
+$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
+$a->strings["Navigation"] = "Navigation";
+$a->strings["Site map"] = "Sitemap";
+$a->strings["(no subject)"] = "(kein Betreff)";
+$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
+$a->strings["show fewer"] = "weniger anzeigen";
+$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
+$a->strings["Create a New Account"] = "Neues Konto erstellen";
+$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["Terms of Service"] = "Nutzungsbedingungen";
+$a->strings["Privacy Statement"] = "Datenschutzerklärung";
+$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "Zum Zwecke der Registrierung und um die Kommunikation zwischen dem Nutzer und seinen Kontakten zu gewährleisten, muß der Nutzer einen Namen (auch Pseudonym) und einen Nutzernamen (Spitzname) sowie eine funktionierende E-Mail-Adresse angeben. Der Name ist auf der Profilseite für alle Nutzer sichtbar, auch wenn die Profildetails nicht angezeigt werden.\nDie E-Mail-Adresse wird nur zur Benachrichtigung des Nutzers verwendet, sie wird nirgends angezeigt. Die Anzeige des Nutzerkontos im Server-Verzeichnis bzw. dem weltweiten Verzeichnis erfolgt gemäß den Einstellungen des Nutzers, sie ist zur Kommunikation nicht zwingend notwendig.";
+$a->strings["This data is required for communication and is passed on to the nodes of the communication partners. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "Diese Daten sind für die Kommunikation notwendig und werden an die Knoten der Kommunikationspartner übermittelt. Nutzer können weitere private Angaben machen, die ebenfalls an die verwendeten Server der Kommunikationspartner übermittelt werden können.";
+$a->strings["At any point in time a logged in user can export their account data from the account settings . If the user wants to delete their account they can do so at %1\$s/removeme . The deletion of the account will be permanent."] = "Angemeldete Nutzer können ihre Nutzerdaten jederzeit von den Kontoeinstellungen aus exportieren. Wenn ein Nutzer wünscht das Nutzerkonto zu löschen, so ist dies jederzeit unter %1\$s/removeme möglich. Die Löschung des Nutzerkontos ist permanent.";
+$a->strings["Logged out."] = "Abgemeldet.";
+$a->strings["Wall Photos"] = "Pinnwand-Bilder";
+$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
+$a->strings["Private Message"] = "Private Nachricht";
+$a->strings["Edit"] = "Bearbeiten";
+$a->strings["save to folder"] = "In Ordner speichern";
+$a->strings["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["add star"] = "markieren";
+$a->strings["remove star"] = "Markierung entfernen";
+$a->strings["toggle star status"] = "Markierung umschalten";
+$a->strings["starred"] = "markiert";
+$a->strings["ignore thread"] = "Thread ignorieren";
+$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
+$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
+$a->strings["ignored"] = "Ignoriert";
+$a->strings["add tag"] = "Tag hinzufügen";
+$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
+$a->strings["like"] = "mag ich";
+$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
+$a->strings["dislike"] = "mag ich nicht";
+$a->strings["Share this"] = "Weitersagen";
+$a->strings["share"] = "Teilen";
+$a->strings["to"] = "zu";
+$a->strings["via"] = "via";
+$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
+$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
+$a->strings["Comment"] = "Kommentar";
+$a->strings["%d comment"] = [
+ 0 => "%d Kommentar",
+ 1 => "%d Kommentare",
+];
+$a->strings["This is you"] = "Das bist Du";
+$a->strings["Submit"] = "Senden";
+$a->strings["Bold"] = "Fett";
+$a->strings["Italic"] = "Kursiv";
+$a->strings["Underline"] = "Unterstrichen";
+$a->strings["Quote"] = "Zitat";
+$a->strings["Code"] = "Code";
+$a->strings["Image"] = "Bild";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Video";
+$a->strings["There are no tables on MyISAM."] = "Es gibt keine MyISAM Tabellen.";
+$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\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["\nError %d occurred during database update:\n%s\n"] = "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n";
+$a->strings["Errors encountered performing database changes: "] = "Fehler beim Ändern der Datenbank aufgetreten";
+$a->strings[": Database update"] = ": Datenbank Update";
+$a->strings["%s: updating %s table."] = "%s: aktualisiere Tabelle %s";
+$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["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"] = [
+ 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["The new password has been exposed in a public data dump, please choose another."] = "Das neuer Passwort wurde in einem öffentlichen Daten-Dump veröffentlicht. Bitte verwende ein anderes Passwort.";
+$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal.";
+$a->strings["Password changed."] = "Passwort geändert.";
+$a->strings["Could not find any contact entry for this URL (%s)"] = "Für die URL (%s) konnte kein Kontakt gefunden werden";
+$a->strings["The contact has been blocked from the node"] = "Der Kontakt wurde von diesem Knoten geblockt";
+$a->strings["Post to Email"] = "An E-Mail senden";
+$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
+$a->strings["Visible to everybody"] = "Für jeden sichtbar";
+$a->strings["show"] = "zeigen";
+$a->strings["don't show"] = "nicht zeigen";
+$a->strings["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["System"] = "System";
+$a->strings["Personal"] = "Persönlich";
+$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["Miscellaneous"] = "Verschiedenes";
+$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["months"] = "Monate";
+$a->strings["weeks"] = "Wochen";
+$a->strings["days"] = "Tage";
+$a->strings["hour"] = "Stunde";
+$a->strings["hours"] = "Stunden";
+$a->strings["minute"] = "Minute";
+$a->strings["minutes"] = "Minuten";
+$a->strings["second"] = "Sekunde";
+$a->strings["seconds"] = "Sekunden";
+$a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s";
+$a->strings["%s's timeline"] = "Timeline von %s";
+$a->strings["%s's posts"] = "Beiträge von %s";
+$a->strings["%s's comments"] = "Kommentare von %s";
+$a->strings["%s is now following %s."] = "%s folgt nun %s";
+$a->strings["following"] = "folgen";
+$a->strings["%s stopped following %s."] = "%s hat aufgehört %s zu folgen";
+$a->strings["stopped following"] = "wird nicht mehr gefolgt";
+$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
+$a->strings["Attachments:"] = "Anhänge:";
+$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
+$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["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["{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["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["Friend Suggestions"] = "Kontaktvorschläge";
+$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
+$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["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s";
+$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
+$a->strings["Upload File:"] = "Datei hochladen:";
+$a->strings["Select a profile:"] = "Profil auswählen:";
+$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
+$a->strings["Upload"] = "Hochladen";
+$a->strings["or"] = "oder";
+$a->strings["skip this step"] = "diesen Schritt überspringen";
+$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben";
+$a->strings["Crop Image"] = "Bild zurechtschneiden";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann.";
+$a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
+$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen.";
+$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
+$a->strings["User deleted their account"] = "Gelöschter Nutzeraccount";
+$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Ein Nutzer deiner Friendica Instanz hat seinen Account gelöscht. Bitte stelle sicher, dass deren Daten aus deinen Backups entfernt werden.";
+$a->strings["The user id is %d"] = "Die ID des Users lautet %d";
+$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["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["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
$a->strings["Import"] = "Import";
@@ -386,206 +844,396 @@ $a->strings["You need to export your account from the old server and upload it h
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren";
$a->strings["Account file"] = "Account Datei";
$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
-$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["No matches"] = "Keine Übereinstimmungen";
-$a->strings["Invalid request identifier."] = "Invalid request identifier.";
-$a->strings["Discard"] = "Verwerfen";
-$a->strings["Ignore"] = "Ignorieren";
-$a->strings["Notifications"] = "Benachrichtigungen";
-$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
-$a->strings["System Notifications"] = "Systembenachrichtigungen";
-$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?"] = "Soll die Verbindung beidseitig sein oder nicht?";
-$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s.";
-$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten.";
-$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten.";
-$a->strings["Friend"] = "Kontakt";
-$a->strings["Sharer"] = "Teilenden";
-$a->strings["Subscriber"] = "Abonnent";
-$a->strings["Location:"] = "Ort:";
-$a->strings["About:"] = "Über:";
-$a->strings["Tags:"] = "Tags:";
-$a->strings["Gender:"] = "Geschlecht:";
-$a->strings["Profile URL"] = "Profil URL";
-$a->strings["Network:"] = "Netzwerk:";
-$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["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
+$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
+$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
+$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
+$a->strings["%d message sent."] = [
+ 0 => "%d Nachricht gesendet.",
+ 1 => "%d Nachrichten gesendet.",
+];
+$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden.";
+$a->strings["To accept this invitation, please visit and register at %s."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s.";
+$a->strings["Send invitations"] = "Einladungen senden";
+$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
+$a->strings["Your message:"] = "Deine Nachricht:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca.";
$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
-$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
-$a->strings["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["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["Remote site reported: "] = "Gegenstelle meldet: ";
-$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["[Name Withheld]"] = "[Name unterdrückt]";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
-$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["Invalid request."] = "Ungültige Anfrage";
-$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["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"] = [
- 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["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["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
-$a->strings["Blocked domain"] = "Blockierte Domain";
-$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 abonnieren 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 this profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an.";
-$a->strings["Confirm"] = "Bestätigen";
-$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
-$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s.";
-$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:";
-$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today ."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica Server zu finden und beizutreten.";
-$a->strings["Friend/Connection Request"] = "Kontaktanfrage";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de";
-$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
-$a->strings["Does %s know you?"] = "Kennt %s Dich?";
-$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)";
-$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)";
-$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste.";
-$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
-$a->strings["Submit Request"] = "Anfrage abschicken";
-$a->strings["- select -"] = "- auswählen -";
-$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
-$a->strings["Time Conversion"] = "Zeitumrechnung";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
-$a->strings["UTC time: %s"] = "UTC Zeit: %s";
-$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
-$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
-$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:";
-$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
-$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["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["Only logged in users are permitted to perform a probing."] = "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet.";
-$a->strings["Permission denied"] = "Zugriff verweigert";
-$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
-$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
-$a->strings["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["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["No profile"] = "Kein Profil";
+$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["Remove term"] = "Begriff entfernen";
-$a->strings["Saved Searches"] = "Gespeicherte Suchen";
-$a->strings["Only logged in users are permitted to perform a search."] = "Nur eingeloggten Benutzern ist das Suchen gestattet.";
-$a->strings["Too Many Requests"] = "Zu viele Abfragen";
-$a->strings["Only one search per minute is permitted for not logged in users."] = "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet.";
-$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["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
+ 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["No such group"] = "Es gibt keine solche Gruppe";
+$a->strings["Group is empty"] = "Gruppe ist leer";
+$a->strings["Group: %s"] = "Gruppe: %s";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
+$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
+$a->strings["Commented Order"] = "Neueste Kommentare";
+$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
+$a->strings["Posted Order"] = "Neueste Beiträge";
+$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
+$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht";
+$a->strings["New"] = "Neue";
+$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
+$a->strings["Shared Links"] = "Geteilte Links";
+$a->strings["Interesting Links"] = "Interessante Links";
+$a->strings["Starred"] = "Markierte";
+$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
+$a->strings["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 Friendi.ca to learn more about the Friendica project."] = "Bitte besuche Friendi.ca 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"] = "den Bugtracker auf github";
+$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Vorschläge, Lob usw.: E-Mail an \"Info\" at \"Friendi - dot ca\"";
+$a->strings["Installed addons/apps:"] = "Installierte Apps und Addons";
+$a->strings["No installed addons/apps"] = "Es sind keine Addons oder Apps installiert";
+$a->strings["Read about the Terms of Service of this node."] = "Erfahre mehr über die Nutzungsbedingungen dieses Knotens.";
+$a->strings["On this server the following remote servers are blocked."] = "Auf diesem Server werden die folgenden entfernten Server blockiert.";
+$a->strings["Reason for the block"] = "Begründung für die Blockierung";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
-$a->strings["Tag removed"] = "Tag entfernt";
-$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
-$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
-$a->strings["Remove"] = "Entfernen";
-$a->strings["Export account"] = "Account exportieren";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
-$a->strings["Export all"] = "Alles exportieren";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert).";
-$a->strings["Export personal data"] = "Persönliche Daten exportieren";
-$a->strings["No contacts."] = "Keine Kontakte.";
-$a->strings["Access denied."] = "Zugriff verweigert.";
-$a->strings["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s";
-$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
-$a->strings["Wall Photos"] = "Pinnwand-Bilder";
-$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
-$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
-$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
-$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
-$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
-$a->strings["Message sent."] = "Nachricht gesendet.";
-$a->strings["No recipient."] = "Kein Empfänger.";
-$a->strings["Send Private Message"] = "Private Nachricht senden";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
-$a->strings["To:"] = "An:";
-$a->strings["Subject:"] = "Betreff:";
-$a->strings["Your message:"] = "Deine Nachricht:";
-$a->strings["Login"] = "Anmeldung";
-$a->strings["The post was created"] = "Der Beitrag wurde angelegt";
-$a->strings["Community option not available."] = "Optionen für die Gemeinschaftsseite nicht verfügbar.";
-$a->strings["Not available."] = "Nicht verfügbar.";
-$a->strings["Local Community"] = "Lokale Gemeinschaft";
-$a->strings["Posts from local users on this server"] = "Beiträge von Nutzern dieses Servers";
-$a->strings["Global Community"] = "Globale Gemeinschaft";
-$a->strings["Posts from users of the whole federated network"] = "Beiträge von Nutzern des gesamten föderalen Netzwerks";
-$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Diese Gemeinschaftsseite zeigt alle öffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers.";
-$a->strings["Item not found"] = "Beitrag nicht gefunden";
-$a->strings["Edit post"] = "Beitrag bearbeiten";
-$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["Profile not found."] = "Profil nicht gefunden.";
+$a->strings["Profile deleted."] = "Profil gelöscht.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Neues Profil angelegt.";
+$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
+$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
+$a->strings["Marital Status"] = "Familienstand";
+$a->strings["Romantic Partner"] = "Romanze";
+$a->strings["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 “%3\$s”"] = "%1\$s hat %2\$s geändert auf “%3\$s”";
+$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
+$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen";
+$a->strings["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["Your Gender:"] = "Dein Geschlecht:";
+$a->strings["♥ Marital Status:"] = "♥ 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 public profile. It may be visible to anybody using the internet."] = "Dies ist Dein öffentliches Profil. Es könnte für jeden Nutzer des Internets sichtbar sein.";
+$a->strings["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["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["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["Failed to remove event"] = "Entfernen der Veranstaltung fehlgeschlagen";
+$a->strings["Event removed"] = "Veranstaltung enfternt";
+$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
+$a->strings["System Notifications"] = "Systembenachrichtigungen";
+$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
+$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
+$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
+$a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen.";
+$a->strings["No contacts."] = "Keine Kontakte.";
+$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
+$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["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["everybody"] = "jeder";
+$a->strings["Account"] = "Nutzerkonto";
+$a->strings["Additional features"] = "Zusätzliche Features";
+$a->strings["Display"] = "Anzeige";
+$a->strings["Social Networks"] = "Soziale Netzwerke";
+$a->strings["Addons"] = "Addons";
+$a->strings["Connected apps"] = "Verbundene Programme";
+$a->strings["Export personal data"] = "Persönliche Daten exportieren";
+$a->strings["Remove account"] = "Konto löschen";
+$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
+$a->strings["Update"] = "Aktualisierungen";
+$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.";
+$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet.";
+$a->strings["Features updated"] = "Features aktualisiert";
+$a->strings["Relocate message has been send to your contacts"] = "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
+$a->strings["Wrong password."] = "Falsches Passwort.";
+$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen.";
+$a->strings[" Name too short."] = " Name ist zu kurz.";
+$a->strings["Wrong Password"] = "Falsches Passwort";
+$a->strings["Invalid email."] = "Ungültige E-Mail-Adresse.";
+$a->strings["Cannot change to that email."] = "Ändern der E-Mail nicht möglich. ";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt.";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte.";
+$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
+$a->strings["Add application"] = "Programm hinzufügen";
+$a->strings["Save Settings"] = "Einstellungen speichern";
+$a->strings["Name"] = "Name";
+$a->strings["Consumer Key"] = "Consumer Key";
+$a->strings["Consumer Secret"] = "Consumer Secret";
+$a->strings["Redirect"] = "Umleiten";
+$a->strings["Icon url"] = "Icon URL";
+$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten.";
+$a->strings["Connected Apps"] = "Verbundene Programme";
+$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit";
+$a->strings["No name"] = "Kein Name";
+$a->strings["Remove authorization"] = "Autorisierung entziehen";
+$a->strings["No Addon settings configured"] = "Keine Addon-Einstellungen konfiguriert";
+$a->strings["Addon Settings"] = "Addon Einstellungen";
+$a->strings["Off"] = "Aus";
+$a->strings["On"] = "An";
+$a->strings["Additional Features"] = "Zusätzliche Features";
+$a->strings["enabled"] = "eingeschaltet";
+$a->strings["disabled"] = "ausgeschaltet";
+$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s";
+$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)";
+$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert.";
+$a->strings["General Social Media Settings"] = "Allgemeine Einstellungen zu Sozialen Medien";
+$a->strings["Disable Content Warning"] = "Inhaltswarnungen ausschalten";
+$a->strings["Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn't affect any other content filtering you eventually set up."] = "Nutzer von anderen Netzwerken, wie z.B. Mastodon oder Pleroma, können Inhaltswarnungen, welche die Beiträge standardmäßig einklappen. Diese Einstellung deaktiviert das automatische Einklappt solcher Beiträge und setzt die Inhaltswarnung als Titel des Beitrags. Wenn du andere Filtereinstellungen vorgenommen hast, werden diese hierdurch nicht beeinflusst.";
+$a->strings["Disable intelligent shortening"] = "Intelligentes Link kürzen ausschalten";
+$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt.";
+$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen";
+$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,.";
+$a->strings["Default group for OStatus contacts"] = "Voreingestellte Gruppe für OStatus Kontakte";
+$a->strings["Your legacy GNU Social account"] = "Dein alter GNU Social Account";
+$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "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.";
+$a->strings["Repair OStatus subscriptions"] = "OStatus Abonnements reparieren";
+$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an.";
+$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check";
+$a->strings["IMAP server name:"] = "IMAP-Server-Name:";
+$a->strings["IMAP port:"] = "IMAP-Port:";
+$a->strings["Security:"] = "Sicherheit:";
+$a->strings["None"] = "Keine";
+$a->strings["Email login name:"] = "E-Mail-Login-Name:";
+$a->strings["Email password:"] = "E-Mail-Passwort:";
+$a->strings["Reply-to address:"] = "Reply-to Adresse:";
+$a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Beiträge an alle E-Mail-Kontakte:";
+$a->strings["Action after import:"] = "Aktion nach Import:";
+$a->strings["Move to folder"] = "In einen Ordner verschieben";
+$a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
+$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
+$a->strings["%s - (Unsupported)"] = "%s - (Nicht unterstützt)";
+$a->strings["%s - (Experimental)"] = "%s - (Experimentell)";
+$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 Sekunden. Gib -1 ein um abzuschalten.";
+$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: ";
+$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge";
+$a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:";
+$a->strings["Don't show emoticons"] = "Keine Smilies anzeigen";
+$a->strings["Calendar"] = "Kalender";
+$a->strings["Beginning of week:"] = "Wochenbeginn:";
+$a->strings["Don't show notices"] = "Info-Popups nicht anzeigen";
+$a->strings["Infinite scroll"] = "Endloses Scrollen";
+$a->strings["Automatic updates only at the top of the network page"] = "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist.";
+$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "Wenn dies deaktiviert ist, wird die Netzwerk Seite aktualisiert, wann immer neue Beiträge eintreffen, egal an welcher Stelle gerade gelesen wird.";
+$a->strings["Bandwith Saver Mode"] = "Bandbreiten-Spar-Modus";
+$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden.";
+$a->strings["Smart Threading"] = "Intelligentes Threading";
+$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "Ist dies aktiviert, werden Einrückungen in Unterhaltungen unterdrückt wo sie nicht benötigt werden. Werden sie benötigt, werden die Threads weiterhin eingerückt.";
+$a->strings["General Theme Settings"] = "Allgemeine Themeneinstellungen";
+$a->strings["Custom Theme Settings"] = "Benutzerdefinierte Theme Einstellungen";
+$a->strings["Content Settings"] = "Einstellungen zum Inhalt";
+$a->strings["Theme settings"] = "Themeneinstellungen";
+$a->strings["Unable to find your profile. Please contact your admin."] = "Konnte dein Profil nicht finden. Bitte kontaktiere den Admin.";
+$a->strings["Account Types"] = "Kontenarten";
+$a->strings["Personal Page Subtypes"] = "Unterarten der persönlichen Seite";
+$a->strings["Community Forum Subtypes"] = "Unterarten des Gemeinschaftsforums";
+$a->strings["Personal Page"] = "Persönliche Seite";
+$a->strings["Account for a personal profile."] = "Konto für ein persönliches Profil.";
+$a->strings["Organisation Page"] = "Organisationsseite";
+$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = "Konto für eine Organisation, das Kontaktanfragen automatisch als \"Follower\" annimmt.";
+$a->strings["News Page"] = "Nachrichtenseite";
+$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = "Konto für einen Feedspiegel, das Kontaktanfragen automatisch als \"Follower\" annimmt.";
+$a->strings["Community Forum"] = "Gemeinschaftsforum";
+$a->strings["Account for community discussions."] = "Konto für Diskussionsforen. ";
+$a->strings["Normal Account Page"] = "Normales Konto";
+$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = "Konto für ein normales persönliches Profil. Kontaktanfragen müssen manuell als \"Friend\" oder \"Follower\" bestätigt werden.";
+$a->strings["Soapbox Page"] = "Marktschreier-Konto";
+$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = "Konto für ein öffentliches Profil, das Kontaktanfragen automatisch als \"Follower\" annimmt.";
+$a->strings["Public Forum"] = "Öffentliches Forum";
+$a->strings["Automatically approves all contact requests."] = "Bestätigt alle Kontaktanfragen automatisch.";
+$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite";
+$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als \"Friend\" annimmt.";
+$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]";
+$a->strings["Requires manual approval of contact requests."] = "Kontaktanfragen müssen manuell bestätigt werden.";
+$a->strings["OpenID:"] = "OpenID:";
+$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID.";
+$a->strings["Publish your default profile in your local site directory?"] = "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?";
+$a->strings["Your profile will be published in the global friendica directories (e.g. %s ). Your profile will be visible in public."] = "Dein Profil wird in den globalen Friendica Verzeichnissen (z.B. %s ) veröffentlicht. Dein Profil wird öffentlich auffindbar sein.";
+$a->strings["Publish your default profile in the global social directory?"] = "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?";
+$a->strings["Your profile will be published in this node's local directory . Your profile details may be publicly visible depending on the system settings."] = "Dein Profil wird im lokalen Verzeichnis dieses Knotens veröffentlicht. Je nach Systemeinstellungen kann es öffentlich auffindbar sein.";
+$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?";
+$a->strings["Your contact list won't be shown in your default profile page. You can decide to show your contact list separately for each additional profile you create"] = "Die Liste deiner Kontakte wird nicht in deinem Standard-Profil angezeigt werden. Du kannst für jedes weitere Profil diese Entscheidung separat einstellen.";
+$a->strings["Hide your profile details from anonymous viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
+$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Disables posting public messages to Diaspora and other networks."] = "Anonyme Besucher deines Profils werden ausschließlich dein Profilbild, deinen Namen sowie deinen Spitznamen sehen. Ist diese Option aktiv, können keine öffentlichen Beiträge zu Diaspora und anderen Netzwerken veröffentlicht werden.";
+$a->strings["Allow friends to post to your profile page?"] = "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?";
+$a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = "Deine Kontakte können Beiträge auf deiner Pinnwand hinterlassen. Diese werden an deine Kontakte verteilt.";
+$a->strings["Allow friends to tag your posts?"] = "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?";
+$a->strings["Your contacts can add additional tags to your posts."] = "Deine Kontakte dürfen deine Beiträge mit zusätzlichen Schlagworten versehen.";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
+$a->strings["If you like, Friendica may suggest new members to add you as a contact."] = "Wenn du magst, kann Friendica dich neuen Mitgliedern als Kontakt vorschlagen.";
+$a->strings["Permit unknown people to send you private mail?"] = "Dürfen Dir Unbekannte private Nachrichten schicken?";
+$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = "Nutzer des Friendica Netzwerks können dir private Nachrichten senden, selbst wenn sie nicht in deine Kontaktliste sind.";
+$a->strings["Profile is not published ."] = "Profil ist nicht veröffentlicht .";
+$a->strings["Your Identity Address is '%s' or '%s'."] = "Die Adresse deines Profils lautet '%s' oder '%s'.";
+$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:";
+$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht.";
+$a->strings["Advanced expiration settings"] = "Erweiterte Verfallseinstellungen";
+$a->strings["Advanced Expiration"] = "Erweitertes Verfallen";
+$a->strings["Expire posts:"] = "Beiträge verfallen lassen:";
+$a->strings["Expire personal notes:"] = "Persönliche Notizen verfallen lassen:";
+$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:";
+$a->strings["Expire photos:"] = "Fotos verfallen lassen:";
+$a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:";
+$a->strings["Account Settings"] = "Kontoeinstellungen";
+$a->strings["Password Settings"] = "Passwort-Einstellungen";
+$a->strings["New Password:"] = "Neues Passwort:";
+$a->strings["Confirm:"] = "Bestätigen:";
+$a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern";
+$a->strings["Current Password:"] = "Aktuelles Passwort:";
+$a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Änderungen zu bestätigen";
+$a->strings["Password:"] = "Passwort:";
+$a->strings["Basic Settings"] = "Grundeinstellungen";
+$a->strings["Email Address:"] = "E-Mail-Adresse:";
+$a->strings["Your Timezone:"] = "Deine Zeitzone:";
+$a->strings["Your Language:"] = "Deine Sprache:";
+$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken";
+$a->strings["Default Post Location:"] = "Standardstandort:";
+$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
+$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen";
+$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl vonKontaktanfragen/Tag:";
+$a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)";
+$a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge";
+$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
+$a->strings["Show to Groups"] = "Zeige den Gruppen";
+$a->strings["Show to Contacts"] = "Zeige den Kontakten";
+$a->strings["Default Private Post"] = "Privater Standardbeitrag";
+$a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag";
+$a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge";
+$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:";
+$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen";
+$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:";
+$a->strings["accepting a friend request"] = "– Du eine Kontaktanfrage akzeptierst";
+$a->strings["joining a forum/community"] = "– Du einem Forum/einer Gemeinschaftsseite beitrittst";
+$a->strings["making an interesting profile change"] = "– Du eine interessante Änderung an Deinem Profil durchführst";
+$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:";
+$a->strings["You receive an introduction"] = "– Du eine Kontaktanfrage erhältst";
+$a->strings["Your introductions are confirmed"] = "– eine Deiner Kontaktanfragen akzeptiert wurde";
+$a->strings["Someone writes on your profile wall"] = "– jemand etwas auf Deine Pinnwand schreibt";
+$a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommentar verfasst";
+$a->strings["You receive a private message"] = "– Du eine private Nachricht erhältst";
+$a->strings["You receive a friend suggestion"] = "– Du eine Empfehlung erhältst";
+$a->strings["You are tagged in a post"] = "– Du in einem Beitrag erwähnt wirst";
+$a->strings["You are poked/prodded/etc. in a post"] = "– Du von jemandem angestupst oder sonstwie behandelt wirst";
+$a->strings["Activate desktop notifications"] = "Desktop Benachrichtigungen einschalten";
+$a->strings["Show desktop popup on new notifications"] = "Desktop Benachrichtigungen einschalten";
+$a->strings["Text-only notification emails"] = "Benachrichtigungs E-Mail als Rein-Text.";
+$a->strings["Send text only notification emails, without the html part"] = "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil";
+$a->strings["Show detailled notifications"] = "Detaillierte Benachrichtigungen anzeigen";
+$a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = "Normalerweise werde alle Benachrichtigungen zu einem Thema zusammengefasst in einer einzigen Mitteilung. Wenn diese Option aktiviert ist, wird jede Mitteilung angezeigt.";
+$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen";
+$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:";
+$a->strings["Relocate"] = "Umziehen";
+$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button.";
+$a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden";
+$a->strings["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["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["Permission denied"] = "Zugriff verweigert";
$a->strings["Save Group"] = "Gruppe speichern";
$a->strings["Create a group of contacts/friends."] = "Eine Kontaktgruppe anlegen.";
-$a->strings["Group Name: "] = "Gruppenname:";
$a->strings["Group removed."] = "Gruppe entfernt.";
$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
$a->strings["Delete Group"] = "Gruppe löschen";
@@ -593,349 +1241,17 @@ $a->strings["Group Editor"] = "Gruppeneditor";
$a->strings["Edit Group Name"] = "Gruppen Name bearbeiten";
$a->strings["Members"] = "Mitglieder";
$a->strings["All Contacts"] = "Alle Kontakte";
-$a->strings["Group is empty"] = "Gruppe ist leer";
$a->strings["Remove Contact"] = "Kontakt löschen";
$a->strings["Add Contact"] = "Kontakt hinzufügen";
-$a->strings["New Message"] = "Neue Nachricht";
-$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
-$a->strings["Messages"] = "Nachrichten";
-$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?";
-$a->strings["Message deleted."] = "Nachricht gelöscht.";
-$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
-$a->strings["No messages."] = "Keine Nachrichten.";
-$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
-$a->strings["Delete message"] = "Nachricht löschen";
-$a->strings["D, d M Y - g:i A"] = "D, d. M Y - H:i";
-$a->strings["Delete conversation"] = "Unterhaltung löschen";
-$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten.";
-$a->strings["Send Reply"] = "Antwort senden";
-$a->strings["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 message"] = [
- 0 => "%d Nachricht",
- 1 => "%d Nachrichten",
-];
-$a->strings["Personal Notes"] = "Persönliche Notizen";
-$a->strings["Photo Albums"] = "Fotoalben";
-$a->strings["Recent Photos"] = "Neueste Fotos";
-$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
-$a->strings["everybody"] = "jeder";
-$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
-$a->strings["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["a photo"] = "einem Foto";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
-$a->strings["Image upload didn't complete, please try again"] = "Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut.";
-$a->strings["Image file is missing"] = "Bilddatei konnte nicht gefunden werden.";
-$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Der Server kann derzeit keine neuen Datei Uploads akzeptieren. Bitte kontaktiere deinen Administrator.";
-$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["Upload Photos"] = "Bilder hochladen";
-$a->strings["New album name: "] = "Name des neuen Albums: ";
-$a->strings["or existing album name: "] = "oder existierender Albumname: ";
-$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
-$a->strings["Permissions"] = "Berechtigungen";
-$a->strings["Show to Groups"] = "Zeige den Gruppen";
-$a->strings["Show to Contacts"] = "Zeige den Kontakten";
-$a->strings["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["Private Message"] = "Private Nachricht";
-$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["I like this (toggle)"] = "Ich mag das (toggle)";
-$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
-$a->strings["This is you"] = "Das bist Du";
-$a->strings["Comment"] = "Kommentar";
-$a->strings["Map"] = "Karte";
-$a->strings["View Album"] = "Album betrachten";
-$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
-$a->strings["%s's posts"] = "Beiträge von %s";
-$a->strings["%s's comments"] = "Kommentare von %s";
-$a->strings["%s's timeline"] = "Timeline von %s";
-$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
-$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
-$a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?";
-$a->strings["Delete Video"] = "Video Löschen";
-$a->strings["No videos selected"] = "Keine Videos ausgewählt";
-$a->strings["Recent Videos"] = "Neueste Videos";
-$a->strings["Upload New Videos"] = "Neues Video hochladen";
-$a->strings["Events"] = "Veranstaltungen";
-$a->strings["View"] = "Ansehen";
-$a->strings["Previous"] = "Vorherige";
-$a->strings["Next"] = "Nächste";
-$a->strings["today"] = "Heute";
-$a->strings["month"] = "Monat";
-$a->strings["week"] = "Woche";
-$a->strings["day"] = "Tag";
-$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["%d contact edited."] = [
- 0 => "%d Kontakt bearbeitet.",
- 1 => "%d Kontakte bearbeitet.",
-];
-$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
-$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
-$a->strings["Contact updated."] = "Kontakt aktualisiert.";
-$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
-$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
-$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
-$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
-$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
-$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
-$a->strings["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["Never"] = "Niemals";
-$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
-$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
-$a->strings["Suggest friends"] = "Kontakte vorschlagen";
-$a->strings["Network type: %s"] = "Netzwerktyp: %s";
-$a->strings["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 like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht all zu viel Text beinhaltet. Schlagwörter werden auf den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet.";
-$a->strings["Disabled"] = "Deaktiviert";
-$a->strings["Fetch information"] = "Beziehe Information";
-$a->strings["Fetch keywords"] = "Schlüsselwprter abrufen";
-$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
-$a->strings["Disconnect/Unfollow"] = "Verbindung lösen/Nicht mehr folgen";
-$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["Their personal note"] = "Die persönliche Mitteilung";
-$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["Unblock"] = "Entsperren";
-$a->strings["Block"] = "Sperren";
-$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["Awaiting connection acknowledge"] = "Bedarf der Bestätigung des Kontakts";
-$a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein";
-$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
-$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt.";
-$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
-$a->strings["XMPP:"] = "XMPP:";
-$a->strings["Actions"] = "Aktionen";
-$a->strings["Status"] = "Status";
-$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["Find"] = "Finde";
-$a->strings["Update"] = "Aktualisierungen";
-$a->strings["Archive"] = "Archivieren";
-$a->strings["Unarchive"] = "Aus Archiv zurückholen";
-$a->strings["Batch Actions"] = "Stapelverarbeitung";
-$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
-$a->strings["Profile Details"] = "Profildetails";
-$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
-$a->strings["View all common friends"] = "Alle Kontakte anzeigen";
-$a->strings["Advanced"] = "Erweitert";
-$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["Parent user not found."] = "Verwalter nicht gefunden.";
-$a->strings["No parent user"] = "Kein Verwalter";
-$a->strings["Parent Password:"] = "Passwort des Verwalters";
-$a->strings["Please enter the password of the parent account to legitimize your request."] = "Bitte gib das Passwort des Verwalters ein um deine Anfrage zu bestätigen.";
-$a->strings["Parent User"] = "Verwalter";
-$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "Verwalter haben Zugriff auf alle Funktionen dieses Benutzerkontos und können dessen Einstellungen ändern.";
-$a->strings["Save Settings"] = "Einstellungen speichern";
-$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
-$a->strings["Delegates"] = "Bevollmächtigte";
-$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 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["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["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["Basic"] = "Allgemein";
-$a->strings["Failed to remove event"] = "Entfernen der Veranstaltung fehlgeschlagen";
-$a->strings["Event removed"] = "Veranstaltung enfternt";
-$a->strings["You must be logged in to use this module"] = "Du musst eingeloggt sein um dieses Modul benutzen zu können.";
-$a->strings["Source URL"] = "URL der Quelle";
-$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
-$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
-$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
-$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
-$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet.";
-$a->strings["System check"] = "Systemtest";
-$a->strings["Check again"] = "Noch einmal testen";
-$a->strings["Database connection"] = "Datenbankverbindung";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst.";
-$a->strings["Database Server Name"] = "Datenbank-Server";
-$a->strings["Database Login Name"] = "Datenbank-Nutzer";
-$a->strings["Database Login Password"] = "Datenbank-Passwort";
-$a->strings["For security reasons the password must not be empty"] = "Aus Sicherheitsgründen darf das Passwort nicht leer sein.";
-$a->strings["Database Name"] = "Datenbank-Name";
-$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst.";
-$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite";
-$a->strings["Site settings"] = "Server-Einstellungen";
-$a->strings["System Language:"] = "Systemsprache:";
-$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
-$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker' "] = "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten'für das Worker Setup' ";
-$a->strings["PHP executable path"] = "Pfad zu PHP";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
-$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)";
-$a->strings["Found PHP version: "] = "Gefundene PHP Version:";
-$a->strings["PHP cli binary"] = "PHP CLI Binary";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert.";
-$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
-$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
-$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
-$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
-$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
-$a->strings["PDO or MySQLi PHP module"] = "PDO oder MySQLi PHP Modul";
-$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
-$a->strings["XML PHP module"] = "XML PHP Modul";
-$a->strings["iconv PHP module"] = "PHP iconv Modul";
-$a->strings["POSIX PHP module"] = "PHP POSIX Modul";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
-$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert.";
-$a->strings["Error: The MySQL driver for PDO is not installed."] = "Fehler: der MySQL Treiber für PDO ist nicht installiert";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
-$a->strings["Error: iconv PHP module required but not installed."] = "Fehler: Das iconv-Modul von PHP ist nicht installiert.";
-$a->strings["Error: POSIX PHP module required but not installed."] = "Fehler POSIX PHP Modul erforderlich aber nicht installiert.";
-$a->strings["Error, XML PHP module required but not installed."] = "Fehler: XML PHP Modul erforderlich aber nicht installiert.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt.";
-$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
-$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
-$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagicx PHP Erweiterung ist nicht installiert.";
-$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP Erweiterung ist installiert";
-$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["What next "] = "Wie geht es weiter? ";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "Wichtig: Du musst [manuell] einen Cronjob (o.ä.) für den Worker einrichten.";
-$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Du solltest nun die Seite zur Nutzerregistrierung deiner neuen Friendica Instanz besuchen und einen neuen Nutzer einrichten. Bitte denke daran die selbe E-Mail Adresse anzugeben, die du auch als Administrator E-Mail angegeben hast, damit du das Admin-Panel verwenden kannst.";
-$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
-$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
-$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["Post successful."] = "Beitrag erfolgreich 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["ignored"] = "Ignoriert";
-$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["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["Contact wasn't found or can't be unfollowed."] = "Der Kontakt konnte nicht gefunden oder nicht entfolgt werden.";
-$a->strings["Contact unfollowed"] = "Kontakt wird nicht mehr gefolgt";
-$a->strings["You aren't a friend of this contact."] = "Du hast keine beidseitige Freundschaft mit diesem Kontakt.";
-$a->strings["Unfollowing is currently not supported by your network."] = "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt.";
+$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
+$a->strings["Files"] = "Dateien";
$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
-$a->strings["Information"] = "Information";
$a->strings["Overview"] = "Übersicht";
$a->strings["Federation Statistics"] = "Föderation Statistik";
$a->strings["Configuration"] = "Konfiguration";
$a->strings["Site"] = "Seite";
$a->strings["Users"] = "Nutzer";
-$a->strings["Addons"] = "Addons";
$a->strings["Themes"] = "Themen";
-$a->strings["Additional features"] = "Zusätzliche Features";
-$a->strings["Terms of Service"] = "Nutzungsbedingungen";
$a->strings["Database"] = "Datenbank";
$a->strings["DB updates"] = "DB Updates";
$a->strings["Inspect Queue"] = "Warteschlange Inspizieren";
@@ -949,7 +1265,6 @@ $a->strings["Diagnostics"] = "Diagnostik";
$a->strings["PHP Info"] = "PHP Info";
$a->strings["probe address"] = "Adresse untersuchen";
$a->strings["check webfinger"] = "Webfinger überprüfen";
-$a->strings["Admin"] = "Administration";
$a->strings["Addon Features"] = "Addon Features";
$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
$a->strings["Administration"] = "Administration";
@@ -960,7 +1275,6 @@ $a->strings["Show some informations regarding the needed information to operate
$a->strings["The Terms of Service"] = "Die Nutzungsbedingungen";
$a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "Füge hier die Nutzungsbedingungen deines Knotens ein. Du kannst BBCode zur Formatierung verwenden. Überschriften sollten [h2] oder darunter sein.";
$a->strings["The blocked domain"] = "Die blockierte Domain";
-$a->strings["Reason for the block"] = "Begründung für die Blockierung";
$a->strings["The reason why you blocked this domain."] = "Die Begründung warum du diese Domain blockiert hast.";
$a->strings["Delete domain"] = "Domain löschen";
$a->strings["Check to delete this entry from the blocklist"] = "Markieren, um diesen Eintrag von der Blocklist zu entfernen";
@@ -977,8 +1291,6 @@ $a->strings["Delete entry from blocklist"] = "Eintrag von der Blockliste entfern
$a->strings["Delete entry from blocklist?"] = "Eintrag von der Blockliste entfernen?";
$a->strings["Server added to blocklist."] = "Server zur Blockliste hinzugefügt.";
$a->strings["Site blocklist updated."] = "Blockliste aktualisiert.";
-$a->strings["The contact has been blocked from the node"] = "Der Kontakt wurde von diesem Knoten geblockt";
-$a->strings["Could not find any contact entry for this URL (%s)"] = "Für die URL (%s) konnte kein Kontakt gefunden werden";
$a->strings["%s contact unblocked"] = [
0 => "%sKontakt wieder freigegeben",
1 => "%sKontakte wieder freigegeben",
@@ -988,11 +1300,13 @@ $a->strings["This page allows you to prevent any message from a remote contact t
$a->strings["Block Remote Contact"] = "Blockiere entfernten Kontakt";
$a->strings["select all"] = "Alle auswählen";
$a->strings["select none"] = "Auswahl aufheben";
+$a->strings["Block"] = "Sperren";
+$a->strings["Unblock"] = "Entsperren";
$a->strings["No remote contact is blocked from this node."] = "Derzeit werden keine Kontakte auf diesem Knoten blockiert.";
$a->strings["Blocked Remote Contacts"] = "Blockierte Kontakte von anderen Knoten";
$a->strings["Block New Remote Contact"] = "Blockieren von weiteren Kontakten";
$a->strings["Photo"] = "Foto:";
-$a->strings["Address"] = "Adresse";
+$a->strings["Profile URL"] = "Profil URL";
$a->strings["%s total blocked contact"] = [
0 => "Insgesamt %s blockierter Kontakt",
1 => "Insgesamt %s blockierte Kontakte",
@@ -1011,7 +1325,6 @@ $a->strings["Currently this node is aware of %d nodes with %d registered users f
$a->strings["ID"] = "ID";
$a->strings["Recipient Name"] = "Empfänger Name";
$a->strings["Recipient Profile"] = "Empfänger Profil";
-$a->strings["Network"] = "Netzwerk";
$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.";
@@ -1034,11 +1347,11 @@ $a->strings["Version"] = "Version";
$a->strings["Active addons"] = "Aktivierte Addons";
$a->strings["Can not parse base url. Must have at least ://"] = "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen";
$a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert.";
-$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
$a->strings["No community page"] = "Keine Gemeinschaftsseite";
$a->strings["Public postings from users of this site"] = "Öffentliche Beiträge von NutzerInnen dieser Seite";
$a->strings["Public postings from the federated network"] = "Öffentliche Beiträge aus dem föderalen Netzwerk";
$a->strings["Public postings from local users and the federated network"] = "Öffentliche Beiträge von lokalen Nutzern und aus dem föderalen Netzwerk";
+$a->strings["Disabled"] = "Deaktiviert";
$a->strings["Users, Global Contacts"] = "Nutzer, globale Kontakte";
$a->strings["Users, Global Contacts/fallback"] = "Nutzer, globale Kontakte / Fallback";
$a->strings["One month"] = "ein Monat";
@@ -1233,7 +1546,6 @@ $a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich
$a->strings["Attempt to execute this update step automatically"] = "Versuchen, diesen Schritt automatisch auszuführen";
$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\nHallo %1\$s,\n\nauf %2\$s wurde ein Account für Dich angelegt.";
$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\t\tThank you and welcome to %4\$s."] = "\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\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %1\$s/removeme jederzeit tun.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4\$s.";
-$a->strings["Registration details for %s"] = "Details der Registration von %s";
$a->strings["%s user blocked/unblocked"] = [
0 => "%s Benutzer geblockt/freigegeben",
1 => "%s Benutzer geblockt/freigegeben",
@@ -1245,17 +1557,18 @@ $a->strings["%s user deleted"] = [
$a->strings["User '%s' deleted"] = "Nutzer '%s' gelöscht";
$a->strings["User '%s' unblocked"] = "Nutzer '%s' entsperrt";
$a->strings["User '%s' blocked"] = "Nutzer '%s' gesperrt";
-$a->strings["Email"] = "E-Mail";
+$a->strings["Private Forum"] = "Privates Forum";
$a->strings["Register date"] = "Anmeldedatum";
$a->strings["Last login"] = "Letzte Anmeldung";
$a->strings["Last item"] = "Letzter Beitrag";
-$a->strings["Account"] = "Nutzerkonto";
+$a->strings["Type"] = "Typ";
$a->strings["Add User"] = "Nutzer hinzufügen";
$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten";
$a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung";
$a->strings["Request date"] = "Anfragedatum";
$a->strings["No registrations."] = "Keine Neuanmeldungen.";
$a->strings["Note from the user"] = "Hinweis vom Nutzer";
+$a->strings["Approve"] = "Genehmigen";
$a->strings["Deny"] = "Verwehren";
$a->strings["Site admin"] = "Seitenadministrator";
$a->strings["Account expired"] = "Account ist abgelaufen";
@@ -1294,11 +1607,408 @@ $a->strings["PHP logging"] = "PHP Protokollieren";
$a->strings["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."] = "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.";
$a->strings["Error trying to open %1\$s log file.\\r\\n Check to see if file %1\$s exist and is readable."] = "Fehler beim Öffnen der Logdatei %1\$s .\\r\\n Bitte überprüfe ob die Datei %1\$s existiert und gelesen werden kann.";
$a->strings["Couldn't open %1\$s log file.\\r\\n Check to see if file %1\$s is readable."] = "Konnte die Logdatei %1\$s nicht öffnen.\\r\\n Bitte stelle sicher, dass die Datei %1\$s lesbar ist.";
-$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["Parent user not found."] = "Verwalter nicht gefunden.";
+$a->strings["No parent user"] = "Kein Verwalter";
+$a->strings["Parent Password:"] = "Passwort des Verwalters";
+$a->strings["Please enter the password of the parent account to legitimize your request."] = "Bitte gib das Passwort des Verwalters ein um deine Anfrage zu bestätigen.";
+$a->strings["Parent User"] = "Verwalter";
+$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "Verwalter haben Zugriff auf alle Funktionen dieses Benutzerkontos und können dessen Einstellungen ändern.";
+$a->strings["Delegates"] = "Bevollmächtigte";
+$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 Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
+$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
+$a->strings["Remove"] = "Entfernen";
+$a->strings["Add"] = "Hinzufügen";
+$a->strings["No entries."] = "Keine Einträge.";
+$a->strings["Recent Photos"] = "Neueste Fotos";
+$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
+$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
+$a->strings["Album not found."] = "Album nicht gefunden.";
+$a->strings["Delete Album"] = "Album löschen";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?";
+$a->strings["Delete Photo"] = "Foto löschen";
+$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?";
+$a->strings["a photo"] = "einem Foto";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
+$a->strings["Image upload didn't complete, please try again"] = "Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut.";
+$a->strings["Image file is missing"] = "Bilddatei konnte nicht gefunden werden.";
+$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Der Server kann derzeit keine neuen Datei Uploads akzeptieren. Bitte kontaktiere deinen Administrator.";
+$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["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["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["Map"] = "Karte";
+$a->strings["View Album"] = "Album betrachten";
+$a->strings["Edit contact"] = "Kontakt bearbeiten";
+$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
+$a->strings["Community option not available."] = "Optionen für die Gemeinschaftsseite nicht verfügbar.";
+$a->strings["Not available."] = "Nicht verfügbar.";
+$a->strings["Local Community"] = "Lokale Gemeinschaft";
+$a->strings["Posts from local users on this server"] = "Beiträge von Nutzern dieses Servers";
+$a->strings["Global Community"] = "Globale Gemeinschaft";
+$a->strings["Posts from users of the whole federated network"] = "Beiträge von Nutzern des gesamten föderalen Netzwerks";
+$a->strings["No results."] = "Keine Ergebnisse.";
+$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Diese Gemeinschaftsseite zeigt alle öffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers.";
+$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
+$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
+$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
+$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
+$a->strings["Message sent."] = "Nachricht gesendet.";
+$a->strings["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["Send Private Message"] = "Private Nachricht senden";
+$a->strings["To:"] = "An:";
+$a->strings["Subject:"] = "Betreff:";
+$a->strings["No messages."] = "Keine Nachrichten.";
+$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
+$a->strings["Delete message"] = "Nachricht löschen";
+$a->strings["D, d M Y - g:i A"] = "D, d. M Y - H:i";
+$a->strings["Delete conversation"] = "Unterhaltung löschen";
+$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten.";
+$a->strings["Send Reply"] = "Antwort senden";
+$a->strings["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 message"] = [
+ 0 => "%d Nachricht",
+ 1 => "%d Nachrichten",
+];
+$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["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["Contact wasn't found or can't be unfollowed."] = "Der Kontakt konnte nicht gefunden oder nicht entfolgt werden.";
+$a->strings["Contact unfollowed"] = "Kontakt wird nicht mehr gefolgt";
+$a->strings["Submit Request"] = "Anfrage abschicken";
+$a->strings["You aren't a friend of this contact."] = "Du hast keine beidseitige Freundschaft mit diesem Kontakt.";
+$a->strings["Unfollowing is currently not supported by your network."] = "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt.";
+$a->strings["Disconnect/Unfollow"] = "Verbindung lösen/Nicht mehr folgen";
+$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
+$a->strings["Invalid request."] = "Ungültige Anfrage";
+$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["Tips for New Members"] = "Tipps für neue Nutzer";
+$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["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"] = [
+ 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["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 abonnieren 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 this profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an.";
+$a->strings["Confirm"] = "Bestätigen";
+$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
+$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:";
+$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today ."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica Server zu finden und beizutreten.";
+$a->strings["Friend/Connection Request"] = "Kontaktanfrage";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de";
+$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["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)";
+$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)";
+$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["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
+$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
+$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
+$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers jetzt , wenn Du Dir unsicher bist, was Du tun willst.";
+$a->strings["No mirroring"] = "Kein Spiegeln";
+$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
+$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
+$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
+$a->strings["Refetch contact data"] = "Kontaktdaten neu laden";
+$a->strings["Remote Self"] = "Entfernte Konten";
+$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden.";
+$a->strings["Account Nickname"] = "Konto-Spitzname";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
+$a->strings["Account URL"] = "Konto-URL";
+$a->strings["Friend Request URL"] = "URL für Kontaktschaftsanfragen";
+$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["Welcome to %s"] = "Willkommen zu %s";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
+$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["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
+$a->strings["Access denied."] = "Zugriff verweigert.";
+$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["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?"] = "Soll die Verbindung beidseitig sein oder nicht?";
+$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s.";
+$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten.";
+$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten.";
+$a->strings["Friend"] = "Kontakt";
+$a->strings["Sharer"] = "Teilenden";
+$a->strings["Subscriber"] = "Abonnent";
+$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["Not Extended"] = "Nicht erweitert.";
+$a->strings["Not Found"] = "Nicht gefunden";
+$a->strings["The contact could not be added."] = "Der Kontakt konnte nicht hinzugefügt werden.";
+$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["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["%d contact edited."] = [
+ 0 => "%d Kontakt bearbeitet.",
+ 1 => "%d Kontakte bearbeitet.",
+];
+$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
+$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
+$a->strings["Contact updated."] = "Kontakt aktualisiert.";
+$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
+$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
+$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
+$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
+$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
+$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
+$a->strings["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["Never"] = "Niemals";
+$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
+$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
+$a->strings["Suggest friends"] = "Kontakte vorschlagen";
+$a->strings["Network type: %s"] = "Netzwerktyp: %s";
+$a->strings["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 like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht all zu viel Text beinhaltet. Schlagwörter werden auf den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet.";
+$a->strings["Fetch information"] = "Beziehe Information";
+$a->strings["Fetch keywords"] = "Schlüsselwprter abrufen";
+$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["Their personal note"] = "Die persönliche Mitteilung";
+$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["Awaiting connection acknowledge"] = "Bedarf der Bestätigung des Kontakts";
+$a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein";
+$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
+$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt.";
+$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
+$a->strings["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["Results for: %s"] = "Ergebnisse für: %s";
+$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["The post was created"] = "Der Beitrag wurde angelegt";
+$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
+$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast.";
+$a->strings["\n\t\tFollow this link soon 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["Request has expired, please make a new one."] = "Die Anfrage ist abgelaufen. Bitte stelle eine erneute.";
+$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["Reset"] = "Zurücksetzen";
+$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
+$a->strings["Your new password is"] = "Dein neues Passwort lautet";
+$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann";
+$a->strings["click here to login"] = "hier klicken, um Dich anzumelden";
+$a->strings["Your password may be changed from the Settings page after successful login."] = "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast.";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst).";
+$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden.";
+$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
+$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
+$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
+$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
+$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet.";
+$a->strings["System check"] = "Systemtest";
+$a->strings["Check again"] = "Noch einmal testen";
+$a->strings["Database connection"] = "Datenbankverbindung";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst.";
+$a->strings["Database Server Name"] = "Datenbank-Server";
+$a->strings["Database Login Name"] = "Datenbank-Nutzer";
+$a->strings["Database Login Password"] = "Datenbank-Passwort";
+$a->strings["For security reasons the password must not be empty"] = "Aus Sicherheitsgründen darf das Passwort nicht leer sein.";
+$a->strings["Database Name"] = "Datenbank-Name";
+$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst.";
+$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite";
+$a->strings["Site settings"] = "Server-Einstellungen";
+$a->strings["System Language:"] = "Systemsprache:";
+$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
+$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker' "] = "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten'für das Worker Setup' ";
+$a->strings["PHP executable path"] = "Pfad zu PHP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
+$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)";
+$a->strings["Found PHP version: "] = "Gefundene PHP Version:";
+$a->strings["PHP cli binary"] = "PHP CLI Binary";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert.";
+$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
+$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
+$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
+$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
+$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
+$a->strings["PDO or MySQLi PHP module"] = "PDO oder MySQLi PHP Modul";
+$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
+$a->strings["XML PHP module"] = "XML PHP Modul";
+$a->strings["iconv PHP module"] = "PHP iconv Modul";
+$a->strings["POSIX PHP module"] = "PHP POSIX Modul";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
+$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert.";
+$a->strings["Error: The MySQL driver for PDO is not installed."] = "Fehler: der MySQL Treiber für PDO ist nicht installiert";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
+$a->strings["Error: iconv PHP module required but not installed."] = "Fehler: Das iconv-Modul von PHP ist nicht installiert.";
+$a->strings["Error: POSIX PHP module required but not installed."] = "Fehler POSIX PHP Modul erforderlich aber nicht installiert.";
+$a->strings["Error, XML PHP module required but not installed."] = "Fehler: XML PHP Modul erforderlich aber nicht installiert.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt.";
+$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
+$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
+$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagicx PHP Erweiterung ist nicht installiert.";
+$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP Erweiterung ist installiert";
+$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["What next "] = "Wie geht es weiter? ";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "Wichtig: Du musst [manuell] einen Cronjob (o.ä.) für den Worker einrichten.";
+$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Du solltest nun die Seite zur Nutzerregistrierung deiner neuen Friendica Instanz besuchen und einen neuen Nutzer einrichten. Bitte denke daran die selbe E-Mail Adresse anzugeben, die du auch als Administrator E-Mail angegeben hast, damit du das Admin-Panel verwenden kannst.";
$a->strings["Source input"] = "Originaltext:";
+$a->strings["BBCode::toPlaintext"] = "BBCode::toPlaintext";
$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (pures HTML)";
$a->strings["BBCode::convert"] = "BBCode::convert";
$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::convert => HTML::toBBCode";
@@ -1316,178 +2026,77 @@ $a->strings["Source text"] = "Quelltext";
$a->strings["BBCode"] = "BBCode";
$a->strings["Markdown"] = "Markdown";
$a->strings["HTML"] = "HTML";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Homepage:";
-$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["The contact could not be added."] = "Der Kontakt konnte nicht hinzugefügt werden.";
-$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["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 Friendi.ca to learn more about the Friendica project."] = "Bitte besuche Friendi.ca 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"] = "den Bugtracker auf github";
-$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Vorschläge, Lob usw.: E-Mail an \"Info\" at \"Friendi - dot ca\"";
-$a->strings["Installed addons/apps:"] = "Installierte Apps und Addons";
-$a->strings["No installed addons/apps"] = "Es sind keine Addons oder Apps installiert";
-$a->strings["Read about the Terms of Service of this node."] = "Erfahre mehr über die Nutzungsbedingungen dieses Knotens.";
-$a->strings["On this server the following remote servers are blocked."] = "Auf diesem Server werden die folgenden entfernten Server blockiert.";
-$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
-$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
-$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
-$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
-$a->strings["%d message sent."] = [
- 0 => "%d Nachricht gesendet.",
- 1 => "%d Nachrichten gesendet.",
-];
-$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden.";
-$a->strings["To accept this invitation, please visit and register at %s."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s.";
-$a->strings["Send invitations"] = "Einladungen senden";
-$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca.";
-$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
-$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast.";
-$a->strings["\n\t\tFollow this link soon 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["Request has expired, please make a new one."] = "Die Anfrage ist abgelaufen. Bitte stelle eine erneute.";
-$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["Password Reset"] = "Passwort zurücksetzen";
-$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
-$a->strings["Your new password is"] = "Dein neues Passwort lautet";
-$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann";
-$a->strings["click here to login"] = "hier klicken, um Dich anzumelden";
-$a->strings["Your password may be changed from the Settings page after successful login."] = "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast.";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst).";
-$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden.";
-$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert";
-$a->strings["add"] = "hinzufügen";
-$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
- 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["No such group"] = "Es gibt keine solche Gruppe";
-$a->strings["Group: %s"] = "Gruppe: %s";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
-$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
-$a->strings["Commented Order"] = "Neueste Kommentare";
-$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
-$a->strings["Posted Order"] = "Neueste Beiträge";
-$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
-$a->strings["Personal"] = "Persönlich";
-$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht";
-$a->strings["New"] = "Neue";
-$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
-$a->strings["Shared Links"] = "Geteilte Links";
-$a->strings["Interesting Links"] = "Interessante Links";
-$a->strings["Starred"] = "Markierte";
-$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
-$a->strings["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["Location"] = "Wohnort";
-$a->strings["Profile updated."] = "Profil aktualisiert.";
-$a->strings[" and "] = " und ";
-$a->strings["public profile"] = "öffentliches Profil";
-$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s geändert auf “%3\$s”";
-$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
-$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
-$a->strings["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["Edit visibility"] = "Sichtbarkeit bearbeiten";
-$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["Miscellaneous"] = "Verschiedenes";
-$a->strings["Your Gender:"] = "Dein Geschlecht:";
-$a->strings["♥ Marital Status:"] = "♥ Beziehungsstatus:";
-$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:";
-$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
-$a->strings["Profile Name:"] = "Profilname:";
-$a->strings["This is your public profile. It may be visible to anybody using the internet."] = "Dies ist Dein öffentliches Profil. Es könnte für jeden Nutzer des Internets sichtbar sein.";
-$a->strings["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["Age: "] = "Alter: ";
-$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["Hometown:"] = "Heimatort:";
-$a->strings["Political Views:"] = "Politische Ansichten:";
-$a->strings["Religious Views:"] = "Religiöse Ansichten:";
-$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
-$a->strings["(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["Likes:"] = "Likes:";
-$a->strings["Dislikes:"] = "Dislikes:";
-$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["Profile Image"] = "Profilbild";
-$a->strings["visible to everybody"] = "sichtbar für jeden";
-$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
-$a->strings["Change profile photo"] = "Profilbild ändern";
-$a->strings["Create New Profile"] = "Neues Profil anlegen";
+$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
+$a->strings["Visible to:"] = "Sichtbar für:";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
+$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
+$a->strings["No recipient."] = "Kein Empfänger.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
+$a->strings["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["System down for maintenance"] = "System zur Wartung abgeschaltet";
+$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["You must be logged in to use this module"] = "Du musst eingeloggt sein um dieses Modul benutzen zu können.";
+$a->strings["Source URL"] = "URL der Quelle";
+$a->strings["Only logged in users are permitted to perform a search."] = "Nur eingeloggten Benutzern ist das Suchen gestattet.";
+$a->strings["Too Many Requests"] = "Zu viele Abfragen";
+$a->strings["Only one search per minute is permitted for not logged in users."] = "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet.";
+$a->strings["Items tagged with: %s"] = "Beiträge die mit %s getaggt sind";
+$a->strings["Export account"] = "Account exportieren";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
+$a->strings["Export all"] = "Alles exportieren";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert).";
+$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
+$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
+$a->strings["Getting Started"] = "Einstieg";
+$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
+$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst.";
+$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
+$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um 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 default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner 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 Add New Contact 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 Neuen Kontakt hinzufügen ein.";
+$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst.";
+$a->strings["Finding New People"] = "Neue Leute kennenlernen";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue 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 help pages may be consulted for detail on other program features and resources."] = "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
+$a->strings["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["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["Remote site reported: "] = "Gegenstelle meldet: ";
+$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["- select -"] = "- auswählen -";
$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet.";
$a->strings["Failed to send email message. Here your accout details: login: %s password: %s You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern.";
$a->strings["Registration successful."] = "Registrierung erfolgreich.";
@@ -1503,223 +2112,32 @@ $a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft
$a->strings["Your invitation code: "] = "Dein Einladungscode";
$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):";
$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Deine E-Mail Adresse (Informationen zur Registrierung werden an diese Adresse gesendet, darum muss sie existieren.)";
-$a->strings["New Password:"] = "Neues Passwort:";
$a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren.";
-$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 'nickname@%s '."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@%s ' sein.";
$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
-$a->strings["Register"] = "Registrieren";
$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz";
-$a->strings["User deleted their account"] = "Gelöschter Nutzeraccount";
-$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Ein Nutzer deiner Friendica Instanz hat seinen Account gelöscht. Bitte stelle sicher, dass deren Daten aus deinen Backups entfernt werden.";
-$a->strings["The user id is %d"] = "Die ID des Users lautet %d";
-$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["Display"] = "Anzeige";
-$a->strings["Social Networks"] = "Soziale Netzwerke";
-$a->strings["Delegations"] = "Delegationen";
-$a->strings["Connected apps"] = "Verbundene Programme";
-$a->strings["Remove account"] = "Konto löschen";
-$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
-$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.";
-$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet.";
-$a->strings["Features updated"] = "Features aktualisiert";
-$a->strings["Relocate message has been send to your contacts"] = "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet.";
-$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
-$a->strings["The new password has been exposed in a public data dump, please choose another."] = "Das neuer Passwort wurde in einem öffentlichen Daten-Dump veröffentlicht. Bitte verwende ein anderes Passwort.";
-$a->strings["Wrong password."] = "Falsches Passwort.";
-$a->strings["Password changed."] = "Passwort geändert.";
-$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal.";
-$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen.";
-$a->strings[" Name too short."] = " Name ist zu kurz.";
-$a->strings["Wrong Password"] = "Falsches Passwort";
-$a->strings["Invalid email."] = "Ungültige E-Mail-Adresse.";
-$a->strings["Cannot change to that email."] = "Ändern der E-Mail nicht möglich. ";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt.";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte.";
-$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
-$a->strings["Add application"] = "Programm hinzufügen";
-$a->strings["Consumer Key"] = "Consumer Key";
-$a->strings["Consumer Secret"] = "Consumer Secret";
-$a->strings["Redirect"] = "Umleiten";
-$a->strings["Icon url"] = "Icon URL";
-$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten.";
-$a->strings["Connected Apps"] = "Verbundene Programme";
-$a->strings["Edit"] = "Bearbeiten";
-$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit";
-$a->strings["No name"] = "Kein Name";
-$a->strings["Remove authorization"] = "Autorisierung entziehen";
-$a->strings["No Addon settings configured"] = "Keine Addon-Einstellungen konfiguriert";
-$a->strings["Addon Settings"] = "Addon Einstellungen";
-$a->strings["Additional Features"] = "Zusätzliche Features";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings["enabled"] = "eingeschaltet";
-$a->strings["disabled"] = "ausgeschaltet";
-$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s";
-$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)";
-$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert.";
-$a->strings["General Social Media Settings"] = "Allgemeine Einstellungen zu Sozialen Medien";
-$a->strings["Disable Content Warning"] = "Inhaltswarnungen ausschalten";
-$a->strings["Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn't affect any other content filtering you eventually set up."] = "Nutzer von anderen Netzwerken, wie z.B. Mastodon oder Pleroma, können Inhaltswarnungen, welche die Beiträge standardmäßig einklappen. Diese Einstellung deaktiviert das automatische Einklappt solcher Beiträge und setzt die Inhaltswarnung als Titel des Beitrags. Wenn du andere Filtereinstellungen vorgenommen hast, werden diese hierdurch nicht beeinflusst.";
-$a->strings["Disable intelligent shortening"] = "Intelligentes Link kürzen ausschalten";
-$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt.";
-$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen";
-$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,.";
-$a->strings["Default group for OStatus contacts"] = "Voreingestellte Gruppe für OStatus Kontakte";
-$a->strings["Your legacy GNU Social account"] = "Dein alter GNU Social Account";
-$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "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.";
-$a->strings["Repair OStatus subscriptions"] = "OStatus Abonnements reparieren";
-$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an.";
-$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check";
-$a->strings["IMAP server name:"] = "IMAP-Server-Name:";
-$a->strings["IMAP port:"] = "IMAP-Port:";
-$a->strings["Security:"] = "Sicherheit:";
-$a->strings["None"] = "Keine";
-$a->strings["Email login name:"] = "E-Mail-Login-Name:";
-$a->strings["Email password:"] = "E-Mail-Passwort:";
-$a->strings["Reply-to address:"] = "Reply-to Adresse:";
-$a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Beiträge an alle E-Mail-Kontakte:";
-$a->strings["Action after import:"] = "Aktion nach Import:";
-$a->strings["Mark as seen"] = "Als gelesen markieren";
-$a->strings["Move to folder"] = "In einen Ordner verschieben";
-$a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
-$a->strings["%s - (Unsupported)"] = "%s - (Nicht unterstützt)";
-$a->strings["%s - (Experimental)"] = "%s - (Experimentell)";
-$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 Sekunden. Gib -1 ein um abzuschalten.";
-$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: ";
-$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge";
-$a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:";
-$a->strings["Don't show emoticons"] = "Keine Smilies anzeigen";
-$a->strings["Calendar"] = "Kalender";
-$a->strings["Beginning of week:"] = "Wochenbeginn:";
-$a->strings["Don't show notices"] = "Info-Popups nicht anzeigen";
-$a->strings["Infinite scroll"] = "Endloses Scrollen";
-$a->strings["Automatic updates only at the top of the network page"] = "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist.";
-$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "Wenn dies deaktiviert ist, wird die Netzwerk Seite aktualisiert, wann immer neue Beiträge eintreffen, egal an welcher Stelle gerade gelesen wird.";
-$a->strings["Bandwith Saver Mode"] = "Bandbreiten-Spar-Modus";
-$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden.";
-$a->strings["Smart Threading"] = "Intelligentes Threading";
-$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "Ist dies aktiviert, werden Einrückungen in Unterhaltungen unterdrückt wo sie nicht benötigt werden. Werden sie benötigt, werden die Threads weiterhin eingerückt.";
-$a->strings["General Theme Settings"] = "Allgemeine Themeneinstellungen";
-$a->strings["Custom Theme Settings"] = "Benutzerdefinierte Theme Einstellungen";
-$a->strings["Content Settings"] = "Einstellungen zum Inhalt";
-$a->strings["Theme settings"] = "Themeneinstellungen";
-$a->strings["Unable to find your profile. Please contact your admin."] = "Konnte dein Profil nicht finden. Bitte kontaktiere den Admin.";
-$a->strings["Account Types"] = "Kontenarten";
-$a->strings["Personal Page Subtypes"] = "Unterarten der persönlichen Seite";
-$a->strings["Community Forum Subtypes"] = "Unterarten des Gemeinschaftsforums";
-$a->strings["Personal Page"] = "Persönliche Seite";
-$a->strings["Account for a personal profile."] = "Konto für ein persönliches Profil.";
-$a->strings["Organisation Page"] = "Organisationsseite";
-$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = "Konto für eine Organisation, das Kontaktanfragen automatisch als \"Follower\" annimmt.";
-$a->strings["News Page"] = "Nachrichtenseite";
-$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = "Konto für einen Feedspiegel, das Kontaktanfragen automatisch als \"Follower\" annimmt.";
-$a->strings["Community Forum"] = "Gemeinschaftsforum";
-$a->strings["Account for community discussions."] = "Konto für Diskussionsforen. ";
-$a->strings["Normal Account Page"] = "Normales Konto";
-$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = "Konto für ein normales persönliches Profil. Kontaktanfragen müssen manuell als \"Friend\" oder \"Follower\" bestätigt werden.";
-$a->strings["Soapbox Page"] = "Marktschreier-Konto";
-$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = "Konto für ein öffentliches Profil, das Kontaktanfragen automatisch als \"Follower\" annimmt.";
-$a->strings["Public Forum"] = "Öffentliches Forum";
-$a->strings["Automatically approves all contact requests."] = "Bestätigt alle Kontaktanfragen automatisch.";
-$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite";
-$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als \"Friend\" annimmt.";
-$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]";
-$a->strings["Requires manual approval of contact requests."] = "Kontaktanfragen müssen manuell bestätigt werden.";
-$a->strings["OpenID:"] = "OpenID:";
-$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID.";
-$a->strings["Publish your default profile in your local site directory?"] = "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?";
-$a->strings["Your profile will be published in the global friendica directories (e.g. %s ). Your profile will be visible in public."] = "Dein Profil wird in den globalen Friendica Verzeichnissen (z.B. %s ) veröffentlicht. Dein Profil wird öffentlich auffindbar sein.";
-$a->strings["Publish your default profile in the global social directory?"] = "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?";
-$a->strings["Your profile will be published in this node's local directory . Your profile details may be publicly visible depending on the system settings."] = "Dein Profil wird im lokalen Verzeichnis dieses Knotens veröffentlicht. Je nach Systemeinstellungen kann es öffentlich auffindbar sein.";
-$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?";
-$a->strings["Your contact list won't be shown in your default profile page. You can decide to show your contact list separately for each additional profile you create"] = "Die Liste deiner Kontakte wird nicht in deinem Standard-Profil angezeigt werden. Du kannst für jedes weitere Profil diese Entscheidung separat einstellen.";
-$a->strings["Hide your profile details from anonymous viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
-$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Disables posting public messages to Diaspora and other networks."] = "Anonyme Besucher deines Profils werden ausschließlich dein Profilbild, deinen Namen sowie deinen Spitznamen sehen. Ist diese Option aktiv, können keine öffentlichen Beiträge zu Diaspora und anderen Netzwerken veröffentlicht werden.";
-$a->strings["Allow friends to post to your profile page?"] = "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?";
-$a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = "Deine Kontakte können Beiträge auf deiner Pinnwand hinterlassen. Diese werden an deine Kontakte verteilt.";
-$a->strings["Allow friends to tag your posts?"] = "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?";
-$a->strings["Your contacts can add additional tags to your posts."] = "Deine Kontakte dürfen deine Beiträge mit zusätzlichen Schlagworten versehen.";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
-$a->strings["If you like, Friendica may suggest new members to add you as a contact."] = "Wenn du magst, kann Friendica dich neuen Mitgliedern als Kontakt vorschlagen.";
-$a->strings["Permit unknown people to send you private mail?"] = "Dürfen Dir Unbekannte private Nachrichten schicken?";
-$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = "Nutzer des Friendica Netzwerks können dir private Nachrichten senden, selbst wenn sie nicht in deine Kontaktliste sind.";
-$a->strings["Profile is not published ."] = "Profil ist nicht veröffentlicht .";
-$a->strings["Your Identity Address is '%s' or '%s'."] = "Die Adresse deines Profils lautet '%s' oder '%s'.";
-$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:";
-$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht.";
-$a->strings["Advanced expiration settings"] = "Erweiterte Verfallseinstellungen";
-$a->strings["Advanced Expiration"] = "Erweitertes Verfallen";
-$a->strings["Expire posts:"] = "Beiträge verfallen lassen:";
-$a->strings["Expire personal notes:"] = "Persönliche Notizen verfallen lassen:";
-$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:";
-$a->strings["Expire photos:"] = "Fotos verfallen lassen:";
-$a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:";
-$a->strings["Account Settings"] = "Kontoeinstellungen";
-$a->strings["Password Settings"] = "Passwort-Einstellungen";
-$a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern";
-$a->strings["Current Password:"] = "Aktuelles Passwort:";
-$a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Änderungen zu bestätigen";
-$a->strings["Password:"] = "Passwort:";
-$a->strings["Basic Settings"] = "Grundeinstellungen";
-$a->strings["Full Name:"] = "Kompletter Name:";
-$a->strings["Email Address:"] = "E-Mail-Adresse:";
-$a->strings["Your Timezone:"] = "Deine Zeitzone:";
-$a->strings["Your Language:"] = "Deine Sprache:";
-$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken";
-$a->strings["Default Post Location:"] = "Standardstandort:";
-$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
-$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen";
-$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl vonKontaktanfragen/Tag:";
-$a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)";
-$a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge";
-$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
-$a->strings["Default Private Post"] = "Privater Standardbeitrag";
-$a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag";
-$a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge";
-$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:";
-$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen";
-$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:";
-$a->strings["accepting a friend request"] = "– Du eine Kontaktanfrage akzeptierst";
-$a->strings["joining a forum/community"] = "– Du einem Forum/einer Gemeinschaftsseite beitrittst";
-$a->strings["making an interesting profile change"] = "– Du eine interessante Änderung an Deinem Profil durchführst";
-$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:";
-$a->strings["You receive an introduction"] = "– Du eine Kontaktanfrage erhältst";
-$a->strings["Your introductions are confirmed"] = "– eine Deiner Kontaktanfragen akzeptiert wurde";
-$a->strings["Someone writes on your profile wall"] = "– jemand etwas auf Deine Pinnwand schreibt";
-$a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommentar verfasst";
-$a->strings["You receive a private message"] = "– Du eine private Nachricht erhältst";
-$a->strings["You receive a friend suggestion"] = "– Du eine Empfehlung erhältst";
-$a->strings["You are tagged in a post"] = "– Du in einem Beitrag erwähnt wirst";
-$a->strings["You are poked/prodded/etc. in a post"] = "– Du von jemandem angestupst oder sonstwie behandelt wirst";
-$a->strings["Activate desktop notifications"] = "Desktop Benachrichtigungen einschalten";
-$a->strings["Show desktop popup on new notifications"] = "Desktop Benachrichtigungen einschalten";
-$a->strings["Text-only notification emails"] = "Benachrichtigungs E-Mail als Rein-Text.";
-$a->strings["Send text only notification emails, without the html part"] = "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil";
-$a->strings["Show detailled notifications"] = "Detaillierte Benachrichtigungen anzeigen";
-$a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = "Normalerweise werde alle Benachrichtigungen zu einem Thema zusammengefasst in einer einzigen Mitteilung. Wenn diese Option aktiviert ist, wird jede Mitteilung angezeigt.";
-$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen";
-$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:";
-$a->strings["Relocate"] = "Umziehen";
-$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button.";
-$a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden";
-$a->strings["default"] = "Standard";
-$a->strings["greenzero"] = "greenzero";
-$a->strings["purplezero"] = "purplezero";
-$a->strings["easterbunny"] = "easterbunny";
-$a->strings["darkzero"] = "darkzero";
-$a->strings["comix"] = "comix";
-$a->strings["slackr"] = "slackr";
-$a->strings["Variations"] = "Variationen";
+$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
+$a->strings["Only logged in users are permitted to perform a probing."] = "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet.";
+$a->strings["Help:"] = "Hilfe:";
+$a->strings["Page not found."] = "Seite nicht gefunden.";
+$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
+$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
+$a->strings["Visible To"] = "Sichtbar für";
+$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
+$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
+$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
+$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["Item not found"] = "Beitrag nicht gefunden";
+$a->strings["Edit post"] = "Beitrag bearbeiten";
+$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["Repeat the image"] = "Bild wiederholen";
$a->strings["Will repeat your image to fill the background."] = "Wiederholt das Bild um den Hintergrund auszufüllen.";
$a->strings["Stretch"] = "Strecken";
@@ -1743,28 +2161,7 @@ $a->strings["Login page background color"] = "Hintergrundfarbe der Login-Seite";
$a->strings["Leave background image and color empty for theme defaults"] = "Wenn die Theme Vorgaben verwendet werden sollen, lass bitte die Felder für die Hintergrundfarbe und das Hintergrundbild leer.";
$a->strings["Guest"] = "Gast";
$a->strings["Visitor"] = "Besucher";
-$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";
-$a->strings["Your photos"] = "Deine Fotos";
-$a->strings["Videos"] = "Videos";
-$a->strings["Your videos"] = "Deine Videos";
-$a->strings["Your events"] = "Deine Ereignisse";
-$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte";
-$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
-$a->strings["Private mail"] = "Private E-Mail";
-$a->strings["Account settings"] = "Kontoeinstellungen";
-$a->strings["Manage/edit friends and contacts"] = " Kontakte verwalten/editieren";
-$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["Comma separated list of helper forums"] = "Komma-Separierte Liste der Helfer-Foren";
-$a->strings["don't show"] = "nicht zeigen";
-$a->strings["show"] = "zeigen";
$a->strings["Set style"] = "Stil auswählen";
$a->strings["Community Pages"] = "Foren";
$a->strings["Community Profiles"] = "Community-Profile";
@@ -1773,409 +2170,12 @@ $a->strings["Connect Services"] = "Verbinde Dienste";
$a->strings["Find Friends"] = "Kontakte finden";
$a->strings["Last users"] = "Letzte Nutzer";
$a->strings["Local Directory"] = "Lokales Verzeichnis";
-$a->strings["Similar Interests"] = "Ähnliche Interessen";
-$a->strings["Invite Friends"] = "Freunde einladen";
-$a->strings["External link to forum"] = "Externer Link zum Forum";
$a->strings["Quick Start"] = "Schnell-Start";
-$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["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"] = [
- 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["Post to Email"] = "An E-Mail senden";
-$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
-$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
-$a->strings["Visible to everybody"] = "Für jeden sichtbar";
-$a->strings["Close"] = "Schließen";
-$a->strings["Enter new password: "] = "Neues Passwort eingeben:";
-$a->strings["Password can't be empty"] = "Das Passwort kann nicht leer sein";
-$a->strings["System"] = "System";
-$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["Birthday:"] = "Geburtstag:";
-$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["months"] = "Monate";
-$a->strings["weeks"] = "Wochen";
-$a->strings["days"] = "Tage";
-$a->strings["hour"] = "Stunde";
-$a->strings["hours"] = "Stunden";
-$a->strings["minute"] = "Minute";
-$a->strings["minutes"] = "Minuten";
-$a->strings["second"] = "Sekunde";
-$a->strings["seconds"] = "Sekunden";
-$a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s";
-$a->strings["view full size"] = "Volle Größe anzeigen";
-$a->strings["Image/photo"] = "Bild/Foto";
-$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s";
-$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
-$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
-$a->strings["Invalid source protocol"] = "Ungültiges Quell-Protokoll";
-$a->strings["Invalid link protocol"] = "Ungültiges Link-Protokoll";
-$a->strings["Nothing new here"] = "Keine Neuigkeiten";
-$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
-$a->strings["Personal notes"] = "Persönliche Notizen";
-$a->strings["Your personal notes"] = "Deine persönlichen Notizen";
-$a->strings["Sign in"] = "Anmelden";
-$a->strings["Home Page"] = "Homepage";
-$a->strings["Create an account"] = "Nutzerkonto erstellen";
-$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
-$a->strings["Apps"] = "Apps";
-$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
-$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
-$a->strings["Community"] = "Gemeinschaft";
-$a->strings["Conversations on this and other servers"] = "Unterhaltungen auf diesem und anderer Server";
-$a->strings["Directory"] = "Verzeichnis";
-$a->strings["People directory"] = "Nutzerverzeichnis";
-$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz";
-$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
-$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
-$a->strings["Friend Requests"] = "Kontaktanfragen";
-$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
-$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
-$a->strings["Inbox"] = "Eingang";
-$a->strings["Outbox"] = "Ausgang";
-$a->strings["Manage"] = "Verwalten";
-$a->strings["Manage other pages"] = "Andere Seiten verwalten";
-$a->strings["Profiles"] = "Profile";
-$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
-$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
-$a->strings["Navigation"] = "Navigation";
-$a->strings["Site map"] = "Sitemap";
-$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["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["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
-$a->strings["Network Tabs"] = "Netzwerk Reiter";
-$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast";
-$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
-$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
-$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
-$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
-$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
-$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
-$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren.";
-$a->strings["Tagging"] = "Tagging";
-$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
-$a->strings["Post Categories"] = "Beitragskategorien";
-$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
-$a->strings["Saved Folders"] = "Gespeicherte Ordner";
-$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
-$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
-$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
-$a->strings["Star Posts"] = "Beiträge Markieren";
-$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren";
-$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten";
-$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
-$a->strings["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["Tag Cloud"] = "Schlagwort Wolke";
-$a->strings["Provide a personal tag cloud on your profile page"] = "Wortwolke aus den von dir verwendeten Schlagwörtern im Profil anzeigen.";
-$a->strings["Display Membership Date"] = "Mitgliedschaftsdatum anzeigen";
-$a->strings["Display membership date in profile"] = "Soll das Datum der Registrierung deines Accounts im Profil angezeigt werden.";
-$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
-$a->strings["Embedded content"] = "Eingebetteter Inhalt";
-$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["Add New Contact"] = "Neuen Kontakt hinzufügen";
-$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
-$a->strings["%d invitation available"] = [
- 0 => "%d Einladung verfügbar",
- 1 => "%d Einladungen verfügbar",
-];
-$a->strings["Find People"] = "Leute finden";
-$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
-$a->strings["Random Profile"] = "Zufälliges Profil";
-$a->strings["View Global Directory"] = "Globales Verzeichnis betrachten";
-$a->strings["Networks"] = "Netzwerke";
-$a->strings["All Networks"] = "Alle Netzwerke";
-$a->strings["Everything"] = "Alles";
-$a->strings["Categories"] = "Kategorien";
-$a->strings["%d contact in common"] = [
- 0 => "%d gemeinsamer Kontakt",
- 1 => "%d gemeinsame Kontakte",
-];
-$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["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$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 Connector";
-$a->strings["GNU Social Connector"] = "GNU social Connector";
-$a->strings["pnut"] = "pnut";
-$a->strings["App.net"] = "App.net";
-$a->strings["Male"] = "Männlich";
-$a->strings["Female"] = "Weiblich";
-$a->strings["Currently Male"] = "Momentan männlich";
-$a->strings["Currently Female"] = "Momentan weiblich";
-$a->strings["Mostly Male"] = "Hauptsächlich männlich";
-$a->strings["Mostly Female"] = "Hauptsächlich weiblich";
-$a->strings["Transgender"] = "Transgender";
-$a->strings["Intersex"] = "Intersex";
-$a->strings["Transsexual"] = "Transsexuell";
-$a->strings["Hermaphrodite"] = "Hermaphrodit";
-$a->strings["Neuter"] = "Neuter";
-$a->strings["Non-specific"] = "Nicht spezifiziert";
-$a->strings["Other"] = "Andere";
-$a->strings["Males"] = "Männer";
-$a->strings["Females"] = "Frauen";
-$a->strings["Gay"] = "Schwul";
-$a->strings["Lesbian"] = "Lesbisch";
-$a->strings["No Preference"] = "Keine Vorlieben";
-$a->strings["Bisexual"] = "Bisexuell";
-$a->strings["Autosexual"] = "Autosexual";
-$a->strings["Abstinent"] = "Abstinent";
-$a->strings["Virgin"] = "Jungfrauen";
-$a->strings["Deviant"] = "Deviant";
-$a->strings["Fetish"] = "Fetish";
-$a->strings["Oodles"] = "Oodles";
-$a->strings["Nonsexual"] = "Nonsexual";
-$a->strings["Single"] = "Single";
-$a->strings["Lonely"] = "Einsam";
-$a->strings["Available"] = "Verfügbar";
-$a->strings["Unavailable"] = "Nicht verfügbar";
-$a->strings["Has crush"] = "verknallt";
-$a->strings["Infatuated"] = "verliebt";
-$a->strings["Dating"] = "Dating";
-$a->strings["Unfaithful"] = "Untreu";
-$a->strings["Sex Addict"] = "Sexbesessen";
-$a->strings["Friends"] = "Kontakte";
-$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen";
-$a->strings["Casual"] = "Casual";
-$a->strings["Engaged"] = "Verlobt";
-$a->strings["Married"] = "Verheiratet";
-$a->strings["Imaginarily married"] = "imaginär verheiratet";
-$a->strings["Partners"] = "Partner";
-$a->strings["Cohabiting"] = "zusammenlebend";
-$a->strings["Common law"] = "wilde Ehe";
-$a->strings["Happy"] = "Glücklich";
-$a->strings["Not looking"] = "Nicht auf der Suche";
-$a->strings["Swinger"] = "Swinger";
-$a->strings["Betrayed"] = "Betrogen";
-$a->strings["Separated"] = "Getrennt";
-$a->strings["Unstable"] = "Unstabil";
-$a->strings["Divorced"] = "Geschieden";
-$a->strings["Imaginarily divorced"] = "imaginär geschieden";
-$a->strings["Widowed"] = "Verwitwet";
-$a->strings["Uncertain"] = "Unsicher";
-$a->strings["It's complicated"] = "Ist kompliziert";
-$a->strings["Don't care"] = "Ist mir nicht wichtig";
-$a->strings["Ask me"] = "Frag mich";
-$a->strings["There are no tables on MyISAM."] = "Es gibt keine MyISAM Tabellen.";
-$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\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["\nError %d occurred during database update:\n%s\n"] = "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n";
-$a->strings["Errors encountered performing database changes: "] = "Fehler beim Ändern der Datenbank aufgetreten";
-$a->strings[": Database update"] = ": Datenbank Update";
-$a->strings["%s: updating %s table."] = "%s: aktualisiere Tabelle %s";
-$a->strings["[no subject]"] = "[kein Betreff]";
-$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["Drop Contact"] = "Kontakt löschen";
-$a->strings["Organisation"] = "Organisation";
-$a->strings["News"] = "Nachrichten";
-$a->strings["Forum"] = "Forum";
-$a->strings["Connect URL missing."] = "Connect-URL fehlt";
-$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Der Kontakt konnte nicht hinzugefügt werden. Bitte überprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke";
-$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["%s's birthday"] = "%ss Geburtstag";
-$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
-$a->strings["Starts:"] = "Beginnt:";
-$a->strings["Finishes:"] = "Endet:";
-$a->strings["all-day"] = "ganztägig";
-$a->strings["Jun"] = "Jun";
-$a->strings["Sept"] = "Sep";
-$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["Duplicate event"] = "Veranstaltung kopieren";
-$a->strings["Delete event"] = "Veranstaltung löschen";
-$a->strings["D g:i A"] = "D H:i";
-$a->strings["g:i A"] = "H:i";
-$a->strings["Show map"] = "Karte anzeigen";
-$a->strings["Hide map"] = "Karte verbergen";
-$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
-$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
-$a->strings["Everybody"] = "Alle Kontakte";
-$a->strings["edit"] = "bearbeiten";
-$a->strings["Edit group"] = "Gruppe bearbeiten";
-$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
-$a->strings["Create a new group"] = "Neue Gruppe erstellen";
-$a->strings["Edit groups"] = "Gruppen bearbeiten";
-$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
-$a->strings["Edit profile"] = "Profil bearbeiten";
-$a->strings["Atom feed"] = "Atom-Feed";
-$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
-$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r";
-$a->strings["F d"] = "d. F";
-$a->strings["[today]"] = "[heute]";
-$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen";
-$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:";
-$a->strings["[No description]"] = "[keine Beschreibung]";
-$a->strings["Event Reminders"] = "Veranstaltungserinnerungen";
-$a->strings["Events this week:"] = "Veranstaltungen diese Woche";
-$a->strings["Member since:"] = "Mitglied seit:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Age:"] = "Alter:";
-$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
-$a->strings["Religion:"] = "Religion:";
-$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
-$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:";
-$a->strings["Musical interests:"] = "Musikalische Interessen:";
-$a->strings["Books, literature:"] = "Literatur/Bücher:";
-$a->strings["Television:"] = "Fernsehen:";
-$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:";
-$a->strings["Love/Romance:"] = "Liebesleben:";
-$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:";
-$a->strings["School/education:"] = "Schule/Ausbildung:";
-$a->strings["Forums:"] = "Foren:";
-$a->strings["Only You Can See This"] = "Nur Du kannst das sehen";
-$a->strings["Login failed"] = "Anmeldung fehlgeschlagen";
-$a->strings["Not enough information to authenticate"] = "Nicht genügend Informationen für die Authentifizierung";
-$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["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["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["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
-$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
-$a->strings["An error occurred creating your self contact. Please try again."] = "Bei der Erstellung deines self Kontakts ist ein Fehler aufgetreten. Bitte versuche es erneut.";
-$a->strings["An error occurred creating your default contact group. Please try again."] = "Bei der Erstellung deiner Standardgruppe für Kontakte ist ein Fehler aufgetreten. Bitte versuche es erneut.";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account muss noch vom Admin des Knotens geprüft werden.";
-$a->strings["Registration at %s"] = "Registrierung als %s";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet.";
-$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$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\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\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\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %3\$s/removeme jederzeit tun.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s.";
-$a->strings["%s is now following %s."] = "%s folgt nun %s";
-$a->strings["following"] = "folgen";
-$a->strings["%s stopped following %s."] = "%s hat aufgehört %s zu folgen";
-$a->strings["stopped following"] = "wird nicht mehr gefolgt";
-$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
-$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
-$a->strings["Attachments:"] = "Anhänge:";
-$a->strings["(no subject)"] = "(kein Betreff)";
-$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";
-$a->strings["Logged out."] = "Abgemeldet.";
-$a->strings["Privacy Statement"] = "Datenschutzerklärung";
-$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "Zum Zwecke der Registrierung und um die Kommunikation zwischen dem Nutzer und seinen Kontakten zu gewährleisten, muß der Nutzer einen Namen (auch Pseudonym) und einen Nutzernamen (Spitzname) sowie eine funktionierende E-Mail-Adresse angeben. Der Name ist auf der Profilseite für alle Nutzer sichtbar, auch wenn die Profildetails nicht angezeigt werden.\nDie E-Mail-Adresse wird nur zur Benachrichtigung des Nutzers verwendet, sie wird nirgends angezeigt. Die Anzeige des Nutzerkontos im Server-Verzeichnis bzw. dem weltweiten Verzeichnis erfolgt gemäß den Einstellungen des Nutzers, sie ist zur Kommunikation nicht zwingend notwendig.";
-$a->strings["This data is required for communication and is passed on to the nodes of the communication partners. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "Diese Daten sind für die Kommunikation notwendig und werden an die Knoten der Kommunikationspartner übermittelt. Nutzer können weitere private Angaben machen, die ebenfalls an die verwendeten Server der Kommunikationspartner übermittelt werden können.";
-$a->strings["At any point in time a logged in user can export their account data from the account settings . If the user wants to delete their account they can do so at %1\$s/removeme . The deletion of the account will be permanent."] = "Angemeldete Nutzer können ihre Nutzerdaten jederzeit von den Kontoeinstellungen aus exportieren. Wenn ein Nutzer wünscht das Nutzerkonto zu löschen, so ist dies jederzeit unter %1\$s/removeme möglich. Die Löschung des Nutzerkontos ist permanent.";
-$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
-$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["add star"] = "markieren";
-$a->strings["remove star"] = "Markierung entfernen";
-$a->strings["toggle star status"] = "Markierung umschalten";
-$a->strings["starred"] = "markiert";
-$a->strings["ignore thread"] = "Thread ignorieren";
-$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
-$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
-$a->strings["add tag"] = "Tag hinzufügen";
-$a->strings["like"] = "mag ich";
-$a->strings["dislike"] = "mag ich nicht";
-$a->strings["Share this"] = "Weitersagen";
-$a->strings["share"] = "Teilen";
-$a->strings["to"] = "zu";
-$a->strings["via"] = "via";
-$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
-$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
-$a->strings["%d comment"] = [
- 0 => "%d Kommentar",
- 1 => "%d Kommentare",
-];
-$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["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["greenzero"] = "greenzero";
+$a->strings["purplezero"] = "purplezero";
+$a->strings["easterbunny"] = "easterbunny";
+$a->strings["darkzero"] = "darkzero";
+$a->strings["comix"] = "comix";
+$a->strings["slackr"] = "slackr";
+$a->strings["Variations"] = "Variationen";
$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
diff --git a/view/lang/fi-fi/messages.po b/view/lang/fi-fi/messages.po
index e6b111fb3..94a320866 100644
--- a/view/lang/fi-fi/messages.po
+++ b/view/lang/fi-fi/messages.po
@@ -14,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-04-20 09:30+0200\n"
-"PO-Revision-Date: 2018-04-21 00:12+0000\n"
+"POT-Creation-Date: 2018-04-22 11:15+0200\n"
+"PO-Revision-Date: 2018-04-23 13:50+0000\n"
"Last-Translator: Kris\n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n"
"MIME-Version: 1.0\n"
@@ -24,67 +24,10 @@ msgstr ""
"Language: fi_FI\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21
-#: mod/display.php:72 mod/display.php:252 mod/display.php:354
-#: mod/admin.php:276 mod/admin.php:1854 mod/admin.php:2102
-msgid "Item not found."
-msgstr "Kohdetta ei löytynyt."
-
-#: include/items.php:382
-msgid "Do you really want to delete this item?"
-msgstr "Haluatko varmasti poistaa tämän kohteen?"
-
-#: include/items.php:384 mod/api.php:110 mod/suggest.php:38
-#: mod/dfrn_request.php:653 mod/message.php:138 mod/contacts.php:472
-#: mod/follow.php:150 mod/profiles.php:636 mod/profiles.php:639
-#: mod/profiles.php:661 mod/register.php:237 mod/settings.php:1105
-#: mod/settings.php:1111 mod/settings.php:1118 mod/settings.php:1122
-#: mod/settings.php:1126 mod/settings.php:1130 mod/settings.php:1134
-#: mod/settings.php:1138 mod/settings.php:1158 mod/settings.php:1159
-#: mod/settings.php:1160 mod/settings.php:1161 mod/settings.php:1162
-msgid "Yes"
-msgstr "Kyllä"
-
-#: include/items.php:387 include/conversation.php:1352 mod/fbrowser.php:103
-#: mod/fbrowser.php:134 mod/suggest.php:41 mod/dfrn_request.php:663
-#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149 mod/message.php:141
-#: mod/photos.php:248 mod/photos.php:324 mod/videos.php:147
-#: mod/contacts.php:475 mod/unfollow.php:117 mod/follow.php:161
-#: mod/settings.php:676 mod/settings.php:702
-msgid "Cancel"
-msgstr "Peru"
-
-#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40
-#: mod/attach.php:38 mod/common.php:26 mod/crepair.php:98 mod/nogroup.php:28
-#: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28
-#: mod/notifications.php:73 mod/dfrn_confirm.php:68 mod/manage.php:131
-#: mod/wall_attach.php:74 mod/wall_attach.php:77 mod/poke.php:150
-#: mod/regmod.php:108 mod/viewcontacts.php:57 mod/wall_upload.php:103
-#: mod/wall_upload.php:106 mod/wallmessage.php:16 mod/wallmessage.php:40
-#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/editpost.php:18
-#: mod/fsuggest.php:80 mod/group.php:26 mod/message.php:59 mod/message.php:104
-#: mod/notes.php:30 mod/photos.php:174 mod/photos.php:1051 mod/cal.php:304
-#: mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43
-#: mod/delegate.php:54 mod/events.php:194 mod/item.php:160
-#: mod/ostatus_subscribe.php:16 mod/profile_photo.php:30
-#: mod/profile_photo.php:176 mod/profile_photo.php:187
-#: mod/profile_photo.php:200 mod/unfollow.php:15 mod/unfollow.php:57
-#: mod/unfollow.php:90 mod/dirfind.php:25 mod/follow.php:17 mod/follow.php:54
-#: mod/follow.php:118 mod/invite.php:20 mod/invite.php:111 mod/network.php:32
-#: mod/profiles.php:182 mod/profiles.php:606 mod/register.php:53
-#: mod/settings.php:42 mod/settings.php:141 mod/settings.php:665 index.php:444
-msgid "Permission denied."
-msgstr "Käyttöoikeus evätty."
-
-#: include/items.php:471
-msgid "Archives"
-msgstr "Arkisto"
-
-#: include/items.php:477 view/theme/vier/theme.php:259
-#: src/Content/ForumManager.php:130 src/Content/Widget.php:312
-#: src/Object/Post.php:430 src/App.php:512
-msgid "show more"
-msgstr "näytä lisää"
+#: boot.php:795
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "%s päivitys epäonnistui, katso virhelokit."
#: include/api.php:1202
#, php-format
@@ -106,460 +49,15 @@ msgstr[1] "Viikottainen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgstr "Kuukausittainen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty."
-#: include/api.php:4523 mod/photos.php:88 mod/photos.php:194
-#: mod/photos.php:722 mod/photos.php:1149 mod/photos.php:1166
-#: mod/photos.php:1684 mod/profile_photo.php:85 mod/profile_photo.php:93
+#: include/api.php:4523 src/Model/User.php:549 src/Model/User.php:557
+#: src/Model/User.php:565 mod/profile_photo.php:85 mod/profile_photo.php:93
#: mod/profile_photo.php:101 mod/profile_photo.php:211
-#: mod/profile_photo.php:302 mod/profile_photo.php:312 src/Model/User.php:553
-#: src/Model/User.php:561 src/Model/User.php:569
+#: mod/profile_photo.php:302 mod/profile_photo.php:312 mod/photos.php:88
+#: mod/photos.php:194 mod/photos.php:722 mod/photos.php:1149
+#: mod/photos.php:1166 mod/photos.php:1684
msgid "Profile Photos"
msgstr "Profiilin valokuvat"
-#: include/conversation.php:144 include/conversation.php:282
-#: include/text.php:1753 src/Model/Item.php:1795
-msgid "event"
-msgstr "tapahtuma"
-
-#: include/conversation.php:147 include/conversation.php:157
-#: include/conversation.php:285 include/conversation.php:294
-#: mod/subthread.php:97 mod/tagger.php:72 src/Model/Item.php:1793
-#: src/Protocol/Diaspora.php:2039
-msgid "status"
-msgstr "tila"
-
-#: include/conversation.php:152 include/conversation.php:290
-#: include/text.php:1755 mod/subthread.php:97 mod/tagger.php:72
-#: src/Model/Item.php:1793
-msgid "photo"
-msgstr "kuva"
-
-#: include/conversation.php:164 src/Model/Item.php:1666
-#: src/Protocol/Diaspora.php:2035
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s tykkää käyttäjän %2$s %3$s"
-
-#: include/conversation.php:167 src/Model/Item.php:1671
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr ""
-
-#: include/conversation.php:170
-#, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr "%1$s osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
-
-#: include/conversation.php:173
-#, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr "%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s"
-
-#: include/conversation.php:176
-#, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr "%1$s ehkä osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
-
-#: include/conversation.php:209 mod/dfrn_confirm.php:431
-#: src/Protocol/Diaspora.php:2510
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s ja %2$s ovat kavereita"
-
-#: include/conversation.php:250
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s tökkäsi %2$s"
-
-#: include/conversation.php:304 mod/tagger.php:110
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr ""
-
-#: include/conversation.php:331
-msgid "post/item"
-msgstr "julkaisu/kohde"
-
-#: include/conversation.php:332
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr ""
-
-#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:355
-msgid "Likes"
-msgstr "Tykkäyksiä"
-
-#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:359
-msgid "Dislikes"
-msgstr "Inhokit"
-
-#: include/conversation.php:606 include/conversation.php:1661
-#: mod/photos.php:1502
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] "Osallistuu"
-msgstr[1] "Osallistuu"
-
-#: include/conversation.php:606 mod/photos.php:1502
-msgid "Not attending"
-msgstr "Ei osallistu"
-
-#: include/conversation.php:606 mod/photos.php:1502
-msgid "Might attend"
-msgstr "Ehkä"
-
-#: include/conversation.php:718 mod/photos.php:1569 src/Object/Post.php:178
-msgid "Select"
-msgstr "Valitse"
-
-#: include/conversation.php:719 mod/photos.php:1570 mod/contacts.php:830
-#: mod/contacts.php:1035 mod/admin.php:1798 mod/settings.php:738
-#: src/Object/Post.php:179
-msgid "Delete"
-msgstr "Poista"
-
-#: include/conversation.php:757 src/Object/Post.php:363
-#: src/Object/Post.php:364
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Katso %s-henkilön profiilia @ %s"
-
-#: include/conversation.php:769 src/Object/Post.php:351
-msgid "Categories:"
-msgstr "Luokat:"
-
-#: include/conversation.php:770 src/Object/Post.php:352
-msgid "Filed under:"
-msgstr "Arkistoitu kansioon:"
-
-#: include/conversation.php:777 src/Object/Post.php:377
-#, php-format
-msgid "%s from %s"
-msgstr ""
-
-#: include/conversation.php:792
-msgid "View in context"
-msgstr "Näytä kontekstissa"
-
-#: include/conversation.php:794 include/conversation.php:1334
-#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:264
-#: mod/message.php:433 mod/photos.php:1473 src/Object/Post.php:402
-msgid "Please wait"
-msgstr "Odota"
-
-#: include/conversation.php:865
-msgid "remove"
-msgstr "poista"
-
-#: include/conversation.php:869
-msgid "Delete Selected Items"
-msgstr "Poista valitut kohteet"
-
-#: include/conversation.php:1039 view/theme/frio/theme.php:352
-msgid "Follow Thread"
-msgstr "Seuraa ketjua"
-
-#: include/conversation.php:1040 src/Model/Contact.php:652
-msgid "View Status"
-msgstr "Näytä tila"
-
-#: include/conversation.php:1041 include/conversation.php:1057
-#: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89
-#: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:592
-#: src/Model/Contact.php:605 src/Model/Contact.php:653
-msgid "View Profile"
-msgstr "Näytä profiilia"
-
-#: include/conversation.php:1042 src/Model/Contact.php:654
-msgid "View Photos"
-msgstr "Näytä kuvia"
-
-#: include/conversation.php:1043 src/Model/Contact.php:655
-msgid "Network Posts"
-msgstr "Verkkojulkaisut"
-
-#: include/conversation.php:1044 src/Model/Contact.php:656
-msgid "View Contact"
-msgstr "Näytä kontaktia"
-
-#: include/conversation.php:1045 src/Model/Contact.php:658
-msgid "Send PM"
-msgstr "Lähetä yksityisviesti"
-
-#: include/conversation.php:1049 src/Model/Contact.php:659
-msgid "Poke"
-msgstr "Tökkää"
-
-#: include/conversation.php:1054 mod/allfriends.php:74 mod/suggest.php:83
-#: mod/match.php:90 mod/contacts.php:596 mod/dirfind.php:218
-#: mod/follow.php:143 src/Content/Widget.php:61 src/Model/Contact.php:606
-msgid "Connect/Follow"
-msgstr "Yhdistä/Seuraa"
-
-#: include/conversation.php:1173
-#, php-format
-msgid "%s likes this."
-msgstr "%s tykkää tästä."
-
-#: include/conversation.php:1176
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s ei tykkää tästä."
-
-#: include/conversation.php:1179
-#, php-format
-msgid "%s attends."
-msgstr "%s osallistuu."
-
-#: include/conversation.php:1182
-#, php-format
-msgid "%s doesn't attend."
-msgstr "%s ei osallistu."
-
-#: include/conversation.php:1185
-#, php-format
-msgid "%s attends maybe."
-msgstr "%s ehkä osallistuu."
-
-#: include/conversation.php:1196
-msgid "and"
-msgstr "ja"
-
-#: include/conversation.php:1202
-#, php-format
-msgid "and %d other people"
-msgstr "ja %d muuta ihmistä"
-
-#: include/conversation.php:1211
-#, php-format
-msgid "%2$d people like this"
-msgstr "%2$d ihmistä tykkää tästä"
-
-#: include/conversation.php:1212
-#, php-format
-msgid "%s like this."
-msgstr "%s tykkää tästä."
-
-#: include/conversation.php:1215
-#, php-format
-msgid "%2$d people don't like this"
-msgstr "%2$d ihmistä ei tykkää tästä."
-
-#: include/conversation.php:1216
-#, php-format
-msgid "%s don't like this."
-msgstr "%s ei tykkää tästä."
-
-#: include/conversation.php:1219
-#, php-format
-msgid "%2$d people attend"
-msgstr "%2$d ihmistä osallistuu"
-
-#: include/conversation.php:1220
-#, php-format
-msgid "%s attend."
-msgstr "%s osallistuu."
-
-#: include/conversation.php:1223
-#, php-format
-msgid "%2$d people don't attend"
-msgstr "%2$d ihmistä ei osallistu"
-
-#: include/conversation.php:1224
-#, php-format
-msgid "%s don't attend."
-msgstr "%s ei osallistu."
-
-#: include/conversation.php:1227
-#, php-format
-msgid "%2$d people attend maybe"
-msgstr "%2$d ihmistä ehkä osallistuu"
-
-#: include/conversation.php:1228
-#, php-format
-msgid "%s attend maybe."
-msgstr "%s ehkä osallistuu."
-
-#: include/conversation.php:1258 include/conversation.php:1274
-msgid "Visible to everybody "
-msgstr "Näkyy kaikille "
-
-#: include/conversation.php:1259 include/conversation.php:1275
-#: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:200
-#: mod/message.php:207 mod/message.php:343 mod/message.php:350
-msgid "Please enter a link URL:"
-msgstr "Lisää URL-linkki:"
-
-#: include/conversation.php:1260 include/conversation.php:1276
-msgid "Please enter a video link/URL:"
-msgstr "Lisää video URL-linkki:"
-
-#: include/conversation.php:1261 include/conversation.php:1277
-msgid "Please enter an audio link/URL:"
-msgstr "Lisää ääni URL-linkki:"
-
-#: include/conversation.php:1262 include/conversation.php:1278
-msgid "Tag term:"
-msgstr "Tunniste:"
-
-#: include/conversation.php:1263 include/conversation.php:1279
-#: mod/filer.php:34
-msgid "Save to Folder:"
-msgstr "Tallenna kansioon:"
-
-#: include/conversation.php:1264 include/conversation.php:1280
-msgid "Where are you right now?"
-msgstr "Mikä on sijaintisi?"
-
-#: include/conversation.php:1265
-msgid "Delete item(s)?"
-msgstr "Poista kohde/kohteet?"
-
-#: include/conversation.php:1312
-msgid "New Post"
-msgstr "Uusi julkaisu"
-
-#: include/conversation.php:1315
-msgid "Share"
-msgstr "Jaa"
-
-#: include/conversation.php:1316 mod/wallmessage.php:143 mod/editpost.php:111
-#: mod/message.php:262 mod/message.php:430
-msgid "Upload photo"
-msgstr "Lähetä kuva"
-
-#: include/conversation.php:1317 mod/editpost.php:112
-msgid "upload photo"
-msgstr "lähetä kuva"
-
-#: include/conversation.php:1318 mod/editpost.php:113
-msgid "Attach file"
-msgstr "Liitä tiedosto"
-
-#: include/conversation.php:1319 mod/editpost.php:114
-msgid "attach file"
-msgstr "liitä tiedosto"
-
-#: include/conversation.php:1320 mod/wallmessage.php:144 mod/editpost.php:115
-#: mod/message.php:263 mod/message.php:431
-msgid "Insert web link"
-msgstr "Lisää linkki"
-
-#: include/conversation.php:1321 mod/editpost.php:116
-msgid "web link"
-msgstr "WWW-linkki"
-
-#: include/conversation.php:1322 mod/editpost.php:117
-msgid "Insert video link"
-msgstr "Lisää videolinkki"
-
-#: include/conversation.php:1323 mod/editpost.php:118
-msgid "video link"
-msgstr "videolinkki"
-
-#: include/conversation.php:1324 mod/editpost.php:119
-msgid "Insert audio link"
-msgstr "Lisää äänilinkki"
-
-#: include/conversation.php:1325 mod/editpost.php:120
-msgid "audio link"
-msgstr "äänilinkki"
-
-#: include/conversation.php:1326 mod/editpost.php:121
-msgid "Set your location"
-msgstr "Aseta sijaintisi"
-
-#: include/conversation.php:1327 mod/editpost.php:122
-msgid "set location"
-msgstr "aseta sijainti"
-
-#: include/conversation.php:1328 mod/editpost.php:123
-msgid "Clear browser location"
-msgstr "Tyhjennä selaimen sijainti"
-
-#: include/conversation.php:1329 mod/editpost.php:124
-msgid "clear location"
-msgstr "tyhjennä sijainti"
-
-#: include/conversation.php:1331 mod/editpost.php:138
-msgid "Set title"
-msgstr "Aseta otsikko"
-
-#: include/conversation.php:1333 mod/editpost.php:140
-msgid "Categories (comma-separated list)"
-msgstr "Luokat (pilkuilla eroteltu luettelo)"
-
-#: include/conversation.php:1335 mod/editpost.php:126
-msgid "Permission settings"
-msgstr "Käyttöoikeusasetukset"
-
-#: include/conversation.php:1336 mod/editpost.php:155
-msgid "permissions"
-msgstr "käyttöoikeudet"
-
-#: include/conversation.php:1344 mod/editpost.php:135
-msgid "Public post"
-msgstr "Julkinen viesti"
-
-#: include/conversation.php:1348 mod/editpost.php:146 mod/photos.php:1492
-#: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528
-#: src/Object/Post.php:805
-msgid "Preview"
-msgstr "Esikatselu"
-
-#: include/conversation.php:1357
-msgid "Post to Groups"
-msgstr "Lähetä ryhmiin"
-
-#: include/conversation.php:1358
-msgid "Post to Contacts"
-msgstr "Lähetä kontakteille"
-
-#: include/conversation.php:1359
-msgid "Private post"
-msgstr "Yksityinen julkaisu"
-
-#: include/conversation.php:1364 mod/editpost.php:153
-#: src/Model/Profile.php:342
-msgid "Message"
-msgstr "Viesti"
-
-#: include/conversation.php:1365 mod/editpost.php:154
-msgid "Browser"
-msgstr "Selain"
-
-#: include/conversation.php:1632
-msgid "View all"
-msgstr "Näytä kaikki"
-
-#: include/conversation.php:1655
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "Tykkäys"
-msgstr[1] "Tykkäyksiä"
-
-#: include/conversation.php:1658
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "Inhokki"
-msgstr[1] "Inhokit"
-
-#: include/conversation.php:1664
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] "Ei osallistu"
-msgstr[1] "Ei osallistu"
-
-#: include/conversation.php:1667 src/Content/ContactSelector.php:125
-msgid "Undecided"
-msgid_plural "Undecided"
-msgstr[0] "En ole varma"
-msgstr[1] "En ole varma"
-
-#: include/dba.php:58
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "'%s' tietokantapalvelimen DNS-tieto ei löydy"
-
#: include/enotify.php:31
msgid "Friendica Notification"
msgstr "Friendica-huomautus"
@@ -656,7 +154,7 @@ msgstr "[Friendica:Notify] %s merkitsi sinut"
#: include/enotify.php:197
#, php-format
msgid "%1$s tagged you at %2$s"
-msgstr ""
+msgstr "%1$s merkitsi sinut kohteessa %2$s"
#: include/enotify.php:198
#, php-format
@@ -701,7 +199,7 @@ msgstr "[Friendica:Notify] %s merkitsi julkaisusi"
#: include/enotify.php:246
#, php-format
msgid "%1$s tagged your post at %2$s"
-msgstr ""
+msgstr "%1$s merkitsi julkaisusi kohteessa %2$s"
#: include/enotify.php:247
#, php-format
@@ -715,12 +213,12 @@ msgstr "[Friendica:Notify] Esittely vastaanotettu"
#: include/enotify.php:261
#, php-format
msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr ""
+msgstr "Olet vastaanottanut kaverikutsun henkilöltä '%1$s' kohteessa %2$s"
#: include/enotify.php:262
#, php-format
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr ""
+msgstr "Olet vastaanottanut [url=%1$s]kaverikutsun[/url] henkilöltä %2$s."
#: include/enotify.php:267 include/enotify.php:313
#, php-format
@@ -734,12 +232,12 @@ msgstr "Hyväksy tai hylkää esittely %s-sivustossa"
#: include/enotify.php:277
msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr ""
+msgstr "[Friendica:Notify] Uusi henkilö jakaa päivityksensä kanssasi"
#: include/enotify.php:279 include/enotify.php:280
#, php-format
msgid "%1$s is sharing with you at %2$s"
-msgstr ""
+msgstr "%1$s jakaa päivityksensä kanssasi kohteessa %2$s"
#: include/enotify.php:287
msgid "[Friendica:Notify] You have a new follower"
@@ -845,13 +343,468 @@ msgstr "Olet vastaanottanut [url=%1$s]rekisteröintipyynnön[/url] henkilöltä
#: include/enotify.php:368
#, php-format
msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr ""
+msgstr "Koko nimi:\t%1$s\\nSivusto:\t%2$s\\nKäyttäjätunnus:\t%3$s (%4$s)"
#: include/enotify.php:374
#, php-format
msgid "Please visit %s to approve or reject the request."
msgstr "Hyväksy tai hylkää pyyntö %s-sivustossa."
+#: include/conversation.php:144 include/conversation.php:282
+#: include/text.php:1753 src/Model/Item.php:1796
+msgid "event"
+msgstr "tapahtuma"
+
+#: include/conversation.php:147 include/conversation.php:157
+#: include/conversation.php:285 include/conversation.php:294
+#: src/Model/Item.php:1794 src/Protocol/Diaspora.php:2039 mod/subthread.php:97
+#: mod/tagger.php:72
+msgid "status"
+msgstr "tila"
+
+#: include/conversation.php:152 include/conversation.php:290
+#: include/text.php:1755 src/Model/Item.php:1794 mod/subthread.php:97
+#: mod/tagger.php:72
+msgid "photo"
+msgstr "kuva"
+
+#: include/conversation.php:164 src/Model/Item.php:1667
+#: src/Protocol/Diaspora.php:2035
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s tykkää käyttäjän %2$s %3$s"
+
+#: include/conversation.php:167 src/Model/Item.php:1672
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr ""
+
+#: include/conversation.php:170
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$s osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
+
+#: include/conversation.php:173
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr "%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s"
+
+#: include/conversation.php:176
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr "%1$s ehkä osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
+
+#: include/conversation.php:209 src/Protocol/Diaspora.php:2510
+#: mod/dfrn_confirm.php:431
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s ja %2$s ovat kavereita"
+
+#: include/conversation.php:250
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s tökkäsi %2$s"
+
+#: include/conversation.php:304 mod/tagger.php:110
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr ""
+
+#: include/conversation.php:331
+msgid "post/item"
+msgstr "julkaisu/kohde"
+
+#: include/conversation.php:332
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr ""
+
+#: include/conversation.php:605 mod/profiles.php:355 mod/photos.php:1501
+msgid "Likes"
+msgstr "Tykkäyksiä"
+
+#: include/conversation.php:605 mod/profiles.php:359 mod/photos.php:1501
+msgid "Dislikes"
+msgstr "Inhokit"
+
+#: include/conversation.php:606 include/conversation.php:1661
+#: mod/photos.php:1502
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Osallistuu"
+msgstr[1] "Osallistuu"
+
+#: include/conversation.php:606 mod/photos.php:1502
+msgid "Not attending"
+msgstr "Ei osallistu"
+
+#: include/conversation.php:606 mod/photos.php:1502
+msgid "Might attend"
+msgstr "Ehkä"
+
+#: include/conversation.php:718 src/Object/Post.php:178 mod/photos.php:1569
+msgid "Select"
+msgstr "Valitse"
+
+#: include/conversation.php:719 src/Object/Post.php:179 mod/settings.php:738
+#: mod/admin.php:1812 mod/photos.php:1570 mod/contacts.php:830
+#: mod/contacts.php:1035
+msgid "Delete"
+msgstr "Poista"
+
+#: include/conversation.php:757 src/Object/Post.php:363
+#: src/Object/Post.php:364
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Katso %s-henkilön profiilia @ %s"
+
+#: include/conversation.php:769 src/Object/Post.php:351
+msgid "Categories:"
+msgstr "Luokat:"
+
+#: include/conversation.php:770 src/Object/Post.php:352
+msgid "Filed under:"
+msgstr "Arkistoitu kansioon:"
+
+#: include/conversation.php:777 src/Object/Post.php:377
+#, php-format
+msgid "%s from %s"
+msgstr "%s sovelluksesta %s"
+
+#: include/conversation.php:792
+msgid "View in context"
+msgstr "Näytä kontekstissa"
+
+#: include/conversation.php:794 include/conversation.php:1334
+#: src/Object/Post.php:402 mod/photos.php:1473 mod/message.php:264
+#: mod/message.php:433 mod/wallmessage.php:145 mod/editpost.php:125
+msgid "Please wait"
+msgstr "Odota"
+
+#: include/conversation.php:865
+msgid "remove"
+msgstr "poista"
+
+#: include/conversation.php:869
+msgid "Delete Selected Items"
+msgstr "Poista valitut kohteet"
+
+#: include/conversation.php:1039 view/theme/frio/theme.php:352
+msgid "Follow Thread"
+msgstr "Seuraa ketjua"
+
+#: include/conversation.php:1040 src/Model/Contact.php:652
+msgid "View Status"
+msgstr "Näytä tila"
+
+#: include/conversation.php:1041 include/conversation.php:1057
+#: src/Model/Contact.php:592 src/Model/Contact.php:605
+#: src/Model/Contact.php:653 mod/directory.php:159 mod/dirfind.php:217
+#: mod/suggest.php:82 mod/allfriends.php:73 mod/match.php:89
+msgid "View Profile"
+msgstr "Näytä profiilia"
+
+#: include/conversation.php:1042 src/Model/Contact.php:654
+msgid "View Photos"
+msgstr "Näytä kuvia"
+
+#: include/conversation.php:1043 src/Model/Contact.php:655
+msgid "Network Posts"
+msgstr "Verkkojulkaisut"
+
+#: include/conversation.php:1044 src/Model/Contact.php:656
+msgid "View Contact"
+msgstr "Näytä kontaktia"
+
+#: include/conversation.php:1045 src/Model/Contact.php:658
+msgid "Send PM"
+msgstr "Lähetä yksityisviesti"
+
+#: include/conversation.php:1049 src/Model/Contact.php:659
+msgid "Poke"
+msgstr "Tökkää"
+
+#: include/conversation.php:1054 src/Model/Contact.php:606
+#: src/Content/Widget.php:61 mod/dirfind.php:218 mod/suggest.php:83
+#: mod/allfriends.php:74 mod/follow.php:143 mod/contacts.php:596
+#: mod/match.php:90
+msgid "Connect/Follow"
+msgstr "Yhdistä/Seuraa"
+
+#: include/conversation.php:1173
+#, php-format
+msgid "%s likes this."
+msgstr "%s tykkää tästä."
+
+#: include/conversation.php:1176
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s ei tykkää tästä."
+
+#: include/conversation.php:1179
+#, php-format
+msgid "%s attends."
+msgstr "%s osallistuu."
+
+#: include/conversation.php:1182
+#, php-format
+msgid "%s doesn't attend."
+msgstr "%s ei osallistu."
+
+#: include/conversation.php:1185
+#, php-format
+msgid "%s attends maybe."
+msgstr "%s ehkä osallistuu."
+
+#: include/conversation.php:1196
+msgid "and"
+msgstr "ja"
+
+#: include/conversation.php:1202
+#, php-format
+msgid "and %d other people"
+msgstr "ja %d muuta ihmistä"
+
+#: include/conversation.php:1211
+#, php-format
+msgid "%2$d people like this"
+msgstr "%2$d ihmistä tykkää tästä"
+
+#: include/conversation.php:1212
+#, php-format
+msgid "%s like this."
+msgstr "%s tykkää tästä."
+
+#: include/conversation.php:1215
+#, php-format
+msgid "%2$d people don't like this"
+msgstr "%2$d ihmistä ei tykkää tästä."
+
+#: include/conversation.php:1216
+#, php-format
+msgid "%s don't like this."
+msgstr "%s ei tykkää tästä."
+
+#: include/conversation.php:1219
+#, php-format
+msgid "%2$d people attend"
+msgstr "%2$d ihmistä osallistuu"
+
+#: include/conversation.php:1220
+#, php-format
+msgid "%s attend."
+msgstr "%s osallistuu."
+
+#: include/conversation.php:1223
+#, php-format
+msgid "%2$d people don't attend"
+msgstr "%2$d ihmistä ei osallistu"
+
+#: include/conversation.php:1224
+#, php-format
+msgid "%s don't attend."
+msgstr "%s ei osallistu."
+
+#: include/conversation.php:1227
+#, php-format
+msgid "%2$d people attend maybe"
+msgstr "%2$d ihmistä ehkä osallistuu"
+
+#: include/conversation.php:1228
+#, php-format
+msgid "%s attend maybe."
+msgstr "%s ehkä osallistuu."
+
+#: include/conversation.php:1258 include/conversation.php:1274
+msgid "Visible to everybody "
+msgstr "Näkyy kaikille "
+
+#: include/conversation.php:1259 include/conversation.php:1275
+#: mod/message.php:200 mod/message.php:207 mod/message.php:343
+#: mod/message.php:350 mod/wallmessage.php:120 mod/wallmessage.php:127
+msgid "Please enter a link URL:"
+msgstr "Lisää URL-linkki:"
+
+#: include/conversation.php:1260 include/conversation.php:1276
+msgid "Please enter a video link/URL:"
+msgstr "Lisää video URL-linkki:"
+
+#: include/conversation.php:1261 include/conversation.php:1277
+msgid "Please enter an audio link/URL:"
+msgstr "Lisää ääni URL-linkki:"
+
+#: include/conversation.php:1262 include/conversation.php:1278
+msgid "Tag term:"
+msgstr "Tunniste:"
+
+#: include/conversation.php:1263 include/conversation.php:1279
+#: mod/filer.php:34
+msgid "Save to Folder:"
+msgstr "Tallenna kansioon:"
+
+#: include/conversation.php:1264 include/conversation.php:1280
+msgid "Where are you right now?"
+msgstr "Mikä on sijaintisi?"
+
+#: include/conversation.php:1265
+msgid "Delete item(s)?"
+msgstr "Poista kohde/kohteet?"
+
+#: include/conversation.php:1312
+msgid "New Post"
+msgstr "Uusi julkaisu"
+
+#: include/conversation.php:1315
+msgid "Share"
+msgstr "Jaa"
+
+#: include/conversation.php:1316 mod/message.php:262 mod/message.php:430
+#: mod/wallmessage.php:143 mod/editpost.php:111
+msgid "Upload photo"
+msgstr "Lähetä kuva"
+
+#: include/conversation.php:1317 mod/editpost.php:112
+msgid "upload photo"
+msgstr "lähetä kuva"
+
+#: include/conversation.php:1318 mod/editpost.php:113
+msgid "Attach file"
+msgstr "Liitä tiedosto"
+
+#: include/conversation.php:1319 mod/editpost.php:114
+msgid "attach file"
+msgstr "liitä tiedosto"
+
+#: include/conversation.php:1320 mod/message.php:263 mod/message.php:431
+#: mod/wallmessage.php:144 mod/editpost.php:115
+msgid "Insert web link"
+msgstr "Lisää linkki"
+
+#: include/conversation.php:1321 mod/editpost.php:116
+msgid "web link"
+msgstr "WWW-linkki"
+
+#: include/conversation.php:1322 mod/editpost.php:117
+msgid "Insert video link"
+msgstr "Lisää videolinkki"
+
+#: include/conversation.php:1323 mod/editpost.php:118
+msgid "video link"
+msgstr "videolinkki"
+
+#: include/conversation.php:1324 mod/editpost.php:119
+msgid "Insert audio link"
+msgstr "Lisää äänilinkki"
+
+#: include/conversation.php:1325 mod/editpost.php:120
+msgid "audio link"
+msgstr "äänilinkki"
+
+#: include/conversation.php:1326 mod/editpost.php:121
+msgid "Set your location"
+msgstr "Aseta sijaintisi"
+
+#: include/conversation.php:1327 mod/editpost.php:122
+msgid "set location"
+msgstr "aseta sijainti"
+
+#: include/conversation.php:1328 mod/editpost.php:123
+msgid "Clear browser location"
+msgstr "Tyhjennä selaimen sijainti"
+
+#: include/conversation.php:1329 mod/editpost.php:124
+msgid "clear location"
+msgstr "tyhjennä sijainti"
+
+#: include/conversation.php:1331 mod/editpost.php:138
+msgid "Set title"
+msgstr "Aseta otsikko"
+
+#: include/conversation.php:1333 mod/editpost.php:140
+msgid "Categories (comma-separated list)"
+msgstr "Luokat (pilkuilla eroteltu luettelo)"
+
+#: include/conversation.php:1335 mod/editpost.php:126
+msgid "Permission settings"
+msgstr "Käyttöoikeusasetukset"
+
+#: include/conversation.php:1336 mod/editpost.php:155
+msgid "permissions"
+msgstr "käyttöoikeudet"
+
+#: include/conversation.php:1344 mod/editpost.php:135
+msgid "Public post"
+msgstr "Julkinen viesti"
+
+#: include/conversation.php:1348 src/Object/Post.php:805 mod/events.php:528
+#: mod/photos.php:1492 mod/photos.php:1531 mod/photos.php:1604
+#: mod/editpost.php:146
+msgid "Preview"
+msgstr "Esikatselu"
+
+#: include/conversation.php:1352 include/items.php:387 mod/suggest.php:41
+#: mod/settings.php:676 mod/settings.php:702 mod/fbrowser.php:103
+#: mod/fbrowser.php:134 mod/photos.php:248 mod/photos.php:324
+#: mod/message.php:141 mod/videos.php:147 mod/unfollow.php:117
+#: mod/dfrn_request.php:663 mod/follow.php:161 mod/contacts.php:475
+#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149
+msgid "Cancel"
+msgstr "Peru"
+
+#: include/conversation.php:1357
+msgid "Post to Groups"
+msgstr "Lähetä ryhmiin"
+
+#: include/conversation.php:1358
+msgid "Post to Contacts"
+msgstr "Lähetä kontakteille"
+
+#: include/conversation.php:1359
+msgid "Private post"
+msgstr "Yksityinen julkaisu"
+
+#: include/conversation.php:1364 src/Model/Profile.php:342
+#: mod/editpost.php:153
+msgid "Message"
+msgstr "Viesti"
+
+#: include/conversation.php:1365 mod/editpost.php:154
+msgid "Browser"
+msgstr "Selain"
+
+#: include/conversation.php:1632
+msgid "View all"
+msgstr "Näytä kaikki"
+
+#: include/conversation.php:1655
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Tykkäys"
+msgstr[1] "Tykkäyksiä"
+
+#: include/conversation.php:1658
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "Inhokki"
+msgstr[1] "Inhokit"
+
+#: include/conversation.php:1664
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "Ei osallistu"
+msgstr[1] "Ei osallistu"
+
+#: include/conversation.php:1667 src/Content/ContactSelector.php:125
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] "En ole varma"
+msgstr[1] "En ole varma"
+
+#: include/dba.php:58
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "'%s' tietokantapalvelimen DNS-tieto ei löydy"
+
#: include/security.php:81
msgid "Welcome "
msgstr "Tervetuloa"
@@ -917,8 +870,8 @@ msgstr[1] "%d kontakteja"
msgid "View Contacts"
msgstr "Näytä kontaktit"
-#: include/text.php:1010 mod/filer.php:35 mod/editpost.php:110
-#: mod/notes.php:67
+#: include/text.php:1010 mod/notes.php:67 mod/filer.php:35
+#: mod/editpost.php:110
msgid "Save"
msgstr "Tallenna"
@@ -926,7 +879,7 @@ msgstr "Tallenna"
msgid "Follow"
msgstr "Seuraa"
-#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142
+#: include/text.php:1016 src/Content/Nav.php:142 mod/search.php:155
msgid "Search"
msgstr "Haku"
@@ -938,19 +891,19 @@ msgstr "@nimi, !foorumi, #tunnisteet, sisältö"
msgid "Full Text"
msgstr "Koko teksti"
-#: include/text.php:1026 src/Content/Nav.php:146
-#: src/Content/Widget/TagCloud.php:54
+#: include/text.php:1026 src/Content/Widget/TagCloud.php:54
+#: src/Content/Nav.php:146
msgid "Tags"
msgstr "Tunnisteet"
-#: include/text.php:1027 mod/viewcontacts.php:131 mod/contacts.php:814
-#: mod/contacts.php:875 view/theme/frio/theme.php:270 src/Content/Nav.php:147
-#: src/Content/Nav.php:212 src/Model/Profile.php:959 src/Model/Profile.php:962
+#: include/text.php:1027 src/Model/Profile.php:961 src/Model/Profile.php:964
+#: src/Content/Nav.php:147 src/Content/Nav.php:208 mod/viewcontacts.php:131
+#: mod/contacts.php:814 mod/contacts.php:875 view/theme/frio/theme.php:270
msgid "Contacts"
msgstr "Yhteystiedot"
-#: include/text.php:1030 view/theme/vier/theme.php:254
-#: src/Content/ForumManager.php:125 src/Content/Nav.php:151
+#: include/text.php:1030 src/Content/ForumManager.php:125
+#: src/Content/Nav.php:151 view/theme/vier/theme.php:254
msgid "Forums"
msgstr "Foorumit"
@@ -1002,7 +955,7 @@ msgstr "torju"
msgid "rebuffed"
msgstr "torjui"
-#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:379
+#: include/text.php:1093 src/Model/Event.php:379 mod/settings.php:943
msgid "Monday"
msgstr "Maanantai"
@@ -1026,7 +979,7 @@ msgstr "Perjantai"
msgid "Saturday"
msgstr "Lauantai"
-#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:378
+#: include/text.php:1093 src/Model/Event.php:378 mod/settings.php:943
msgid "Sunday"
msgstr "Sunnuntai"
@@ -1194,451 +1147,2261 @@ msgstr "julkaisu"
msgid "Item filed"
msgstr "Kohde arkistoitu"
-#: mod/allfriends.php:51
-msgid "No friends to display."
-msgstr "Ei näytettäviä kavereita."
+#: include/items.php:342 mod/display.php:72 mod/display.php:252
+#: mod/display.php:354 mod/admin.php:276 mod/admin.php:1868 mod/admin.php:2116
+#: mod/viewsrc.php:21 mod/notice.php:22
+msgid "Item not found."
+msgstr "Kohdetta ei löytynyt."
-#: mod/allfriends.php:90 mod/suggest.php:101 mod/match.php:105
-#: mod/dirfind.php:215 src/Content/Widget.php:37 src/Model/Profile.php:297
+#: include/items.php:382
+msgid "Do you really want to delete this item?"
+msgstr "Haluatko varmasti poistaa tämän kohteen?"
+
+#: include/items.php:384 mod/suggest.php:38 mod/profiles.php:636
+#: mod/profiles.php:639 mod/profiles.php:661 mod/api.php:110
+#: mod/settings.php:1105 mod/settings.php:1111 mod/settings.php:1118
+#: mod/settings.php:1122 mod/settings.php:1126 mod/settings.php:1130
+#: mod/settings.php:1134 mod/settings.php:1138 mod/settings.php:1158
+#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161
+#: mod/settings.php:1162 mod/message.php:138 mod/dfrn_request.php:653
+#: mod/follow.php:150 mod/contacts.php:472 mod/register.php:237
+msgid "Yes"
+msgstr "Kyllä"
+
+#: include/items.php:401 mod/dirfind.php:25 mod/repair_ostatus.php:13
+#: mod/suggest.php:60 mod/profile_photo.php:30 mod/profile_photo.php:176
+#: mod/profile_photo.php:187 mod/profile_photo.php:200 mod/manage.php:131
+#: mod/uimport.php:28 mod/invite.php:20 mod/invite.php:111 mod/network.php:32
+#: mod/profiles.php:182 mod/profiles.php:606 mod/events.php:194
+#: mod/fsuggest.php:80 mod/attach.php:38 mod/allfriends.php:21
+#: mod/viewcontacts.php:57 mod/ostatus_subscribe.php:16 mod/api.php:35
+#: mod/api.php:40 mod/settings.php:42 mod/settings.php:141
+#: mod/settings.php:665 mod/regmod.php:108 mod/group.php:26
+#: mod/delegate.php:25 mod/delegate.php:43 mod/delegate.php:54
+#: mod/photos.php:174 mod/photos.php:1051 mod/nogroup.php:28
+#: mod/message.php:59 mod/message.php:104 mod/unfollow.php:15
+#: mod/unfollow.php:57 mod/unfollow.php:90 mod/wall_attach.php:74
+#: mod/wall_attach.php:77 mod/notes.php:30 mod/crepair.php:98 mod/poke.php:150
+#: mod/notifications.php:73 mod/follow.php:17 mod/follow.php:54
+#: mod/follow.php:118 mod/cal.php:304 mod/contacts.php:386
+#: mod/wallmessage.php:16 mod/wallmessage.php:40 mod/wallmessage.php:79
+#: mod/wallmessage.php:103 mod/dfrn_confirm.php:68 mod/wall_upload.php:103
+#: mod/wall_upload.php:106 mod/register.php:53 mod/common.php:26
+#: mod/item.php:160 mod/editpost.php:18 index.php:444
+msgid "Permission denied."
+msgstr "Käyttöoikeus evätty."
+
+#: include/items.php:471
+msgid "Archives"
+msgstr "Arkisto"
+
+#: include/items.php:477 src/Content/Widget.php:312
+#: src/Content/ForumManager.php:130 src/App.php:512 src/Object/Post.php:430
+#: view/theme/vier/theme.php:259
+msgid "show more"
+msgstr "näytä lisää"
+
+#: src/Model/Item.php:1677
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
+
+#: src/Model/Item.php:1682
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s"
+
+#: src/Model/Item.php:1687
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s ehkä osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
+
+#: src/Model/Contact.php:657
+msgid "Drop Contact"
+msgstr "Poista kontakti"
+
+#: src/Model/Contact.php:1060
+msgid "Organisation"
+msgstr "Järjestö"
+
+#: src/Model/Contact.php:1063
+msgid "News"
+msgstr "Uutiset"
+
+#: src/Model/Contact.php:1066
+msgid "Forum"
+msgstr "Keskustelupalsta"
+
+#: src/Model/Contact.php:1235 mod/dfrn_request.php:345
+msgid "Disallowed profile URL."
+msgstr "Kielletty profiiliosoite."
+
+#: src/Model/Contact.php:1240 mod/friendica.php:128 mod/admin.php:353
+#: mod/admin.php:371 mod/dfrn_request.php:351
+msgid "Blocked domain"
+msgstr "Estetty verkkotunnus"
+
+#: src/Model/Contact.php:1245
+msgid "Connect URL missing."
+msgstr "Yhteys URL-linkki puuttuu."
+
+#: src/Model/Contact.php:1254
+msgid ""
+"The contact could not be added. Please check the relevant network "
+"credentials in your Settings -> Social Networks page."
+msgstr ""
+
+#: src/Model/Contact.php:1301
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr ""
+
+#: src/Model/Contact.php:1302 src/Model/Contact.php:1316
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Yhteensopivia viestintäprotokolleja tai syötteitä ei löytynyt."
+
+#: src/Model/Contact.php:1314
+msgid "The profile address specified does not provide adequate information."
+msgstr "Annettu profiiliosoite ei sisällä riittävästi tietoa."
+
+#: src/Model/Contact.php:1319
+msgid "An author or name was not found."
+msgstr ""
+
+#: src/Model/Contact.php:1322
+msgid "No browser URL could be matched to this address."
+msgstr ""
+
+#: src/Model/Contact.php:1325
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr ""
+
+#: src/Model/Contact.php:1326
+msgid "Use mailto: in front of address to force email check."
+msgstr ""
+
+#: src/Model/Contact.php:1332
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr ""
+
+#: src/Model/Contact.php:1337
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr ""
+
+#: src/Model/Contact.php:1388
+msgid "Unable to retrieve contact information."
+msgstr "Kontaktin tietoja ei voitu hakea."
+
+#: src/Model/Contact.php:1537 mod/dfrn_request.php:568
+#: mod/dfrn_confirm.php:661
+msgid "[Name Withheld]"
+msgstr "[Nimi jätetty pois]"
+
+#: src/Model/Contact.php:1605 src/Protocol/DFRN.php:1482
+#, php-format
+msgid "%s's birthday"
+msgstr "%s: syntymäpäivä"
+
+#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Hyvää syntymäpäivää %s"
+
+#: src/Model/Mail.php:40 src/Model/Mail.php:174
+msgid "[no subject]"
+msgstr "[ei aihetta]"
+
+#: src/Model/Profile.php:97
+msgid "Requested account is not available."
+msgstr "Pyydetty käyttäjätili ei ole saatavilla."
+
+#: src/Model/Profile.php:118 mod/profile.php:37
+msgid "Requested profile is not available."
+msgstr "Pyydettyä profiilia ei saatavilla."
+
+#: src/Model/Profile.php:168 src/Model/Profile.php:399
+#: src/Model/Profile.php:863
+msgid "Edit profile"
+msgstr "Muokkaa profiilia"
+
+#: src/Model/Profile.php:297 src/Content/Widget.php:37 mod/dirfind.php:215
+#: mod/suggest.php:101 mod/allfriends.php:90 mod/match.php:105
msgid "Connect"
msgstr "Yhdistä"
-#: mod/api.php:85 mod/api.php:107
-msgid "Authorize application connection"
-msgstr "Vahvista sovellusyhteys"
+#: src/Model/Profile.php:336
+msgid "Atom feed"
+msgstr "Atom -syöte"
-#: mod/api.php:86
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Palaa takaisin sovellukseen ja lisää tämä turvakoodi:"
+#: src/Model/Profile.php:372 src/Content/Nav.php:205
+msgid "Profiles"
+msgstr "Profiilit"
-#: mod/api.php:95
-msgid "Please login to continue."
-msgstr "Ole hyvä ja kirjaudu jatkaaksesi."
+#: src/Model/Profile.php:372
+msgid "Manage/edit profiles"
+msgstr "Hallitse/muokkaa profiilit"
-#: mod/api.php:109
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Haluatko antaa tälle sovellukselle luvan hakea viestejäsi ja yhteystietojasi ja/tai luoda uusia viestejä?"
+#: src/Model/Profile.php:379 src/Model/Profile.php:401 mod/profiles.php:777
+msgid "Change profile photo"
+msgstr "Vaihda profiilikuva"
-#: mod/api.php:111 mod/dfrn_request.php:653 mod/follow.php:150
-#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661
-#: mod/register.php:238 mod/settings.php:1105 mod/settings.php:1111
-#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1126
-#: mod/settings.php:1130 mod/settings.php:1134 mod/settings.php:1138
-#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
-#: mod/settings.php:1161 mod/settings.php:1162
-msgid "No"
-msgstr "Ei"
+#: src/Model/Profile.php:380 mod/profiles.php:778
+msgid "Create New Profile"
+msgstr "Luo uusi profiili"
-#: mod/apps.php:14 index.php:273
-msgid "You must be logged in to use addons. "
-msgstr "Sinun pitää kirjautua sisään, jotta voit käyttää lisäosia"
+#: src/Model/Profile.php:389 mod/profiles.php:767
+msgid "Profile Image"
+msgstr "Profiilikuva"
-#: mod/apps.php:19
-msgid "Applications"
-msgstr "Sovellukset"
+#: src/Model/Profile.php:392 mod/profiles.php:769
+msgid "visible to everybody"
+msgstr "näkyvissä kaikille"
-#: mod/apps.php:22
-msgid "No installed applications."
-msgstr "Ei asennettuja sovelluksia."
+#: src/Model/Profile.php:393 mod/profiles.php:675 mod/profiles.php:770
+msgid "Edit visibility"
+msgstr "Muokkaa näkyvyyttä"
-#: mod/attach.php:15
-msgid "Item not available."
-msgstr "Kohde ei saatavilla."
+#: src/Model/Profile.php:417 src/Model/Event.php:60 src/Model/Event.php:85
+#: src/Model/Event.php:421 src/Model/Event.php:900 mod/directory.php:148
+#: mod/events.php:518 mod/notifications.php:247 mod/contacts.php:660
+msgid "Location:"
+msgstr "Sijainti:"
-#: mod/attach.php:25
-msgid "Item was not found."
-msgstr "Kohdetta ei löytynyt."
+#: src/Model/Profile.php:420 src/Model/Profile.php:749 mod/directory.php:151
+#: mod/notifications.php:253
+msgid "Gender:"
+msgstr "Sukupuoli:"
-#: mod/common.php:91
-msgid "No contacts in common."
-msgstr "Ei yhteisiä kontakteja."
+#: src/Model/Profile.php:421 src/Model/Profile.php:773 mod/directory.php:152
+msgid "Status:"
+msgstr "Tila:"
-#: mod/common.php:140 mod/contacts.php:886
-msgid "Common Friends"
-msgstr "Yhteisiä kavereita"
+#: src/Model/Profile.php:422 src/Model/Profile.php:790 mod/directory.php:153
+msgid "Homepage:"
+msgstr "Kotisivu:"
-#: mod/credits.php:18
-msgid "Credits"
-msgstr "Lopputekstit"
+#: src/Model/Profile.php:423 src/Model/Profile.php:810 mod/directory.php:154
+#: mod/notifications.php:249 mod/contacts.php:664
+msgid "About:"
+msgstr "Lisätietoja:"
-#: mod/credits.php:19
-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!"
+#: src/Model/Profile.php:424 mod/contacts.php:662
+msgid "XMPP:"
+msgstr "XMPP:"
+
+#: src/Model/Profile.php:520 mod/notifications.php:261 mod/contacts.php:71
+msgid "Network:"
+msgstr "Verkko:"
+
+#: src/Model/Profile.php:550 src/Model/Profile.php:643
+msgid "g A l F d"
msgstr ""
-#: mod/crepair.php:87
-msgid "Contact settings applied."
-msgstr "Kontaktiasetukset tallennettu."
-
-#: mod/crepair.php:89
-msgid "Contact update failed."
-msgstr "Kontaktipäivitys epäonnistui."
-
-#: mod/crepair.php:110 mod/dfrn_confirm.php:131 mod/fsuggest.php:30
-#: mod/fsuggest.php:96
-msgid "Contact not found."
-msgstr "Kontaktia ei ole."
-
-#: mod/crepair.php:114
-msgid ""
-"WARNING: This is highly advanced and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "VAROITUS: Tämä on erittäin vaativaa ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta."
-
-#: mod/crepair.php:115
-msgid ""
-"Please use your browser 'Back' button now if you are "
-"uncertain what to do on this page."
-msgstr "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta nyt , jos olet epävarma tämän sivun toiminnoista."
-
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "No mirroring"
-msgstr "Ei peilausta"
-
-#: mod/crepair.php:129
-msgid "Mirror as forwarded posting"
-msgstr "Peilaa välitettynä julkaisuna"
-
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "Mirror as my own posting"
-msgstr "Peilaa omana julkaisuna"
-
-#: mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr "Palaa kontaktin muokkaamiseen"
-
-#: mod/crepair.php:146
-msgid "Refetch contact data"
+#: src/Model/Profile.php:551
+msgid "F d"
msgstr ""
-#: mod/crepair.php:148 mod/manage.php:184 mod/localtime.php:56
-#: mod/poke.php:199 mod/fsuggest.php:114 mod/message.php:265
-#: mod/message.php:432 mod/photos.php:1080 mod/photos.php:1160
-#: mod/photos.php:1445 mod/photos.php:1491 mod/photos.php:1530
-#: mod/photos.php:1603 mod/contacts.php:610 mod/events.php:530
-#: mod/install.php:251 mod/install.php:290 mod/invite.php:155
-#: mod/profiles.php:672 view/theme/duepuntozero/config.php:71
-#: view/theme/frio/config.php:113 view/theme/quattro/config.php:73
-#: view/theme/vier/config.php:119 src/Object/Post.php:796
-msgid "Submit"
-msgstr "Lähetä"
+#: src/Model/Profile.php:608 src/Model/Profile.php:707
+msgid "[today]"
+msgstr "[tänään]"
-#: mod/crepair.php:149
-msgid "Remote Self"
-msgstr ""
+#: src/Model/Profile.php:619
+msgid "Birthday Reminders"
+msgstr "Syntymäpäivämuistutukset"
-#: mod/crepair.php:152
-msgid "Mirror postings from this contact"
-msgstr "Peilaa tämän kontaktin julkaisut"
+#: src/Model/Profile.php:620
+msgid "Birthdays this week:"
+msgstr "Syntymäpäiviä tällä viikolla:"
-#: mod/crepair.php:154
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr ""
+#: src/Model/Profile.php:694
+msgid "[No description]"
+msgstr "[Ei kuvausta]"
-#: mod/crepair.php:158 mod/admin.php:490 mod/admin.php:1781 mod/admin.php:1793
-#: mod/admin.php:1806 mod/admin.php:1822 mod/settings.php:677
-#: mod/settings.php:703
-msgid "Name"
-msgstr "Nimi"
+#: src/Model/Profile.php:721
+msgid "Event Reminders"
+msgstr "Tapahtumamuistutukset"
-#: mod/crepair.php:159
-msgid "Account Nickname"
-msgstr "Tilin lempinimi"
+#: src/Model/Profile.php:722
+msgid "Events this week:"
+msgstr "Tapahtumia tällä viikolla:"
-#: mod/crepair.php:160
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - ohittaa Nimen/Nimimerkin"
-
-#: mod/crepair.php:161
-msgid "Account URL"
-msgstr "Tilin URL-osoite"
-
-#: mod/crepair.php:162
-msgid "Friend Request URL"
-msgstr "URL kaveripyyntöä varten"
-
-#: mod/crepair.php:163
-msgid "Friend Confirm URL"
-msgstr "URL kaverin vahvistusta varten"
-
-#: mod/crepair.php:164
-msgid "Notification Endpoint URL"
-msgstr "URL huomautuksia varten"
-
-#: mod/crepair.php:165
-msgid "Poll/Feed URL"
-msgstr "URL äänestyksiä/syötteitä varten"
-
-#: mod/crepair.php:166
-msgid "New photo from this URL"
-msgstr "Uusi kuva osoitteesta"
-
-#: mod/fbrowser.php:34 view/theme/frio/theme.php:261 src/Content/Nav.php:102
-#: src/Model/Profile.php:906
-msgid "Photos"
-msgstr "Kuvat"
-
-#: mod/fbrowser.php:43 mod/fbrowser.php:68 mod/photos.php:194
-#: mod/photos.php:1062 mod/photos.php:1149 mod/photos.php:1166
-#: mod/photos.php:1659 mod/photos.php:1673 src/Model/Photo.php:244
-#: src/Model/Photo.php:253
-msgid "Contact Photos"
-msgstr "Kontaktin valokuvat"
-
-#: mod/fbrowser.php:105 mod/fbrowser.php:136 mod/profile_photo.php:250
-msgid "Upload"
-msgstr "Lähetä"
-
-#: mod/fbrowser.php:131
-msgid "Files"
-msgstr "Tiedostot"
-
-#: mod/fetch.php:16 mod/fetch.php:52 mod/fetch.php:65 mod/help.php:60
-#: mod/p.php:21 mod/p.php:48 mod/p.php:57 index.php:320
-msgid "Not Found"
-msgstr "Ei löydetty"
-
-#: mod/hcard.php:18
-msgid "No profile"
-msgstr "Ei profiilia"
-
-#: mod/help.php:48
-msgid "Help:"
-msgstr "Ohje:"
-
-#: mod/help.php:54 view/theme/vier/theme.php:298 src/Content/Nav.php:134
-msgid "Help"
-msgstr "Ohje"
-
-#: mod/help.php:63 index.php:325
-msgid "Page not found."
-msgstr "Sivua ei löytynyt."
-
-#: mod/home.php:39
-#, php-format
-msgid "Welcome to %s"
-msgstr "Tervetuloa %s"
-
-#: mod/lockview.php:38 mod/lockview.php:46
-msgid "Remote privacy information not available."
-msgstr "Yksityisyyden etätietoja ei saatavilla."
-
-#: mod/lockview.php:55
-msgid "Visible to:"
-msgstr "Näkyvissä:"
-
-#: mod/maintenance.php:24
-msgid "System down for maintenance"
-msgstr "Järjestelmä poiskytketty huoltoa varten"
-
-#: mod/newmember.php:11
-msgid "Welcome to Friendica"
-msgstr "Tervetuloa Friendicaan"
-
-#: mod/newmember.php:12
-msgid "New Member Checklist"
-msgstr "Uuden jäsenen tarkistuslista"
-
-#: mod/newmember.php:14
-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:15
-msgid "Getting Started"
-msgstr "Ensiaskeleet"
-
-#: mod/newmember.php:17
-msgid "Friendica Walk-Through"
-msgstr "Friendica -läpikäynti"
-
-#: mod/newmember.php:17
-msgid ""
-"On your Quick Start page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr ""
-
-#: mod/newmember.php:19 mod/admin.php:1906 mod/admin.php:2175
-#: mod/settings.php:123 view/theme/frio/theme.php:269 src/Content/Nav.php:206
-msgid "Settings"
-msgstr "Asetukset"
-
-#: mod/newmember.php:21
-msgid "Go to Your Settings"
-msgstr "Omat Asetukset"
-
-#: mod/newmember.php:21
-msgid ""
-"On your Settings page - change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr ""
-
-#: mod/newmember.php:22
-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:24 mod/profperm.php:113 mod/contacts.php:671
-#: mod/contacts.php:863 view/theme/frio/theme.php:260 src/Content/Nav.php:101
-#: src/Model/Profile.php:732 src/Model/Profile.php:865
-#: src/Model/Profile.php:898
+#: src/Model/Profile.php:734 src/Model/Profile.php:867
+#: src/Model/Profile.php:900 src/Content/Nav.php:101 mod/contacts.php:671
+#: mod/contacts.php:863 mod/newmember.php:24 mod/profperm.php:113
+#: view/theme/frio/theme.php:260
msgid "Profile"
msgstr "Profiili"
-#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:691
-msgid "Upload Profile Photo"
-msgstr "Lataa profiilikuva"
+#: src/Model/Profile.php:742 mod/settings.php:1209
+msgid "Full Name:"
+msgstr "Koko nimi:"
-#: mod/newmember.php:26
-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."
+#: src/Model/Profile.php:745
+msgid "Member since:"
+msgstr "Liittymispäivämäärä:"
+
+#: src/Model/Profile.php:753
+msgid "j F, Y"
msgstr ""
-#: mod/newmember.php:27
-msgid "Edit Your Profile"
-msgstr "Muokkaa profiilisi"
-
-#: mod/newmember.php:27
-msgid ""
-"Edit your default profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
+#: src/Model/Profile.php:754
+msgid "j F"
msgstr ""
-#: mod/newmember.php:28
-msgid "Profile Keywords"
-msgstr "Profiilin avainsanat"
+#: src/Model/Profile.php:762 src/Util/Temporal.php:147
+msgid "Birthday:"
+msgstr "Syntymäpäivä:"
-#: mod/newmember.php:28
-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."
+#: src/Model/Profile.php:769
+msgid "Age:"
+msgstr "Ikä:"
+
+#: src/Model/Profile.php:782
+#, php-format
+msgid "for %1$d %2$s"
msgstr ""
-#: mod/newmember.php:30
-msgid "Connecting"
-msgstr "Yhdistetään"
+#: src/Model/Profile.php:786 mod/profiles.php:694
+msgid "Sexual Preference:"
+msgstr "Seksuaalinen suuntautuminen:"
-#: mod/newmember.php:36
-msgid "Importing Emails"
-msgstr "Sähköpostin tuominen"
+#: src/Model/Profile.php:794 mod/profiles.php:721
+msgid "Hometown:"
+msgstr "Kotikaupunki:"
-#: mod/newmember.php:36
-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"
+#: src/Model/Profile.php:798 mod/notifications.php:251 mod/follow.php:174
+#: mod/contacts.php:666
+msgid "Tags:"
+msgstr "Tunnisteet:"
+
+#: src/Model/Profile.php:802 mod/profiles.php:722
+msgid "Political Views:"
+msgstr "Politiikka:"
+
+#: src/Model/Profile.php:806
+msgid "Religion:"
+msgstr "Uskonto:"
+
+#: src/Model/Profile.php:814
+msgid "Hobbies/Interests:"
+msgstr "Harrastukset:"
+
+#: src/Model/Profile.php:818 mod/profiles.php:726
+msgid "Likes:"
+msgstr "Tykkäykset:"
+
+#: src/Model/Profile.php:822 mod/profiles.php:727
+msgid "Dislikes:"
+msgstr "Ei tykkää:"
+
+#: src/Model/Profile.php:826
+msgid "Contact information and Social Networks:"
+msgstr "Yhteystiedot ja sosiaalinen media:"
+
+#: src/Model/Profile.php:830
+msgid "Musical interests:"
+msgstr "Musiikki:"
+
+#: src/Model/Profile.php:834
+msgid "Books, literature:"
+msgstr "Kirjat, kirjallisuus:"
+
+#: src/Model/Profile.php:838
+msgid "Television:"
+msgstr "Televisio:"
+
+#: src/Model/Profile.php:842
+msgid "Film/dance/culture/entertainment:"
+msgstr "Elokuvat/tanssit/kulttuuri/viihde:"
+
+#: src/Model/Profile.php:846
+msgid "Love/Romance:"
+msgstr "Rakkaus/romanssi:"
+
+#: src/Model/Profile.php:850
+msgid "Work/employment:"
+msgstr "Työ:"
+
+#: src/Model/Profile.php:854
+msgid "School/education:"
+msgstr "Koulutus:"
+
+#: src/Model/Profile.php:859
+msgid "Forums:"
+msgstr "Foorumit:"
+
+#: src/Model/Profile.php:868 mod/events.php:531
+msgid "Basic"
msgstr ""
-#: mod/newmember.php:39
-msgid "Go to Your Contacts Page"
-msgstr "Näytä minun kontaktit"
-
-#: mod/newmember.php:39
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the Add New Contact dialog."
+#: src/Model/Profile.php:869 mod/events.php:532 mod/admin.php:1351
+#: mod/contacts.php:895
+msgid "Advanced"
msgstr ""
-#: mod/newmember.php:40
-msgid "Go to Your Site's Directory"
-msgstr "Näytä oman sivuston luettelo"
+#: src/Model/Profile.php:892 src/Content/Nav.php:100 mod/contacts.php:669
+#: mod/contacts.php:855 view/theme/frio/theme.php:259
+msgid "Status"
+msgstr "Tila"
-#: mod/newmember.php:40
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a Connect or Follow link on "
-"their profile page. Provide your own Identity Address if requested."
+#: src/Model/Profile.php:895 mod/unfollow.php:132 mod/follow.php:186
+#: mod/contacts.php:858
+msgid "Status Messages and Posts"
+msgstr "Statusviestit ja postaukset"
+
+#: src/Model/Profile.php:903 mod/contacts.php:866
+msgid "Profile Details"
+msgstr "Profiilitiedot"
+
+#: src/Model/Profile.php:908 src/Content/Nav.php:102 mod/fbrowser.php:34
+#: view/theme/frio/theme.php:261
+msgid "Photos"
+msgstr "Kuvat"
+
+#: src/Model/Profile.php:911 mod/photos.php:108
+msgid "Photo Albums"
+msgstr "Valokuva-albumit"
+
+#: src/Model/Profile.php:916 src/Model/Profile.php:919 src/Content/Nav.php:103
+#: view/theme/frio/theme.php:262
+msgid "Videos"
+msgstr "Videot"
+
+#: src/Model/Profile.php:928 src/Model/Profile.php:939 src/Content/Nav.php:104
+#: src/Content/Nav.php:169 mod/events.php:391 mod/cal.php:274
+#: view/theme/frio/theme.php:263 view/theme/frio/theme.php:267
+msgid "Events"
+msgstr "Tapahtumat"
+
+#: src/Model/Profile.php:931 src/Model/Profile.php:942 src/Content/Nav.php:169
+#: view/theme/frio/theme.php:267
+msgid "Events and Calendar"
+msgstr "Tapahtumat ja kalenteri"
+
+#: src/Model/Profile.php:950 mod/notes.php:52
+msgid "Personal Notes"
+msgstr "Henkilökohtaiset tiedot"
+
+#: src/Model/Profile.php:953
+msgid "Only You Can See This"
+msgstr "Vain sinä näet tämän"
+
+#: src/Model/Event.php:36 src/Model/Event.php:814 mod/localtime.php:19
+msgid "l F d, Y \\@ g:i A"
msgstr ""
-#: mod/newmember.php:41
-msgid "Finding New People"
-msgstr "Kavereiden hankkiminen"
+#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
+#: src/Model/Event.php:882
+msgid "Starts:"
+msgstr "Alkaa:"
-#: mod/newmember.php:41
-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."
+#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420
+#: src/Model/Event.php:886
+msgid "Finishes:"
+msgstr "Päättyy:"
+
+#: src/Model/Event.php:368
+msgid "all-day"
+msgstr "koko päivä"
+
+#: src/Model/Event.php:391
+msgid "Jun"
+msgstr "Kes."
+
+#: src/Model/Event.php:394
+msgid "Sept"
+msgstr "Syy."
+
+#: src/Model/Event.php:412 mod/events.php:400 mod/cal.php:280
+msgid "today"
+msgstr "tänään"
+
+#: src/Model/Event.php:413 src/Util/Temporal.php:304 mod/events.php:401
+#: mod/cal.php:281
+msgid "month"
+msgstr "kuukausi"
+
+#: src/Model/Event.php:414 src/Util/Temporal.php:305 mod/events.php:402
+#: mod/cal.php:282
+msgid "week"
+msgstr "viikko"
+
+#: src/Model/Event.php:415 src/Util/Temporal.php:306 mod/events.php:403
+#: mod/cal.php:283
+msgid "day"
+msgstr "päivä"
+
+#: src/Model/Event.php:417
+msgid "No events to display"
+msgstr "Ei näytettäviä tapahtumia."
+
+#: src/Model/Event.php:543
+msgid "l, F j"
+msgstr "l, F j"
+
+#: src/Model/Event.php:566
+msgid "Edit event"
+msgstr "Muokkaa tapahtumaa"
+
+#: src/Model/Event.php:567
+msgid "Duplicate event"
+msgstr "Monista tapahtuma"
+
+#: src/Model/Event.php:568
+msgid "Delete event"
+msgstr "Poista tapahtuma"
+
+#: src/Model/Event.php:815
+msgid "D g:i A"
msgstr ""
-#: mod/newmember.php:43 src/Model/Group.php:414
+#: src/Model/Event.php:816
+msgid "g:i A"
+msgstr ""
+
+#: src/Model/Event.php:901 src/Model/Event.php:903
+msgid "Show map"
+msgstr "Näytä kartta"
+
+#: src/Model/Event.php:902
+msgid "Hide map"
+msgstr "Piilota kartta"
+
+#: src/Model/Group.php:44
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"may apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr ""
+
+#: src/Model/Group.php:341
+msgid "Default privacy group for new contacts"
+msgstr "Oletusryhmä uusille kontakteille"
+
+#: src/Model/Group.php:374
+msgid "Everybody"
+msgstr "Kaikki"
+
+#: src/Model/Group.php:394
+msgid "edit"
+msgstr "muokkaa"
+
+#: src/Model/Group.php:413 mod/network.php:202
+msgid "add"
+msgstr "lisää"
+
+#: src/Model/Group.php:414 mod/newmember.php:43
msgid "Groups"
msgstr "Ryhmät"
-#: mod/newmember.php:45
-msgid "Group Your Contacts"
-msgstr "Järjestä kontaktit ryhmiin"
+#: src/Model/Group.php:418
+msgid "Edit group"
+msgstr "Muokkaa ryhmää"
-#: mod/newmember.php:45
-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."
+#: src/Model/Group.php:419
+msgid "Contacts not in any group"
+msgstr "Kontaktit ilman ryhmää"
+
+#: src/Model/Group.php:420
+msgid "Create a new group"
+msgstr "Luo uusi ryhmä"
+
+#: src/Model/Group.php:421 mod/group.php:103 mod/group.php:199
+msgid "Group Name: "
+msgstr "Ryhmän nimi:"
+
+#: src/Model/Group.php:422
+msgid "Edit groups"
+msgstr "Muokkaa ryhmiä"
+
+#: src/Model/Photo.php:244 src/Model/Photo.php:253 mod/fbrowser.php:43
+#: mod/fbrowser.php:68 mod/photos.php:194 mod/photos.php:1062
+#: mod/photos.php:1149 mod/photos.php:1166 mod/photos.php:1659
+#: mod/photos.php:1673
+msgid "Contact Photos"
+msgstr "Kontaktin valokuvat"
+
+#: src/Model/User.php:154
+msgid "Login failed"
+msgstr "Kirjautuminen epäonnistui"
+
+#: src/Model/User.php:185
+msgid "Not enough information to authenticate"
msgstr ""
-#: mod/newmember.php:48
-msgid "Why Aren't My Posts Public?"
-msgstr "Miksi julkaisuni eivät ole julkisia?"
+#: src/Model/User.php:214 src/Core/Console/NewPassword.php:74 mod/cal.php:297
+msgid "User not found"
+msgstr "Käyttäjää ei löydy"
-#: mod/newmember.php:48
-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."
+#: src/Model/User.php:335 mod/settings.php:384
+msgid "Passwords do not match. Password unchanged."
+msgstr "Salasanat eivät täsmää. Salasana ennallaan."
+
+#: src/Model/User.php:342
+msgid "An invitation is required."
msgstr ""
-#: mod/newmember.php:52
-msgid "Getting Help"
-msgstr "Avun saaminen"
+#: src/Model/User.php:346
+msgid "Invitation could not be verified."
+msgstr "Kutsua ei voitu vahvistaa."
-#: mod/newmember.php:54
-msgid "Go to the Help Section"
-msgstr "Näytä ohjeet"
+#: src/Model/User.php:353
+msgid "Invalid OpenID url"
+msgstr "Virheellinen OpenID url-osoite"
-#: mod/newmember.php:54
+#: src/Model/User.php:366 src/Module/Login.php:100
msgid ""
-"Our help pages may be consulted for detail on other program"
-" features and resources."
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
msgstr ""
-#: mod/nogroup.php:42 mod/viewcontacts.php:112 mod/contacts.php:619
-#: mod/contacts.php:959
+#: src/Model/User.php:366 src/Module/Login.php:100
+msgid "The error message was:"
+msgstr "Virheviesti oli:"
+
+#: src/Model/User.php:372
+msgid "Please enter the required information."
+msgstr "Syötä tarvittavat tiedot."
+
+#: src/Model/User.php:385
+msgid "Please use a shorter name."
+msgstr "Käytä lyhyempää nimeä."
+
+#: src/Model/User.php:388
+msgid "Name too short."
+msgstr "Nimi on liian lyhyt."
+
+#: src/Model/User.php:396
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr ""
+
+#: src/Model/User.php:401
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Sähköpostiosoitteesi verkkotunnus on tämän sivuston estolistalla."
+
+#: src/Model/User.php:405
+msgid "Not a valid email address."
+msgstr "Virheellinen sähköpostiosoite."
+
+#: src/Model/User.php:409 src/Model/User.php:417
+msgid "Cannot use that email."
+msgstr "Sähköpostiosoitetta ei voitu käyttää."
+
+#: src/Model/User.php:424
+msgid "Your nickname can only contain a-z, 0-9 and _."
+msgstr "Nimimerkki voi sisältää a-z, 0-9 ja _."
+
+#: src/Model/User.php:431 src/Model/User.php:487
+msgid "Nickname is already registered. Please choose another."
+msgstr "Valitsemasi nimimerkki on jo käytössä. Valitse toinen nimimerkki."
+
+#: src/Model/User.php:441
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "VAKAVA VIRHE: Salausavainten luominen epäonnistui."
+
+#: src/Model/User.php:474 src/Model/User.php:478
+msgid "An error occurred during registration. Please try again."
+msgstr "Rekisteröityminen epäonnistui. Yritä uudelleen."
+
+#: src/Model/User.php:498 view/theme/duepuntozero/config.php:54
+msgid "default"
+msgstr "oletus"
+
+#: src/Model/User.php:503
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Oletusprofiilin luominen epäonnistui. Yritä uudelleen."
+
+#: src/Model/User.php:510
+msgid "An error occurred creating your self contact. Please try again."
+msgstr ""
+
+#: src/Model/User.php:515 src/Content/ContactSelector.php:169
+msgid "Friends"
+msgstr "Kaverit"
+
+#: src/Model/User.php:519
+msgid ""
+"An error occurred creating your default contact group. Please try again."
+msgstr ""
+
+#: src/Model/User.php:593
#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Näytä %s-käyttäjän profiili [%s]"
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
+"\t\t"
+msgstr ""
-#: mod/nogroup.php:43 mod/contacts.php:960
-msgid "Edit contact"
-msgstr "Muokkaa kontaktia"
+#: src/Model/User.php:603
+#, php-format
+msgid "Registration at %s"
+msgstr "Rekisteröityminen kohteessa %s"
-#: mod/nogroup.php:63
-msgid "Contacts who are not members of a group"
-msgstr "Kontaktit jotka eivät kuulu ryhmään"
+#: src/Model/User.php:621
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t\t"
+msgstr ""
-#: mod/p.php:14
-msgid "Not Extended"
-msgstr "Ei laajennettu"
+#: src/Model/User.php:625
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t\t%1$s\n"
+"\t\t\tPassword:\t\t%5$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\tIf you ever want to delete your account, you can do so at %3$s/removeme\n"
+"\n"
+"\t\t\tThank you and welcome to %2$s."
+msgstr ""
+
+#: src/Model/User.php:659 mod/admin.php:1611
+#, php-format
+msgid "Registration details for %s"
+msgstr ""
+
+#: src/Content/Text/BBCode.php:416
+msgid "view full size"
+msgstr "näytä täysikokoisena"
+
+#: src/Content/Text/BBCode.php:842 src/Content/Text/BBCode.php:1611
+#: src/Content/Text/BBCode.php:1612
+msgid "Image/photo"
+msgstr "Kuva/valokuva"
+
+#: src/Content/Text/BBCode.php:980
+#, php-format
+msgid "%2$s %3$s"
+msgstr "%2$s %3$s"
+
+#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560
+msgid "$1 wrote:"
+msgstr "$1 kirjoitti:"
+
+#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621
+msgid "Encrypted content"
+msgstr "Salattu sisältö"
+
+#: src/Content/Text/BBCode.php:1740
+msgid "Invalid source protocol"
+msgstr "Virheellinen lähdeprotokolla"
+
+#: src/Content/Text/BBCode.php:1751
+msgid "Invalid link protocol"
+msgstr "Virheellinen linkkiprotokolla"
+
+#: src/Content/Feature.php:79
+msgid "General Features"
+msgstr "Yleiset ominaisuudet"
+
+#: src/Content/Feature.php:81
+msgid "Multiple Profiles"
+msgstr ""
+
+#: src/Content/Feature.php:81
+msgid "Ability to create multiple profiles"
+msgstr ""
+
+#: src/Content/Feature.php:82
+msgid "Photo Location"
+msgstr "Kuvan sijainti"
+
+#: src/Content/Feature.php:82
+msgid ""
+"Photo metadata is normally stripped. This extracts the location (if present)"
+" prior to stripping metadata and links it to a map."
+msgstr ""
+
+#: src/Content/Feature.php:83
+msgid "Export Public Calendar"
+msgstr "Vie julkinen kalenteri"
+
+#: src/Content/Feature.php:83
+msgid "Ability for visitors to download the public calendar"
+msgstr ""
+
+#: src/Content/Feature.php:88
+msgid "Post Composition Features"
+msgstr ""
+
+#: src/Content/Feature.php:89
+msgid "Post Preview"
+msgstr "Viestin esikatselu"
+
+#: src/Content/Feature.php:89
+msgid "Allow previewing posts and comments before publishing them"
+msgstr ""
+
+#: src/Content/Feature.php:90
+msgid "Auto-mention Forums"
+msgstr ""
+
+#: src/Content/Feature.php:90
+msgid ""
+"Add/remove mention when a forum page is selected/deselected in ACL window."
+msgstr ""
+
+#: src/Content/Feature.php:95
+msgid "Network Sidebar Widgets"
+msgstr ""
+
+#: src/Content/Feature.php:96
+msgid "Search by Date"
+msgstr "Päivämäärähaku"
+
+#: src/Content/Feature.php:96
+msgid "Ability to select posts by date ranges"
+msgstr ""
+
+#: src/Content/Feature.php:97 src/Content/Feature.php:127
+msgid "List Forums"
+msgstr "Näytä foorumit"
+
+#: src/Content/Feature.php:97
+msgid "Enable widget to display the forums your are connected with"
+msgstr ""
+
+#: src/Content/Feature.php:98
+msgid "Group Filter"
+msgstr "Ryhmäsuodatin"
+
+#: src/Content/Feature.php:98
+msgid "Enable widget to display Network posts only from selected group"
+msgstr ""
+
+#: src/Content/Feature.php:99
+msgid "Network Filter"
+msgstr "Verkkosuodatin"
+
+#: src/Content/Feature.php:99
+msgid "Enable widget to display Network posts only from selected network"
+msgstr ""
+
+#: src/Content/Feature.php:100 mod/network.php:201 mod/search.php:46
+msgid "Saved Searches"
+msgstr "Tallennetut haut"
+
+#: src/Content/Feature.php:100
+msgid "Save search terms for re-use"
+msgstr "Tallenna hakutermit myöhempää käyttöä varten"
+
+#: src/Content/Feature.php:105
+msgid "Network Tabs"
+msgstr "Verkko välilehdet"
+
+#: src/Content/Feature.php:106
+msgid "Network Personal Tab"
+msgstr ""
+
+#: src/Content/Feature.php:106
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr ""
+
+#: src/Content/Feature.php:107
+msgid "Network New Tab"
+msgstr ""
+
+#: src/Content/Feature.php:107
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr ""
+
+#: src/Content/Feature.php:108
+msgid "Network Shared Links Tab"
+msgstr ""
+
+#: src/Content/Feature.php:108
+msgid "Enable tab to display only Network posts with links in them"
+msgstr ""
+
+#: src/Content/Feature.php:113
+msgid "Post/Comment Tools"
+msgstr "Julkaisu/kommentti työkalut"
+
+#: src/Content/Feature.php:114
+msgid "Multiple Deletion"
+msgstr ""
+
+#: src/Content/Feature.php:114
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Valitse ja poista monta julkaisua/kommentia yhtaikaa"
+
+#: src/Content/Feature.php:115
+msgid "Edit Sent Posts"
+msgstr "Muokkaa lähetetyt julkaisut"
+
+#: src/Content/Feature.php:115
+msgid "Edit and correct posts and comments after sending"
+msgstr "Muokkaa ja korjaa julkaisuja ja kommenteja julkaisun jälkeen"
+
+#: src/Content/Feature.php:116
+msgid "Tagging"
+msgstr "Tunnisteet"
+
+#: src/Content/Feature.php:116
+msgid "Ability to tag existing posts"
+msgstr "Saa merkitä olemassa olevia julkaisuja"
+
+#: src/Content/Feature.php:117
+msgid "Post Categories"
+msgstr "Julkaisuluokat"
+
+#: src/Content/Feature.php:117
+msgid "Add categories to your posts"
+msgstr "Luokittele julkaisusi"
+
+#: src/Content/Feature.php:118 src/Content/Widget.php:200
+msgid "Saved Folders"
+msgstr "Tallennetut kansiot"
+
+#: src/Content/Feature.php:118
+msgid "Ability to file posts under folders"
+msgstr ""
+
+#: src/Content/Feature.php:119
+msgid "Dislike Posts"
+msgstr ""
+
+#: src/Content/Feature.php:119
+msgid "Ability to dislike posts/comments"
+msgstr ""
+
+#: src/Content/Feature.php:120
+msgid "Star Posts"
+msgstr "Tähtimerkityt julkaisut"
+
+#: src/Content/Feature.php:120
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Salli julkaisujen tähtimerkintä"
+
+#: src/Content/Feature.php:121
+msgid "Mute Post Notifications"
+msgstr "Mykistä julkaisuilmoitukset"
+
+#: src/Content/Feature.php:121
+msgid "Ability to mute notifications for a thread"
+msgstr ""
+
+#: src/Content/Feature.php:126
+msgid "Advanced Profile Settings"
+msgstr "Profiilin lisäasetukset"
+
+#: src/Content/Feature.php:127
+msgid "Show visitors public community forums at the Advanced Profile Page"
+msgstr ""
+
+#: src/Content/Feature.php:128
+msgid "Tag Cloud"
+msgstr "Tunnistepilvi"
+
+#: src/Content/Feature.php:128
+msgid "Provide a personal tag cloud on your profile page"
+msgstr "Näytä henkilökohtainen tunnistepilvi profiilisivullasi"
+
+#: src/Content/Feature.php:129
+msgid "Display Membership Date"
+msgstr "Näytä liittymispäivämäärä"
+
+#: src/Content/Feature.php:129
+msgid "Display membership date in profile"
+msgstr "Näytä liittymispäivämäärä profiilissa"
+
+#: src/Content/Widget/CalendarExport.php:61
+msgid "Export"
+msgstr "Vie"
+
+#: src/Content/Widget/CalendarExport.php:62
+msgid "Export calendar as ical"
+msgstr "Vie kalenteri ical -tiedostona"
+
+#: src/Content/Widget/CalendarExport.php:63
+msgid "Export calendar as csv"
+msgstr "Vie kalenteri csv-tiedostona"
+
+#: src/Content/Widget.php:33
+msgid "Add New Contact"
+msgstr "Lisää uusi kontakti"
+
+#: src/Content/Widget.php:34
+msgid "Enter address or web location"
+msgstr "Syötä verkko-osoite"
+
+#: src/Content/Widget.php:35
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Esimerkki: bob@example.com, http://example.com/barbara"
+
+#: src/Content/Widget.php:53
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d kutsu saatavilla"
+msgstr[1] "%d kutsuja saatavilla"
+
+#: src/Content/Widget.php:59
+msgid "Find People"
+msgstr "Löydä ihmisiä"
+
+#: src/Content/Widget.php:60
+msgid "Enter name or interest"
+msgstr "Syötä nimi tai harrastus"
+
+#: src/Content/Widget.php:62
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Esim. Matti Meikäläinen, kalastus yms."
+
+#: src/Content/Widget.php:63 mod/directory.php:209 mod/contacts.php:820
+msgid "Find"
+msgstr "Etsi"
+
+#: src/Content/Widget.php:64 mod/suggest.php:114 view/theme/vier/theme.php:203
+msgid "Friend Suggestions"
+msgstr "Ystäväehdotukset"
+
+#: src/Content/Widget.php:65 view/theme/vier/theme.php:202
+msgid "Similar Interests"
+msgstr "Yhteiset harrastukset"
+
+#: src/Content/Widget.php:66
+msgid "Random Profile"
+msgstr "Satunnainen profiili"
+
+#: src/Content/Widget.php:67 view/theme/vier/theme.php:204
+msgid "Invite Friends"
+msgstr "Kutsu kavereita"
+
+#: src/Content/Widget.php:68
+msgid "View Global Directory"
+msgstr "Katso maailmanlaajuista luetteloa"
+
+#: src/Content/Widget.php:159
+msgid "Networks"
+msgstr "Verkot"
+
+#: src/Content/Widget.php:162
+msgid "All Networks"
+msgstr "Kaikki verkot"
+
+#: src/Content/Widget.php:203 src/Content/Widget.php:243
+msgid "Everything"
+msgstr "Kaikki"
+
+#: src/Content/Widget.php:240
+msgid "Categories"
+msgstr "Luokat"
+
+#: src/Content/Widget.php:307
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d yhteinen kontakti"
+msgstr[1] "%d yhteistä kontaktia"
+
+#: src/Content/ContactSelector.php:55
+msgid "Frequently"
+msgstr "Usein"
+
+#: src/Content/ContactSelector.php:56
+msgid "Hourly"
+msgstr "Tunneittain"
+
+#: src/Content/ContactSelector.php:57
+msgid "Twice daily"
+msgstr "Kahdesti päivässä"
+
+#: src/Content/ContactSelector.php:58
+msgid "Daily"
+msgstr "Päivittäin"
+
+#: src/Content/ContactSelector.php:59
+msgid "Weekly"
+msgstr "Viikottain"
+
+#: src/Content/ContactSelector.php:60
+msgid "Monthly"
+msgstr "Kuukausittain"
+
+#: src/Content/ContactSelector.php:79 mod/dfrn_request.php:656
+msgid "Friendica"
+msgstr "Friendica"
+
+#: src/Content/ContactSelector.php:80
+msgid "OStatus"
+msgstr "OStatus"
+
+#: src/Content/ContactSelector.php:81
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
+
+#: src/Content/ContactSelector.php:82 mod/admin.php:1796 mod/admin.php:1807
+#: mod/admin.php:1820 mod/admin.php:1838
+msgid "Email"
+msgstr "Sähköposti"
+
+#: src/Content/ContactSelector.php:83 mod/settings.php:805
+msgid "Diaspora"
+msgstr "Diaspora"
+
+#: src/Content/ContactSelector.php:84
+msgid "Facebook"
+msgstr "Facebook"
+
+#: src/Content/ContactSelector.php:85
+msgid "Zot!"
+msgstr "Zot!"
+
+#: src/Content/ContactSelector.php:86
+msgid "LinkedIn"
+msgstr "LinkedIn"
+
+#: src/Content/ContactSelector.php:87
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
+
+#: src/Content/ContactSelector.php:88
+msgid "MySpace"
+msgstr "MySpace"
+
+#: src/Content/ContactSelector.php:89
+msgid "Google+"
+msgstr "Google+"
+
+#: src/Content/ContactSelector.php:90
+msgid "pump.io"
+msgstr "pump.io"
+
+#: src/Content/ContactSelector.php:91
+msgid "Twitter"
+msgstr "Twitter"
+
+#: src/Content/ContactSelector.php:92
+msgid "Diaspora Connector"
+msgstr "Diaspora -liitin"
+
+#: src/Content/ContactSelector.php:93
+msgid "GNU Social Connector"
+msgstr "GNU social -liitin"
+
+#: src/Content/ContactSelector.php:94
+msgid "pnut"
+msgstr "pnut"
+
+#: src/Content/ContactSelector.php:95
+msgid "App.net"
+msgstr "App.net"
+
+#: src/Content/ContactSelector.php:125
+msgid "Male"
+msgstr "Mies"
+
+#: src/Content/ContactSelector.php:125
+msgid "Female"
+msgstr "Nainen"
+
+#: src/Content/ContactSelector.php:125
+msgid "Currently Male"
+msgstr "Tällä hetkellä mies"
+
+#: src/Content/ContactSelector.php:125
+msgid "Currently Female"
+msgstr "Tällä hetkellä nainen"
+
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Male"
+msgstr "Enimmäkseen mies"
+
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Female"
+msgstr "Enimmäkseen nainen"
+
+#: src/Content/ContactSelector.php:125
+msgid "Transgender"
+msgstr "Transsukupuolinen"
+
+#: src/Content/ContactSelector.php:125
+msgid "Intersex"
+msgstr "Intersukupuolinen"
+
+#: src/Content/ContactSelector.php:125
+msgid "Transsexual"
+msgstr "Transsukupuolinen"
+
+#: src/Content/ContactSelector.php:125
+msgid "Hermaphrodite"
+msgstr "Hermafrodiitti"
+
+#: src/Content/ContactSelector.php:125
+msgid "Neuter"
+msgstr "Neutri"
+
+#: src/Content/ContactSelector.php:125
+msgid "Non-specific"
+msgstr "Ei-binäärinen"
+
+#: src/Content/ContactSelector.php:125
+msgid "Other"
+msgstr "Toinen"
+
+#: src/Content/ContactSelector.php:147
+msgid "Males"
+msgstr "Miehet"
+
+#: src/Content/ContactSelector.php:147
+msgid "Females"
+msgstr "Naiset"
+
+#: src/Content/ContactSelector.php:147
+msgid "Gay"
+msgstr "Homo"
+
+#: src/Content/ContactSelector.php:147
+msgid "Lesbian"
+msgstr "Lesbo"
+
+#: src/Content/ContactSelector.php:147
+msgid "No Preference"
+msgstr ""
+
+#: src/Content/ContactSelector.php:147
+msgid "Bisexual"
+msgstr "Biseksuaali"
+
+#: src/Content/ContactSelector.php:147
+msgid "Autosexual"
+msgstr ""
+
+#: src/Content/ContactSelector.php:147
+msgid "Abstinent"
+msgstr "Selibaatissa elävä"
+
+#: src/Content/ContactSelector.php:147
+msgid "Virgin"
+msgstr "Neitsyt"
+
+#: src/Content/ContactSelector.php:147
+msgid "Deviant"
+msgstr ""
+
+#: src/Content/ContactSelector.php:147
+msgid "Fetish"
+msgstr ""
+
+#: src/Content/ContactSelector.php:147
+msgid "Oodles"
+msgstr ""
+
+#: src/Content/ContactSelector.php:147
+msgid "Nonsexual"
+msgstr "Aseksuaali"
+
+#: src/Content/ContactSelector.php:169
+msgid "Single"
+msgstr "Sinkku"
+
+#: src/Content/ContactSelector.php:169
+msgid "Lonely"
+msgstr "Yksinäinen"
+
+#: src/Content/ContactSelector.php:169
+msgid "Available"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Unavailable"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Has crush"
+msgstr "Ihastunut"
+
+#: src/Content/ContactSelector.php:169
+msgid "Infatuated"
+msgstr "Hullaantunut"
+
+#: src/Content/ContactSelector.php:169
+msgid "Dating"
+msgstr "Seurustelee"
+
+#: src/Content/ContactSelector.php:169
+msgid "Unfaithful"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Sex Addict"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Friends/Benefits"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Casual"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Engaged"
+msgstr "Kihloissa"
+
+#: src/Content/ContactSelector.php:169
+msgid "Married"
+msgstr "Naimisissa"
+
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily married"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Partners"
+msgstr "Kumppanit"
+
+#: src/Content/ContactSelector.php:169
+msgid "Cohabiting"
+msgstr "Avoliitossa"
+
+#: src/Content/ContactSelector.php:169
+msgid "Common law"
+msgstr "Avoliitossa"
+
+#: src/Content/ContactSelector.php:169
+msgid "Happy"
+msgstr "Iloinen"
+
+#: src/Content/ContactSelector.php:169
+msgid "Not looking"
+msgstr "Ei etsi"
+
+#: src/Content/ContactSelector.php:169
+msgid "Swinger"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Betrayed"
+msgstr "Petetty"
+
+#: src/Content/ContactSelector.php:169
+msgid "Separated"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Unstable"
+msgstr "Epävakaa"
+
+#: src/Content/ContactSelector.php:169
+msgid "Divorced"
+msgstr "Eronnut"
+
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily divorced"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Widowed"
+msgstr "Leski"
+
+#: src/Content/ContactSelector.php:169
+msgid "Uncertain"
+msgstr "Epävarma"
+
+#: src/Content/ContactSelector.php:169
+msgid "It's complicated"
+msgstr "Se on monimutkaista"
+
+#: src/Content/ContactSelector.php:169
+msgid "Don't care"
+msgstr "Ei ole väliä"
+
+#: src/Content/ContactSelector.php:169
+msgid "Ask me"
+msgstr "Kysy minulta"
+
+#: src/Content/OEmbed.php:253
+msgid "Embedding disabled"
+msgstr "Upottaminen poistettu käytöstä"
+
+#: src/Content/OEmbed.php:373
+msgid "Embedded content"
+msgstr "Upotettu sisältö"
+
+#: src/Content/ForumManager.php:127 view/theme/vier/theme.php:256
+msgid "External link to forum"
+msgstr "Ulkoinen linkki foorumiin"
+
+#: src/Content/Nav.php:53
+msgid "Nothing new here"
+msgstr ""
+
+#: src/Content/Nav.php:57
+msgid "Clear notifications"
+msgstr "Tyhjennä ilmoitukset"
+
+#: src/Content/Nav.php:97 src/Module/Login.php:311
+#: view/theme/frio/theme.php:256
+msgid "Logout"
+msgstr "Kirjaudu ulos"
+
+#: src/Content/Nav.php:97 view/theme/frio/theme.php:256
+msgid "End this session"
+msgstr "Lopeta istunto"
+
+#: src/Content/Nav.php:100 src/Content/Nav.php:181
+#: view/theme/frio/theme.php:259
+msgid "Your posts and conversations"
+msgstr "Omat julkaisut ja keskustelut"
+
+#: src/Content/Nav.php:101 view/theme/frio/theme.php:260
+msgid "Your profile page"
+msgstr "Oma profiilisivu"
+
+#: src/Content/Nav.php:102 view/theme/frio/theme.php:261
+msgid "Your photos"
+msgstr "Omat kuvat"
+
+#: src/Content/Nav.php:103 view/theme/frio/theme.php:262
+msgid "Your videos"
+msgstr "Omat videot"
+
+#: src/Content/Nav.php:104 view/theme/frio/theme.php:263
+msgid "Your events"
+msgstr "Omat tapahtumat"
+
+#: src/Content/Nav.php:105
+msgid "Personal notes"
+msgstr ""
+
+#: src/Content/Nav.php:105
+msgid "Your personal notes"
+msgstr ""
+
+#: src/Content/Nav.php:114 src/Module/Login.php:312 mod/bookmarklet.php:23
+msgid "Login"
+msgstr "Kirjaudu sisään"
+
+#: src/Content/Nav.php:114
+msgid "Sign in"
+msgstr "Kirjaudu sisään"
+
+#: src/Content/Nav.php:124 src/Content/Nav.php:181
+#: src/Core/NotificationsManager.php:192
+msgid "Home"
+msgstr "Koti"
+
+#: src/Content/Nav.php:124
+msgid "Home Page"
+msgstr "Kotisivu"
+
+#: src/Content/Nav.php:128 src/Module/Login.php:283 mod/register.php:279
+msgid "Register"
+msgstr "Rekisteröidy"
+
+#: src/Content/Nav.php:128
+msgid "Create an account"
+msgstr "Luo tili"
+
+#: src/Content/Nav.php:134 mod/help.php:54 view/theme/vier/theme.php:298
+msgid "Help"
+msgstr "Ohje"
+
+#: src/Content/Nav.php:134
+msgid "Help and documentation"
+msgstr "Ohjeet ja dokmentointi"
+
+#: src/Content/Nav.php:138
+msgid "Apps"
+msgstr "Sovellukset"
+
+#: src/Content/Nav.php:138
+msgid "Addon applications, utilities, games"
+msgstr "Lisäosa sovelluksia, apuohjelmia, pelejä"
+
+#: src/Content/Nav.php:142
+msgid "Search site content"
+msgstr "Sivustohaku"
+
+#: src/Content/Nav.php:165
+msgid "Community"
+msgstr "Yhteisö"
+
+#: src/Content/Nav.php:165
+msgid "Conversations on this and other servers"
+msgstr "Keskustelut täällä ja muilla palvelimilla"
+
+#: src/Content/Nav.php:172
+msgid "Directory"
+msgstr "Luettelo"
+
+#: src/Content/Nav.php:172
+msgid "People directory"
+msgstr "Henkilöluettelo"
+
+#: src/Content/Nav.php:174 mod/admin.php:179
+msgid "Information"
+msgstr "Tietoja"
+
+#: src/Content/Nav.php:174
+msgid "Information about this friendica instance"
+msgstr "Lisätietoja tästä Friendica -instanssista"
+
+#: src/Content/Nav.php:178 src/Core/NotificationsManager.php:178
+#: mod/admin.php:758 view/theme/frio/theme.php:266
+msgid "Network"
+msgstr "Verkko"
+
+#: src/Content/Nav.php:178 view/theme/frio/theme.php:266
+msgid "Conversations from your friends"
+msgstr "Kavereiden keskustelut"
+
+#: src/Content/Nav.php:179
+msgid "Network Reset"
+msgstr "Verkon nollaus"
+
+#: src/Content/Nav.php:179
+msgid "Load Network page with no filters"
+msgstr ""
+
+#: src/Content/Nav.php:185 src/Core/NotificationsManager.php:199
+msgid "Introductions"
+msgstr "Esittelyt"
+
+#: src/Content/Nav.php:185
+msgid "Friend Requests"
+msgstr "Kaveripyynnöt"
+
+#: src/Content/Nav.php:186 mod/notifications.php:98
+msgid "Notifications"
+msgstr "Huomautukset"
+
+#: src/Content/Nav.php:187
+msgid "See all notifications"
+msgstr "Näytä kaikki ilmoitukset"
+
+#: src/Content/Nav.php:188 mod/settings.php:870
+msgid "Mark as seen"
+msgstr "Merkitse luetuksi"
+
+#: src/Content/Nav.php:188
+msgid "Mark all system notifications seen"
+msgstr ""
+
+#: src/Content/Nav.php:191 mod/message.php:112 view/theme/frio/theme.php:268
+msgid "Messages"
+msgstr "Viestit"
+
+#: src/Content/Nav.php:191 view/theme/frio/theme.php:268
+msgid "Private mail"
+msgstr "Yksityinen posti"
+
+#: src/Content/Nav.php:192
+msgid "Inbox"
+msgstr "Saapuneet"
+
+#: src/Content/Nav.php:193
+msgid "Outbox"
+msgstr "Lähtevät"
+
+#: src/Content/Nav.php:194 mod/message.php:30
+msgid "New Message"
+msgstr "Uusi viesti"
+
+#: src/Content/Nav.php:197
+msgid "Manage"
+msgstr "Hallitse"
+
+#: src/Content/Nav.php:197
+msgid "Manage other pages"
+msgstr "Hallitse muita sivuja"
+
+#: src/Content/Nav.php:200 mod/settings.php:93
+msgid "Delegations"
+msgstr ""
+
+#: src/Content/Nav.php:200 mod/delegate.php:169
+msgid "Delegate Page Management"
+msgstr ""
+
+#: src/Content/Nav.php:202 mod/settings.php:123 mod/admin.php:1920
+#: mod/admin.php:2189 mod/newmember.php:19 view/theme/frio/theme.php:269
+msgid "Settings"
+msgstr "Asetukset"
+
+#: src/Content/Nav.php:202 view/theme/frio/theme.php:269
+msgid "Account settings"
+msgstr "Tiliasetukset"
+
+#: src/Content/Nav.php:205
+msgid "Manage/Edit Profiles"
+msgstr "Hallitse/muokka profiilit"
+
+#: src/Content/Nav.php:208 view/theme/frio/theme.php:270
+msgid "Manage/edit friends and contacts"
+msgstr "Hallitse/muokkaa kaverit ja kontaktit"
+
+#: src/Content/Nav.php:213 mod/admin.php:222
+msgid "Admin"
+msgstr "Ylläpitäjä"
+
+#: src/Content/Nav.php:213
+msgid "Site setup and configuration"
+msgstr "Sivuston asennus ja asetukset"
+
+#: src/Content/Nav.php:216
+msgid "Navigation"
+msgstr "Navigointi"
+
+#: src/Content/Nav.php:216
+msgid "Site map"
+msgstr "Sivustokartta"
+
+#: src/Worker/Delivery.php:390
+msgid "(no subject)"
+msgstr "(ei aihetta)"
+
+#: src/App.php:511
+msgid "Delete this item?"
+msgstr "Poista tämä kohde?"
+
+#: src/App.php:513
+msgid "show fewer"
+msgstr "näytä vähemmän"
+
+#: src/Module/Login.php:86 src/Module/Login.php:134 mod/openid.php:116
+msgid "Login failed."
+msgstr "Kirjautuminen epäonnistui"
+
+#: src/Module/Login.php:282
+msgid "Create a New Account"
+msgstr "Luo uusi käyttäjätili"
+
+#: src/Module/Login.php:314 mod/lostpass.php:119
+msgid "Nickname or Email: "
+msgstr "Lempinimi tai sähköposti:"
+
+#: src/Module/Login.php:315
+msgid "Password: "
+msgstr "Salasana:"
+
+#: src/Module/Login.php:316
+msgid "Remember me"
+msgstr "Muista minut"
+
+#: src/Module/Login.php:319
+msgid "Or login using OpenID: "
+msgstr "Kirjaudu sisään OpenID -tunnuksella:"
+
+#: src/Module/Login.php:325
+msgid "Forgot your password?"
+msgstr "Unohditko salasanasi?"
+
+#: src/Module/Login.php:326 mod/lostpass.php:136
+msgid "Password Reset"
+msgstr "Salasanan nollaus"
+
+#: src/Module/Login.php:328
+msgid "Website Terms of Service"
+msgstr "Verkkosivun käyttöehdot"
+
+#: src/Module/Login.php:329
+msgid "terms of service"
+msgstr "käyttöehdot"
+
+#: src/Module/Login.php:331
+msgid "Website Privacy Policy"
+msgstr "Sivuston tietosuojakäytäntö"
+
+#: src/Module/Login.php:332
+msgid "privacy policy"
+msgstr "tietosuojakäytäntö"
+
+#: src/Module/Tos.php:48 mod/admin.php:188 mod/admin.php:302
+#: mod/register.php:288
+msgid "Terms of Service"
+msgstr "Käyttöehdot"
+
+#: src/Module/Tos.php:51
+msgid "Privacy Statement"
+msgstr "Tietosuojalausunto"
+
+#: src/Module/Tos.php:52
+msgid ""
+"At the time of registration, and for providing communications between the "
+"user account and their contacts, the user has to provide a display name (pen"
+" name), an username (nickname) and a working email address. The names will "
+"be accessible on the profile page of the account by any visitor of the page,"
+" even if other profile details are not displayed. The email address will "
+"only be used to send the user notifications about interactions, but wont be "
+"visibly displayed. The listing of an account in the node's user directory or"
+" the global user directory is optional and can be controlled in the user "
+"settings, it is not necessary for communication."
+msgstr ""
+
+#: src/Module/Tos.php:53
+msgid ""
+"This data is required for communication and is passed on to the nodes of the"
+" communication partners. Users can enter additional private data that may be"
+" transmitted to the communication partners accounts."
+msgstr ""
+
+#: src/Module/Tos.php:54
+#, php-format
+msgid ""
+"At any point in time a logged in user can export their account data from the"
+" account settings . If the user wants "
+"to delete their account they can do so at %1$s/removeme . The deletion of the account will "
+"be permanent."
+msgstr ""
+
+#: src/Module/Logout.php:28
+msgid "Logged out."
+msgstr "Kirjautunut ulos."
+
+#: src/Object/Image.php:953 src/Object/Image.php:969 src/Object/Image.php:977
+#: src/Object/Image.php:1002 mod/wall_upload.php:231 mod/item.php:471
+msgid "Wall Photos"
+msgstr "Seinäkuvat"
+
+#: src/Object/Post.php:128
+msgid "This entry was edited"
+msgstr "Tämä kohde oli muokattu"
+
+#: src/Object/Post.php:149 mod/photos.php:1308
+msgid "Private Message"
+msgstr "Yksityisviesti"
+
+#: src/Object/Post.php:155 src/Object/Post.php:157 mod/settings.php:737
+msgid "Edit"
+msgstr "Muokkaa"
+
+#: src/Object/Post.php:182
+msgid "save to folder"
+msgstr "tallenna kansioon"
+
+#: src/Object/Post.php:235
+msgid "I will attend"
+msgstr "Osallistun"
+
+#: src/Object/Post.php:235
+msgid "I will not attend"
+msgstr "En aio osallistua"
+
+#: src/Object/Post.php:235
+msgid "I might attend"
+msgstr "Ehkä osallistun"
+
+#: src/Object/Post.php:263
+msgid "add star"
+msgstr "lisää tähti"
+
+#: src/Object/Post.php:264
+msgid "remove star"
+msgstr "poista tähti"
+
+#: src/Object/Post.php:265
+msgid "toggle star status"
+msgstr "Tähtitila päälle/pois"
+
+#: src/Object/Post.php:268
+msgid "starred"
+msgstr "tähtimerkitty"
+
+#: src/Object/Post.php:274
+msgid "ignore thread"
+msgstr "Sivuuta keskustelu"
+
+#: src/Object/Post.php:275
+msgid "unignore thread"
+msgstr "Seuraa keskustelua"
+
+#: src/Object/Post.php:276
+msgid "toggle ignore status"
+msgstr "Sivuuta/seuraa"
+
+#: src/Object/Post.php:279 mod/ostatus_subscribe.php:83
+msgid "ignored"
+msgstr "ohitettu"
+
+#: src/Object/Post.php:285
+msgid "add tag"
+msgstr "lisää tägi"
+
+#: src/Object/Post.php:296 mod/photos.php:1471
+msgid "I like this (toggle)"
+msgstr "Tykkään tästä (vaihda)"
+
+#: src/Object/Post.php:296
+msgid "like"
+msgstr "tykkää"
+
+#: src/Object/Post.php:297 mod/photos.php:1472
+msgid "I don't like this (toggle)"
+msgstr "En tykkää tästä (vaihda)"
+
+#: src/Object/Post.php:297
+msgid "dislike"
+msgstr "en tykkää"
+
+#: src/Object/Post.php:300
+msgid "Share this"
+msgstr "Jaa tämä"
+
+#: src/Object/Post.php:300
+msgid "share"
+msgstr "jaa"
+
+#: src/Object/Post.php:365
+msgid "to"
+msgstr ""
+
+#: src/Object/Post.php:366
+msgid "via"
+msgstr "kautta"
+
+#: src/Object/Post.php:367
+msgid "Wall-to-Wall"
+msgstr "Seinäjulkaisu"
+
+#: src/Object/Post.php:368
+msgid "via Wall-To-Wall:"
+msgstr "seinäjulkaisun kautta"
+
+#: src/Object/Post.php:399 src/Object/Post.php:795 mod/photos.php:1490
+#: mod/photos.php:1529 mod/photos.php:1602
+msgid "Comment"
+msgstr "Kommentti"
+
+#: src/Object/Post.php:427
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d kommentti"
+msgstr[1] "%d kommentteja"
+
+#: src/Object/Post.php:793 mod/photos.php:1488 mod/photos.php:1527
+#: mod/photos.php:1600 mod/contacts.php:953
+msgid "This is you"
+msgstr "Tämä olet sinä"
+
+#: src/Object/Post.php:796 mod/manage.php:184 mod/invite.php:155
+#: mod/profiles.php:672 mod/events.php:530 mod/fsuggest.php:114
+#: mod/photos.php:1080 mod/photos.php:1160 mod/photos.php:1445
+#: mod/photos.php:1491 mod/photos.php:1530 mod/photos.php:1603
+#: mod/message.php:265 mod/message.php:432 mod/localtime.php:56
+#: mod/crepair.php:148 mod/poke.php:199 mod/contacts.php:610
+#: mod/install.php:251 mod/install.php:290 view/theme/quattro/config.php:73
+#: view/theme/frio/config.php:113 view/theme/vier/config.php:119
+#: view/theme/duepuntozero/config.php:71
+msgid "Submit"
+msgstr "Lähetä"
+
+#: src/Object/Post.php:797
+msgid "Bold"
+msgstr "Lihavoitu"
+
+#: src/Object/Post.php:798
+msgid "Italic"
+msgstr "Kursivoitu"
+
+#: src/Object/Post.php:799
+msgid "Underline"
+msgstr "Alleviivaus"
+
+#: src/Object/Post.php:800
+msgid "Quote"
+msgstr "Lainaus"
+
+#: src/Object/Post.php:801
+msgid "Code"
+msgstr "Koodi"
+
+#: src/Object/Post.php:802
+msgid "Image"
+msgstr "Kuva"
+
+#: src/Object/Post.php:803
+msgid "Link"
+msgstr "Linkki"
+
+#: src/Object/Post.php:804
+msgid "Video"
+msgstr "Video"
+
+#: src/Database/DBStructure.php:32
+msgid "There are no tables on MyISAM."
+msgstr "MyISAMissa ei ole taulukoita."
+
+#: src/Database/DBStructure.php:75
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr "\n\t\t\t\tFriendican kehittäjät askettäin julkaisi %s-päivityksen,\n\t\t\t\tmutta asennuksessa jotain meni pahasti pieleen.\n\t\t\t\tTämä on korjattava pian, ja en voi korjata sitä itse. Ota yhteyttä\n\t\t\t\tFriendica -kehittäjään jos et voi auttaa. Tietokantani saattaa olla virheellinen."
+
+#: src/Database/DBStructure.php:80
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Virheviesti on\n[pre]%s[/pre]"
+
+#: src/Database/DBStructure.php:191
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr "\n%d virhe tapahtui tietokannan päivityksen aikana:\n%s\n"
+
+#: src/Database/DBStructure.php:194
+msgid "Errors encountered performing database changes: "
+msgstr "Tietokannan muokkauksessa tapahtui virheitä:"
+
+#: src/Database/DBStructure.php:210
+msgid ": Database update"
+msgstr ": Tietokannan päivitys"
+
+#: src/Database/DBStructure.php:460
+#, php-format
+msgid "%s: updating %s table."
+msgstr "%s: päivitetään %s-taulukkoa."
+
+#: src/Core/UserImport.php:104
+msgid "Error decoding account file"
+msgstr ""
+
+#: src/Core/UserImport.php:110
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Virhe: tiedostosta puuttuu versiotiedot! Saattaa olla että tämä ei ole Friendica -tilitiedosto?"
+
+#: src/Core/UserImport.php:118
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Käyttäjä '%s' on jo olemassa tällä palvelimella!"
+
+#: src/Core/UserImport.php:151
+msgid "User creation error"
+msgstr "Virhe käyttäjän luomisessa"
+
+#: src/Core/UserImport.php:169
+msgid "User profile creation error"
+msgstr "Virhe käyttäjäprofiilin luomisessa"
+
+#: src/Core/UserImport.php:213
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d kontakti ei tuotu"
+msgstr[1] "%d kontakteja ei tuotu"
+
+#: src/Core/UserImport.php:278
+msgid "Done. You can now login with your username and password"
+msgstr "Suoritettu. Voit nyt kirjautua sisään käyttäjätunnuksellasi."
+
+#: src/Core/Console/NewPassword.php:78 mod/settings.php:394
+msgid ""
+"The new password has been exposed in a public data dump, please choose "
+"another."
+msgstr ""
+
+#: src/Core/Console/NewPassword.php:82 mod/settings.php:409
+msgid "Password update failed. Please try again."
+msgstr "Salasanan vaihto epäonnistui. Yritä uudelleen."
+
+#: src/Core/Console/NewPassword.php:85 mod/settings.php:407
+msgid "Password changed."
+msgstr "Salasana vaihdettu."
+
+#: src/Core/Console/GlobalCommunityBlock.php:69 mod/admin.php:443
+#, php-format
+msgid "Could not find any contact entry for this URL (%s)"
+msgstr ""
+
+#: src/Core/Console/GlobalCommunityBlock.php:72 mod/admin.php:441
+msgid "The contact has been blocked from the node"
+msgstr "Kontakti on estetty tällä solmulla"
+
+#: src/Core/ACL.php:295
+msgid "Post to Email"
+msgstr "Viesti sähköpostiin"
+
+#: src/Core/ACL.php:301
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Piilota profiilitietosi tuntemattomilta?"
+
+#: src/Core/ACL.php:300
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr ""
+
+#: src/Core/ACL.php:307
+msgid "Visible to everybody"
+msgstr "Näkyvissä kaikille"
+
+#: src/Core/ACL.php:308 view/theme/vier/config.php:115
+msgid "show"
+msgstr "näytä"
+
+#: src/Core/ACL.php:309 view/theme/vier/config.php:115
+msgid "don't show"
+msgstr "älä näytä"
+
+#: src/Core/ACL.php:315 mod/editpost.php:134
+msgid "CC: email addresses"
+msgstr "Kopio: sähköpostiosoitteet"
+
+#: src/Core/ACL.php:316 mod/editpost.php:141
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Esimerkki: bob@example.com, mary@example.com"
+
+#: src/Core/ACL.php:318 mod/events.php:533 mod/photos.php:1098
+#: mod/photos.php:1441
+msgid "Permissions"
+msgstr "Käyttöoikeudet"
+
+#: src/Core/ACL.php:319
+msgid "Close"
+msgstr "Sulje"
+
+#: src/Core/NotificationsManager.php:171
+msgid "System"
+msgstr "Järjestelmä"
+
+#: src/Core/NotificationsManager.php:185 mod/network.php:955
+#: mod/profiles.php:687
+msgid "Personal"
+msgstr "Henkilökohtainen"
+
+#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s kommentoi julkaisuun jonka kirjoitti %s"
+
+#: src/Core/NotificationsManager.php:267
+#, php-format
+msgid "%s created a new post"
+msgstr "%s loi uuden julkaisun"
+
+#: src/Core/NotificationsManager.php:281
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s tykkäsi julkaisusta jonka kirjoitti %s"
+
+#: src/Core/NotificationsManager.php:294
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s ei tykännyt julkaisusta jonka kirjoitti %s"
+
+#: src/Core/NotificationsManager.php:307
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%s osallistuu tapahtumaan jonka järjestää %s"
+
+#: src/Core/NotificationsManager.php:320
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%s ei osallistu tapahtumaan jonka järjestää %s"
+
+#: src/Core/NotificationsManager.php:333
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%s ehkä osallistuu tapahtumaan jonka järjestää %s"
+
+#: src/Core/NotificationsManager.php:350
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s ja %s ovat kavereita"
+
+#: src/Core/NotificationsManager.php:825
+msgid "Friend Suggestion"
+msgstr "Kaveriehdotus"
+
+#: src/Core/NotificationsManager.php:851
+msgid "Friend/Connect Request"
+msgstr "Ystävä/yhteyspyyntö"
+
+#: src/Core/NotificationsManager.php:851
+msgid "New Follower"
+msgstr "Uusi seuraaja"
+
+#: src/Util/Temporal.php:81 src/Util/Temporal.php:83 mod/profiles.php:689
+msgid "Miscellaneous"
+msgstr "Sekalaista"
+
+#: src/Util/Temporal.php:149 mod/profiles.php:712
+msgid "Age: "
+msgstr "Ikä:"
+
+#: src/Util/Temporal.php:151
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "VVVV-KK-PP tai KK-PP"
+
+#: src/Util/Temporal.php:294
+msgid "never"
+msgstr "ei ikinä"
+
+#: src/Util/Temporal.php:300
+msgid "less than a second ago"
+msgstr "alle sekunti sitten"
+
+#: src/Util/Temporal.php:303
+msgid "year"
+msgstr "vuosi"
+
+#: src/Util/Temporal.php:303
+msgid "years"
+msgstr "vuotta"
+
+#: src/Util/Temporal.php:304
+msgid "months"
+msgstr "kuukautta"
+
+#: src/Util/Temporal.php:305
+msgid "weeks"
+msgstr "viikkoa"
+
+#: src/Util/Temporal.php:306
+msgid "days"
+msgstr "päivää"
+
+#: src/Util/Temporal.php:307
+msgid "hour"
+msgstr "tunti"
+
+#: src/Util/Temporal.php:307
+msgid "hours"
+msgstr "tuntia"
+
+#: src/Util/Temporal.php:308
+msgid "minute"
+msgstr "minuutti"
+
+#: src/Util/Temporal.php:308
+msgid "minutes"
+msgstr "inuuttia"
+
+#: src/Util/Temporal.php:309
+msgid "second"
+msgstr "sekunti"
+
+#: src/Util/Temporal.php:309
+msgid "seconds"
+msgstr "sekuntia"
+
+#: src/Util/Temporal.php:318
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s sitten"
+
+#: src/Protocol/OStatus.php:1251 mod/profile.php:80
+#, php-format
+msgid "%s's timeline"
+msgstr "%s: aikajana"
+
+#: src/Protocol/OStatus.php:1252 mod/profile.php:78
+#, php-format
+msgid "%s's posts"
+msgstr "%s: julkaisut"
+
+#: src/Protocol/OStatus.php:1253 mod/profile.php:79
+#, php-format
+msgid "%s's comments"
+msgstr "%s: kommentit"
+
+#: src/Protocol/OStatus.php:1799
+#, php-format
+msgid "%s is now following %s."
+msgstr "%s seuraa %s."
+
+#: src/Protocol/OStatus.php:1800
+msgid "following"
+msgstr "seuraa"
+
+#: src/Protocol/OStatus.php:1803
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%s ei enää seuraa %s."
+
+#: src/Protocol/OStatus.php:1804
+msgid "stopped following"
+msgstr "ei enää seuraa"
+
+#: src/Protocol/Diaspora.php:2680
+msgid "Sharing notification from Diaspora network"
+msgstr ""
+
+#: src/Protocol/Diaspora.php:3756
+msgid "Attachments:"
+msgstr "Liitteitä:"
+
+#: mod/directory.php:42 mod/display.php:203 mod/viewcontacts.php:45
+#: mod/photos.php:932 mod/community.php:27 mod/videos.php:199
+#: mod/dfrn_request.php:607 mod/search.php:98 mod/search.php:104
+#: mod/probe.php:13 mod/webfinger.php:16
+msgid "Public access denied."
+msgstr "Julkinen käyttö estetty."
+
+#: mod/directory.php:202 view/theme/vier/theme.php:201
+msgid "Global Directory"
+msgstr "Maailmanlaajuinen hakemisto"
+
+#: mod/directory.php:204
+msgid "Find on this site"
+msgstr ""
+
+#: mod/directory.php:206
+msgid "Results for:"
+msgstr "Tulokset haulla:"
+
+#: mod/directory.php:208
+msgid "Site Directory"
+msgstr "Sivuston luettelo"
+
+#: mod/directory.php:213
+msgid "No entries (some entries may be hidden)."
+msgstr ""
+
+#: mod/dirfind.php:49
+#, php-format
+msgid "People Search - %s"
+msgstr "Käyttäjähaku - %s"
+
+#: mod/dirfind.php:60
+#, php-format
+msgid "Forum Search - %s"
+msgstr "Foorumihaku - %s"
+
+#: mod/dirfind.php:253 mod/match.php:125
+msgid "No matches"
+msgstr "Ei täsmääviä profiileja"
#: mod/repair_ostatus.php:18
msgid "Resubscribing to OStatus contacts"
@@ -1656,6 +3419,18 @@ msgstr "Valmis"
msgid "Keep this window open until done."
msgstr "Pidä tämä ikkuna auki kunnes kaikki tehtävät on suoritettu."
+#: mod/ping.php:292
+msgid "{0} wants to be your friend"
+msgstr "{0} lähetti kaveripyynnön"
+
+#: mod/ping.php:307
+msgid "{0} sent you a message"
+msgstr "{0} lähetti sinulle viestin"
+
+#: mod/ping.php:322
+msgid "{0} requested registration"
+msgstr "{0} jätti rekisteröintipyynnön"
+
#: mod/suggest.php:36
msgid "Do you really want to delete this suggestion?"
msgstr "Haluatko varmasti poistaa ehdotuksen?"
@@ -1670,12 +3445,134 @@ msgstr "Ehdotuksia ei löydy. Jos tämä on uusi sivusto, kokeile uudelleen vuor
msgid "Ignore/Hide"
msgstr "Jätä huomiotta/piilota"
-#: mod/suggest.php:114 view/theme/vier/theme.php:203 src/Content/Widget.php:64
-msgid "Friend Suggestions"
-msgstr "Ystäväehdotukset"
+#: mod/display.php:313 mod/profile.php:173 mod/cal.php:142
+msgid "Access to this profile has been restricted."
+msgstr "Pääsy tähän profiiliin on rajoitettu"
-#: mod/update_community.php:27 mod/update_display.php:27
-#: mod/update_notes.php:40 mod/update_profile.php:39 mod/update_network.php:33
+#: mod/profile_photo.php:55
+msgid "Image uploaded but image cropping failed."
+msgstr "Kuva ladattu mutta kuvan rajaus epäonnistui."
+
+#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104
+#: mod/profile_photo.php:315
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Kuvan pienentäminen [%s] epäonnistui."
+
+#: mod/profile_photo.php:125
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Jos kuva ei näy heti, lataa sivu uudelleen tai tyhjennä selaimen välimuisti."
+
+#: mod/profile_photo.php:134
+msgid "Unable to process image"
+msgstr "Kuvan käsitteleminen epäonnistui"
+
+#: mod/profile_photo.php:153 mod/photos.php:763 mod/photos.php:766
+#: mod/photos.php:795 mod/wall_upload.php:186
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr "Kuva ylittää kokorajoituksen %s"
+
+#: mod/profile_photo.php:162 mod/photos.php:818 mod/wall_upload.php:200
+msgid "Unable to process image."
+msgstr "Kuvan käsitteleminen epäonnistui."
+
+#: mod/profile_photo.php:247
+msgid "Upload File:"
+msgstr "Lähetä tiedosto:"
+
+#: mod/profile_photo.php:248
+msgid "Select a profile:"
+msgstr "Valitse profiili:"
+
+#: mod/profile_photo.php:249 mod/profiles.php:691 mod/newmember.php:26
+msgid "Upload Profile Photo"
+msgstr "Lataa profiilikuva"
+
+#: mod/profile_photo.php:250 mod/fbrowser.php:105 mod/fbrowser.php:136
+msgid "Upload"
+msgstr "Lähetä"
+
+#: mod/profile_photo.php:253
+msgid "or"
+msgstr "tai"
+
+#: mod/profile_photo.php:253
+msgid "skip this step"
+msgstr "ohita tämä vaihe"
+
+#: mod/profile_photo.php:253
+msgid "select a photo from your photo albums"
+msgstr "valitse kuva albumeistasi"
+
+#: mod/profile_photo.php:266
+msgid "Crop Image"
+msgstr "Rajaa kuva"
+
+#: mod/profile_photo.php:267
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Rajaa kuva sopivasti."
+
+#: mod/profile_photo.php:269
+msgid "Done Editing"
+msgstr "Lopeta muokkaus"
+
+#: mod/profile_photo.php:305
+msgid "Image uploaded successfully."
+msgstr "Kuvan lähettäminen onnistui."
+
+#: mod/profile_photo.php:307 mod/photos.php:847 mod/wall_upload.php:239
+msgid "Image upload failed."
+msgstr "Kuvan lähettäminen epäonnistui."
+
+#: mod/removeme.php:43
+msgid "User deleted their account"
+msgstr "Käyttäjä poisti tilinsä"
+
+#: mod/removeme.php:44
+msgid ""
+"On your Friendica node an user deleted their account. Please ensure that "
+"their data is removed from the backups."
+msgstr "Friendica -solmullasi käyttäjä poisti tilinsä. Varmista että hänen tiedot poistetaan myös varmuuskopioista."
+
+#: mod/removeme.php:45
+#, php-format
+msgid "The user id is %d"
+msgstr ""
+
+#: mod/removeme.php:76 mod/removeme.php:79
+msgid "Remove My Account"
+msgstr "Poista tilini"
+
+#: mod/removeme.php:77
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Tämä poistaa käyttäjätilisi pysyvästi. Poistoa ei voi perua myöhemmin."
+
+#: mod/removeme.php:78
+msgid "Please enter your password for verification:"
+msgstr "Syötä salasanasi varmistusta varten:"
+
+#: mod/manage.php:180
+msgid "Manage Identities and/or Pages"
+msgstr "Hallitse identiteetit ja/tai sivut"
+
+#: mod/manage.php:181
+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:182
+msgid "Select an identity to manage: "
+msgstr "Valitse identiteetti hallitavaksi:"
+
+#: mod/update_notes.php:40 mod/update_display.php:27
+#: mod/update_community.php:27 mod/update_network.php:33
+#: mod/update_profile.php:39
msgid "[Embedded content - reload page to view]"
msgstr "[Upotettu sisältö - näet sen päivittämällä sivun]"
@@ -1720,190 +3617,114 @@ msgid ""
"select \"Export account\""
msgstr ""
-#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
+#: mod/invite.php:33
+msgid "Total invitation limit exceeded."
+msgstr "Kutsuraja ylitetty."
+
+#: mod/invite.php:55
#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s toivottaa tervetulleeksi ystävän %2$s"
+msgid "%s : Not a valid email address."
+msgstr "%s : Virheellinen sähköpostiosoite."
-#: mod/match.php:48
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Avainsanat puuttuu. Lisää avainsanoja oletusprofiiliisi."
+#: mod/invite.php:87
+msgid "Please join us on Friendica"
+msgstr "Tervetuloa Friendicaan"
-#: mod/match.php:104
-msgid "is interested in:"
-msgstr "on kiinnostunut seuraavista aiheista:"
+#: mod/invite.php:96
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Kutsuraja ylitetty. Ota yhteyttä ylläpitäjään."
-#: mod/match.php:120
-msgid "Profile Match"
-msgstr "Vastaavien profiilien haku"
-
-#: mod/match.php:125 mod/dirfind.php:253
-msgid "No matches"
-msgstr "Ei täsmääviä profiileja"
-
-#: mod/notifications.php:37
-msgid "Invalid request identifier."
-msgstr "Virheellinen pyyntötunniste."
-
-#: mod/notifications.php:46 mod/notifications.php:183
-#: mod/notifications.php:230
-msgid "Discard"
-msgstr "Hylkää"
-
-#: mod/notifications.php:62 mod/notifications.php:182
-#: mod/notifications.php:266 mod/contacts.php:638 mod/contacts.php:828
-#: mod/contacts.php:1019
-msgid "Ignore"
-msgstr "Jätä huomiotta"
-
-#: mod/notifications.php:98 src/Content/Nav.php:189
-msgid "Notifications"
-msgstr "Huomautukset"
-
-#: mod/notifications.php:107
-msgid "Network Notifications"
-msgstr "Verkkoilmoitukset"
-
-#: mod/notifications.php:113 mod/notify.php:81
-msgid "System Notifications"
-msgstr "Järjestelmäilmoitukset"
-
-#: mod/notifications.php:119
-msgid "Personal Notifications"
-msgstr "Henkilökohtaiset ilmoitukset"
-
-#: mod/notifications.php:125
-msgid "Home Notifications"
-msgstr "Koti-ilmoitukset"
-
-#: mod/notifications.php:155
-msgid "Show Ignored Requests"
-msgstr "Näytä ohitetut pyynnöt"
-
-#: mod/notifications.php:155
-msgid "Hide Ignored Requests"
-msgstr "Piilota ohitetut pyynnöt"
-
-#: mod/notifications.php:167 mod/notifications.php:237
-msgid "Notification type: "
-msgstr "Ilmoitustyyppi:"
-
-#: mod/notifications.php:170
+#: mod/invite.php:100
#, php-format
-msgid "suggested by %s"
-msgstr "ehdottaa %s"
+msgid "%s : Message delivery failed."
+msgstr "%s : Viestin toimitus epäonnistui."
-#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
-msgid "Hide this contact from others"
-msgstr "Piilota kontakti muilta"
+#: mod/invite.php:104
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d viesti lähetetty."
+msgstr[1] "%d viestiä lähetetty."
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "Post a new friend activity"
-msgstr ""
+#: mod/invite.php:122
+msgid "You have no more invitations available"
+msgstr "Sinulla ei ole kutsuja jäljellä"
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "if applicable"
-msgstr "tarvittaessa"
-
-#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1796
-msgid "Approve"
-msgstr "Hyväksy"
-
-#: mod/notifications.php:198
-msgid "Claims to be known to you: "
-msgstr "Väittää tuntevansa sinut:"
-
-#: mod/notifications.php:199
-msgid "yes"
-msgstr "kyllä"
-
-#: mod/notifications.php:199
-msgid "no"
-msgstr "ei"
-
-#: mod/notifications.php:200 mod/notifications.php:205
-msgid "Shall your connection be bidirectional or not?"
-msgstr "Kaksisuuntainen yhteys?"
-
-#: mod/notifications.php:201 mod/notifications.php:206
+#: mod/invite.php:130
#, php-format
msgid ""
-"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
-"also receive updates from them in your news feed."
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
msgstr ""
-#: mod/notifications.php:202
+#: mod/invite.php:132
#, php-format
msgid ""
-"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
-" will not receive updates from them in your news feed."
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
msgstr ""
-#: mod/notifications.php:207
+#: mod/invite.php:133
#, php-format
msgid ""
-"Accepting %s as a sharer allows them to subscribe to your posts, but you "
-"will not receive updates from them in your news feed."
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
msgstr ""
-#: mod/notifications.php:218
-msgid "Friend"
-msgstr "Kaveri"
+#: mod/invite.php:137
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr ""
-#: mod/notifications.php:219
-msgid "Sharer"
-msgstr "Jakaja"
+#: mod/invite.php:141
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks."
+msgstr ""
-#: mod/notifications.php:219
-msgid "Subscriber"
-msgstr "Tilaaja"
-
-#: mod/notifications.php:247 mod/contacts.php:660 mod/events.php:518
-#: mod/directory.php:148 src/Model/Event.php:60 src/Model/Event.php:85
-#: src/Model/Event.php:421 src/Model/Event.php:900 src/Model/Profile.php:417
-msgid "Location:"
-msgstr "Sijainti:"
-
-#: mod/notifications.php:249 mod/contacts.php:664 mod/directory.php:154
-#: src/Model/Profile.php:423 src/Model/Profile.php:808
-msgid "About:"
-msgstr "Lisätietoja:"
-
-#: mod/notifications.php:251 mod/contacts.php:666 mod/follow.php:174
-#: src/Model/Profile.php:796
-msgid "Tags:"
-msgstr "Tunnisteet:"
-
-#: mod/notifications.php:253 mod/directory.php:151 src/Model/Profile.php:420
-#: src/Model/Profile.php:747
-msgid "Gender:"
-msgstr "Sukupuoli:"
-
-#: mod/notifications.php:258 mod/contacts.php:656 mod/unfollow.php:122
-#: mod/admin.php:490 mod/admin.php:500 mod/follow.php:166
-msgid "Profile URL"
-msgstr "Profiilin URL"
-
-#: mod/notifications.php:261 mod/contacts.php:71 src/Model/Profile.php:520
-msgid "Network:"
-msgstr "Verkko:"
-
-#: mod/notifications.php:275
-msgid "No introductions."
-msgstr "Ei esittelyjä."
-
-#: mod/notifications.php:316
-msgid "Show unread"
-msgstr "Näytä lukemattomat"
-
-#: mod/notifications.php:316
-msgid "Show all"
-msgstr "Näytä kaikki"
-
-#: mod/notifications.php:322
+#: mod/invite.php:140
#, php-format
-msgid "No more %s notifications."
-msgstr "Ei muita %s ilmoituksia."
+msgid "To accept this invitation, please visit and register at %s."
+msgstr ""
+
+#: mod/invite.php:147
+msgid "Send invitations"
+msgstr "Lähetä kutsut"
+
+#: mod/invite.php:148
+msgid "Enter email addresses, one per line:"
+msgstr "Syötä sähköpostiosoitteet, yksi riviä kohden:"
+
+#: mod/invite.php:149 mod/message.php:259 mod/message.php:426
+#: mod/wallmessage.php:141
+msgid "Your message:"
+msgstr "Viestisi:"
+
+#: mod/invite.php:150
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr ""
+
+#: mod/invite.php:152
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr ""
+
+#: mod/invite.php:152
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Kun olet rekisteröitynyt, lähetä minulle kaverikutsun profiilisivuni kautta:"
+
+#: mod/invite.php:154
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendi.ca"
+msgstr ""
#: mod/openid.php:29
msgid "OpenID protocol error. No ID returned."
@@ -1914,417 +3735,1512 @@ msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr "Käyttäjätiliä ei löytynyt. Rekisteröityminen OpenID:n kautta ei ole sallittua tällä sivustolla."
-#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:134
-msgid "Login failed."
-msgstr "Kirjautuminen epäonnistui"
+#: mod/hcard.php:18
+msgid "No profile"
+msgstr "Ei profiilia"
-#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149
-#: mod/profiles.php:196 mod/profiles.php:618
-msgid "Profile not found."
-msgstr "Profiilia ei löytynyt."
+#: mod/apps.php:14 index.php:273
+msgid "You must be logged in to use addons. "
+msgstr "Sinun pitää kirjautua sisään, jotta voit käyttää lisäosia"
-#: mod/dfrn_confirm.php:132
+#: mod/apps.php:19
+msgid "Applications"
+msgstr "Sovellukset"
+
+#: mod/apps.php:22
+msgid "No installed applications."
+msgstr "Ei asennettuja sovelluksia."
+
+#: mod/network.php:194 mod/search.php:37
+msgid "Remove term"
+msgstr "Poista kohde"
+
+#: mod/network.php:547
+#, php-format
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 "Etäsivuston vastaus oli epäselvä."
-
-#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr "Odottamaton vastaus etäsivustolta:"
-
-#: mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "Vahvistus onnistui."
-
-#: mod/dfrn_confirm.php:275
-msgid "Temporary failure. Please wait and try again."
-msgstr "Tilapäinen vika. Yritä myöhemmin uudelleen."
-
-#: mod/dfrn_confirm.php:278
-msgid "Introduction failed or was revoked."
-msgstr "Kaverikutsu epäonnistui tai oli peruutettu."
-
-#: mod/dfrn_confirm.php:283
-msgid "Remote site reported: "
-msgstr ""
-
-#: mod/dfrn_confirm.php:396
-msgid "Unable to set contact photo."
-msgstr "Kontaktin kuvaa ei voitu asettaa"
-
-#: mod/dfrn_confirm.php:498
-#, php-format
-msgid "No user record found for '%s' "
-msgstr ""
-
-#: mod/dfrn_confirm.php:508
-msgid "Our site encryption key is apparently messed up."
-msgstr "Sivustomme salausavain on sekaisin."
-
-#: mod/dfrn_confirm.php:519
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr ""
-
-#: mod/dfrn_confirm.php:535
-msgid "Contact record was not found for you on our site."
-msgstr ""
-
-#: mod/dfrn_confirm.php:549
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr ""
-
-#: mod/dfrn_confirm.php:565
-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:576
-msgid "Unable to set your contact credentials on our system."
-msgstr ""
-
-#: mod/dfrn_confirm.php:631
-msgid "Unable to update your contact profile details on our system"
-msgstr ""
-
-#: mod/dfrn_confirm.php:661 mod/dfrn_request.php:568
-#: src/Model/Contact.php:1537
-msgid "[Name Withheld]"
-msgstr "[Nimi jätetty pois]"
-
-#: mod/dfrn_confirm.php:694
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s on liittynyt kohteeseen %2$s"
-
-#: mod/manage.php:180
-msgid "Manage Identities and/or Pages"
-msgstr "Hallitse identiteetit ja/tai sivut"
-
-#: mod/manage.php:181
-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:182
-msgid "Select an identity to manage: "
-msgstr "Valitse identiteetti hallitavaksi:"
-
-#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83
-#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112
-#: mod/wall_upload.php:155 mod/wall_upload.php:158
-msgid "Invalid request."
-msgstr "Virheellinen pyyntö."
-
-#: mod/wall_attach.php:101
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr ""
-
-#: mod/wall_attach.php:101
-msgid "Or - did you try to upload an empty file?"
-msgstr "Yrititkö ladata tyhjän tiedoston?"
-
-#: mod/wall_attach.php:112
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr "Tiedosto ylittää kokorajoituksen %s"
-
-#: mod/wall_attach.php:136 mod/wall_attach.php:152
-msgid "File upload failed."
-msgstr "Tiedoston lähettäminen epäonnistui."
-
-#: mod/dfrn_request.php:94
-msgid "This introduction has already been accepted."
-msgstr "Tämä esittely on jo hyväksytty."
-
-#: mod/dfrn_request.php:112 mod/dfrn_request.php:359
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profiilin sijainti on viallinen tai se ei sisällä profiilitietoja."
-
-#: mod/dfrn_request.php:116 mod/dfrn_request.php:363
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Varoitus: profiilin sijainnissa ei ole tunnistettavaa omistajan nimeä."
-
-#: mod/dfrn_request.php:119 mod/dfrn_request.php:366
-msgid "Warning: profile location has no profile photo."
-msgstr "Varoitus: profiilin sijainnissa ei ole profiilikuvaa."
-
-#: mod/dfrn_request.php:123 mod/dfrn_request.php:370
-#, 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"
+"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 a network that doesn't allow "
+"non public messages."
msgstr[0] ""
msgstr[1] ""
-#: mod/dfrn_request.php:162
-msgid "Introduction complete."
-msgstr "Esittely valmis."
-
-#: mod/dfrn_request.php:199
-msgid "Unrecoverable protocol error."
-msgstr "Vakava protokollavirhe."
-
-#: mod/dfrn_request.php:226
-msgid "Profile unavailable."
-msgstr "Profiili ei saatavilla."
-
-#: mod/dfrn_request.php:248
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s on saanut liikaa yhteyspyyntöjä tänään."
-
-#: mod/dfrn_request.php:249
-msgid "Spam protection measures have been invoked."
-msgstr "Roskapostisuojaukset otettu käyttöön."
-
-#: mod/dfrn_request.php:250
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Ystäviä suositellaan yrittämään uudelleen vuorokauden sisällä."
-
-#: mod/dfrn_request.php:280
-msgid "Invalid locator"
-msgstr "Viallinen paikannin"
-
-#: mod/dfrn_request.php:316
-msgid "You have already introduced yourself here."
-msgstr "Olet jo esitellyt itsesi täällä."
-
-#: mod/dfrn_request.php:319
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Ilmeisesti olet jo ystävystynyt henkilön %s kanssa."
-
-#: mod/dfrn_request.php:339
-msgid "Invalid profile URL."
-msgstr "Viallinen profiiliosoite."
-
-#: mod/dfrn_request.php:345 src/Model/Contact.php:1235
-msgid "Disallowed profile URL."
-msgstr "Kielletty profiiliosoite."
-
-#: mod/dfrn_request.php:351 mod/admin.php:353 mod/admin.php:371
-#: mod/friendica.php:128 src/Model/Contact.php:1240
-msgid "Blocked domain"
-msgstr "Estetty verkkotunnus"
-
-#: mod/dfrn_request.php:419 mod/contacts.php:230
-msgid "Failed to update contact record."
-msgstr "Kontaktitietojen päivitys epäonnistui."
-
-#: mod/dfrn_request.php:439
-msgid "Your introduction has been sent."
-msgstr "Esittelysi lähetettiin."
-
-#: mod/dfrn_request.php:477
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
+#: mod/network.php:550
+msgid "Messages in this group won't be send to these receivers."
msgstr ""
-#: mod/dfrn_request.php:493
-msgid "Please login to confirm introduction."
-msgstr "Kirjaudu vahvistaaksesi esittelysi."
+#: mod/network.php:618
+msgid "No such group"
+msgstr "Ryhmä ei ole olemassa"
-#: mod/dfrn_request.php:501
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"this profile."
-msgstr "Väärä identiteetti kirjautuneena sisään. Kirjaudu tähän profiiliin."
+#: mod/network.php:639 mod/group.php:216
+msgid "Group is empty"
+msgstr "Ryhmä on tyhjä"
-#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
-msgid "Confirm"
-msgstr "Vahvista"
-
-#: mod/dfrn_request.php:527
-msgid "Hide this contact"
-msgstr "Piilota kontakti"
-
-#: mod/dfrn_request.php:530
+#: mod/network.php:643
#, php-format
-msgid "Welcome home %s."
-msgstr "Tervetuloa kotiin %s."
+msgid "Group: %s"
+msgstr "Ryhmä: %s"
-#: mod/dfrn_request.php:531
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Vahvista esittelysi/yhteyspyyntösi henkilölle %s."
+#: mod/network.php:669
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Yksityisviestit lähetetty tälle henkilölle saattaa näkyä muillekin."
-#: mod/dfrn_request.php:607 mod/probe.php:13 mod/search.php:98
-#: mod/search.php:104 mod/viewcontacts.php:45 mod/webfinger.php:16
-#: mod/community.php:27 mod/photos.php:932 mod/videos.php:199
-#: mod/display.php:203 mod/directory.php:42
-msgid "Public access denied."
-msgstr "Julkinen käyttö estetty."
+#: mod/network.php:672
+msgid "Invalid contact."
+msgstr "Virheellinen kontakti."
-#: mod/dfrn_request.php:642
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Anna \"henkilöllisyysosoitteesi\" joissakin seuraavista tuetuista viestintäverkoista:"
+#: mod/network.php:936
+msgid "Commented Order"
+msgstr "Järjestä viimeisimpien kommenttien mukaan"
-#: mod/dfrn_request.php:645
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, follow "
-"this link to find a public Friendica site and join us today ."
+#: mod/network.php:939
+msgid "Sort by Comment Date"
+msgstr "Kommentit päivämäärän mukaan"
+
+#: mod/network.php:944
+msgid "Posted Order"
+msgstr "Järjestä julkaisupäivämäärän mukaan"
+
+#: mod/network.php:947
+msgid "Sort by Post Date"
+msgstr "Julkaisut päivämäärän mukaan"
+
+#: mod/network.php:958
+msgid "Posts that mention or involve you"
+msgstr "Julkaisut jotka liittyvät sinuun"
+
+#: mod/network.php:966
+msgid "New"
+msgstr "Uusi"
+
+#: mod/network.php:969
+msgid "Activity Stream - by date"
msgstr ""
-#: mod/dfrn_request.php:650
-msgid "Friend/Connection Request"
-msgstr "Ystävä/yhteyspyyntö"
+#: mod/network.php:977
+msgid "Shared Links"
+msgstr "Jaetut linkit"
-#: mod/dfrn_request.php:651
+#: mod/network.php:980
+msgid "Interesting Links"
+msgstr "Kiinnostavat linkit"
+
+#: mod/network.php:988
+msgid "Starred"
+msgstr "Tähtimerkitty"
+
+#: mod/network.php:991
+msgid "Favourite Posts"
+msgstr "Lempijulkaisut"
+
+#: mod/friendica.php:77
+msgid "This is Friendica, version"
+msgstr "Tämä on Friendica, versio"
+
+#: mod/friendica.php:78
+msgid "running at web location"
+msgstr "käynnissä osoitteessa"
+
+#: mod/friendica.php:82
msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@gnusocial.de"
-msgstr "Esim. jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"
+"Please visit Friendi.ca to learn more "
+"about the Friendica project."
+msgstr "Vieraile osoitteessa Friendi.ca saadaksesi lisätietoja Friendica- projektista."
-#: mod/dfrn_request.php:652 mod/follow.php:149
-msgid "Please answer the following:"
-msgstr "Vastaa seuraavaan:"
+#: mod/friendica.php:86
+msgid "Bug reports and issues: please visit"
+msgstr "Bugiraportit ja kysymykset: vieraile osoitteessa"
-#: mod/dfrn_request.php:653 mod/follow.php:150
+#: mod/friendica.php:86
+msgid "the bugtracker at github"
+msgstr "githubin bugtrackeri"
+
+#: mod/friendica.php:89
+msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
+msgstr "Ehdotukset ja palaute: lähetä sähköposti osoitteeseen \"info\" at \"friendi - piste - ca"
+
+#: mod/friendica.php:103
+msgid "Installed addons/apps:"
+msgstr "Asennettu lisäosat/sovellukset:"
+
+#: mod/friendica.php:117
+msgid "No installed addons/apps"
+msgstr "Ei asennettuja lisäosia/sovelluksia"
+
+#: mod/friendica.php:122
#, php-format
-msgid "Does %s know you?"
-msgstr "Tunteeko %s sinut?"
+msgid "Read about the Terms of Service of this node."
+msgstr "Lue tämän solmun käyttöehdot ."
-#: mod/dfrn_request.php:654 mod/follow.php:151
-msgid "Add a personal note:"
-msgstr "Lisää oma merkintä:"
+#: mod/friendica.php:127
+msgid "On this server the following remote servers are blocked."
+msgstr "Tällä palvelimella seuraavat etäpalvelimet ovat estetty."
-#: mod/dfrn_request.php:656 src/Content/ContactSelector.php:79
-msgid "Friendica"
-msgstr "Friendica"
+#: mod/friendica.php:128 mod/admin.php:354 mod/admin.php:372
+msgid "Reason for the block"
+msgstr "Eston syy"
-#: mod/dfrn_request.php:657
-msgid "GNU Social (Pleroma, Mastodon)"
-msgstr "GNU Social (Pleroma, Mastodon)"
-
-#: mod/dfrn_request.php:658
-msgid "Diaspora (Socialhome, Hubzilla)"
-msgstr "Diaspora (Socialhome, Hubzilla)"
-
-#: mod/dfrn_request.php:659
+#: mod/subthread.php:113
#, php-format
-msgid ""
-" - please do not use this form. Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - älä käytä tätä lomaketta. Kirjoita sen sijaan %s Diaspora-hakupalkkiisi."
-
-#: mod/dfrn_request.php:660 mod/unfollow.php:113 mod/follow.php:157
-msgid "Your Identity Address:"
-msgstr "Identiteettisi osoite:"
-
-#: mod/dfrn_request.php:662 mod/unfollow.php:65 mod/follow.php:62
-msgid "Submit Request"
-msgstr "Lähetä pyyntö"
-
-#: mod/filer.php:34
-msgid "- select -"
-msgstr "- valitse -"
-
-#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814
-msgid "l F d, Y \\@ g:i A"
+msgid "%1$s is following %2$s's %3$s"
msgstr ""
-#: mod/localtime.php:33
-msgid "Time Conversion"
-msgstr "Aikamuunnos"
+#: mod/profiles.php:39 mod/profiles.php:149 mod/profiles.php:196
+#: mod/profiles.php:618 mod/dfrn_confirm.php:74
+msgid "Profile not found."
+msgstr "Profiilia ei löytynyt."
-#: mod/localtime.php:35
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
+#: mod/profiles.php:58
+msgid "Profile deleted."
+msgstr "Profiili poistettiin."
+
+#: mod/profiles.php:74 mod/profiles.php:110
+msgid "Profile-"
+msgstr "Profiili-"
+
+#: mod/profiles.php:93 mod/profiles.php:132
+msgid "New profile created."
+msgstr "Uusi profiili luotu."
+
+#: mod/profiles.php:116
+msgid "Profile unavailable to clone."
+msgstr "Profiili ei saatavilla kloonattavaksi."
+
+#: mod/profiles.php:206
+msgid "Profile Name is required."
+msgstr "Profiilinimi on pakollinen."
+
+#: mod/profiles.php:347
+msgid "Marital Status"
+msgstr "Siviilisääty"
+
+#: mod/profiles.php:351
+msgid "Romantic Partner"
+msgstr "Romanttinen kumppani"
+
+#: mod/profiles.php:363
+msgid "Work/Employment"
+msgstr "Työ"
+
+#: mod/profiles.php:366
+msgid "Religion"
+msgstr "Uskonto"
+
+#: mod/profiles.php:370
+msgid "Political Views"
+msgstr "Poliittiset näkemykset"
+
+#: mod/profiles.php:374
+msgid "Gender"
+msgstr "Sukupuoli"
+
+#: mod/profiles.php:378
+msgid "Sexual Preference"
+msgstr "Seksuaalinen suuntautuminen"
+
+#: mod/profiles.php:382
+msgid "XMPP"
+msgstr "XMPP"
+
+#: mod/profiles.php:386
+msgid "Homepage"
+msgstr "Kotisivu"
+
+#: mod/profiles.php:390 mod/profiles.php:686
+msgid "Interests"
+msgstr "Kiinnostukset"
+
+#: mod/profiles.php:394 mod/admin.php:490
+msgid "Address"
+msgstr "Osoite"
+
+#: mod/profiles.php:401 mod/profiles.php:682
+msgid "Location"
+msgstr "Sijainti"
+
+#: mod/profiles.php:486
+msgid "Profile updated."
+msgstr "Profiili päivitettiin."
+
+#: mod/profiles.php:564
+msgid " and "
+msgstr "ja"
+
+#: mod/profiles.php:573
+msgid "public profile"
+msgstr "julkinen profiili"
+
+#: mod/profiles.php:576
+#, php-format
+msgid "%1$s changed %2$s to “%3$s”"
msgstr ""
-#: mod/localtime.php:39
+#: mod/profiles.php:577
#, php-format
-msgid "UTC time: %s"
-msgstr "UTC-aika: %s"
+msgid " - Visit %1$s's %2$s"
+msgstr ""
-#: mod/localtime.php:42
+#: mod/profiles.php:579
#, php-format
-msgid "Current timezone: %s"
-msgstr "Aikavyöhyke: %s"
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr ""
-#: mod/localtime.php:46
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Muunnettu paikallisaika: %s"
+#: mod/profiles.php:633
+msgid "Hide contacts and friends:"
+msgstr "Piilota kontaktit ja kaverit:"
-#: mod/localtime.php:52
-msgid "Please select your timezone:"
-msgstr "Valitse aikavyöhykkeesi:"
+#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661
+#: mod/api.php:111 mod/settings.php:1105 mod/settings.php:1111
+#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1126
+#: mod/settings.php:1130 mod/settings.php:1134 mod/settings.php:1138
+#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
+#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:653
+#: mod/follow.php:150 mod/register.php:238
+msgid "No"
+msgstr "Ei"
+
+#: mod/profiles.php:638
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Piilota tämän profiilin kontakti/kaverilista?"
+
+#: mod/profiles.php:658
+msgid "Show more profile fields:"
+msgstr "Näytä lisää profiilikenttiä:"
+
+#: mod/profiles.php:670
+msgid "Profile Actions"
+msgstr ""
+
+#: mod/profiles.php:671
+msgid "Edit Profile Details"
+msgstr "Muokkaa profiilin yksityiskohdat"
+
+#: mod/profiles.php:673
+msgid "Change Profile Photo"
+msgstr "Vaihda profiilikuva"
+
+#: mod/profiles.php:674
+msgid "View this profile"
+msgstr "Näytä profiilia"
+
+#: mod/profiles.php:676
+msgid "Create a new profile using these settings"
+msgstr "Luo uusi profiili näillä asetuksilla"
+
+#: mod/profiles.php:677
+msgid "Clone this profile"
+msgstr "Kloonaa tämä profiili"
+
+#: mod/profiles.php:678
+msgid "Delete this profile"
+msgstr "Poista tämä profiili"
+
+#: mod/profiles.php:680
+msgid "Basic information"
+msgstr "Perustiedot"
+
+#: mod/profiles.php:681
+msgid "Profile picture"
+msgstr "Profiilikuva"
+
+#: mod/profiles.php:683
+msgid "Preferences"
+msgstr "Mieltymykset"
+
+#: mod/profiles.php:684
+msgid "Status information"
+msgstr "Tilatiedot"
+
+#: mod/profiles.php:685
+msgid "Additional information"
+msgstr "Lisätietoja"
+
+#: mod/profiles.php:688
+msgid "Relation"
+msgstr "Suhde"
+
+#: mod/profiles.php:692
+msgid "Your Gender:"
+msgstr "Sukupuoli:"
+
+#: mod/profiles.php:693
+msgid "♥ Marital Status:"
+msgstr "♥ Siviilisääty:"
+
+#: mod/profiles.php:695
+msgid "Example: fishing photography software"
+msgstr "Esimerkki: kalastus valokuvaus ohjelmistot"
+
+#: mod/profiles.php:700
+msgid "Profile Name:"
+msgstr "Profiilinimi:"
+
+#: mod/profiles.php:700 mod/events.php:508 mod/events.php:520
+msgid "Required"
+msgstr "Vaaditaan"
+
+#: mod/profiles.php:702
+msgid ""
+"This is your public profile. It may "
+"be visible to anybody using the internet."
+msgstr ""
+
+#: mod/profiles.php:703
+msgid "Your Full Name:"
+msgstr "Koko nimi:"
+
+#: mod/profiles.php:704
+msgid "Title/Description:"
+msgstr "Otsikko/kuvaus:"
+
+#: mod/profiles.php:707
+msgid "Street Address:"
+msgstr "Katuosoite:"
+
+#: mod/profiles.php:708
+msgid "Locality/City:"
+msgstr "Kaupunki:"
+
+#: mod/profiles.php:709
+msgid "Region/State:"
+msgstr "Alue/osavaltio:"
+
+#: mod/profiles.php:710
+msgid "Postal/Zip Code:"
+msgstr "Postinumero:"
+
+#: mod/profiles.php:711
+msgid "Country:"
+msgstr "Maa:"
+
+#: mod/profiles.php:715
+msgid "Who: (if applicable)"
+msgstr "Kuka: (tarvittaessa)"
+
+#: mod/profiles.php:715
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Esimerkkejä: cathy123, Cathy Williams, cathy@example.com"
+
+#: mod/profiles.php:716
+msgid "Since [date]:"
+msgstr "Lähtien [päivämäärä]:"
+
+#: mod/profiles.php:718
+msgid "Tell us about yourself..."
+msgstr "Kerro vähän itsestäsi..."
+
+#: mod/profiles.php:719
+msgid "XMPP (Jabber) address:"
+msgstr "XMPP (Jabber) osoite:"
+
+#: mod/profiles.php:719
+msgid ""
+"The XMPP address will be propagated to your contacts so that they can follow"
+" you."
+msgstr ""
+
+#: mod/profiles.php:720
+msgid "Homepage URL:"
+msgstr "Kotisivun URL-osoite:"
+
+#: mod/profiles.php:723
+msgid "Religious Views:"
+msgstr "Uskonto:"
+
+#: mod/profiles.php:724
+msgid "Public Keywords:"
+msgstr "Julkiset avainsanat:"
+
+#: mod/profiles.php:724
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Käytetään kaveriehdotuksia varten, näkyy muille)"
+
+#: mod/profiles.php:725
+msgid "Private Keywords:"
+msgstr "Yksityiset avainsanat:"
+
+#: mod/profiles.php:725
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Käytetään profiilihakua varten, ei näy muille)"
+
+#: mod/profiles.php:728
+msgid "Musical interests"
+msgstr "Musiikki"
+
+#: mod/profiles.php:729
+msgid "Books, literature"
+msgstr "Kirjat, kirjallisuus"
+
+#: mod/profiles.php:730
+msgid "Television"
+msgstr "Televisio"
+
+#: mod/profiles.php:731
+msgid "Film/dance/culture/entertainment"
+msgstr "Elokuvat/tanssi/kulttuuri/viihde"
+
+#: mod/profiles.php:732
+msgid "Hobbies/Interests"
+msgstr "Harrastukset"
+
+#: mod/profiles.php:733
+msgid "Love/romance"
+msgstr "Rakkaus/romanssi"
+
+#: mod/profiles.php:734
+msgid "Work/employment"
+msgstr "Työ:"
+
+#: mod/profiles.php:735
+msgid "School/education"
+msgstr "Koulutus:"
+
+#: mod/profiles.php:736
+msgid "Contact information and Social Networks"
+msgstr "Yhteystiedot ja sosiaalinen media"
+
+#: mod/profiles.php:776
+msgid "Edit/Manage Profiles"
+msgstr "Muokkaa/hallitse profiilit"
+
+#: mod/events.php:105 mod/events.php:107
+msgid "Event can not end before it has started."
+msgstr ""
+
+#: mod/events.php:114 mod/events.php:116
+msgid "Event title and start time are required."
+msgstr "Tapahtuman nimi ja alkamisaika vaaditaan."
+
+#: mod/events.php:392 mod/cal.php:275
+msgid "View"
+msgstr "Katso"
+
+#: mod/events.php:393
+msgid "Create New Event"
+msgstr "Luo uusi tapahtuma"
+
+#: mod/events.php:394 mod/cal.php:276
+msgid "Previous"
+msgstr "Edellinen"
+
+#: mod/events.php:395 mod/cal.php:277 mod/install.php:209
+msgid "Next"
+msgstr "Seuraava"
+
+#: mod/events.php:404 mod/cal.php:284
+msgid "list"
+msgstr "luettelo"
+
+#: mod/events.php:506
+msgid "Event details"
+msgstr "Tapahtuman tiedot"
+
+#: mod/events.php:507
+msgid "Starting date and Title are required."
+msgstr "Aloituspvm ja otsikko vaaditaan."
+
+#: mod/events.php:508 mod/events.php:509
+msgid "Event Starts:"
+msgstr "Tapahtuma alkaa:"
+
+#: mod/events.php:510 mod/events.php:526
+msgid "Finish date/time is not known or not relevant"
+msgstr "Päättymispvm ja kellonaika ei ole tiedossa tai niillä ei ole merkitystä"
+
+#: mod/events.php:512 mod/events.php:513
+msgid "Event Finishes:"
+msgstr "Tapahtuma päättyy:"
+
+#: mod/events.php:514 mod/events.php:527
+msgid "Adjust for viewer timezone"
+msgstr "Ota huomioon katsojan aikavyöhyke"
+
+#: mod/events.php:516
+msgid "Description:"
+msgstr "Kuvaus:"
+
+#: mod/events.php:520 mod/events.php:522
+msgid "Title:"
+msgstr "Otsikko:"
+
+#: mod/events.php:523 mod/events.php:524
+msgid "Share this event"
+msgstr "Jaa tämä tapahtuma"
+
+#: mod/events.php:552
+msgid "Failed to remove event"
+msgstr "Tapahtuman poisto epäonnistui"
+
+#: mod/events.php:554
+msgid "Event removed"
+msgstr "Tapahtuma poistettu"
#: mod/notify.php:77
msgid "No more system notifications."
msgstr "Ei enää järjestelmäilmoituksia."
-#: mod/ping.php:292
-msgid "{0} wants to be your friend"
-msgstr "{0} lähetti kaveripyynnön"
+#: mod/notify.php:81 mod/notifications.php:113
+msgid "System Notifications"
+msgstr "Järjestelmäilmoitukset"
-#: mod/ping.php:307
-msgid "{0} sent you a message"
-msgstr "{0} lähetti sinulle viestin"
+#: mod/fsuggest.php:30 mod/fsuggest.php:96 mod/crepair.php:110
+#: mod/dfrn_confirm.php:131
+msgid "Contact not found."
+msgstr "Kontaktia ei ole."
-#: mod/ping.php:322
-msgid "{0} requested registration"
-msgstr "{0} jätti rekisteröintipyynnön"
+#: mod/fsuggest.php:72
+msgid "Friend suggestion sent."
+msgstr "Ystäväehdotus lähetettiin."
-#: mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Tökkää"
+#: mod/fsuggest.php:101
+msgid "Suggest Friends"
+msgstr "Ehdota ystäviä"
-#: mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
+#: mod/fsuggest.php:103
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Ehdota ystävää ystävälle %s"
+
+#: mod/attach.php:15
+msgid "Item not available."
+msgstr "Kohde ei saatavilla."
+
+#: mod/attach.php:25
+msgid "Item was not found."
+msgstr "Kohdetta ei löytynyt."
+
+#: mod/allfriends.php:51
+msgid "No friends to display."
+msgstr "Ei näytettäviä kavereita."
+
+#: mod/viewcontacts.php:87
+msgid "No contacts."
+msgstr "Ei kontakteja."
+
+#: mod/viewcontacts.php:112 mod/nogroup.php:42 mod/contacts.php:619
+#: mod/contacts.php:959
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Näytä %s-käyttäjän profiili [%s]"
+
+#: mod/ostatus_subscribe.php:21
+msgid "Subscribing to OStatus contacts"
+msgstr "OStatus -kontaktien tilaaminen"
+
+#: mod/ostatus_subscribe.php:33
+msgid "No contact provided."
+msgstr "Kontakti puuttuu."
+
+#: mod/ostatus_subscribe.php:40
+msgid "Couldn't fetch information for contact."
+msgstr "Kontaktin tietoja ei voitu hakea."
+
+#: mod/ostatus_subscribe.php:50
+msgid "Couldn't fetch friends for contact."
+msgstr "Ei voitu hakea kontaktin kaverit."
+
+#: mod/ostatus_subscribe.php:78
+msgid "success"
+msgstr "onnistui"
+
+#: mod/ostatus_subscribe.php:80
+msgid "failed"
+msgstr "epäonnistui"
+
+#: mod/api.php:85 mod/api.php:107
+msgid "Authorize application connection"
+msgstr "Vahvista sovellusyhteys"
+
+#: mod/api.php:86
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Palaa takaisin sovellukseen ja lisää tämä turvakoodi:"
+
+#: mod/api.php:95
+msgid "Please login to continue."
+msgstr "Ole hyvä ja kirjaudu jatkaaksesi."
+
+#: mod/api.php:109
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Haluatko antaa tälle sovellukselle luvan hakea viestejäsi ja yhteystietojasi ja/tai luoda uusia viestejä?"
+
+#: mod/settings.php:50 mod/photos.php:126
+msgid "everybody"
+msgstr "kaikki"
+
+#: mod/settings.php:55
+msgid "Account"
+msgstr "Tili"
+
+#: mod/settings.php:64 mod/admin.php:187
+msgid "Additional features"
+msgstr "Lisäominaisuuksia"
+
+#: mod/settings.php:72
+msgid "Display"
+msgstr "Ulkonäkö"
+
+#: mod/settings.php:79 mod/settings.php:842
+msgid "Social Networks"
+msgstr "Sosiaalinen media"
+
+#: mod/settings.php:86 mod/admin.php:185 mod/admin.php:1918 mod/admin.php:1978
+msgid "Addons"
+msgstr "Lisäosat"
+
+#: mod/settings.php:100
+msgid "Connected apps"
+msgstr "Yhdistetyt sovellukset"
+
+#: mod/settings.php:107 mod/uexport.php:52
+msgid "Export personal data"
+msgstr "Vie henkilökohtaiset tiedot"
+
+#: mod/settings.php:114
+msgid "Remove account"
+msgstr "Poista tili"
+
+#: mod/settings.php:168
+msgid "Missing some important data!"
+msgstr "Tärkeää dataa puuttuu!"
+
+#: mod/settings.php:170 mod/settings.php:701 mod/contacts.php:826
+msgid "Update"
+msgstr "Päivitä"
+
+#: mod/settings.php:279
+msgid "Failed to connect with email account using the settings provided."
msgstr ""
-#: mod/poke.php:194
-msgid "Recipient"
-msgstr "Vastaanottaja"
+#: mod/settings.php:284
+msgid "Email settings updated."
+msgstr "Sähköpostin asetukset päivitettiin."
-#: mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
+#: mod/settings.php:300
+msgid "Features updated"
+msgstr "Ominaisuudet päivitetty"
+
+#: mod/settings.php:372
+msgid "Relocate message has been send to your contacts"
msgstr ""
-#: mod/poke.php:198
-msgid "Make this post private"
-msgstr "Muuta julkaisu yksityiseksi"
+#: mod/settings.php:389
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Tyhjä salasanakenttä ei ole sallittu. Salasana ennallaan."
-#: mod/probe.php:14 mod/webfinger.php:17
-msgid "Only logged in users are permitted to perform a probing."
+#: mod/settings.php:400
+msgid "Wrong password."
+msgstr "Väärä salasana."
+
+#: mod/settings.php:496
+msgid " Please use a shorter name."
+msgstr "Käytä lyhyempää nimeä."
+
+#: mod/settings.php:499
+msgid " Name too short."
+msgstr "Nimi on liian lyhyt."
+
+#: mod/settings.php:507
+msgid "Wrong Password"
+msgstr "Väärä salasana"
+
+#: mod/settings.php:512
+msgid "Invalid email."
+msgstr "Virheellinen sähköposti."
+
+#: mod/settings.php:519
+msgid "Cannot change to that email."
msgstr ""
-#: mod/profperm.php:28 mod/group.php:83 index.php:443
-msgid "Permission denied"
-msgstr "Käyttöoikeus evätty"
-
-#: mod/profperm.php:34 mod/profperm.php:65
-msgid "Invalid profile identifier."
-msgstr "Virheellinen profiilitunniste."
-
-#: mod/profperm.php:111
-msgid "Profile Visibility Editor"
+#: mod/settings.php:572
+msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr ""
-#: mod/profperm.php:115 mod/group.php:265
-msgid "Click on a contact to add or remove."
-msgstr "Valitse kontakti, jota haluat poistaa tai lisätä."
+#: mod/settings.php:575
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr ""
-#: mod/profperm.php:124
-msgid "Visible To"
-msgstr "Näkyvyys"
+#: mod/settings.php:615
+msgid "Settings updated."
+msgstr "Asetukset päivitetty."
-#: mod/profperm.php:140
-msgid "All Contacts (with secure profile access)"
+#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
+msgid "Add application"
+msgstr "Lisää sovellus"
+
+#: mod/settings.php:675 mod/settings.php:784 mod/settings.php:872
+#: mod/settings.php:961 mod/settings.php:1194 mod/admin.php:307
+#: mod/admin.php:1346 mod/admin.php:1979 mod/admin.php:2232 mod/admin.php:2306
+#: mod/admin.php:2453 mod/delegate.php:168
+msgid "Save Settings"
+msgstr "Tallenna asetukset"
+
+#: mod/settings.php:677 mod/settings.php:703 mod/admin.php:490
+#: mod/admin.php:1796 mod/admin.php:1807 mod/admin.php:1820 mod/admin.php:1836
+#: mod/crepair.php:158
+msgid "Name"
+msgstr "Nimi"
+
+#: mod/settings.php:678 mod/settings.php:704
+msgid "Consumer Key"
+msgstr "Kuluttajan avain"
+
+#: mod/settings.php:679 mod/settings.php:705
+msgid "Consumer Secret"
+msgstr "Kuluttajasalaisuus"
+
+#: mod/settings.php:680 mod/settings.php:706
+msgid "Redirect"
+msgstr "Uudelleenohjaus"
+
+#: mod/settings.php:681 mod/settings.php:707
+msgid "Icon url"
+msgstr "Kuvakkeen URL-osoite"
+
+#: mod/settings.php:692
+msgid "You can't edit this application."
+msgstr "Et voi muokata tätä sovellusta."
+
+#: mod/settings.php:735
+msgid "Connected Apps"
+msgstr "Yhdistetyt sovellukset"
+
+#: mod/settings.php:739
+msgid "Client key starts with"
+msgstr "Asiakasavain alkaa"
+
+#: mod/settings.php:740
+msgid "No name"
+msgstr "Ei nimeä"
+
+#: mod/settings.php:741
+msgid "Remove authorization"
+msgstr "Poista lupa"
+
+#: mod/settings.php:752
+msgid "No Addon settings configured"
+msgstr "Lisäosa-asetukset puuttuvat"
+
+#: mod/settings.php:761
+msgid "Addon Settings"
+msgstr "Lisäosa-asetukset"
+
+#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443
+msgid "Off"
+msgstr "Pois päältä"
+
+#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443
+msgid "On"
+msgstr "Päällä"
+
+#: mod/settings.php:782
+msgid "Additional Features"
+msgstr "Lisäominaisuuksia"
+
+#: mod/settings.php:805 mod/settings.php:806
+msgid "enabled"
+msgstr "käytössä"
+
+#: mod/settings.php:805 mod/settings.php:806
+msgid "disabled"
+msgstr "pois käytöstä"
+
+#: mod/settings.php:805 mod/settings.php:806
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr ""
+
+#: mod/settings.php:806
+msgid "GNU Social (OStatus)"
+msgstr "GNU Social (OStatus)"
+
+#: mod/settings.php:837
+msgid "Email access is disabled on this site."
+msgstr ""
+
+#: mod/settings.php:847
+msgid "General Social Media Settings"
+msgstr "Yleiset some asetukset"
+
+#: mod/settings.php:848
+msgid "Disable Content Warning"
+msgstr "Poista sisältövaroitus käytöstä"
+
+#: mod/settings.php:848
+msgid ""
+"Users on networks like Mastodon or Pleroma are able to set a content warning"
+" field which collapse their post by default. This disables the automatic "
+"collapsing and sets the content warning as the post title. Doesn't affect "
+"any other content filtering you eventually set up."
+msgstr ""
+
+#: mod/settings.php:849
+msgid "Disable intelligent shortening"
+msgstr ""
+
+#: mod/settings.php:849
+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:850
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+msgstr "Automaattisesti seuraa GNU social (OStatus) seuraajat/mainitsijat"
+
+#: mod/settings.php:850
+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:851
+msgid "Default group for OStatus contacts"
+msgstr "Oletusryhmä OStatus kontakteille"
+
+#: mod/settings.php:852
+msgid "Your legacy GNU Social account"
+msgstr "Vanha GNU social käyttäjätilisi"
+
+#: mod/settings.php:852
+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:855
+msgid "Repair OStatus subscriptions"
+msgstr "Korjaa OStatus tilaukset"
+
+#: mod/settings.php:859
+msgid "Email/Mailbox Setup"
+msgstr "Sähköpostin asennus"
+
+#: mod/settings.php:860
+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:861
+msgid "Last successful email check:"
+msgstr "Viimeisin onnistunut sähköpostitarkistus:"
+
+#: mod/settings.php:863
+msgid "IMAP server name:"
+msgstr "IMAP-palvelimen nimi:"
+
+#: mod/settings.php:864
+msgid "IMAP port:"
+msgstr "IMAP-porttti:"
+
+#: mod/settings.php:865
+msgid "Security:"
+msgstr "Turvallisuus:"
+
+#: mod/settings.php:865 mod/settings.php:870
+msgid "None"
+msgstr "Ei mitään"
+
+#: mod/settings.php:866
+msgid "Email login name:"
+msgstr "Sähköpostitilin käyttäjätunnus:"
+
+#: mod/settings.php:867
+msgid "Email password:"
+msgstr "Sähköpostin salasana:"
+
+#: mod/settings.php:868
+msgid "Reply-to address:"
+msgstr "Vastausosoite:"
+
+#: mod/settings.php:869
+msgid "Send public posts to all email contacts:"
+msgstr "Lähetä julkiset julkaisut kaikille kontakteille:"
+
+#: mod/settings.php:870
+msgid "Action after import:"
+msgstr "Toiminta tuonnin jälkeen:"
+
+#: mod/settings.php:870
+msgid "Move to folder"
+msgstr "Siirrä kansioon"
+
+#: mod/settings.php:871
+msgid "Move to folder:"
+msgstr "Siirrä kansioon:"
+
+#: mod/settings.php:905 mod/admin.php:1236
+msgid "No special theme for mobile devices"
+msgstr "Ei mobiiliteemaa"
+
+#: mod/settings.php:914
+#, php-format
+msgid "%s - (Unsupported)"
+msgstr "%s - (Ei tueta)"
+
+#: mod/settings.php:916
+#, php-format
+msgid "%s - (Experimental)"
+msgstr "%s - (Kokeellinen)"
+
+#: mod/settings.php:959
+msgid "Display Settings"
+msgstr "Näyttöasetukset"
+
+#: mod/settings.php:965 mod/settings.php:989
+msgid "Display Theme:"
+msgstr "Käyttöliittymän teema:"
+
+#: mod/settings.php:966
+msgid "Mobile Theme:"
+msgstr "Mobiiliteema:"
+
+#: mod/settings.php:967
+msgid "Suppress warning of insecure networks"
+msgstr ""
+
+#: mod/settings.php:967
+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:968
+msgid "Update browser every xx seconds"
+msgstr "Päivitä selain xx sekunnin välein"
+
+#: mod/settings.php:968
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
+msgstr "Vähintään 10 sekuntia. -1 poistaa ominaisuuden käytöstä."
+
+#: mod/settings.php:969
+msgid "Number of items to display per page:"
+msgstr ""
+
+#: mod/settings.php:969 mod/settings.php:970
+msgid "Maximum of 100 items"
+msgstr "Enintään 100 kohdetta"
+
+#: mod/settings.php:970
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr ""
+
+#: mod/settings.php:971
+msgid "Don't show emoticons"
+msgstr "Piilota hymiöt"
+
+#: mod/settings.php:972
+msgid "Calendar"
+msgstr "Kalenteri"
+
+#: mod/settings.php:973
+msgid "Beginning of week:"
+msgstr "Viikon alku:"
+
+#: mod/settings.php:974
+msgid "Don't show notices"
+msgstr ""
+
+#: mod/settings.php:975
+msgid "Infinite scroll"
+msgstr "Loputon selaaminen"
+
+#: mod/settings.php:976
+msgid "Automatic updates only at the top of the network page"
+msgstr ""
+
+#: mod/settings.php:976
+msgid ""
+"When disabled, the network page is updated all the time, which could be "
+"confusing while reading."
+msgstr ""
+
+#: mod/settings.php:977
+msgid "Bandwith Saver Mode"
+msgstr "Kaistanleveyssäästömoodi"
+
+#: mod/settings.php:977
+msgid ""
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
+msgstr ""
+
+#: mod/settings.php:978
+msgid "Smart Threading"
+msgstr ""
+
+#: mod/settings.php:978
+msgid ""
+"When enabled, suppress extraneous thread indentation while keeping it where "
+"it matters. Only works if threading is available and enabled."
+msgstr ""
+
+#: mod/settings.php:980
+msgid "General Theme Settings"
+msgstr "Yleiset teeman asetukset"
+
+#: mod/settings.php:981
+msgid "Custom Theme Settings"
+msgstr "Mukautetut teema-asetukset"
+
+#: mod/settings.php:982
+msgid "Content Settings"
+msgstr "Sisältöasetukset"
+
+#: mod/settings.php:983 view/theme/quattro/config.php:75
+#: view/theme/frio/config.php:115 view/theme/vier/config.php:121
+#: view/theme/duepuntozero/config.php:73
+msgid "Theme settings"
+msgstr "Teeman asetukset"
+
+#: mod/settings.php:1002
+msgid "Unable to find your profile. Please contact your admin."
+msgstr "Profiilisi ei löytynyt. Ota yhteyttä ylläpitäjään."
+
+#: mod/settings.php:1044
+msgid "Account Types"
+msgstr "Tilityypit"
+
+#: mod/settings.php:1045
+msgid "Personal Page Subtypes"
+msgstr "Henkilökohtaisen sivun alatyypit"
+
+#: mod/settings.php:1046
+msgid "Community Forum Subtypes"
+msgstr "Yhteisöfoorumin alatyypit"
+
+#: mod/settings.php:1053 mod/admin.php:1746
+msgid "Personal Page"
+msgstr "Henkilökohtainen sivu"
+
+#: mod/settings.php:1054
+msgid "Account for a personal profile."
+msgstr "Henkilökohtaisen profiilin käyttäjätili."
+
+#: mod/settings.php:1057 mod/admin.php:1747
+msgid "Organisation Page"
+msgstr "Järjestön sivu"
+
+#: mod/settings.php:1058
+msgid ""
+"Account for an organisation that automatically approves contact requests as "
+"\"Followers\"."
+msgstr ""
+
+#: mod/settings.php:1061 mod/admin.php:1748
+msgid "News Page"
+msgstr "Uutissivu"
+
+#: mod/settings.php:1062
+msgid ""
+"Account for a news reflector that automatically approves contact requests as"
+" \"Followers\"."
+msgstr ""
+
+#: mod/settings.php:1065 mod/admin.php:1749
+msgid "Community Forum"
+msgstr "Yhteisöfoorumi"
+
+#: mod/settings.php:1066
+msgid "Account for community discussions."
+msgstr ""
+
+#: mod/settings.php:1069 mod/admin.php:1739
+msgid "Normal Account Page"
+msgstr "Tavallinen käyttäjätili"
+
+#: mod/settings.php:1070
+msgid ""
+"Account for a regular personal profile that requires manual approval of "
+"\"Friends\" and \"Followers\"."
+msgstr ""
+
+#: mod/settings.php:1073 mod/admin.php:1740
+msgid "Soapbox Page"
+msgstr "Saarnatuoli sivu"
+
+#: mod/settings.php:1074
+msgid ""
+"Account for a public profile that automatically approves contact requests as"
+" \"Followers\"."
+msgstr ""
+
+#: mod/settings.php:1077 mod/admin.php:1741
+msgid "Public Forum"
+msgstr "Julkinen foorumi"
+
+#: mod/settings.php:1078
+msgid "Automatically approves all contact requests."
+msgstr "Automaattisesti hyväksyy kaikki kontaktipyynnöt"
+
+#: mod/settings.php:1081 mod/admin.php:1742
+msgid "Automatic Friend Page"
+msgstr ""
+
+#: mod/settings.php:1082
+msgid ""
+"Account for a popular profile that automatically approves contact requests "
+"as \"Friends\"."
+msgstr ""
+
+#: mod/settings.php:1085
+msgid "Private Forum [Experimental]"
+msgstr "Yksityisfoorumi [kokeellinen]"
+
+#: mod/settings.php:1086
+msgid "Requires manual approval of contact requests."
+msgstr ""
+
+#: mod/settings.php:1097
+msgid "OpenID:"
+msgstr "OpenID:"
+
+#: mod/settings.php:1097
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr ""
+
+#: mod/settings.php:1105
+msgid "Publish your default profile in your local site directory?"
+msgstr "Julkaise oletusprofiilisi tämän sivuston paikallisluettelossa?"
+
+#: mod/settings.php:1105
+#, php-format
+msgid ""
+"Your profile will be published in the global friendica directories (e.g. %s ). Your profile will be visible in public."
+msgstr ""
+
+#: mod/settings.php:1111
+msgid "Publish your default profile in the global social directory?"
+msgstr "Julkaise oletusprofiilisi maailmanlaajuisessa sosiaaliluettelossa?"
+
+#: mod/settings.php:1111
+#, php-format
+msgid ""
+"Your profile will be published in this node's local "
+"directory . Your profile details may be publicly visible depending on the"
+" system settings."
+msgstr ""
+
+#: mod/settings.php:1118
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr ""
+
+#: mod/settings.php:1118
+msgid ""
+"Your contact list won't be shown in your default profile page. You can "
+"decide to show your contact list separately for each additional profile you "
+"create"
+msgstr ""
+
+#: mod/settings.php:1122
+msgid "Hide your profile details from anonymous viewers?"
+msgstr ""
+
+#: mod/settings.php:1122
+msgid ""
+"Anonymous visitors will only see your profile picture, your display name and"
+" the nickname you are using on your profile page. Disables posting public "
+"messages to Diaspora and other networks."
+msgstr ""
+
+#: mod/settings.php:1126
+msgid "Allow friends to post to your profile page?"
+msgstr "Anna kavereiden julkaista profiilisivullasi?"
+
+#: mod/settings.php:1126
+msgid ""
+"Your contacts may write posts on your profile wall. These posts will be "
+"distributed to your contacts"
+msgstr ""
+
+#: mod/settings.php:1130
+msgid "Allow friends to tag your posts?"
+msgstr "Anna kavereiden lisätä tunnisteita julkaisuusi?"
+
+#: mod/settings.php:1130
+msgid "Your contacts can add additional tags to your posts."
+msgstr "Kontaktisi voi lisätä ylimääräisiä tunnisteita julkaisuusi."
+
+#: mod/settings.php:1134
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr ""
+
+#: mod/settings.php:1134
+msgid ""
+"If you like, Friendica may suggest new members to add you as a contact."
+msgstr ""
+
+#: mod/settings.php:1138
+msgid "Permit unknown people to send you private mail?"
+msgstr "Salli yksityisviesit tuntemattomilta?"
+
+#: mod/settings.php:1138
+msgid ""
+"Friendica network users may send you private messages even if they are not "
+"in your contact list."
+msgstr ""
+
+#: mod/settings.php:1142
+msgid "Profile is not published ."
+msgstr "Profiili ei ole julkaistu ."
+
+#: mod/settings.php:1148
+#, php-format
+msgid "Your Identity Address is '%s' or '%s'."
+msgstr "Identiteettisi osoite on '%s' tai '%s'."
+
+#: mod/settings.php:1155
+msgid "Automatically expire posts after this many days:"
+msgstr ""
+
+#: mod/settings.php:1155
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Jos kenttä jää tyhjäksi, julkaisut eivät vanhene. Vanhentuneet julkaisut poistetaan."
+
+#: mod/settings.php:1156
+msgid "Advanced expiration settings"
+msgstr ""
+
+#: mod/settings.php:1157
+msgid "Advanced Expiration"
+msgstr ""
+
+#: mod/settings.php:1158
+msgid "Expire posts:"
+msgstr "Julkaisujen vanheneminen:"
+
+#: mod/settings.php:1159
+msgid "Expire personal notes:"
+msgstr ""
+
+#: mod/settings.php:1160
+msgid "Expire starred posts:"
+msgstr "Tähtimerkityt julkaisut vanhenee:"
+
+#: mod/settings.php:1161
+msgid "Expire photos:"
+msgstr "Kuvat vanhenee:"
+
+#: mod/settings.php:1162
+msgid "Only expire posts by others:"
+msgstr ""
+
+#: mod/settings.php:1192
+msgid "Account Settings"
+msgstr "Tiliasetukset"
+
+#: mod/settings.php:1200
+msgid "Password Settings"
+msgstr "Salasana-asetukset"
+
+#: mod/settings.php:1201 mod/register.php:273
+msgid "New Password:"
+msgstr "Uusi salasana:"
+
+#: mod/settings.php:1202 mod/register.php:274
+msgid "Confirm:"
+msgstr "Vahvista:"
+
+#: mod/settings.php:1202
+msgid "Leave password fields blank unless changing"
+msgstr "Jätä salasana kenttää tyhjäksi jos et halua vaihtaa salasanaa"
+
+#: mod/settings.php:1203
+msgid "Current Password:"
+msgstr "Nykyinen salasana:"
+
+#: mod/settings.php:1203 mod/settings.php:1204
+msgid "Your current password to confirm the changes"
+msgstr ""
+
+#: mod/settings.php:1204
+msgid "Password:"
+msgstr "Salasana:"
+
+#: mod/settings.php:1208
+msgid "Basic Settings"
+msgstr "Perusasetukset"
+
+#: mod/settings.php:1210
+msgid "Email Address:"
+msgstr "Sähköpostiosoite:"
+
+#: mod/settings.php:1211
+msgid "Your Timezone:"
+msgstr "Aikavyöhyke:"
+
+#: mod/settings.php:1212
+msgid "Your Language:"
+msgstr "Kieli:"
+
+#: mod/settings.php:1212
+msgid ""
+"Set the language we use to show you friendica interface and to send you "
+"emails"
+msgstr ""
+
+#: mod/settings.php:1213
+msgid "Default Post Location:"
+msgstr "Julkaisun oletussijainti:"
+
+#: mod/settings.php:1214
+msgid "Use Browser Location:"
+msgstr "Käytä selaimen sijainti:"
+
+#: mod/settings.php:1217
+msgid "Security and Privacy Settings"
+msgstr "Turvallisuus ja tietosuoja-asetukset"
+
+#: mod/settings.php:1219
+msgid "Maximum Friend Requests/Day:"
+msgstr "Kaveripyyntöraja päivässä:"
+
+#: mod/settings.php:1219 mod/settings.php:1248
+msgid "(to prevent spam abuse)"
+msgstr "(roskapostin estämiseksi)"
+
+#: mod/settings.php:1220
+msgid "Default Post Permissions"
+msgstr "Julkaisun oletuskäyttöoikeudet:"
+
+#: mod/settings.php:1221
+msgid "(click to open/close)"
+msgstr "(klikkaa auki/kiinni)"
+
+#: mod/settings.php:1229 mod/photos.php:1106 mod/photos.php:1449
+msgid "Show to Groups"
+msgstr "Näytä ryhmille"
+
+#: mod/settings.php:1230 mod/photos.php:1107 mod/photos.php:1450
+msgid "Show to Contacts"
+msgstr "Näytä kontakteille"
+
+#: mod/settings.php:1231
+msgid "Default Private Post"
+msgstr ""
+
+#: mod/settings.php:1232
+msgid "Default Public Post"
+msgstr ""
+
+#: mod/settings.php:1236
+msgid "Default Permissions for New Posts"
+msgstr "Uuden julkaisun oletuskäyttöoikeudet"
+
+#: mod/settings.php:1248
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Enimmäismäärä yksityisviestejä päivässä tuntemattomilta henkilöiltä:"
+
+#: mod/settings.php:1251
+msgid "Notification Settings"
+msgstr "Huomautusasetukset"
+
+#: mod/settings.php:1252
+msgid "By default post a status message when:"
+msgstr "Oletuksena julkaise tilapäivitys kun:"
+
+#: mod/settings.php:1253
+msgid "accepting a friend request"
+msgstr "hyväksyt kaveripyynnön"
+
+#: mod/settings.php:1254
+msgid "joining a forum/community"
+msgstr "liityt foorumiin/yhteisöön"
+
+#: mod/settings.php:1255
+msgid "making an interesting profile change"
+msgstr "muokkaat kiinnostavalla tavalla profiiliasi"
+
+#: mod/settings.php:1256
+msgid "Send a notification email when:"
+msgstr "Lähetä sähköposti-ilmoitus kun:"
+
+#: mod/settings.php:1257
+msgid "You receive an introduction"
+msgstr "Vastaanotat kaverikutsun"
+
+#: mod/settings.php:1258
+msgid "Your introductions are confirmed"
+msgstr "Kaverikutsusi on hyväksytty"
+
+#: mod/settings.php:1259
+msgid "Someone writes on your profile wall"
+msgstr "Joku kirjoittaa profiiliseinällesi"
+
+#: mod/settings.php:1260
+msgid "Someone writes a followup comment"
+msgstr "Joku vastaa kommenttiin"
+
+#: mod/settings.php:1261
+msgid "You receive a private message"
+msgstr "Vastaanotat yksityisviestin"
+
+#: mod/settings.php:1262
+msgid "You receive a friend suggestion"
+msgstr "Vastaanotat kaveriehdotuksen"
+
+#: mod/settings.php:1263
+msgid "You are tagged in a post"
+msgstr "Sinut on merkitty julkaisuun"
+
+#: mod/settings.php:1264
+msgid "You are poked/prodded/etc. in a post"
+msgstr "sinut on tökätty tms. julkaisussa"
+
+#: mod/settings.php:1266
+msgid "Activate desktop notifications"
+msgstr "Ota työpöytäilmoitukset käyttöön"
+
+#: mod/settings.php:1266
+msgid "Show desktop popup on new notifications"
+msgstr "Näytä uudet ilmoitukset ponnahdusikkunassa"
+
+#: mod/settings.php:1268
+msgid "Text-only notification emails"
+msgstr "Ilmoitussähköposteissa vain tekstiä"
+
+#: mod/settings.php:1270
+msgid "Send text only notification emails, without the html part"
+msgstr "Lähetä ilmoitussähköposteissa vain tekstiä ilman HTML-koodia"
+
+#: mod/settings.php:1272
+msgid "Show detailled notifications"
+msgstr "Näytä yksityiskohtaiset ilmoitukset"
+
+#: mod/settings.php:1274
+msgid ""
+"Per default, notifications are condensed to a single notification per item. "
+"When enabled every notification is displayed."
+msgstr ""
+
+#: mod/settings.php:1276
+msgid "Advanced Account/Page Type Settings"
+msgstr "Käyttäjätili/sivutyyppi lisäasetuksia"
+
+#: mod/settings.php:1277
+msgid "Change the behaviour of this account for special situations"
+msgstr ""
+
+#: mod/settings.php:1280
+msgid "Relocate"
+msgstr "Uudelleensijoitus"
+
+#: mod/settings.php:1281
+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:1282
+msgid "Resend relocate message to contacts"
msgstr ""
#: mod/regmod.php:68
@@ -2340,233 +5256,6 @@ msgstr ""
msgid "Please login."
msgstr "Ole hyvä ja kirjaudu."
-#: mod/search.php:37 mod/network.php:194
-msgid "Remove term"
-msgstr "Poista kohde"
-
-#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100
-msgid "Saved Searches"
-msgstr "Tallennetut haut"
-
-#: mod/search.php:105
-msgid "Only logged in users are permitted to perform a search."
-msgstr ""
-
-#: mod/search.php:129
-msgid "Too Many Requests"
-msgstr "Liian monta pyyntöä"
-
-#: mod/search.php:130
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr ""
-
-#: mod/search.php:228 mod/community.php:136
-msgid "No results."
-msgstr "Ei tuloksia."
-
-#: mod/search.php:234
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Kohteet joilla tunnisteet: %s"
-
-#: mod/search.php:236 mod/contacts.php:819
-#, php-format
-msgid "Results for: %s"
-msgstr "Tulokset haulla: %s"
-
-#: mod/subthread.php:113
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr ""
-
-#: mod/tagrm.php:47
-msgid "Tag removed"
-msgstr "Tägi poistettiin"
-
-#: mod/tagrm.php:85
-msgid "Remove Item Tag"
-msgstr "Poista tägi"
-
-#: mod/tagrm.php:87
-msgid "Select a tag to remove: "
-msgstr "Valitse tägi poistamista varten:"
-
-#: mod/tagrm.php:98 mod/delegate.php:177
-msgid "Remove"
-msgstr "Poista"
-
-#: mod/uexport.php:44
-msgid "Export account"
-msgstr "Vie tili"
-
-#: mod/uexport.php:44
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Vie tilin tiedot ja yhteystiedot. Käytä tätä tilisi varmuuskopiointiin ja/tai siirtämiseen toiselle palvelimelle."
-
-#: mod/uexport.php:45
-msgid "Export all"
-msgstr "Vie kaikki"
-
-#: mod/uexport.php:45
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Vie tilin tiedot, yhteystiedot ja kaikki nimikkeesi json-muodossa. Saattaa luoda hyvin suuren tiedoston ja kestää todella pitkään. Tämän avulla voit ottaa täydellisen varmuuskopion tilistäsi (valokuvia ei viedä)"
-
-#: mod/uexport.php:52 mod/settings.php:107
-msgid "Export personal data"
-msgstr "Vie henkilökohtaiset tiedot"
-
-#: mod/viewcontacts.php:87
-msgid "No contacts."
-msgstr "Ei kontakteja."
-
-#: mod/viewsrc.php:12
-msgid "Access denied."
-msgstr "Käyttö estetty."
-
-#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766
-#: mod/photos.php:795 mod/profile_photo.php:153
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "Kuva ylittää kokorajoituksen %s"
-
-#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162
-msgid "Unable to process image."
-msgstr "Kuvan käsitteleminen epäonnistui."
-
-#: mod/wall_upload.php:231 mod/item.php:471 src/Object/Image.php:953
-#: src/Object/Image.php:969 src/Object/Image.php:977 src/Object/Image.php:1002
-msgid "Wall Photos"
-msgstr "Seinäkuvat"
-
-#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307
-msgid "Image upload failed."
-msgstr "Kuvan lähettäminen epäonnistui."
-
-#: mod/wallmessage.php:49 mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "%s-käyttäjän päivittäinen seinäviestiraja ylitetty. Viestin lähettäminen epäonnistui."
-
-#: mod/wallmessage.php:57 mod/message.php:73
-msgid "No recipient selected."
-msgstr "Vastaanottaja puuttuu."
-
-#: mod/wallmessage.php:60
-msgid "Unable to check your home location."
-msgstr "Kotisijaintisi ei voitu tarkistaa."
-
-#: mod/wallmessage.php:63 mod/message.php:80
-msgid "Message could not be sent."
-msgstr "Viestiä ei voitu lähettää."
-
-#: mod/wallmessage.php:66 mod/message.php:83
-msgid "Message collection failure."
-msgstr "Viestin noutaminen epäonnistui."
-
-#: mod/wallmessage.php:69 mod/message.php:86
-msgid "Message sent."
-msgstr "Viesti lähetetty."
-
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Vastaanottaja puuttuu."
-
-#: mod/wallmessage.php:132 mod/message.php:250
-msgid "Send Private Message"
-msgstr "Lähetä yksityisviesti"
-
-#: mod/wallmessage.php:133
-#, 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:134 mod/message.php:251 mod/message.php:421
-msgid "To:"
-msgstr "Vastaanottaja:"
-
-#: mod/wallmessage.php:135 mod/message.php:255 mod/message.php:423
-msgid "Subject:"
-msgstr "Aihe:"
-
-#: mod/wallmessage.php:141 mod/message.php:259 mod/message.php:426
-#: mod/invite.php:149
-msgid "Your message:"
-msgstr "Viestisi:"
-
-#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:312
-msgid "Login"
-msgstr "Kirjaudu sisään"
-
-#: mod/bookmarklet.php:51
-msgid "The post was created"
-msgstr "Julkaisu luotu"
-
-#: mod/community.php:46
-msgid "Community option not available."
-msgstr "Yhteisö vaihtoehto ei saatavilla."
-
-#: mod/community.php:63
-msgid "Not available."
-msgstr "Ei saatavilla."
-
-#: mod/community.php:76
-msgid "Local Community"
-msgstr "Paikallinen yhteisö"
-
-#: mod/community.php:79
-msgid "Posts from local users on this server"
-msgstr "Tämän palvelimen julkaisut"
-
-#: mod/community.php:87
-msgid "Global Community"
-msgstr "Maailmanlaajuinen yhteisö"
-
-#: mod/community.php:90
-msgid "Posts from users of the whole federated network"
-msgstr "Maailmanlaajuisen verkon julkaisut"
-
-#: mod/community.php:180
-msgid ""
-"This community stream shows all public posts received by this node. They may"
-" not reflect the opinions of this node’s users."
-msgstr ""
-
-#: mod/editpost.php:25 mod/editpost.php:35
-msgid "Item not found"
-msgstr "Kohdetta ei löytynyt"
-
-#: mod/editpost.php:42
-msgid "Edit post"
-msgstr "Muokkaa viestiä"
-
-#: mod/editpost.php:134 src/Core/ACL.php:315
-msgid "CC: email addresses"
-msgstr "Kopio: sähköpostiosoitteet"
-
-#: mod/editpost.php:141 src/Core/ACL.php:316
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Esimerkki: bob@example.com, mary@example.com"
-
-#: mod/fsuggest.php:72
-msgid "Friend suggestion sent."
-msgstr "Ystäväehdotus lähetettiin."
-
-#: mod/fsuggest.php:101
-msgid "Suggest Friends"
-msgstr "Ehdota ystäviä"
-
-#: mod/fsuggest.php:103
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Ehdota ystävää ystävälle %s"
-
#: mod/group.php:36
msgid "Group created."
msgstr "Ryhmä luotu."
@@ -2583,6 +5272,10 @@ msgstr "Ryhmää ei löytynyt."
msgid "Group name changed."
msgstr "Ryhmän nimi muutettu."
+#: mod/group.php:83 mod/profperm.php:28 index.php:443
+msgid "Permission denied"
+msgstr "Käyttöoikeus evätty"
+
#: mod/group.php:97
msgid "Save Group"
msgstr "Tallenna ryhmä"
@@ -2591,10 +5284,6 @@ msgstr "Tallenna ryhmä"
msgid "Create a group of contacts/friends."
msgstr "Luo kontakti/kaveriryhmä"
-#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
-msgid "Group Name: "
-msgstr "Ryhmän nimi:"
-
#: mod/group.php:127
msgid "Group removed."
msgstr "Ryhmä poistettu."
@@ -2623,10 +5312,6 @@ msgstr "Jäsenet"
msgid "All Contacts"
msgstr "Kaikki yhteystiedot"
-#: mod/group.php:216 mod/network.php:639
-msgid "Group is empty"
-msgstr "Ryhmä on tyhjä"
-
#: mod/group.php:229
msgid "Remove Contact"
msgstr "Poista kontakti"
@@ -2635,89 +5320,1745 @@ msgstr "Poista kontakti"
msgid "Add Contact"
msgstr "Lisää kontakti"
-#: mod/message.php:30 src/Content/Nav.php:198
-msgid "New Message"
-msgstr "Uusi viesti"
+#: mod/group.php:265 mod/profperm.php:115
+msgid "Click on a contact to add or remove."
+msgstr "Valitse kontakti, jota haluat poistaa tai lisätä."
-#: mod/message.php:77
-msgid "Unable to locate contact information."
-msgstr "Kontaktin tiedot ei löydy."
+#: mod/fbrowser.php:131
+msgid "Files"
+msgstr "Tiedostot"
-#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:195
-msgid "Messages"
-msgstr "Viestit"
+#: mod/admin.php:106
+msgid "Theme settings updated."
+msgstr "Teeman asetukset päivitetty."
-#: mod/message.php:136
-msgid "Do you really want to delete this message?"
-msgstr "Haluatko varmasti poistaa viestin?"
+#: mod/admin.php:180
+msgid "Overview"
+msgstr "Yleiskatsaus"
-#: mod/message.php:156
-msgid "Message deleted."
-msgstr "Viesti poistettu."
+#: mod/admin.php:181 mod/admin.php:718
+msgid "Federation Statistics"
+msgstr "Liiton tilastotiedot"
-#: mod/message.php:185
-msgid "Conversation removed."
-msgstr "Keskustelu poistettu."
+#: mod/admin.php:182
+msgid "Configuration"
+msgstr "Kokoonpano"
-#: mod/message.php:291
-msgid "No messages."
-msgstr "Ei viestejä."
+#: mod/admin.php:183 mod/admin.php:1345
+msgid "Site"
+msgstr "Sivusto"
-#: mod/message.php:330
-msgid "Message not available."
-msgstr "Viesti ei saatavilla."
+#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1802 mod/admin.php:1818
+msgid "Users"
+msgstr "Käyttäjät"
-#: mod/message.php:397
-msgid "Delete message"
-msgstr "Poista viesti"
+#: mod/admin.php:186 mod/admin.php:2187 mod/admin.php:2231
+msgid "Themes"
+msgstr "Teemat"
-#: mod/message.php:399 mod/message.php:500
-msgid "D, d M Y - g:i A"
+#: mod/admin.php:189
+msgid "Database"
+msgstr "Tietokanta"
+
+#: mod/admin.php:190
+msgid "DB updates"
+msgstr "Tietokannan päivitykset"
+
+#: mod/admin.php:191 mod/admin.php:753
+msgid "Inspect Queue"
+msgstr "Tarkista jono"
+
+#: mod/admin.php:192
+msgid "Tools"
+msgstr "Työkalut"
+
+#: mod/admin.php:193
+msgid "Contact Blocklist"
+msgstr "Kontaktien estolista"
+
+#: mod/admin.php:194 mod/admin.php:362
+msgid "Server Blocklist"
+msgstr "Palvelimien estolista"
+
+#: mod/admin.php:195 mod/admin.php:521
+msgid "Delete Item"
+msgstr "Poista kohde"
+
+#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2305
+msgid "Logs"
+msgstr "Lokit"
+
+#: mod/admin.php:198 mod/admin.php:2372
+msgid "View Logs"
+msgstr "Katso lokit"
+
+#: mod/admin.php:200
+msgid "Diagnostics"
+msgstr "Diagnostiikka"
+
+#: mod/admin.php:201
+msgid "PHP Info"
+msgstr "PHP tietoja"
+
+#: mod/admin.php:202
+msgid "probe address"
msgstr ""
-#: mod/message.php:414 mod/message.php:497
-msgid "Delete conversation"
-msgstr "Poista keskustelu"
+#: mod/admin.php:203
+msgid "check webfinger"
+msgstr "Tarkista webfinger"
-#: mod/message.php:416
+#: mod/admin.php:223
+msgid "Addon Features"
+msgstr "Lisäosaominaisuudet"
+
+#: mod/admin.php:224
+msgid "User registrations waiting for confirmation"
+msgstr "Käyttäjärekisteröinnit odottavat hyväksyntää"
+
+#: mod/admin.php:301 mod/admin.php:361 mod/admin.php:478 mod/admin.php:520
+#: mod/admin.php:717 mod/admin.php:752 mod/admin.php:848 mod/admin.php:1344
+#: mod/admin.php:1801 mod/admin.php:1917 mod/admin.php:1977 mod/admin.php:2186
+#: mod/admin.php:2230 mod/admin.php:2304 mod/admin.php:2371
+msgid "Administration"
+msgstr "Ylläpito"
+
+#: mod/admin.php:303
+msgid "Display Terms of Service"
+msgstr "Näytä käyttöehdot"
+
+#: mod/admin.php:303
msgid ""
-"No secure communications available. You may be able to "
-"respond from the sender's profile page."
+"Enable the Terms of Service page. If this is enabled a link to the terms "
+"will be added to the registration form and the general information page."
msgstr ""
-#: mod/message.php:420
-msgid "Send Reply"
-msgstr "Lähetä vastaus"
+#: mod/admin.php:304
+msgid "Display Privacy Statement"
+msgstr "Näytä tietosuojalausunto"
-#: mod/message.php:471
+#: mod/admin.php:304
#, php-format
-msgid "Unknown sender - %s"
-msgstr "Tuntematon lähettäjä - %s"
+msgid ""
+"Show some informations regarding the needed information to operate the node "
+"according e.g. to EU-GDPR ."
+msgstr ""
-#: mod/message.php:473
+#: mod/admin.php:305
+msgid "The Terms of Service"
+msgstr "Käyttöehdot"
+
+#: mod/admin.php:305
+msgid ""
+"Enter the Terms of Service for your node here. You can use BBCode. Headers "
+"of sections should be [h2] and below."
+msgstr ""
+
+#: mod/admin.php:353
+msgid "The blocked domain"
+msgstr "Estetty verkkotunnus"
+
+#: mod/admin.php:354 mod/admin.php:367
+msgid "The reason why you blocked this domain."
+msgstr "Verkkotunnuksen estosyy."
+
+#: mod/admin.php:355
+msgid "Delete domain"
+msgstr "Poista verkkotunnus"
+
+#: mod/admin.php:355
+msgid "Check to delete this entry from the blocklist"
+msgstr "Laita rasti poistaaksesi kohde estolistalta"
+
+#: mod/admin.php:363
+msgid ""
+"This page can be used to define a black list of servers from the federated "
+"network that are not allowed to interact with your node. For all entered "
+"domains you should also give a reason why you have blocked the remote "
+"server."
+msgstr ""
+
+#: mod/admin.php:364
+msgid ""
+"The list of blocked servers will be made publically available on the "
+"/friendica page so that your users and people investigating communication "
+"problems can find the reason easily."
+msgstr ""
+
+#: mod/admin.php:365
+msgid "Add new entry to block list"
+msgstr "Lisää uusi kohde estolistaan"
+
+#: mod/admin.php:366
+msgid "Server Domain"
+msgstr "Palvelimen verkkotunnus"
+
+#: mod/admin.php:366
+msgid ""
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
+msgstr ""
+
+#: mod/admin.php:367
+msgid "Block reason"
+msgstr "Estosyy"
+
+#: mod/admin.php:368
+msgid "Add Entry"
+msgstr "Lisää merkintä"
+
+#: mod/admin.php:369
+msgid "Save changes to the blocklist"
+msgstr "Tallenna muutoksia estolistaan"
+
+#: mod/admin.php:370
+msgid "Current Entries in the Blocklist"
+msgstr "Nykyinen estolista"
+
+#: mod/admin.php:373
+msgid "Delete entry from blocklist"
+msgstr "Poista kohde estolistalta"
+
+#: mod/admin.php:376
+msgid "Delete entry from blocklist?"
+msgstr "Poista kohde estolistalta?"
+
+#: mod/admin.php:402
+msgid "Server added to blocklist."
+msgstr "Palvelin lisätty estolistalle"
+
+#: mod/admin.php:418
+msgid "Site blocklist updated."
+msgstr "Sivuston estolista päivitetty."
+
+#: mod/admin.php:450
#, php-format
-msgid "You and %s"
-msgstr "Sinä ja %s"
+msgid "%s contact unblocked"
+msgid_plural "%s contacts unblocked"
+msgstr[0] "%s kontakti poistettu estolistalta"
+msgstr[1] "%s kontaktia poistettu estolistalta"
-#: mod/message.php:475
+#: mod/admin.php:479
+msgid "Remote Contact Blocklist"
+msgstr "Etäkontakti estolista"
+
+#: mod/admin.php:480
+msgid ""
+"This page allows you to prevent any message from a remote contact to reach "
+"your node."
+msgstr ""
+
+#: mod/admin.php:481
+msgid "Block Remote Contact"
+msgstr "Estä etäkontakti"
+
+#: mod/admin.php:482 mod/admin.php:1804
+msgid "select all"
+msgstr "valitse kaikki"
+
+#: mod/admin.php:483
+msgid "select none"
+msgstr "älä valitse mitään"
+
+#: mod/admin.php:484 mod/admin.php:1813 mod/contacts.php:637
+#: mod/contacts.php:827 mod/contacts.php:1011
+msgid "Block"
+msgstr "Estä"
+
+#: mod/admin.php:485 mod/admin.php:1814 mod/contacts.php:637
+#: mod/contacts.php:827 mod/contacts.php:1011
+msgid "Unblock"
+msgstr "Salli"
+
+#: mod/admin.php:486
+msgid "No remote contact is blocked from this node."
+msgstr ""
+
+#: mod/admin.php:488
+msgid "Blocked Remote Contacts"
+msgstr "Estetty etäkontaktit"
+
+#: mod/admin.php:489
+msgid "Block New Remote Contact"
+msgstr "Estä uusi etäkontakti"
+
+#: mod/admin.php:490
+msgid "Photo"
+msgstr "Kuva"
+
+#: mod/admin.php:490 mod/admin.php:500 mod/unfollow.php:122
+#: mod/notifications.php:258 mod/follow.php:166 mod/contacts.php:656
+msgid "Profile URL"
+msgstr "Profiilin URL"
+
+#: mod/admin.php:498
#, php-format
-msgid "%s and You"
-msgstr "%s ja sinä"
+msgid "%s total blocked contact"
+msgid_plural "%s total blocked contacts"
+msgstr[0] "Yhteensä %s estetty kontakti"
+msgstr[1] "Yhteensä %s estettyjä kontakteja"
-#: mod/message.php:503
+#: mod/admin.php:500
+msgid "URL of the remote contact to block."
+msgstr "Estettävän etäkontaktin URL-osoite"
+
+#: mod/admin.php:522
+msgid "Delete this Item"
+msgstr "Poista tämä kohde"
+
+#: mod/admin.php:523
+msgid ""
+"On this page you can delete an item from your node. If the item is a top "
+"level posting, the entire thread will be deleted."
+msgstr ""
+
+#: mod/admin.php:524
+msgid ""
+"You need to know the GUID of the item. You can find it e.g. by looking at "
+"the display URL. The last part of http://example.com/display/123456 is the "
+"GUID, here 123456."
+msgstr ""
+
+#: mod/admin.php:525
+msgid "GUID"
+msgstr "GUID"
+
+#: mod/admin.php:525
+msgid "The GUID of the item you want to delete."
+msgstr "Poistettavan kohteen GUID."
+
+#: mod/admin.php:564
+msgid "Item marked for deletion."
+msgstr "Kohde merkitty poistettavaksi."
+
+#: mod/admin.php:635
+msgid "unknown"
+msgstr "tuntematon"
+
+#: mod/admin.php:711
+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:712
+msgid ""
+"The Auto Discovered Contact Directory feature is not enabled, it "
+"will improve the data displayed here."
+msgstr ""
+
+#: mod/admin.php:724
#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d viesti"
-msgstr[1] "%d viestiä"
+msgid ""
+"Currently this node is aware of %d nodes with %d registered users from the "
+"following platforms:"
+msgstr "Tällä hetkellä tämä solmu havaitsee %d muita solmuja joissa %d rekisteröityneitä käyttäjiä. Tarkemmat tiedot:"
-#: mod/notes.php:52 src/Model/Profile.php:948
-msgid "Personal Notes"
-msgstr "Henkilökohtaiset tiedot"
+#: mod/admin.php:755
+msgid "ID"
+msgstr ""
-#: mod/photos.php:108 src/Model/Profile.php:909
-msgid "Photo Albums"
-msgstr "Valokuva-albumit"
+#: mod/admin.php:756
+msgid "Recipient Name"
+msgstr "Vastaanottajan nimi"
+
+#: mod/admin.php:757
+msgid "Recipient Profile"
+msgstr "Vastaanottajan profiili"
+
+#: mod/admin.php:759
+msgid "Created"
+msgstr "Luotu"
+
+#: mod/admin.php:760
+msgid "Last Tried"
+msgstr "Viimeksi yritetty"
+
+#: mod/admin.php:761
+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:785
+#, 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 here for a guide that may be helpful "
+"converting the table engines. You may also use the command php "
+"bin/console.php dbstructure toinnodb of your Friendica installation for"
+" an automatic conversion. "
+msgstr ""
+
+#: mod/admin.php:792
+#, php-format
+msgid ""
+"There is a new version of Friendica available for download. Your current "
+"version is %1$s, upstream version is %2$s"
+msgstr ""
+
+#: mod/admin.php:802
+msgid ""
+"The database update failed. Please run \"php bin/console.php dbstructure "
+"update\" from the command line and have a look at the errors that might "
+"appear."
+msgstr "Tietokannan päivitys epäonnistui. Suorita komento \"php bin/console.php dbstructure update\" komentoriviltä ja lue mahdolliset virheviestit."
+
+#: mod/admin.php:808
+msgid "The worker was never executed. Please check your database structure!"
+msgstr "Workeriä ei ole otettu käyttöön. Tarkista tietokantasi rakenne!"
+
+#: mod/admin.php:811
+#, php-format
+msgid ""
+"The last worker execution was on %s UTC. This is older than one hour. Please"
+" check your crontab settings."
+msgstr "Viimeisin worker -käynnistys tapahtui klo %s UTC, eli yli tunti sitten. Tarkista crontab -asetukset."
+
+#: mod/admin.php:816
+msgid "Normal Account"
+msgstr "Perustili"
+
+#: mod/admin.php:817
+msgid "Automatic Follower Account"
+msgstr "Automaattinen seuraajatili"
+
+#: mod/admin.php:818
+msgid "Public Forum Account"
+msgstr "Julkinen foorumitili"
+
+#: mod/admin.php:819
+msgid "Automatic Friend Account"
+msgstr "Automaattinen kaveritili"
+
+#: mod/admin.php:820
+msgid "Blog Account"
+msgstr "Blogitili"
+
+#: mod/admin.php:821
+msgid "Private Forum Account"
+msgstr "Yksityinen foorumitili"
+
+#: mod/admin.php:843
+msgid "Message queues"
+msgstr "Viestijonot"
+
+#: mod/admin.php:849
+msgid "Summary"
+msgstr "Yhteenveto"
+
+#: mod/admin.php:851
+msgid "Registered users"
+msgstr "Rekisteröityneet käyttäjät"
+
+#: mod/admin.php:853
+msgid "Pending registrations"
+msgstr "Vireillä olevat rekisteröinnit"
+
+#: mod/admin.php:854
+msgid "Version"
+msgstr "Versio"
+
+#: mod/admin.php:859
+msgid "Active addons"
+msgstr "Käytössäolevat lisäosat"
+
+#: mod/admin.php:890
+msgid "Can not parse base url. Must have at least ://"
+msgstr "Ei voitu jäsentää perusosoitetta. Täytyy sisältää ainakin ://"
+
+#: mod/admin.php:1209
+msgid "Site settings updated."
+msgstr "Sivuston asetukset päivitettiin."
+
+#: mod/admin.php:1265
+msgid "No community page"
+msgstr "Ei yhteisösivua"
+
+#: mod/admin.php:1266
+msgid "Public postings from users of this site"
+msgstr "Julkiset julkaisut tämän sivuston käyttäjiltä"
+
+#: mod/admin.php:1267
+msgid "Public postings from the federated network"
+msgstr "Julkiset julkaisut liittoutuneelta verkolta"
+
+#: mod/admin.php:1268
+msgid "Public postings from local users and the federated network"
+msgstr "Julkiset julkaisut tältä sivustolta ja liittoutuneelta verkolta"
+
+#: mod/admin.php:1272 mod/admin.php:1435 mod/admin.php:1445
+#: mod/contacts.php:572
+msgid "Disabled"
+msgstr "Pois käytöstä"
+
+#: mod/admin.php:1274
+msgid "Users, Global Contacts"
+msgstr "Käyttäjät, maailmanlaajuiset kontaktit"
+
+#: mod/admin.php:1275
+msgid "Users, Global Contacts/fallback"
+msgstr ""
+
+#: mod/admin.php:1279
+msgid "One month"
+msgstr "Yksi kuukausi"
+
+#: mod/admin.php:1280
+msgid "Three months"
+msgstr "Kolme kuukautta"
+
+#: mod/admin.php:1281
+msgid "Half a year"
+msgstr "Puoli vuotta"
+
+#: mod/admin.php:1282
+msgid "One year"
+msgstr "Yksi vuosi"
+
+#: mod/admin.php:1287
+msgid "Multi user instance"
+msgstr "Monen käyttäjän instanssi"
+
+#: mod/admin.php:1310
+msgid "Closed"
+msgstr "Suljettu"
+
+#: mod/admin.php:1311
+msgid "Requires approval"
+msgstr "Edellyttää hyväksyntää"
+
+#: mod/admin.php:1312
+msgid "Open"
+msgstr "Avoin"
+
+#: mod/admin.php:1316
+msgid "No SSL policy, links will track page SSL state"
+msgstr ""
+
+#: mod/admin.php:1317
+msgid "Force all links to use SSL"
+msgstr "Pakota kaikki linkit käyttämään SSL-yhteyttä"
+
+#: mod/admin.php:1318
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr ""
+
+#: mod/admin.php:1322
+msgid "Don't check"
+msgstr "Älä tarkista"
+
+#: mod/admin.php:1323
+msgid "check the stable version"
+msgstr ""
+
+#: mod/admin.php:1324
+msgid "check the development version"
+msgstr ""
+
+#: mod/admin.php:1347
+msgid "Republish users to directory"
+msgstr ""
+
+#: mod/admin.php:1348 mod/register.php:264
+msgid "Registration"
+msgstr "Rekisteröityminen"
+
+#: mod/admin.php:1349
+msgid "File upload"
+msgstr "Tiedoston lataus"
+
+#: mod/admin.php:1350
+msgid "Policies"
+msgstr "Käytännöt"
+
+#: mod/admin.php:1352
+msgid "Auto Discovered Contact Directory"
+msgstr ""
+
+#: mod/admin.php:1353
+msgid "Performance"
+msgstr "Suoritus"
+
+#: mod/admin.php:1354
+msgid "Worker"
+msgstr "Worker"
+
+#: mod/admin.php:1355
+msgid "Message Relay"
+msgstr "Viestirele"
+
+#: mod/admin.php:1356
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr ""
+
+#: mod/admin.php:1359
+msgid "Site name"
+msgstr "Sivuston nimi"
+
+#: mod/admin.php:1360
+msgid "Host name"
+msgstr "Palvelimen nimi"
+
+#: mod/admin.php:1361
+msgid "Sender Email"
+msgstr "Lähettäjän sähköposti"
+
+#: mod/admin.php:1361
+msgid ""
+"The email address your server shall use to send notification emails from."
+msgstr "Lähettäjän sähköpostiosoite palvelimen ilmoitussähköposteissa."
+
+#: mod/admin.php:1362
+msgid "Banner/Logo"
+msgstr "Banneri/logo"
+
+#: mod/admin.php:1363
+msgid "Shortcut icon"
+msgstr "Pikakuvake"
+
+#: mod/admin.php:1363
+msgid "Link to an icon that will be used for browsers."
+msgstr "Linkki kuvakkeeseen jota selaimet saa käyttää."
+
+#: mod/admin.php:1364
+msgid "Touch icon"
+msgstr "Kosketusnäyttökuvake"
+
+#: mod/admin.php:1364
+msgid "Link to an icon that will be used for tablets and mobiles."
+msgstr "Linkki kuvakkeeseen jota tabletit ja matkapuhelimet saa käyttää."
+
+#: mod/admin.php:1365
+msgid "Additional Info"
+msgstr "Lisätietoja"
+
+#: mod/admin.php:1365
+#, php-format
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/servers."
+msgstr ""
+
+#: mod/admin.php:1366
+msgid "System language"
+msgstr "Järjestelmän kieli"
+
+#: mod/admin.php:1367
+msgid "System theme"
+msgstr "Järjestelmäteema"
+
+#: mod/admin.php:1367
+msgid ""
+"Default system theme - may be over-ridden by user profiles - change theme settings "
+msgstr ""
+
+#: mod/admin.php:1368
+msgid "Mobile system theme"
+msgstr "Mobiili järjestelmäteema"
+
+#: mod/admin.php:1368
+msgid "Theme for mobile devices"
+msgstr "Mobiiliteema"
+
+#: mod/admin.php:1369
+msgid "SSL link policy"
+msgstr "SSL-linkkikäytäntö"
+
+#: mod/admin.php:1369
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Määrittää pakotetaanko tuotetut linkit käyttämään SSL-yhteyttä."
+
+#: mod/admin.php:1370
+msgid "Force SSL"
+msgstr "Pakoita SSL-yhteyden käyttöä"
+
+#: mod/admin.php:1370
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr ""
+
+#: mod/admin.php:1371
+msgid "Hide help entry from navigation menu"
+msgstr ""
+
+#: mod/admin.php:1371
+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:1372
+msgid "Single user instance"
+msgstr "Yksittäisen käyttäjän instanssi"
+
+#: mod/admin.php:1372
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr ""
+
+#: mod/admin.php:1373
+msgid "Maximum image size"
+msgstr "Suurin kuvakoko"
+
+#: mod/admin.php:1373
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Ladattavan kuvatiedoston enimmäiskoko tavuina. Oletusarvo on 0, eli ei enimmäiskokoa."
+
+#: mod/admin.php:1374
+msgid "Maximum image length"
+msgstr "Suurin kuvapituus"
+
+#: mod/admin.php:1374
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Ladattavan kuvatiedoston enimmäispituus pikseleinä. Oletusarvo on -1, eli ei enimmäispituutta."
+
+#: mod/admin.php:1375
+msgid "JPEG image quality"
+msgstr "JPEG-kuvanlaatu"
+
+#: mod/admin.php:1375
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr ""
+
+#: mod/admin.php:1377
+msgid "Register policy"
+msgstr "Rekisteröintipolitiikka"
+
+#: mod/admin.php:1378
+msgid "Maximum Daily Registrations"
+msgstr "Päivittäinen rekisteröitymisraja"
+
+#: mod/admin.php:1378
+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 "Mikäli rekisteröityminen on sallittu, tämä asettaa enimmäismäärä uusia rekisteröitymisiä päivässä. Jos reksiteröityminen ei ole sallittu, tällä asetuksella ei ole vaikutusta."
+
+#: mod/admin.php:1379
+msgid "Register text"
+msgstr "Rekisteröitymisteksti"
+
+#: mod/admin.php:1379
+msgid ""
+"Will be displayed prominently on the registration page. You can use BBCode "
+"here."
+msgstr "Näkyvästi esillä rekisteröitymissivulla. Voit käyttää BBCodeia."
+
+#: mod/admin.php:1380
+msgid "Accounts abandoned after x days"
+msgstr "Käyttäjätilit hylätään X päivän jälkeen"
+
+#: mod/admin.php:1380
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr ""
+
+#: mod/admin.php:1381
+msgid "Allowed friend domains"
+msgstr "Sallittuja kaveri-verkkotunnuksia"
+
+#: mod/admin.php:1381
+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:1382
+msgid "Allowed email domains"
+msgstr "Sallittuja sähköposti-verkkotunnuksia"
+
+#: mod/admin.php:1382
+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:1383
+msgid "No OEmbed rich content"
+msgstr ""
+
+#: mod/admin.php:1383
+msgid ""
+"Don't show the rich content (e.g. embedded PDF), except from the domains "
+"listed below."
+msgstr ""
+
+#: mod/admin.php:1384
+msgid "Allowed OEmbed domains"
+msgstr "Sallittuja OEmbed -verkkotunnuksia"
+
+#: mod/admin.php:1384
+msgid ""
+"Comma separated list of domains which oembed content is allowed to be "
+"displayed. Wildcards are accepted."
+msgstr ""
+
+#: mod/admin.php:1385
+msgid "Block public"
+msgstr "Estä vierailijat"
+
+#: mod/admin.php:1385
+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:1386
+msgid "Force publish"
+msgstr ""
+
+#: mod/admin.php:1386
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr ""
+
+#: mod/admin.php:1387
+msgid "Global directory URL"
+msgstr "Maailmanlaajuisen hakemiston URL-osoite"
+
+#: mod/admin.php:1387
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
+msgstr ""
+
+#: mod/admin.php:1388
+msgid "Private posts by default for new users"
+msgstr ""
+
+#: mod/admin.php:1388
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr ""
+
+#: mod/admin.php:1389
+msgid "Don't include post content in email notifications"
+msgstr "Älä lisää julkaisun sisältö sähköposti-ilmoitukseen"
+
+#: mod/admin.php:1389
+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:1390
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr ""
+
+#: mod/admin.php:1390
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr ""
+
+#: mod/admin.php:1391
+msgid "Don't embed private images in posts"
+msgstr "Älä upota yksityisiä kuvia julkaisuissa"
+
+#: mod/admin.php:1391
+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:1392
+msgid "Allow Users to set remote_self"
+msgstr ""
+
+#: mod/admin.php:1392
+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:1393
+msgid "Block multiple registrations"
+msgstr ""
+
+#: mod/admin.php:1393
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr ""
+
+#: mod/admin.php:1394
+msgid "OpenID support"
+msgstr "OpenID-tuki"
+
+#: mod/admin.php:1394
+msgid "OpenID support for registration and logins."
+msgstr "OpenID-tuki rekisteröitymiseen ja kirjautumiseen"
+
+#: mod/admin.php:1395
+msgid "Fullname check"
+msgstr "Koko nimi tarkistus"
+
+#: mod/admin.php:1395
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr ""
+
+#: mod/admin.php:1396
+msgid "Community pages for visitors"
+msgstr "Yhteisösivu vieraille"
+
+#: mod/admin.php:1396
+msgid ""
+"Which community pages should be available for visitors. Local users always "
+"see both pages."
+msgstr ""
+
+#: mod/admin.php:1397
+msgid "Posts per user on community page"
+msgstr ""
+
+#: mod/admin.php:1397
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr "Enimmäismäärä julkaisuja käyttäjää kohden yhteisösivulla. (Ei koske maailmanlaajuista yhteisösivua.)"
+
+#: mod/admin.php:1398
+msgid "Enable OStatus support"
+msgstr "Salli OStatus-tuki"
+
+#: mod/admin.php:1398
+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:1399
+msgid "Only import OStatus threads from our contacts"
+msgstr "Ainoastaan tuo OStatus -ketjuja kontakteiltamme"
+
+#: mod/admin.php:1399
+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:1400
+msgid "OStatus support can only be enabled if threading is enabled."
+msgstr "OStatus-tuki voidaan ottaa käyttöön ainoastaan jos ketjuttaminen on jo otettu käyttöön."
+
+#: mod/admin.php:1402
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub"
+" directory."
+msgstr "Diaspora -tukea ei voitu ottaa käyttöön koska Friendica on asennettu alihakemistoon."
+
+#: mod/admin.php:1403
+msgid "Enable Diaspora support"
+msgstr "Salli Diaspora-tuki"
+
+#: mod/admin.php:1403
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Ota käyttöön Diaspora-yhteensopivuus"
+
+#: mod/admin.php:1404
+msgid "Only allow Friendica contacts"
+msgstr "Salli ainoastaan Friendica -kontakteja"
+
+#: mod/admin.php:1404
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Kaikkien kontaktien on käytettävä Friendica-protokollaa. Kaikki muut protokollat poistetaan käytöstä."
+
+#: mod/admin.php:1405
+msgid "Verify SSL"
+msgstr "Vahvista SSL"
+
+#: mod/admin.php:1405
+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:1406
+msgid "Proxy user"
+msgstr "Välityspalvelimen käyttäjä"
+
+#: mod/admin.php:1407
+msgid "Proxy URL"
+msgstr "Välityspalvelimen osoite"
+
+#: mod/admin.php:1408
+msgid "Network timeout"
+msgstr "Verkon aikakatkaisu"
+
+#: mod/admin.php:1408
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr ""
+
+#: mod/admin.php:1409
+msgid "Maximum Load Average"
+msgstr "Kuorman enimmäiskeksiarvo"
+
+#: mod/admin.php:1409
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Järjestelmäkuormitus jolloin lähetys- ja kyselyprosessit lykätään (oletusarvo 50)."
+
+#: mod/admin.php:1410
+msgid "Maximum Load Average (Frontend)"
+msgstr "Kuorman enimmäiskeskiarvo (Frontend)"
+
+#: mod/admin.php:1410
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr "Järjestelmäkuormitus jolloin Frontend poistetaan käytöstä (oletusarvo 50)."
+
+#: mod/admin.php:1411
+msgid "Minimal Memory"
+msgstr ""
+
+#: mod/admin.php:1411
+msgid ""
+"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
+msgstr ""
+
+#: mod/admin.php:1412
+msgid "Maximum table size for optimization"
+msgstr "Taulukon enimmäiskoko optimointia varten"
+
+#: mod/admin.php:1412
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
+msgstr "Taulukon enimmäiskoko (megatavuina) automaattista optimointia varten - oletusarvo 100 mt. Syötä -1 poistamaan optimointi käytöstä."
+
+#: mod/admin.php:1413
+msgid "Minimum level of fragmentation"
+msgstr ""
+
+#: mod/admin.php:1413
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
+msgstr ""
+
+#: mod/admin.php:1415
+msgid "Periodical check of global contacts"
+msgstr ""
+
+#: mod/admin.php:1415
+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:1416
+msgid "Days between requery"
+msgstr ""
+
+#: mod/admin.php:1416
+msgid "Number of days after which a server is requeried for his contacts."
+msgstr ""
+
+#: mod/admin.php:1417
+msgid "Discover contacts from other servers"
+msgstr "Etsi kontakteja muilta palvelimilta"
+
+#: mod/admin.php:1417
+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:1418
+msgid "Timeframe for fetching global contacts"
+msgstr ""
+
+#: mod/admin.php:1418
+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:1419
+msgid "Search the local directory"
+msgstr "Paikallisluettelohaku"
+
+#: mod/admin.php:1419
+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:1421
+msgid "Publish server information"
+msgstr "Julkaise palvelintiedot"
+
+#: mod/admin.php:1421
+msgid ""
+"If enabled, general server and usage data will be published. The data "
+"contains the name and version of the server, number of users with public "
+"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."
+msgstr ""
+
+#: mod/admin.php:1423
+msgid "Check upstream version"
+msgstr ""
+
+#: mod/admin.php:1423
+msgid ""
+"Enables checking for new Friendica versions at github. If there is a new "
+"version, you will be informed in the admin panel overview."
+msgstr ""
+
+#: mod/admin.php:1424
+msgid "Suppress Tags"
+msgstr "Piilota tunnisteet"
+
+#: mod/admin.php:1424
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr "Piilota tunnistelista julkaisun lopussa."
+
+#: mod/admin.php:1425
+msgid "Path to item cache"
+msgstr ""
+
+#: mod/admin.php:1425
+msgid "The item caches buffers generated bbcode and external images."
+msgstr ""
+
+#: mod/admin.php:1426
+msgid "Cache duration in seconds"
+msgstr ""
+
+#: mod/admin.php:1426
+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:1427
+msgid "Maximum numbers of comments per post"
+msgstr "Julkaisun kommentiraja"
+
+#: mod/admin.php:1427
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr ""
+
+#: mod/admin.php:1428
+msgid "Temp path"
+msgstr ""
+
+#: mod/admin.php:1428
+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:1429
+msgid "Base path to installation"
+msgstr "Asennuksen peruspolku"
+
+#: mod/admin.php:1429
+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:1430
+msgid "Disable picture proxy"
+msgstr ""
+
+#: mod/admin.php:1430
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr ""
+
+#: mod/admin.php:1431
+msgid "Only search in tags"
+msgstr "Tunnistehaku"
+
+#: mod/admin.php:1431
+msgid "On large systems the text search can slow down the system extremely."
+msgstr ""
+
+#: mod/admin.php:1433
+msgid "New base url"
+msgstr "Uusi perusosoite"
+
+#: mod/admin.php:1433
+msgid ""
+"Change base url for this server. Sends relocate message to all Friendica and"
+" Diaspora* contacts of all users."
+msgstr "Vaihtaa tämän palvelimen perus-URL-osoitteen. Lähettää uudelleensijoitusviestit käyttäjien kaikille kontakteille Friendicassa ja Diasporassa*."
+
+#: mod/admin.php:1435
+msgid "RINO Encryption"
+msgstr "RINO-salaus"
+
+#: mod/admin.php:1435
+msgid "Encryption layer between nodes."
+msgstr "Salauskerros solmujen välillä."
+
+#: mod/admin.php:1435
+msgid "Enabled"
+msgstr "Käytössä"
+
+#: mod/admin.php:1437
+msgid "Maximum number of parallel workers"
+msgstr "Enimmäismäärä rinnakkaisia workereitä"
+
+#: mod/admin.php:1437
+msgid ""
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
+msgstr ""
+
+#: mod/admin.php:1438
+msgid "Don't use 'proc_open' with the worker"
+msgstr ""
+
+#: mod/admin.php:1438
+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 worker calls in your crontab."
+msgstr ""
+
+#: mod/admin.php:1439
+msgid "Enable fastlane"
+msgstr "Käytä fastlane"
+
+#: mod/admin.php:1439
+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:1440
+msgid "Enable frontend worker"
+msgstr "Ota Frontend Worker käyttöön"
+
+#: mod/admin.php:1440
+#, php-format
+msgid ""
+"When enabled the Worker process is triggered when backend access is "
+"performed \\x28e.g. messages being delivered\\x29. On smaller sites you "
+"might want to call %s/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."
+msgstr ""
+
+#: mod/admin.php:1442
+msgid "Subscribe to relay"
+msgstr "Relen tilaus"
+
+#: mod/admin.php:1442
+msgid ""
+"Enables the receiving of public posts from the relay. They will be included "
+"in the search, subscribed tags and on the global community page."
+msgstr ""
+
+#: mod/admin.php:1443
+msgid "Relay server"
+msgstr "Relepalvelin"
+
+#: mod/admin.php:1443
+msgid ""
+"Address of the relay server where public posts should be send to. For "
+"example https://relay.diasp.org"
+msgstr ""
+
+#: mod/admin.php:1444
+msgid "Direct relay transfer"
+msgstr "Suora releen siirto"
+
+#: mod/admin.php:1444
+msgid ""
+"Enables the direct transfer to other servers without using the relay servers"
+msgstr ""
+
+#: mod/admin.php:1445
+msgid "Relay scope"
+msgstr "Relen soveltamisala"
+
+#: mod/admin.php:1445
+msgid ""
+"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."
+msgstr ""
+
+#: mod/admin.php:1445
+msgid "all"
+msgstr "kaikki"
+
+#: mod/admin.php:1445
+msgid "tags"
+msgstr "tunnisteet"
+
+#: mod/admin.php:1446
+msgid "Server tags"
+msgstr "palvelintunnisteet"
+
+#: mod/admin.php:1446
+msgid "Comma separated list of tags for the 'tags' subscription."
+msgstr "Pilkulla erotettu tunnistelista tunnistetilausta varten."
+
+#: mod/admin.php:1447
+msgid "Allow user tags"
+msgstr "Salli käyttäjien tunnisteet"
+
+#: mod/admin.php:1447
+msgid ""
+"If enabled, the tags from the saved searches will used for the 'tags' "
+"subscription in addition to the 'relay_server_tags'."
+msgstr "Jos otettu käyttöön, tunnisteet tallennetuista hauista käytetään tunnistetilaukseen 'relay_server_tags'in lisäksi."
+
+#: mod/admin.php:1475
+msgid "Update has been marked successful"
+msgstr ""
+
+#: mod/admin.php:1482
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "Tietokannan rakenteen %s-päivitys onnistui."
+
+#: mod/admin.php:1485
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "Tietokannan rakennepäivitys %s epäonnistui virheviestillä %s"
+
+#: mod/admin.php:1498
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr ""
+
+#: mod/admin.php:1500
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "%s-päivitys onnistui."
+
+#: mod/admin.php:1503
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr ""
+
+#: mod/admin.php:1506
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr ""
+
+#: mod/admin.php:1526
+msgid "No failed updates."
+msgstr "Ei epäonnistuineita päivityksiä."
+
+#: mod/admin.php:1527
+msgid "Check database structure"
+msgstr "Tarkista tietokannan rakenne"
+
+#: mod/admin.php:1532
+msgid "Failed Updates"
+msgstr "Epäonnistuineita päivityksiä"
+
+#: mod/admin.php:1533
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr ""
+
+#: mod/admin.php:1534
+msgid "Mark success (if update was manually applied)"
+msgstr ""
+
+#: mod/admin.php:1535
+msgid "Attempt to execute this update step automatically"
+msgstr ""
+
+#: mod/admin.php:1574
+#, 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:1577
+#, 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\tIf you ever want to delete your account, you can do so at %1$s/removeme\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
+msgstr ""
+
+#: mod/admin.php:1621
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s käyttäjä estetty / poistettu estolistalta"
+msgstr[1] "%s käyttäjää estetty / poistettu estolistalta"
+
+#: mod/admin.php:1627
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s käyttäjä poistettu"
+msgstr[1] "%s käyttäjää poistettu"
+
+#: mod/admin.php:1674
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Käyttäjä '%s' poistettu"
+
+#: mod/admin.php:1682
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Käyttäjä '%s' poistettu estolistalta"
+
+#: mod/admin.php:1682
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Käyttäjä '%s' estetty"
+
+#: mod/admin.php:1743
+msgid "Private Forum"
+msgstr ""
+
+#: mod/admin.php:1796 mod/admin.php:1820
+msgid "Register date"
+msgstr "Rekisteripäivämäärä"
+
+#: mod/admin.php:1796 mod/admin.php:1820
+msgid "Last login"
+msgstr "Viimeisin kirjautuminen"
+
+#: mod/admin.php:1796 mod/admin.php:1820
+msgid "Last item"
+msgstr "Viimeisin kohde"
+
+#: mod/admin.php:1796
+msgid "Type"
+msgstr ""
+
+#: mod/admin.php:1803
+msgid "Add User"
+msgstr "Lisää käyttäjä"
+
+#: mod/admin.php:1805
+msgid "User registrations waiting for confirm"
+msgstr ""
+
+#: mod/admin.php:1806
+msgid "User waiting for permanent deletion"
+msgstr ""
+
+#: mod/admin.php:1807
+msgid "Request date"
+msgstr "Pyynnön päivämäärä"
+
+#: mod/admin.php:1808
+msgid "No registrations."
+msgstr "Ei rekisteröintejä."
+
+#: mod/admin.php:1809
+msgid "Note from the user"
+msgstr ""
+
+#: mod/admin.php:1810 mod/notifications.php:179 mod/notifications.php:264
+msgid "Approve"
+msgstr "Hyväksy"
+
+#: mod/admin.php:1811
+msgid "Deny"
+msgstr "Kieltäydy"
+
+#: mod/admin.php:1815
+msgid "Site admin"
+msgstr "Sivuston ylläpito"
+
+#: mod/admin.php:1816
+msgid "Account expired"
+msgstr "Tili vanhentunut"
+
+#: mod/admin.php:1819
+msgid "New User"
+msgstr "Uusi käyttäjä"
+
+#: mod/admin.php:1820
+msgid "Deleted since"
+msgstr "Poistettu"
+
+#: mod/admin.php:1825
+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:1826
+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:1836
+msgid "Name of the new user."
+msgstr "Uuden käyttäjän nimi."
+
+#: mod/admin.php:1837
+msgid "Nickname"
+msgstr "Lempinimi"
+
+#: mod/admin.php:1837
+msgid "Nickname of the new user."
+msgstr "Uuden käyttäjän lempinimi"
+
+#: mod/admin.php:1838
+msgid "Email address of the new user."
+msgstr "Uuden käyttäjän sähköpostiosoite."
+
+#: mod/admin.php:1880
+#, php-format
+msgid "Addon %s disabled."
+msgstr "Lisäosa %s poistettu käytöstä."
+
+#: mod/admin.php:1884
+#, php-format
+msgid "Addon %s enabled."
+msgstr "Lisäosa %s käytössä."
+
+#: mod/admin.php:1894 mod/admin.php:2143
+msgid "Disable"
+msgstr "Poista käytöstä"
+
+#: mod/admin.php:1897 mod/admin.php:2146
+msgid "Enable"
+msgstr "Ota käyttöön"
+
+#: mod/admin.php:1919 mod/admin.php:2188
+msgid "Toggle"
+msgstr "Vaihda"
+
+#: mod/admin.php:1927 mod/admin.php:2197
+msgid "Author: "
+msgstr "Tekijä"
+
+#: mod/admin.php:1928 mod/admin.php:2198
+msgid "Maintainer: "
+msgstr "Ylläpitäjä:"
+
+#: mod/admin.php:1980
+msgid "Reload active addons"
+msgstr ""
+
+#: mod/admin.php:1985
+#, php-format
+msgid ""
+"There are currently no addons available on your node. You can find the "
+"official addon repository at %1$s and might find other interesting addons in"
+" the open addon registry at %2$s"
+msgstr ""
+
+#: mod/admin.php:2105
+msgid "No themes found."
+msgstr "Teemoja ei löytynyt."
+
+#: mod/admin.php:2179
+msgid "Screenshot"
+msgstr "Kuvakaappaus"
+
+#: mod/admin.php:2233
+msgid "Reload active themes"
+msgstr "Lataa aktiiviset teemat uudelleen"
+
+#: mod/admin.php:2238
+#, php-format
+msgid "No themes found on the system. They should be placed in %1$s"
+msgstr ""
+
+#: mod/admin.php:2239
+msgid "[Experimental]"
+msgstr "[Kokeellinen]"
+
+#: mod/admin.php:2240
+msgid "[Unsupported]"
+msgstr "[Ei tueta]"
+
+#: mod/admin.php:2264
+msgid "Log settings updated."
+msgstr "Lokiasetukset päivitetty."
+
+#: mod/admin.php:2296
+msgid "PHP log currently enabled."
+msgstr "PHP-loki käytössä"
+
+#: mod/admin.php:2298
+msgid "PHP log currently disabled."
+msgstr "PHP-loki pois käytöstä"
+
+#: mod/admin.php:2307
+msgid "Clear"
+msgstr "Tyhjennä"
+
+#: mod/admin.php:2311
+msgid "Enable Debugging"
+msgstr "Ota virheenkorjaustila käyttöön"
+
+#: mod/admin.php:2312
+msgid "Log file"
+msgstr "Lokitiedosto"
+
+#: mod/admin.php:2312
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr ""
+
+#: mod/admin.php:2313
+msgid "Log level"
+msgstr "Lokitaso"
+
+#: mod/admin.php:2315
+msgid "PHP logging"
+msgstr "PHP-loki"
+
+#: mod/admin.php:2316
+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:2347
+#, php-format
+msgid ""
+"Error trying to open %1$s log file.\\r\\n Check to see "
+"if file %1$s exist and is readable."
+msgstr ""
+
+#: mod/admin.php:2351
+#, php-format
+msgid ""
+"Couldn't open %1$s log file.\\r\\n Check to see if file"
+" %1$s is readable."
+msgstr ""
+
+#: mod/admin.php:2443
+#, php-format
+msgid "Lock feature %s"
+msgstr "Lukitse ominaisuus %s"
+
+#: mod/admin.php:2451
+msgid "Manage Additional Features"
+msgstr "Hallitse lisäominaisuudet"
+
+#: mod/delegate.php:37
+msgid "Parent user not found."
+msgstr ""
+
+#: mod/delegate.php:144
+msgid "No parent user"
+msgstr ""
+
+#: mod/delegate.php:159
+msgid "Parent Password:"
+msgstr ""
+
+#: mod/delegate.php:159
+msgid ""
+"Please enter the password of the parent account to legitimize your request."
+msgstr ""
+
+#: mod/delegate.php:164
+msgid "Parent User"
+msgstr ""
+
+#: mod/delegate.php:167
+msgid ""
+"Parent users have total control about this account, including the account "
+"settings. Please double check whom you give this access."
+msgstr ""
+
+#: mod/delegate.php:170
+msgid "Delegates"
+msgstr ""
+
+#: mod/delegate.php:172
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr ""
+
+#: mod/delegate.php:173
+msgid "Existing Page Delegates"
+msgstr ""
+
+#: mod/delegate.php:175
+msgid "Potential Delegates"
+msgstr ""
+
+#: mod/delegate.php:177 mod/tagrm.php:98
+msgid "Remove"
+msgstr "Poista"
+
+#: mod/delegate.php:178
+msgid "Add"
+msgstr "Lisää"
+
+#: mod/delegate.php:179
+msgid "No entries."
+msgstr ""
#: mod/photos.php:109 mod/photos.php:1713
msgid "Recent Photos"
@@ -2727,10 +7068,6 @@ msgstr "Viimeaikaisia kuvia"
msgid "Upload New Photos"
msgstr "Lähetä uusia kuvia"
-#: mod/photos.php:126 mod/settings.php:50
-msgid "everybody"
-msgstr "kaikki"
-
#: mod/photos.php:184
msgid "Contact information unavailable"
msgstr "Kontaktin tietoja ei saatavilla"
@@ -2806,19 +7143,6 @@ msgstr "tai olemassaolevan albumin nimi: "
msgid "Do not show a status post for this upload"
msgstr "Älä näytä tilaviestiä tälle lähetykselle"
-#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533
-#: src/Core/ACL.php:318
-msgid "Permissions"
-msgstr "Käyttöoikeudet"
-
-#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1229
-msgid "Show to Groups"
-msgstr "Näytä ryhmille"
-
-#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1230
-msgid "Show to Contacts"
-msgstr "Näytä kontakteille"
-
#: mod/photos.php:1167
msgid "Edit Album"
msgstr "Muokkaa albumia"
@@ -2855,10 +7179,6 @@ msgstr "Muokkaa kuvaa"
msgid "Use as profile photo"
msgstr "Käytä profiilikuvana"
-#: mod/photos.php:1308 src/Object/Post.php:149
-msgid "Private Message"
-msgstr "Yksityisviesti"
-
#: mod/photos.php:1327
msgid "View Full Size"
msgstr "Näytä täysikokoisena"
@@ -2900,24 +7220,6 @@ msgstr "Käännä oikealle"
msgid "Rotate CCW (left)"
msgstr "Käännä vasemmalle"
-#: mod/photos.php:1471 src/Object/Post.php:296
-msgid "I like this (toggle)"
-msgstr "Tykkään tästä (vaihda)"
-
-#: mod/photos.php:1472 src/Object/Post.php:297
-msgid "I don't like this (toggle)"
-msgstr "En tykkää tästä (vaihda)"
-
-#: mod/photos.php:1488 mod/photos.php:1527 mod/photos.php:1600
-#: mod/contacts.php:953 src/Object/Post.php:793
-msgid "This is you"
-msgstr "Tämä olet sinä"
-
-#: mod/photos.php:1490 mod/photos.php:1529 mod/photos.php:1602
-#: src/Object/Post.php:399 src/Object/Post.php:795
-msgid "Comment"
-msgstr "Kommentti"
-
#: mod/photos.php:1634
msgid "Map"
msgstr "Kartta"
@@ -2926,32 +7228,143 @@ msgstr "Kartta"
msgid "View Album"
msgstr "Näytä albumi"
-#: mod/profile.php:37 src/Model/Profile.php:118
-msgid "Requested profile is not available."
-msgstr "Pyydettyä profiilia ei saatavilla."
+#: mod/nogroup.php:43 mod/contacts.php:960
+msgid "Edit contact"
+msgstr "Muokkaa kontaktia"
-#: mod/profile.php:78 src/Protocol/OStatus.php:1252
+#: mod/nogroup.php:63
+msgid "Contacts who are not members of a group"
+msgstr "Kontaktit jotka eivät kuulu ryhmään"
+
+#: mod/community.php:46
+msgid "Community option not available."
+msgstr "Yhteisö vaihtoehto ei saatavilla."
+
+#: mod/community.php:63
+msgid "Not available."
+msgstr "Ei saatavilla."
+
+#: mod/community.php:76
+msgid "Local Community"
+msgstr "Paikallinen yhteisö"
+
+#: mod/community.php:79
+msgid "Posts from local users on this server"
+msgstr "Tämän palvelimen julkaisut"
+
+#: mod/community.php:87
+msgid "Global Community"
+msgstr "Maailmanlaajuinen yhteisö"
+
+#: mod/community.php:90
+msgid "Posts from users of the whole federated network"
+msgstr "Maailmanlaajuisen verkon julkaisut"
+
+#: mod/community.php:136 mod/search.php:228
+msgid "No results."
+msgstr "Ei tuloksia."
+
+#: mod/community.php:180
+msgid ""
+"This community stream shows all public posts received by this node. They may"
+" not reflect the opinions of this node’s users."
+msgstr ""
+
+#: mod/message.php:73 mod/wallmessage.php:57
+msgid "No recipient selected."
+msgstr "Vastaanottaja puuttuu."
+
+#: mod/message.php:77
+msgid "Unable to locate contact information."
+msgstr "Kontaktin tiedot ei löydy."
+
+#: mod/message.php:80 mod/wallmessage.php:63
+msgid "Message could not be sent."
+msgstr "Viestiä ei voitu lähettää."
+
+#: mod/message.php:83 mod/wallmessage.php:66
+msgid "Message collection failure."
+msgstr "Viestin noutaminen epäonnistui."
+
+#: mod/message.php:86 mod/wallmessage.php:69
+msgid "Message sent."
+msgstr "Viesti lähetetty."
+
+#: mod/message.php:136
+msgid "Do you really want to delete this message?"
+msgstr "Haluatko varmasti poistaa viestin?"
+
+#: mod/message.php:156
+msgid "Message deleted."
+msgstr "Viesti poistettu."
+
+#: mod/message.php:185
+msgid "Conversation removed."
+msgstr "Keskustelu poistettu."
+
+#: mod/message.php:250 mod/wallmessage.php:132
+msgid "Send Private Message"
+msgstr "Lähetä yksityisviesti"
+
+#: mod/message.php:251 mod/message.php:421 mod/wallmessage.php:134
+msgid "To:"
+msgstr "Vastaanottaja:"
+
+#: mod/message.php:255 mod/message.php:423 mod/wallmessage.php:135
+msgid "Subject:"
+msgstr "Aihe:"
+
+#: mod/message.php:291
+msgid "No messages."
+msgstr "Ei viestejä."
+
+#: mod/message.php:330
+msgid "Message not available."
+msgstr "Viesti ei saatavilla."
+
+#: mod/message.php:397
+msgid "Delete message"
+msgstr "Poista viesti"
+
+#: mod/message.php:399 mod/message.php:500
+msgid "D, d M Y - g:i A"
+msgstr ""
+
+#: mod/message.php:414 mod/message.php:497
+msgid "Delete conversation"
+msgstr "Poista keskustelu"
+
+#: mod/message.php:416
+msgid ""
+"No secure communications available. You may be able to "
+"respond from the sender's profile page."
+msgstr ""
+
+#: mod/message.php:420
+msgid "Send Reply"
+msgstr "Lähetä vastaus"
+
+#: mod/message.php:471
#, php-format
-msgid "%s's posts"
-msgstr "%s: julkaisut"
+msgid "Unknown sender - %s"
+msgstr "Tuntematon lähettäjä - %s"
-#: mod/profile.php:79 src/Protocol/OStatus.php:1253
+#: mod/message.php:473
#, php-format
-msgid "%s's comments"
-msgstr "%s: kommentit"
+msgid "You and %s"
+msgstr "Sinä ja %s"
-#: mod/profile.php:80 src/Protocol/OStatus.php:1251
+#: mod/message.php:475
#, php-format
-msgid "%s's timeline"
-msgstr "%s: aikajana"
+msgid "%s and You"
+msgstr "%s ja sinä"
-#: mod/profile.php:173 mod/cal.php:142 mod/display.php:313
-msgid "Access to this profile has been restricted."
-msgstr "Pääsy tähän profiiliin on rajoitettu"
-
-#: mod/profile.php:194
-msgid "Tips for New Members"
-msgstr "Vinkkejä uusille käyttäjille"
+#: mod/message.php:503
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d viesti"
+msgstr[1] "%d viestiä"
#: mod/videos.php:139
msgid "Do you really want to delete this video?"
@@ -2973,50 +7386,533 @@ msgstr "Viimeisimmät videot"
msgid "Upload New Videos"
msgstr "Lataa uusia videoita"
-#: mod/cal.php:274 mod/events.php:391 view/theme/frio/theme.php:263
-#: view/theme/frio/theme.php:267 src/Content/Nav.php:104
-#: src/Content/Nav.php:169 src/Model/Profile.php:926 src/Model/Profile.php:937
-msgid "Events"
-msgstr "Tapahtumat"
+#: mod/credits.php:18
+msgid "Credits"
+msgstr "Lopputekstit"
-#: mod/cal.php:275 mod/events.php:392
-msgid "View"
-msgstr "Katso"
+#: mod/credits.php:19
+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 ""
-#: mod/cal.php:276 mod/events.php:394
-msgid "Previous"
-msgstr "Edellinen"
+#: mod/unfollow.php:34
+msgid "Contact wasn't found or can't be unfollowed."
+msgstr ""
-#: mod/cal.php:277 mod/events.php:395 mod/install.php:209
-msgid "Next"
-msgstr "Seuraava"
+#: mod/unfollow.php:47
+msgid "Contact unfollowed"
+msgstr "Kontaktia ei enää seurata"
-#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
-msgid "today"
-msgstr "tänään"
+#: mod/unfollow.php:65 mod/dfrn_request.php:662 mod/follow.php:62
+msgid "Submit Request"
+msgstr "Lähetä pyyntö"
-#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
-#: src/Model/Event.php:413
-msgid "month"
-msgstr "kuukausi"
+#: mod/unfollow.php:73
+msgid "You aren't a friend of this contact."
+msgstr "Et ole kontaktin kaveri."
-#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
-#: src/Model/Event.php:414
-msgid "week"
-msgstr "viikko"
+#: mod/unfollow.php:79
+msgid "Unfollowing is currently not supported by your network."
+msgstr "Seuraamisen lopettaminen ei tällä hetkellä tueta verkossasi."
-#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
-#: src/Model/Event.php:415
-msgid "day"
-msgstr "päivä"
+#: mod/unfollow.php:100 mod/contacts.php:599
+msgid "Disconnect/Unfollow"
+msgstr "Katkaise / Lopeta seuraaminen"
-#: mod/cal.php:284 mod/events.php:404
-msgid "list"
-msgstr "luettelo"
+#: mod/unfollow.php:113 mod/dfrn_request.php:660 mod/follow.php:157
+msgid "Your Identity Address:"
+msgstr "Identiteettisi osoite:"
-#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214
-msgid "User not found"
-msgstr "Käyttäjää ei löydy"
+#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83
+#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112
+#: mod/wall_upload.php:155 mod/wall_upload.php:158
+msgid "Invalid request."
+msgstr "Virheellinen pyyntö."
+
+#: mod/wall_attach.php:101
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr ""
+
+#: mod/wall_attach.php:101
+msgid "Or - did you try to upload an empty file?"
+msgstr "Yrititkö ladata tyhjän tiedoston?"
+
+#: mod/wall_attach.php:112
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "Tiedosto ylittää kokorajoituksen %s"
+
+#: mod/wall_attach.php:136 mod/wall_attach.php:152
+msgid "File upload failed."
+msgstr "Tiedoston lähettäminen epäonnistui."
+
+#: mod/profile.php:194
+msgid "Tips for New Members"
+msgstr "Vinkkejä uusille käyttäjille"
+
+#: mod/localtime.php:33
+msgid "Time Conversion"
+msgstr "Aikamuunnos"
+
+#: mod/localtime.php:35
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr ""
+
+#: mod/localtime.php:39
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC-aika: %s"
+
+#: mod/localtime.php:42
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aikavyöhyke: %s"
+
+#: mod/localtime.php:46
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Muunnettu paikallisaika: %s"
+
+#: mod/localtime.php:52
+msgid "Please select your timezone:"
+msgstr "Valitse aikavyöhykkeesi:"
+
+#: mod/dfrn_request.php:94
+msgid "This introduction has already been accepted."
+msgstr "Tämä esittely on jo hyväksytty."
+
+#: mod/dfrn_request.php:112 mod/dfrn_request.php:359
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profiilin sijainti on viallinen tai se ei sisällä profiilitietoja."
+
+#: mod/dfrn_request.php:116 mod/dfrn_request.php:363
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Varoitus: profiilin sijainnissa ei ole tunnistettavaa omistajan nimeä."
+
+#: mod/dfrn_request.php:119 mod/dfrn_request.php:366
+msgid "Warning: profile location has no profile photo."
+msgstr "Varoitus: profiilin sijainnissa ei ole profiilikuvaa."
+
+#: mod/dfrn_request.php:123 mod/dfrn_request.php:370
+#, 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:162
+msgid "Introduction complete."
+msgstr "Esittely valmis."
+
+#: mod/dfrn_request.php:199
+msgid "Unrecoverable protocol error."
+msgstr "Vakava protokollavirhe."
+
+#: mod/dfrn_request.php:226
+msgid "Profile unavailable."
+msgstr "Profiili ei saatavilla."
+
+#: mod/dfrn_request.php:248
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s on saanut liikaa yhteyspyyntöjä tänään."
+
+#: mod/dfrn_request.php:249
+msgid "Spam protection measures have been invoked."
+msgstr "Roskapostisuojaukset otettu käyttöön."
+
+#: mod/dfrn_request.php:250
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Ystäviä suositellaan yrittämään uudelleen vuorokauden sisällä."
+
+#: mod/dfrn_request.php:280
+msgid "Invalid locator"
+msgstr "Viallinen paikannin"
+
+#: mod/dfrn_request.php:316
+msgid "You have already introduced yourself here."
+msgstr "Olet jo esitellyt itsesi täällä."
+
+#: mod/dfrn_request.php:319
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Ilmeisesti olet jo ystävystynyt henkilön %s kanssa."
+
+#: mod/dfrn_request.php:339
+msgid "Invalid profile URL."
+msgstr "Viallinen profiiliosoite."
+
+#: mod/dfrn_request.php:419 mod/contacts.php:230
+msgid "Failed to update contact record."
+msgstr "Kontaktitietojen päivitys epäonnistui."
+
+#: mod/dfrn_request.php:439
+msgid "Your introduction has been sent."
+msgstr "Esittelysi lähetettiin."
+
+#: mod/dfrn_request.php:477
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
+msgstr ""
+
+#: mod/dfrn_request.php:493
+msgid "Please login to confirm introduction."
+msgstr "Kirjaudu vahvistaaksesi esittelysi."
+
+#: mod/dfrn_request.php:501
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"this profile."
+msgstr "Väärä identiteetti kirjautuneena sisään. Kirjaudu tähän profiiliin."
+
+#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
+msgid "Confirm"
+msgstr "Vahvista"
+
+#: mod/dfrn_request.php:527
+msgid "Hide this contact"
+msgstr "Piilota kontakti"
+
+#: mod/dfrn_request.php:530
+#, php-format
+msgid "Welcome home %s."
+msgstr "Tervetuloa kotiin %s."
+
+#: mod/dfrn_request.php:531
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Vahvista esittelysi/yhteyspyyntösi henkilölle %s."
+
+#: mod/dfrn_request.php:642
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Anna \"henkilöllisyysosoitteesi\" joissakin seuraavista tuetuista viestintäverkoista:"
+
+#: mod/dfrn_request.php:645
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, follow "
+"this link to find a public Friendica site and join us today ."
+msgstr ""
+
+#: mod/dfrn_request.php:650
+msgid "Friend/Connection Request"
+msgstr "Ystävä/yhteyspyyntö"
+
+#: mod/dfrn_request.php:651
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@gnusocial.de"
+msgstr "Esim. jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"
+
+#: mod/dfrn_request.php:652 mod/follow.php:149
+msgid "Please answer the following:"
+msgstr "Vastaa seuraavaan:"
+
+#: mod/dfrn_request.php:653 mod/follow.php:150
+#, php-format
+msgid "Does %s know you?"
+msgstr "Tunteeko %s sinut?"
+
+#: mod/dfrn_request.php:654 mod/follow.php:151
+msgid "Add a personal note:"
+msgstr "Lisää oma merkintä:"
+
+#: mod/dfrn_request.php:657
+msgid "GNU Social (Pleroma, Mastodon)"
+msgstr "GNU Social (Pleroma, Mastodon)"
+
+#: mod/dfrn_request.php:658
+msgid "Diaspora (Socialhome, Hubzilla)"
+msgstr "Diaspora (Socialhome, Hubzilla)"
+
+#: mod/dfrn_request.php:659
+#, php-format
+msgid ""
+" - please do not use this form. Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - älä käytä tätä lomaketta. Kirjoita sen sijaan %s Diaspora-hakupalkkiisi."
+
+#: mod/crepair.php:87
+msgid "Contact settings applied."
+msgstr "Kontaktiasetukset tallennettu."
+
+#: mod/crepair.php:89
+msgid "Contact update failed."
+msgstr "Kontaktipäivitys epäonnistui."
+
+#: mod/crepair.php:114
+msgid ""
+"WARNING: This is highly advanced and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "VAROITUS: Tämä on erittäin vaativaa ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta."
+
+#: mod/crepair.php:115
+msgid ""
+"Please use your browser 'Back' button now if you are "
+"uncertain what to do on this page."
+msgstr "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta nyt , jos olet epävarma tämän sivun toiminnoista."
+
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "No mirroring"
+msgstr "Ei peilausta"
+
+#: mod/crepair.php:129
+msgid "Mirror as forwarded posting"
+msgstr "Peilaa välitettynä julkaisuna"
+
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "Mirror as my own posting"
+msgstr "Peilaa omana julkaisuna"
+
+#: mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr "Palaa kontaktin muokkaamiseen"
+
+#: mod/crepair.php:146
+msgid "Refetch contact data"
+msgstr ""
+
+#: mod/crepair.php:149
+msgid "Remote Self"
+msgstr ""
+
+#: mod/crepair.php:152
+msgid "Mirror postings from this contact"
+msgstr "Peilaa tämän kontaktin julkaisut"
+
+#: mod/crepair.php:154
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr ""
+
+#: mod/crepair.php:159
+msgid "Account Nickname"
+msgstr "Tilin lempinimi"
+
+#: mod/crepair.php:160
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - ohittaa Nimen/Nimimerkin"
+
+#: mod/crepair.php:161
+msgid "Account URL"
+msgstr "Tilin URL-osoite"
+
+#: mod/crepair.php:162
+msgid "Friend Request URL"
+msgstr "URL kaveripyyntöä varten"
+
+#: mod/crepair.php:163
+msgid "Friend Confirm URL"
+msgstr "URL kaverin vahvistusta varten"
+
+#: mod/crepair.php:164
+msgid "Notification Endpoint URL"
+msgstr "URL huomautuksia varten"
+
+#: mod/crepair.php:165
+msgid "Poll/Feed URL"
+msgstr "URL äänestyksiä/syötteitä varten"
+
+#: mod/crepair.php:166
+msgid "New photo from this URL"
+msgstr "Uusi kuva osoitteesta"
+
+#: mod/home.php:39
+#, php-format
+msgid "Welcome to %s"
+msgstr "Tervetuloa %s"
+
+#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s toivottaa tervetulleeksi ystävän %2$s"
+
+#: mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Tökkää"
+
+#: mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr ""
+
+#: mod/poke.php:194
+msgid "Recipient"
+msgstr "Vastaanottaja"
+
+#: mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Valitse mitä haluat tehdä vastaanottajalle"
+
+#: mod/poke.php:198
+msgid "Make this post private"
+msgstr "Muuta julkaisu yksityiseksi"
+
+#: mod/oexchange.php:30
+msgid "Post successful."
+msgstr "Viestin lähetys onnistui."
+
+#: mod/viewsrc.php:12
+msgid "Access denied."
+msgstr "Käyttö estetty."
+
+#: mod/notifications.php:37
+msgid "Invalid request identifier."
+msgstr "Virheellinen pyyntötunniste."
+
+#: mod/notifications.php:46 mod/notifications.php:183
+#: mod/notifications.php:230
+msgid "Discard"
+msgstr "Hylkää"
+
+#: mod/notifications.php:62 mod/notifications.php:182
+#: mod/notifications.php:266 mod/contacts.php:638 mod/contacts.php:828
+#: mod/contacts.php:1019
+msgid "Ignore"
+msgstr "Jätä huomiotta"
+
+#: mod/notifications.php:107
+msgid "Network Notifications"
+msgstr "Verkkoilmoitukset"
+
+#: mod/notifications.php:119
+msgid "Personal Notifications"
+msgstr "Henkilökohtaiset ilmoitukset"
+
+#: mod/notifications.php:125
+msgid "Home Notifications"
+msgstr "Koti-ilmoitukset"
+
+#: mod/notifications.php:155
+msgid "Show Ignored Requests"
+msgstr "Näytä ohitetut pyynnöt"
+
+#: mod/notifications.php:155
+msgid "Hide Ignored Requests"
+msgstr "Piilota ohitetut pyynnöt"
+
+#: mod/notifications.php:167 mod/notifications.php:237
+msgid "Notification type: "
+msgstr "Ilmoitustyyppi:"
+
+#: mod/notifications.php:170
+#, php-format
+msgid "suggested by %s"
+msgstr "ehdottaa %s"
+
+#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
+msgid "Hide this contact from others"
+msgstr "Piilota kontakti muilta"
+
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "Post a new friend activity"
+msgstr ""
+
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "if applicable"
+msgstr "tarvittaessa"
+
+#: mod/notifications.php:198
+msgid "Claims to be known to you: "
+msgstr "Väittää tuntevansa sinut:"
+
+#: mod/notifications.php:199
+msgid "yes"
+msgstr "kyllä"
+
+#: mod/notifications.php:199
+msgid "no"
+msgstr "ei"
+
+#: mod/notifications.php:200 mod/notifications.php:205
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Kaksisuuntainen yhteys?"
+
+#: mod/notifications.php:201 mod/notifications.php:206
+#, php-format
+msgid ""
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
+msgstr ""
+
+#: mod/notifications.php:202
+#, php-format
+msgid ""
+"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
+" will not receive updates from them in your news feed."
+msgstr ""
+
+#: mod/notifications.php:207
+#, php-format
+msgid ""
+"Accepting %s as a sharer allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
+msgstr ""
+
+#: mod/notifications.php:218
+msgid "Friend"
+msgstr "Kaveri"
+
+#: mod/notifications.php:219
+msgid "Sharer"
+msgstr "Jakaja"
+
+#: mod/notifications.php:219
+msgid "Subscriber"
+msgstr "Tilaaja"
+
+#: mod/notifications.php:275
+msgid "No introductions."
+msgstr "Ei esittelyjä."
+
+#: mod/notifications.php:316
+msgid "Show unread"
+msgstr "Näytä lukemattomat"
+
+#: mod/notifications.php:316
+msgid "Show all"
+msgstr "Näytä kaikki"
+
+#: mod/notifications.php:322
+#, php-format
+msgid "No more %s notifications."
+msgstr "Ei muita %s ilmoituksia."
+
+#: mod/p.php:14
+msgid "Not Extended"
+msgstr "Ei laajennettu"
+
+#: mod/p.php:21 mod/p.php:48 mod/p.php:57 mod/fetch.php:16 mod/fetch.php:52
+#: mod/fetch.php:65 mod/help.php:60 index.php:320
+msgid "Not Found"
+msgstr "Ei löydetty"
+
+#: mod/follow.php:45
+msgid "The contact could not be added."
+msgstr "Kontaktia ei voitu lisätä."
+
+#: mod/follow.php:73
+msgid "You already added this contact."
+msgstr "Olet jo lisännyt tämän kontaktin."
+
+#: mod/follow.php:83
+msgid "Diaspora support isn't enabled. Contact can't be added."
+msgstr "Diaspora -tuki ei ole käytössä. Kontaktia ei voi lisätä."
+
+#: mod/follow.php:90
+msgid "OStatus support is disabled. Contact can't be added."
+msgstr "OStatus -tuki ei ole käytössä. Kontaktia ei voi lisätä."
+
+#: mod/follow.php:97
+msgid "The network type couldn't be detected. Contact can't be added."
+msgstr "Verkkotyyppiä ei voitu havaita. Kontaktia ei voitu lisätä."
#: mod/cal.php:313
msgid "This calendar format is not supported"
@@ -3140,11 +8036,6 @@ msgid ""
"are taken from the meta header in the feed item and are posted as hash tags."
msgstr ""
-#: mod/contacts.php:572 mod/admin.php:1272 mod/admin.php:1435
-#: mod/admin.php:1445
-msgid "Disabled"
-msgstr "Pois käytöstä"
-
#: mod/contacts.php:573
msgid "Fetch information"
msgstr "Nouda tiedot"
@@ -3157,10 +8048,6 @@ msgstr "Nouda avainsanat"
msgid "Fetch information and keywords"
msgstr "Nouda tiedot ja avainsanat"
-#: mod/contacts.php:599 mod/unfollow.php:100
-msgid "Disconnect/Unfollow"
-msgstr "Katkaise / Lopeta seuraaminen"
-
#: mod/contacts.php:608
msgid "Contact"
msgstr "Kontakti"
@@ -3216,16 +8103,6 @@ msgstr "Päivitä julkiset postaukset"
msgid "Update now"
msgstr "Päivitä nyt"
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:485 mod/admin.php:1800
-msgid "Unblock"
-msgstr "Salli"
-
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:484 mod/admin.php:1799
-msgid "Block"
-msgstr "Estä"
-
#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
msgid "Unignore"
msgstr "Ota huomioon"
@@ -3269,19 +8146,10 @@ msgid ""
"when \"Fetch information and keywords\" is selected"
msgstr ""
-#: mod/contacts.php:662 src/Model/Profile.php:424
-msgid "XMPP:"
-msgstr "XMPP:"
-
#: mod/contacts.php:667
msgid "Actions"
msgstr "Toimenpiteet"
-#: mod/contacts.php:669 mod/contacts.php:855 view/theme/frio/theme.php:259
-#: src/Content/Nav.php:100 src/Model/Profile.php:890
-msgid "Status"
-msgstr "Tila"
-
#: mod/contacts.php:670
msgid "Contact Settings"
msgstr "Yhteystietoasetukset"
@@ -3342,13 +8210,10 @@ msgstr "Näytä vain piilotetut henkilöt"
msgid "Search your contacts"
msgstr "Etsi henkilöitä"
-#: mod/contacts.php:820 mod/directory.php:209 src/Content/Widget.php:63
-msgid "Find"
-msgstr "Etsi"
-
-#: mod/contacts.php:826 mod/settings.php:170 mod/settings.php:701
-msgid "Update"
-msgstr "Päivitä"
+#: mod/contacts.php:819 mod/search.php:236
+#, php-format
+msgid "Results for: %s"
+msgstr "Tulokset haulla: %s"
#: mod/contacts.php:829 mod/contacts.php:1027
msgid "Archive"
@@ -3362,28 +8227,18 @@ msgstr "Poista arkistosta"
msgid "Batch Actions"
msgstr ""
-#: mod/contacts.php:858 mod/unfollow.php:132 mod/follow.php:186
-#: src/Model/Profile.php:893
-msgid "Status Messages and Posts"
-msgstr "Statusviestit ja postaukset"
-
-#: mod/contacts.php:866 src/Model/Profile.php:901
-msgid "Profile Details"
-msgstr "Profiilitiedot"
-
#: mod/contacts.php:878
msgid "View all contacts"
msgstr "Näytä kaikki kontaktit"
+#: mod/contacts.php:886 mod/common.php:140
+msgid "Common Friends"
+msgstr "Yhteisiä kavereita"
+
#: mod/contacts.php:889
msgid "View all common friends"
msgstr "Näytä kaikki yhteiset kaverit"
-#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1351
-#: src/Model/Profile.php:867
-msgid "Advanced"
-msgstr ""
-
#: mod/contacts.php:898
msgid "Advanced Contact Settings"
msgstr "Kontakti-lisäasetukset"
@@ -3406,7 +8261,7 @@ msgstr "Estetty tila päälle/pois"
#: mod/contacts.php:1021
msgid "Toggle Ignored status"
-msgstr ""
+msgstr "Sivuuta/seuraa"
#: mod/contacts.php:1029
msgid "Toggle Archive status"
@@ -3416,142 +8271,131 @@ msgstr "Arkistotila päälle/pois"
msgid "Delete contact"
msgstr "Poista kontakti"
-#: mod/delegate.php:37
-msgid "Parent user not found."
-msgstr ""
+#: mod/bookmarklet.php:51
+msgid "The post was created"
+msgstr "Julkaisu luotu"
-#: mod/delegate.php:144
-msgid "No parent user"
-msgstr ""
+#: mod/lostpass.php:27
+msgid "No valid account found."
+msgstr "Voimassa olevaa tiliä ei löytynyt."
-#: mod/delegate.php:159
-msgid "Parent Password:"
-msgstr ""
+#: mod/lostpass.php:39
+msgid "Password reset request issued. Check your email."
+msgstr "Salasanan nollauspyyntö lähetetty. Tarkista sähköpostisi."
-#: mod/delegate.php:159
+#: mod/lostpass.php:45
+#, php-format
msgid ""
-"Please enter the password of the parent account to legitimize your request."
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
msgstr ""
-#: mod/delegate.php:164
-msgid "Parent User"
-msgstr ""
-
-#: mod/delegate.php:167
+#: mod/lostpass.php:56
+#, php-format
msgid ""
-"Parent users have total control about this account, including the account "
-"settings. Please double check whom you give this access."
+"\n"
+"\t\tFollow this link soon to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
msgstr ""
-#: mod/delegate.php:168 mod/admin.php:307 mod/admin.php:1346
-#: mod/admin.php:1965 mod/admin.php:2218 mod/admin.php:2292 mod/admin.php:2439
-#: mod/settings.php:675 mod/settings.php:784 mod/settings.php:872
-#: mod/settings.php:961 mod/settings.php:1194
-msgid "Save Settings"
-msgstr "Tallenna asetukset"
+#: mod/lostpass.php:73
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Salasanan nollauspyyntö kohteessa %s"
-#: mod/delegate.php:169 src/Content/Nav.php:204
-msgid "Delegate Page Management"
-msgstr ""
-
-#: mod/delegate.php:170
-msgid "Delegates"
-msgstr ""
-
-#: mod/delegate.php:172
+#: mod/lostpass.php:89
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."
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Pyyntöä ei voitu vahvistaa. (Saatoit lähettää pyyntöä aikaisemmin.) Salasanan nollaus epäonnistui."
+
+#: mod/lostpass.php:102
+msgid "Request has expired, please make a new one."
+msgstr "Pyyntö on vanhentunut, tehkää uusi pyyntö."
+
+#: mod/lostpass.php:117
+msgid "Forgot your Password?"
+msgstr "Unohditko salasanasi?"
+
+#: mod/lostpass.php:118
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
msgstr ""
-#: mod/delegate.php:173
-msgid "Existing Page Delegates"
+#: mod/lostpass.php:120
+msgid "Reset"
+msgstr "Nollaus"
+
+#: mod/lostpass.php:137
+msgid "Your password has been reset as requested."
+msgstr "Salasanasi on nollattu pyynnöstäsi."
+
+#: mod/lostpass.php:138
+msgid "Your new password is"
+msgstr "Uusi salasanasi on"
+
+#: mod/lostpass.php:139
+msgid "Save or copy your new password - and then"
+msgstr "Tallenna tai kopioi uusi salasanasi, ja sitten"
+
+#: mod/lostpass.php:140
+msgid "click here to login"
+msgstr "kirjaudu klikkaamalla tästä"
+
+#: mod/lostpass.php:141
+msgid ""
+"Your password may be changed from the Settings page after "
+"successful login."
+msgstr "Salsanaa voi vaihtaa asetussivulta kirjautumisen jälkeen."
+
+#: mod/lostpass.php:149
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\tinformation for your records (or change your password immediately to\n"
+"\t\t\tsomething that you will remember).\n"
+"\t\t"
msgstr ""
-#: mod/delegate.php:175
-msgid "Potential Delegates"
-msgstr ""
+#: mod/lostpass.php:155
+#, php-format
+msgid ""
+"\n"
+"\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t%2$s\n"
+"\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t"
+msgstr "\n\t\t\tKäyttäjätilisi tiedot:\n\n\t\t\tSivuston osoite:\t%1$s\n\t\t\tKäyttäjätunnus:\t%2$s\n\t\t\tSalasana:\t%3$s\n\n\t\t\tVoit vaihtaa salasanasi kirjautumisen jälkeen asetussivulta.\n\t\t"
-#: mod/delegate.php:178
-msgid "Add"
-msgstr "Lisää"
-
-#: mod/delegate.php:179
-msgid "No entries."
-msgstr ""
-
-#: mod/events.php:105 mod/events.php:107
-msgid "Event can not end before it has started."
-msgstr ""
-
-#: mod/events.php:114 mod/events.php:116
-msgid "Event title and start time are required."
-msgstr "Tapahtuman nimi ja alkamisaika vaaditaan."
-
-#: mod/events.php:393
-msgid "Create New Event"
-msgstr "Luo uusi tapahtuma"
-
-#: mod/events.php:506
-msgid "Event details"
-msgstr "Tapahtuman tiedot"
-
-#: mod/events.php:507
-msgid "Starting date and Title are required."
-msgstr "Aloituspvm ja otsikko vaaditaan."
-
-#: mod/events.php:508 mod/events.php:509
-msgid "Event Starts:"
-msgstr "Tapahtuma alkaa:"
-
-#: mod/events.php:508 mod/events.php:520 mod/profiles.php:700
-msgid "Required"
-msgstr "Vaaditaan"
-
-#: mod/events.php:510 mod/events.php:526
-msgid "Finish date/time is not known or not relevant"
-msgstr "Päättymispvm ja kellonaika ei ole tiedossa tai niillä ei ole merkitystä"
-
-#: mod/events.php:512 mod/events.php:513
-msgid "Event Finishes:"
-msgstr "Tapahtuma päättyy:"
-
-#: mod/events.php:514 mod/events.php:527
-msgid "Adjust for viewer timezone"
-msgstr "Ota huomioon katsojan aikavyöhyke"
-
-#: mod/events.php:516
-msgid "Description:"
-msgstr "Kuvaus:"
-
-#: mod/events.php:520 mod/events.php:522
-msgid "Title:"
-msgstr "Otsikko:"
-
-#: mod/events.php:523 mod/events.php:524
-msgid "Share this event"
-msgstr "Jaa tämä tapahtuma"
-
-#: mod/events.php:531 src/Model/Profile.php:866
-msgid "Basic"
-msgstr ""
-
-#: mod/events.php:552
-msgid "Failed to remove event"
-msgstr "Tapahtuman poisto epäonnistui"
-
-#: mod/events.php:554
-msgid "Event removed"
-msgstr "Tapahtuma poistettu"
-
-#: mod/feedtest.php:20
-msgid "You must be logged in to use this module"
-msgstr "Sinun pitää kirjautua sisään, jotta voit käyttää tätä moduulia"
-
-#: mod/feedtest.php:48
-msgid "Source URL"
-msgstr "Lähde URL"
+#: mod/lostpass.php:169
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Salasanasi on vaihdettu sivustolla %s"
#: mod/install.php:114
msgid "Friendica Communications Server - Setup"
@@ -3910,2686 +8754,427 @@ msgid ""
" administrator email. This will allow you to enter the site admin panel."
msgstr ""
-#: mod/item.php:114
-msgid "Unable to locate original post."
-msgstr "Alkuperäinen julkaisu ei löydy."
-
-#: mod/item.php:274
-msgid "Empty post discarded."
-msgstr "Tyhjä julkaisu hylätty."
-
-#: mod/item.php:799
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr ""
-
-#: mod/item.php:801
-#, php-format
-msgid "You may visit them online at %s"
-msgstr ""
-
-#: mod/item.php:802
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr ""
-
-#: mod/item.php:806
-#, php-format
-msgid "%s posted an update."
-msgstr "%s julkaisi päivityksen."
-
-#: mod/oexchange.php:30
-msgid "Post successful."
-msgstr "Viestin lähetys onnistui."
-
-#: mod/ostatus_subscribe.php:21
-msgid "Subscribing to OStatus contacts"
-msgstr "OStatus -kontaktien tilaaminen"
-
-#: mod/ostatus_subscribe.php:33
-msgid "No contact provided."
-msgstr "Kontakti puuttuu."
-
-#: mod/ostatus_subscribe.php:40
-msgid "Couldn't fetch information for contact."
-msgstr "Kontaktin tietoja ei voitu hakea."
-
-#: mod/ostatus_subscribe.php:50
-msgid "Couldn't fetch friends for contact."
-msgstr "Ei voitu hakea kontaktin kaverit."
-
-#: mod/ostatus_subscribe.php:78
-msgid "success"
-msgstr "onnistui"
-
-#: mod/ostatus_subscribe.php:80
-msgid "failed"
-msgstr "epäonnistui"
-
-#: mod/ostatus_subscribe.php:83 src/Object/Post.php:279
-msgid "ignored"
-msgstr "ohitettu"
-
-#: mod/profile_photo.php:55
-msgid "Image uploaded but image cropping failed."
-msgstr "Kuva ladattu mutta kuvan rajaus epäonnistui."
-
-#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104
-#: mod/profile_photo.php:315
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Kuvan pienentäminen [%s] epäonnistui."
-
-#: mod/profile_photo.php:125
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Jos kuva ei näy heti, lataa sivu uudelleen tai tyhjennä selaimen välimuisti."
-
-#: mod/profile_photo.php:134
-msgid "Unable to process image"
-msgstr "Kuvan käsitteleminen epäonnistui"
-
-#: mod/profile_photo.php:247
-msgid "Upload File:"
-msgstr "Lähetä tiedosto:"
-
-#: mod/profile_photo.php:248
-msgid "Select a profile:"
-msgstr "Valitse profiili:"
-
-#: mod/profile_photo.php:253
-msgid "or"
-msgstr "tai"
-
-#: mod/profile_photo.php:253
-msgid "skip this step"
-msgstr "ohita tämä vaihe"
-
-#: mod/profile_photo.php:253
-msgid "select a photo from your photo albums"
-msgstr "valitse kuva albumeistasi"
-
-#: mod/profile_photo.php:266
-msgid "Crop Image"
-msgstr "Rajaa kuva"
-
-#: mod/profile_photo.php:267
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Rajaa kuva sopivasti."
-
-#: mod/profile_photo.php:269
-msgid "Done Editing"
-msgstr "Lopeta muokkaus"
-
-#: mod/profile_photo.php:305
-msgid "Image uploaded successfully."
-msgstr "Kuvan lähettäminen onnistui."
-
-#: mod/unfollow.php:34
-msgid "Contact wasn't found or can't be unfollowed."
-msgstr ""
-
-#: mod/unfollow.php:47
-msgid "Contact unfollowed"
-msgstr "Kontaktia ei enää seurata"
-
-#: mod/unfollow.php:73
-msgid "You aren't a friend of this contact."
-msgstr "Et ole kontaktin kaveri."
-
-#: mod/unfollow.php:79
-msgid "Unfollowing is currently not supported by your network."
-msgstr "Seuraamisen lopettaminen ei tällä hetkellä tueta verkossasi."
-
-#: mod/admin.php:106
-msgid "Theme settings updated."
-msgstr "Teeman asetukset päivitetty."
-
-#: mod/admin.php:179 src/Content/Nav.php:174
-msgid "Information"
-msgstr "Tietoja"
-
-#: mod/admin.php:180
-msgid "Overview"
-msgstr "Yleiskatsaus"
-
-#: mod/admin.php:181 mod/admin.php:718
-msgid "Federation Statistics"
-msgstr "Liiton tilastotiedot"
-
-#: mod/admin.php:182
-msgid "Configuration"
-msgstr "Kokoonpano"
-
-#: mod/admin.php:183 mod/admin.php:1345
-msgid "Site"
-msgstr "Sivusto"
-
-#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1788 mod/admin.php:1804
-msgid "Users"
-msgstr "Käyttäjät"
-
-#: mod/admin.php:185 mod/admin.php:1904 mod/admin.php:1964 mod/settings.php:86
-msgid "Addons"
-msgstr "Lisäosat"
-
-#: mod/admin.php:186 mod/admin.php:2173 mod/admin.php:2217
-msgid "Themes"
-msgstr "Teemat"
-
-#: mod/admin.php:187 mod/settings.php:64
-msgid "Additional features"
-msgstr "Lisäominaisuuksia"
-
-#: mod/admin.php:188 mod/admin.php:302 mod/register.php:288
-#: src/Module/Tos.php:48
-msgid "Terms of Service"
-msgstr "Käyttöehdot"
-
-#: mod/admin.php:189
-msgid "Database"
-msgstr "Tietokanta"
-
-#: mod/admin.php:190
-msgid "DB updates"
-msgstr "Tietokannan päivitykset"
-
-#: mod/admin.php:191 mod/admin.php:753
-msgid "Inspect Queue"
-msgstr "Tarkista jono"
-
-#: mod/admin.php:192
-msgid "Tools"
-msgstr "Työkalut"
-
-#: mod/admin.php:193
-msgid "Contact Blocklist"
-msgstr "Kontaktien estolista"
-
-#: mod/admin.php:194 mod/admin.php:362
-msgid "Server Blocklist"
-msgstr "Palvelimien estolista"
-
-#: mod/admin.php:195 mod/admin.php:521
-msgid "Delete Item"
-msgstr "Poista kohde"
-
-#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2291
-msgid "Logs"
-msgstr "Lokit"
-
-#: mod/admin.php:198 mod/admin.php:2358
-msgid "View Logs"
-msgstr "Katso lokit"
-
-#: mod/admin.php:200
-msgid "Diagnostics"
-msgstr "Diagnostiikka"
-
-#: mod/admin.php:201
-msgid "PHP Info"
-msgstr "PHP tietoja"
-
-#: mod/admin.php:202
-msgid "probe address"
-msgstr ""
-
-#: mod/admin.php:203
-msgid "check webfinger"
-msgstr "Tarkista webfinger"
-
-#: mod/admin.php:222 src/Content/Nav.php:217
-msgid "Admin"
-msgstr "Ylläpitäjä"
-
-#: mod/admin.php:223
-msgid "Addon Features"
-msgstr "Lisäosaominaisuudet"
-
-#: mod/admin.php:224
-msgid "User registrations waiting for confirmation"
-msgstr "Käyttäjärekisteröinnit odottavat hyväksyntää"
-
-#: mod/admin.php:301 mod/admin.php:361 mod/admin.php:478 mod/admin.php:520
-#: mod/admin.php:717 mod/admin.php:752 mod/admin.php:848 mod/admin.php:1344
-#: mod/admin.php:1787 mod/admin.php:1903 mod/admin.php:1963 mod/admin.php:2172
-#: mod/admin.php:2216 mod/admin.php:2290 mod/admin.php:2357
-msgid "Administration"
-msgstr "Ylläpito"
-
-#: mod/admin.php:303
-msgid "Display Terms of Service"
-msgstr "Näytä käyttöehdot"
-
-#: mod/admin.php:303
-msgid ""
-"Enable the Terms of Service page. If this is enabled a link to the terms "
-"will be added to the registration form and the general information page."
-msgstr ""
-
-#: mod/admin.php:304
-msgid "Display Privacy Statement"
-msgstr "Näytä tietosuojalausunto"
-
-#: mod/admin.php:304
-#, php-format
-msgid ""
-"Show some informations regarding the needed information to operate the node "
-"according e.g. to EU-GDPR ."
-msgstr ""
-
-#: mod/admin.php:305
-msgid "The Terms of Service"
-msgstr "Käyttöehdot"
-
-#: mod/admin.php:305
-msgid ""
-"Enter the Terms of Service for your node here. You can use BBCode. Headers "
-"of sections should be [h2] and below."
-msgstr ""
-
-#: mod/admin.php:353
-msgid "The blocked domain"
-msgstr "Estetty verkkotunnus"
-
-#: mod/admin.php:354 mod/admin.php:372 mod/friendica.php:128
-msgid "Reason for the block"
-msgstr "Eston syy"
-
-#: mod/admin.php:354 mod/admin.php:367
-msgid "The reason why you blocked this domain."
-msgstr "Verkkotunnuksen estosyy."
-
-#: mod/admin.php:355
-msgid "Delete domain"
-msgstr "Poista verkkotunnus"
-
-#: mod/admin.php:355
-msgid "Check to delete this entry from the blocklist"
-msgstr "Laita rasti poistaaksesi kohde estolistalta"
-
-#: mod/admin.php:363
-msgid ""
-"This page can be used to define a black list of servers from the federated "
-"network that are not allowed to interact with your node. For all entered "
-"domains you should also give a reason why you have blocked the remote "
-"server."
-msgstr ""
-
-#: mod/admin.php:364
-msgid ""
-"The list of blocked servers will be made publically available on the "
-"/friendica page so that your users and people investigating communication "
-"problems can find the reason easily."
-msgstr ""
-
-#: mod/admin.php:365
-msgid "Add new entry to block list"
-msgstr "Lisää uusi kohde estolistaan"
-
-#: mod/admin.php:366
-msgid "Server Domain"
-msgstr "Palvelimen verkkotunnus"
-
-#: mod/admin.php:366
-msgid ""
-"The domain of the new server to add to the block list. Do not include the "
-"protocol."
-msgstr ""
-
-#: mod/admin.php:367
-msgid "Block reason"
-msgstr "Estosyy"
-
-#: mod/admin.php:368
-msgid "Add Entry"
-msgstr "Lisää merkintä"
-
-#: mod/admin.php:369
-msgid "Save changes to the blocklist"
-msgstr "Tallenna muutoksia estolistaan"
-
-#: mod/admin.php:370
-msgid "Current Entries in the Blocklist"
-msgstr "Nykyinen estolista"
-
-#: mod/admin.php:373
-msgid "Delete entry from blocklist"
-msgstr "Poista kohde estolistalta"
-
-#: mod/admin.php:376
-msgid "Delete entry from blocklist?"
-msgstr "Poista kohde estolistalta?"
-
-#: mod/admin.php:402
-msgid "Server added to blocklist."
-msgstr "Palvelin lisätty estolistalle"
-
-#: mod/admin.php:418
-msgid "Site blocklist updated."
-msgstr "Sivuston estolista päivitetty."
-
-#: mod/admin.php:441 src/Core/Console/GlobalCommunityBlock.php:72
-msgid "The contact has been blocked from the node"
-msgstr "Kontakti on estetty tällä solmulla"
-
-#: mod/admin.php:443 src/Core/Console/GlobalCommunityBlock.php:69
-#, php-format
-msgid "Could not find any contact entry for this URL (%s)"
-msgstr ""
-
-#: mod/admin.php:450
-#, php-format
-msgid "%s contact unblocked"
-msgid_plural "%s contacts unblocked"
-msgstr[0] "%s kontakti poistettu estolistalta"
-msgstr[1] "%s kontaktia poistettu estolistalta"
-
-#: mod/admin.php:479
-msgid "Remote Contact Blocklist"
-msgstr "Etäkontakti estolista"
-
-#: mod/admin.php:480
-msgid ""
-"This page allows you to prevent any message from a remote contact to reach "
-"your node."
-msgstr ""
-
-#: mod/admin.php:481
-msgid "Block Remote Contact"
-msgstr "Estä etäkontakti"
-
-#: mod/admin.php:482 mod/admin.php:1790
-msgid "select all"
-msgstr "valitse kaikki"
-
-#: mod/admin.php:483
-msgid "select none"
-msgstr "älä valitse mitään"
-
-#: mod/admin.php:486
-msgid "No remote contact is blocked from this node."
-msgstr ""
-
-#: mod/admin.php:488
-msgid "Blocked Remote Contacts"
-msgstr "Estetty etäkontaktit"
-
-#: mod/admin.php:489
-msgid "Block New Remote Contact"
-msgstr "Estä uusi etäkontakti"
-
-#: mod/admin.php:490
-msgid "Photo"
-msgstr "Kuva"
-
-#: mod/admin.php:490 mod/profiles.php:394
-msgid "Address"
-msgstr "Osoite"
-
-#: mod/admin.php:498
-#, php-format
-msgid "%s total blocked contact"
-msgid_plural "%s total blocked contacts"
-msgstr[0] "Yhteensä %s estetty kontakti"
-msgstr[1] "Yhteensä %s estettyjä kontakteja"
-
-#: mod/admin.php:500
-msgid "URL of the remote contact to block."
-msgstr "Estettävän etäkontaktin URL-osoite"
-
-#: mod/admin.php:522
-msgid "Delete this Item"
-msgstr "Poista tämä kohde"
-
-#: mod/admin.php:523
-msgid ""
-"On this page you can delete an item from your node. If the item is a top "
-"level posting, the entire thread will be deleted."
-msgstr ""
-
-#: mod/admin.php:524
-msgid ""
-"You need to know the GUID of the item. You can find it e.g. by looking at "
-"the display URL. The last part of http://example.com/display/123456 is the "
-"GUID, here 123456."
-msgstr ""
-
-#: mod/admin.php:525
-msgid "GUID"
-msgstr "GUID"
-
-#: mod/admin.php:525
-msgid "The GUID of the item you want to delete."
-msgstr "Poistettavan kohteen GUID."
-
-#: mod/admin.php:564
-msgid "Item marked for deletion."
-msgstr "Kohde merkitty poistettavaksi."
-
-#: mod/admin.php:635
-msgid "unknown"
-msgstr "tuntematon"
-
-#: mod/admin.php:711
-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:712
-msgid ""
-"The Auto Discovered Contact Directory feature is not enabled, it "
-"will improve the data displayed here."
-msgstr ""
-
-#: mod/admin.php:724
-#, php-format
-msgid ""
-"Currently this node is aware of %d nodes with %d registered users from the "
-"following platforms:"
-msgstr ""
-
-#: mod/admin.php:755
-msgid "ID"
-msgstr ""
-
-#: mod/admin.php:756
-msgid "Recipient Name"
-msgstr "Vastaanottajan nimi"
-
-#: mod/admin.php:757
-msgid "Recipient Profile"
-msgstr "Vastaanottajan profiili"
-
-#: mod/admin.php:758 view/theme/frio/theme.php:266
-#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:178
-msgid "Network"
-msgstr "Verkko"
-
-#: mod/admin.php:759
-msgid "Created"
-msgstr "Luotu"
-
-#: mod/admin.php:760
-msgid "Last Tried"
-msgstr "Viimeksi yritetty"
-
-#: mod/admin.php:761
-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:785
-#, 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 here for a guide that may be helpful "
-"converting the table engines. You may also use the command php "
-"bin/console.php dbstructure toinnodb of your Friendica installation for"
-" an automatic conversion. "
-msgstr ""
-
-#: mod/admin.php:792
-#, php-format
-msgid ""
-"There is a new version of Friendica available for download. Your current "
-"version is %1$s, upstream version is %2$s"
-msgstr ""
-
-#: mod/admin.php:802
-msgid ""
-"The database update failed. Please run \"php bin/console.php dbstructure "
-"update\" from the command line and have a look at the errors that might "
-"appear."
-msgstr ""
-
-#: mod/admin.php:808
-msgid "The worker was never executed. Please check your database structure!"
-msgstr ""
-
-#: mod/admin.php:811
-#, php-format
-msgid ""
-"The last worker execution was on %s UTC. This is older than one hour. Please"
-" check your crontab settings."
-msgstr ""
-
-#: mod/admin.php:816 mod/admin.php:1739
-msgid "Normal Account"
-msgstr "Perustili"
-
-#: mod/admin.php:817 mod/admin.php:1740
-msgid "Automatic Follower Account"
-msgstr "Automaattinen seuraajatili"
-
-#: mod/admin.php:818 mod/admin.php:1741
-msgid "Public Forum Account"
-msgstr "Julkinen foorumitili"
-
-#: mod/admin.php:819 mod/admin.php:1742
-msgid "Automatic Friend Account"
-msgstr "Automaattinen kaveritili"
-
-#: mod/admin.php:820
-msgid "Blog Account"
-msgstr "Blogitili"
-
-#: mod/admin.php:821
-msgid "Private Forum Account"
-msgstr "Yksityinen foorumitili"
-
-#: mod/admin.php:843
-msgid "Message queues"
-msgstr "Viestijonot"
-
-#: mod/admin.php:849
-msgid "Summary"
-msgstr "Yhteenveto"
-
-#: mod/admin.php:851
-msgid "Registered users"
-msgstr "Rekisteröityneet käyttäjät"
-
-#: mod/admin.php:853
-msgid "Pending registrations"
-msgstr ""
-
-#: mod/admin.php:854
-msgid "Version"
-msgstr "Versio"
-
-#: mod/admin.php:859
-msgid "Active addons"
-msgstr "Käytössäolevat lisäosat"
-
-#: mod/admin.php:890
-msgid "Can not parse base url. Must have at least ://"
-msgstr ""
-
-#: mod/admin.php:1209
-msgid "Site settings updated."
-msgstr "Sivuston asetukset päivitettiin."
-
-#: mod/admin.php:1236 mod/settings.php:905
-msgid "No special theme for mobile devices"
-msgstr "Ei mobiiliteemaa"
-
-#: mod/admin.php:1265
-msgid "No community page"
-msgstr "Ei yhteisösivua"
-
-#: mod/admin.php:1266
-msgid "Public postings from users of this site"
-msgstr "Julkiset julkaisut tämän sivuston käyttäjiltä"
-
-#: mod/admin.php:1267
-msgid "Public postings from the federated network"
-msgstr "Julkiset julkaisut liittoutuneelta verkolta"
-
-#: mod/admin.php:1268
-msgid "Public postings from local users and the federated network"
-msgstr "Julkiset julkaisut tältä sivustolta ja liittoutuneelta verkolta"
-
-#: mod/admin.php:1274
-msgid "Users, Global Contacts"
-msgstr "Käyttäjät, maailmanlaajuiset kontaktit"
-
-#: mod/admin.php:1275
-msgid "Users, Global Contacts/fallback"
-msgstr ""
-
-#: mod/admin.php:1279
-msgid "One month"
-msgstr "Yksi kuukausi"
-
-#: mod/admin.php:1280
-msgid "Three months"
-msgstr "Kolme kuukautta"
-
-#: mod/admin.php:1281
-msgid "Half a year"
-msgstr "Puoli vuotta"
-
-#: mod/admin.php:1282
-msgid "One year"
-msgstr "Yksi vuosi"
-
-#: mod/admin.php:1287
-msgid "Multi user instance"
-msgstr "Monen käyttäjän instanssi"
-
-#: mod/admin.php:1310
-msgid "Closed"
-msgstr "Suljettu"
-
-#: mod/admin.php:1311
-msgid "Requires approval"
-msgstr "Edellyttää hyväksyntää"
-
-#: mod/admin.php:1312
-msgid "Open"
-msgstr "Avoin"
-
-#: mod/admin.php:1316
-msgid "No SSL policy, links will track page SSL state"
-msgstr ""
-
-#: mod/admin.php:1317
-msgid "Force all links to use SSL"
-msgstr "Pakota kaikki linkit käyttämään SSL-yhteyttä"
-
-#: mod/admin.php:1318
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr ""
-
-#: mod/admin.php:1322
-msgid "Don't check"
-msgstr "Älä tarkista"
-
-#: mod/admin.php:1323
-msgid "check the stable version"
-msgstr ""
-
-#: mod/admin.php:1324
-msgid "check the development version"
-msgstr ""
-
-#: mod/admin.php:1347
-msgid "Republish users to directory"
-msgstr ""
-
-#: mod/admin.php:1348 mod/register.php:264
-msgid "Registration"
-msgstr "Rekisteröityminen"
-
-#: mod/admin.php:1349
-msgid "File upload"
-msgstr "Tiedoston lataus"
-
-#: mod/admin.php:1350
-msgid "Policies"
-msgstr "Käytännöt"
-
-#: mod/admin.php:1352
-msgid "Auto Discovered Contact Directory"
-msgstr ""
-
-#: mod/admin.php:1353
-msgid "Performance"
-msgstr "Suoritus"
-
-#: mod/admin.php:1354
-msgid "Worker"
-msgstr "Worker"
-
-#: mod/admin.php:1355
-msgid "Message Relay"
-msgstr ""
-
-#: mod/admin.php:1356
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr ""
-
-#: mod/admin.php:1359
-msgid "Site name"
-msgstr "Sivuston nimi"
-
-#: mod/admin.php:1360
-msgid "Host name"
-msgstr "Palvelimen nimi"
-
-#: mod/admin.php:1361
-msgid "Sender Email"
-msgstr "Lähettäjän sähköposti"
-
-#: mod/admin.php:1361
-msgid ""
-"The email address your server shall use to send notification emails from."
-msgstr ""
-
-#: mod/admin.php:1362
-msgid "Banner/Logo"
-msgstr "Banneri/logo"
-
-#: mod/admin.php:1363
-msgid "Shortcut icon"
-msgstr "Pikakuvake"
-
-#: mod/admin.php:1363
-msgid "Link to an icon that will be used for browsers."
-msgstr ""
-
-#: mod/admin.php:1364
-msgid "Touch icon"
-msgstr "Kosketusnäyttökuvake"
-
-#: mod/admin.php:1364
-msgid "Link to an icon that will be used for tablets and mobiles."
-msgstr ""
-
-#: mod/admin.php:1365
-msgid "Additional Info"
-msgstr "Lisätietoja"
-
-#: mod/admin.php:1365
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/servers."
-msgstr ""
-
-#: mod/admin.php:1366
-msgid "System language"
-msgstr "Järjestelmän kieli"
-
-#: mod/admin.php:1367
-msgid "System theme"
-msgstr "Järjestelmäteema"
-
-#: mod/admin.php:1367
-msgid ""
-"Default system theme - may be over-ridden by user profiles - change theme settings "
-msgstr ""
-
-#: mod/admin.php:1368
-msgid "Mobile system theme"
-msgstr "Mobiili järjestelmäteema"
-
-#: mod/admin.php:1368
-msgid "Theme for mobile devices"
-msgstr "Mobiiliteema"
-
-#: mod/admin.php:1369
-msgid "SSL link policy"
-msgstr "SSL-linkkikäytäntö"
-
-#: mod/admin.php:1369
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr ""
-
-#: mod/admin.php:1370
-msgid "Force SSL"
-msgstr "Pakoita SSL-yhteyden käyttöä"
-
-#: mod/admin.php:1370
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr ""
-
-#: mod/admin.php:1371
-msgid "Hide help entry from navigation menu"
-msgstr ""
-
-#: mod/admin.php:1371
-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:1372
-msgid "Single user instance"
-msgstr "Yksittäisen käyttäjän instanssi"
-
-#: mod/admin.php:1372
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr ""
-
-#: mod/admin.php:1373
-msgid "Maximum image size"
-msgstr "Suurin kuvakoko"
-
-#: mod/admin.php:1373
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr ""
-
-#: mod/admin.php:1374
-msgid "Maximum image length"
-msgstr "Suurin kuvapituus"
-
-#: mod/admin.php:1374
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr ""
-
-#: mod/admin.php:1375
-msgid "JPEG image quality"
-msgstr "JPEG-kuvanlaatu"
-
-#: mod/admin.php:1375
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr ""
-
-#: mod/admin.php:1377
-msgid "Register policy"
-msgstr ""
-
-#: mod/admin.php:1378
-msgid "Maximum Daily Registrations"
-msgstr "Päivittäinen rekisteröitymisraja"
-
-#: mod/admin.php:1378
-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:1379
-msgid "Register text"
-msgstr "Rekisteröitymisteksti"
-
-#: mod/admin.php:1379
-msgid ""
-"Will be displayed prominently on the registration page. You can use BBCode "
-"here."
-msgstr "Näkyvästi esillä rekisteröitymissivulla. Voit käyttää BBCodeia."
-
-#: mod/admin.php:1380
-msgid "Accounts abandoned after x days"
-msgstr ""
-
-#: mod/admin.php:1380
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr ""
-
-#: mod/admin.php:1381
-msgid "Allowed friend domains"
-msgstr "Sallittuja kaveri-verkkotunnuksia"
-
-#: mod/admin.php:1381
-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:1382
-msgid "Allowed email domains"
-msgstr "Sallittuja sähköposti-verkkotunnuksia"
-
-#: mod/admin.php:1382
-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:1383
-msgid "No OEmbed rich content"
-msgstr ""
-
-#: mod/admin.php:1383
-msgid ""
-"Don't show the rich content (e.g. embedded PDF), except from the domains "
-"listed below."
-msgstr ""
-
-#: mod/admin.php:1384
-msgid "Allowed OEmbed domains"
-msgstr "Sallittuja OEmbed -verkkotunnuksia"
-
-#: mod/admin.php:1384
-msgid ""
-"Comma separated list of domains which oembed content is allowed to be "
-"displayed. Wildcards are accepted."
-msgstr ""
-
-#: mod/admin.php:1385
-msgid "Block public"
-msgstr "Estä vierailijat"
-
-#: mod/admin.php:1385
-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:1386
-msgid "Force publish"
-msgstr ""
-
-#: mod/admin.php:1386
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr ""
-
-#: mod/admin.php:1387
-msgid "Global directory URL"
-msgstr "Maailmanlaajuisen hakemiston URL-osoite"
-
-#: mod/admin.php:1387
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
-msgstr ""
-
-#: mod/admin.php:1388
-msgid "Private posts by default for new users"
-msgstr ""
-
-#: mod/admin.php:1388
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr ""
-
-#: mod/admin.php:1389
-msgid "Don't include post content in email notifications"
-msgstr "Älä lisää julkaisun sisältö sähköposti-ilmoitukseen"
-
-#: mod/admin.php:1389
-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:1390
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr ""
-
-#: mod/admin.php:1390
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr ""
-
-#: mod/admin.php:1391
-msgid "Don't embed private images in posts"
-msgstr "Älä upota yksityisiä kuvia julkaisuissa"
-
-#: mod/admin.php:1391
-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:1392
-msgid "Allow Users to set remote_self"
-msgstr ""
-
-#: mod/admin.php:1392
-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:1393
-msgid "Block multiple registrations"
-msgstr ""
-
-#: mod/admin.php:1393
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr ""
-
-#: mod/admin.php:1394
-msgid "OpenID support"
-msgstr "OpenID-tuki"
-
-#: mod/admin.php:1394
-msgid "OpenID support for registration and logins."
-msgstr "OpenID-tuki rekisteröitymiseen ja kirjautumiseen"
-
-#: mod/admin.php:1395
-msgid "Fullname check"
-msgstr "Koko nimi tarkistus"
-
-#: mod/admin.php:1395
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr ""
-
-#: mod/admin.php:1396
-msgid "Community pages for visitors"
-msgstr "Yhteisösivu vieraille"
-
-#: mod/admin.php:1396
-msgid ""
-"Which community pages should be available for visitors. Local users always "
-"see both pages."
-msgstr ""
-
-#: mod/admin.php:1397
-msgid "Posts per user on community page"
-msgstr ""
-
-#: mod/admin.php:1397
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr ""
-
-#: mod/admin.php:1398
-msgid "Enable OStatus support"
-msgstr "Salli OStatus-tuki"
-
-#: mod/admin.php:1398
-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:1399
-msgid "Only import OStatus threads from our contacts"
-msgstr "Ainoastaan tuo OStatus -ketjuja kontakteiltamme"
-
-#: mod/admin.php:1399
-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:1400
-msgid "OStatus support can only be enabled if threading is enabled."
-msgstr "OStatus-tuki voidaan ottaa käyttöön ainoastaan jos ketjuttaminen on jo otettu käyttöön."
-
-#: mod/admin.php:1402
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub"
-" directory."
-msgstr ""
-
-#: mod/admin.php:1403
-msgid "Enable Diaspora support"
-msgstr "Salli Diaspora-tuki"
-
-#: mod/admin.php:1403
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Ota käyttöön Diaspora-yhteensopivuus"
-
-#: mod/admin.php:1404
-msgid "Only allow Friendica contacts"
-msgstr "Salli ainoastaan Friendica -kontakteja"
-
-#: mod/admin.php:1404
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Kaikkien kontaktien on käytettävä Friendica-protokollaa. Kaikki muut protokollat poistetaan käytöstä."
-
-#: mod/admin.php:1405
-msgid "Verify SSL"
-msgstr "Vahvista SSL"
-
-#: mod/admin.php:1405
-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:1406
-msgid "Proxy user"
-msgstr "Välityspalvelimen käyttäjä"
-
-#: mod/admin.php:1407
-msgid "Proxy URL"
-msgstr "Välityspalvelimen osoite"
-
-#: mod/admin.php:1408
-msgid "Network timeout"
-msgstr "Verkon aikakatkaisu"
-
-#: mod/admin.php:1408
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr ""
-
-#: mod/admin.php:1409
-msgid "Maximum Load Average"
-msgstr ""
-
-#: mod/admin.php:1409
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr ""
-
-#: mod/admin.php:1410
-msgid "Maximum Load Average (Frontend)"
-msgstr ""
-
-#: mod/admin.php:1410
-msgid "Maximum system load before the frontend quits service - default 50."
-msgstr ""
-
-#: mod/admin.php:1411
-msgid "Minimal Memory"
-msgstr ""
-
-#: mod/admin.php:1411
-msgid ""
-"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
-"default 0 (deactivated)."
-msgstr ""
-
-#: mod/admin.php:1412
-msgid "Maximum table size for optimization"
-msgstr ""
-
-#: mod/admin.php:1412
-msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
-msgstr ""
-
-#: mod/admin.php:1413
-msgid "Minimum level of fragmentation"
-msgstr ""
-
-#: mod/admin.php:1413
-msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
-msgstr ""
-
-#: mod/admin.php:1415
-msgid "Periodical check of global contacts"
-msgstr ""
-
-#: mod/admin.php:1415
-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:1416
-msgid "Days between requery"
-msgstr ""
-
-#: mod/admin.php:1416
-msgid "Number of days after which a server is requeried for his contacts."
-msgstr ""
-
-#: mod/admin.php:1417
-msgid "Discover contacts from other servers"
-msgstr ""
-
-#: mod/admin.php:1417
-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:1418
-msgid "Timeframe for fetching global contacts"
-msgstr ""
-
-#: mod/admin.php:1418
-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:1419
-msgid "Search the local directory"
-msgstr "Paikallisluettelohaku"
-
-#: mod/admin.php:1419
-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:1421
-msgid "Publish server information"
-msgstr "Julkaise palvelintiedot"
-
-#: mod/admin.php:1421
-msgid ""
-"If enabled, general server and usage data will be published. The data "
-"contains the name and version of the server, number of users with public "
-"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."
-msgstr ""
-
-#: mod/admin.php:1423
-msgid "Check upstream version"
-msgstr ""
-
-#: mod/admin.php:1423
-msgid ""
-"Enables checking for new Friendica versions at github. If there is a new "
-"version, you will be informed in the admin panel overview."
-msgstr ""
-
-#: mod/admin.php:1424
-msgid "Suppress Tags"
-msgstr "Piilota tunnisteet"
-
-#: mod/admin.php:1424
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr ""
-
-#: mod/admin.php:1425
-msgid "Path to item cache"
-msgstr ""
-
-#: mod/admin.php:1425
-msgid "The item caches buffers generated bbcode and external images."
-msgstr ""
-
-#: mod/admin.php:1426
-msgid "Cache duration in seconds"
-msgstr ""
-
-#: mod/admin.php:1426
-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:1427
-msgid "Maximum numbers of comments per post"
-msgstr "Julkaisun kommentiraja"
-
-#: mod/admin.php:1427
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr ""
-
-#: mod/admin.php:1428
-msgid "Temp path"
-msgstr ""
-
-#: mod/admin.php:1428
-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:1429
-msgid "Base path to installation"
-msgstr ""
-
-#: mod/admin.php:1429
-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:1430
-msgid "Disable picture proxy"
-msgstr ""
-
-#: mod/admin.php:1430
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr ""
-
-#: mod/admin.php:1431
-msgid "Only search in tags"
-msgstr ""
-
-#: mod/admin.php:1431
-msgid "On large systems the text search can slow down the system extremely."
-msgstr ""
-
-#: mod/admin.php:1433
-msgid "New base url"
-msgstr ""
-
-#: mod/admin.php:1433
-msgid ""
-"Change base url for this server. Sends relocate message to all Friendica and"
-" Diaspora* contacts of all users."
-msgstr ""
-
-#: mod/admin.php:1435
-msgid "RINO Encryption"
-msgstr "RINO-salaus"
-
-#: mod/admin.php:1435
-msgid "Encryption layer between nodes."
-msgstr "Salauskerros solmujen välillä."
-
-#: mod/admin.php:1435
-msgid "Enabled"
-msgstr "Käytössä"
-
-#: mod/admin.php:1437
-msgid "Maximum number of parallel workers"
-msgstr ""
-
-#: mod/admin.php:1437
-msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
-msgstr ""
-
-#: mod/admin.php:1438
-msgid "Don't use 'proc_open' with the worker"
-msgstr ""
-
-#: mod/admin.php:1438
-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 worker calls in your crontab."
-msgstr ""
-
-#: mod/admin.php:1439
-msgid "Enable fastlane"
-msgstr "Käytä fastlane"
-
-#: mod/admin.php:1439
-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:1440
-msgid "Enable frontend worker"
-msgstr ""
-
-#: mod/admin.php:1440
-#, php-format
-msgid ""
-"When enabled the Worker process is triggered when backend access is "
-"performed \\x28e.g. messages being delivered\\x29. On smaller sites you "
-"might want to call %s/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."
-msgstr ""
-
-#: mod/admin.php:1442
-msgid "Subscribe to relay"
-msgstr ""
-
-#: mod/admin.php:1442
-msgid ""
-"Enables the receiving of public posts from the relay. They will be included "
-"in the search, subscribed tags and on the global community page."
-msgstr ""
-
-#: mod/admin.php:1443
-msgid "Relay server"
-msgstr ""
-
-#: mod/admin.php:1443
-msgid ""
-"Address of the relay server where public posts should be send to. For "
-"example https://relay.diasp.org"
-msgstr ""
-
-#: mod/admin.php:1444
-msgid "Direct relay transfer"
-msgstr ""
-
-#: mod/admin.php:1444
-msgid ""
-"Enables the direct transfer to other servers without using the relay servers"
-msgstr ""
-
-#: mod/admin.php:1445
-msgid "Relay scope"
-msgstr ""
-
-#: mod/admin.php:1445
-msgid ""
-"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."
-msgstr ""
-
-#: mod/admin.php:1445
-msgid "all"
-msgstr "kaikki"
-
-#: mod/admin.php:1445
-msgid "tags"
-msgstr "tunnisteet"
-
-#: mod/admin.php:1446
-msgid "Server tags"
-msgstr "palvelintunnisteet"
-
-#: mod/admin.php:1446
-msgid "Comma separated list of tags for the 'tags' subscription."
-msgstr ""
-
-#: mod/admin.php:1447
-msgid "Allow user tags"
-msgstr "Salli käyttäjien tunnisteet"
-
-#: mod/admin.php:1447
-msgid ""
-"If enabled, the tags from the saved searches will used for the 'tags' "
-"subscription in addition to the 'relay_server_tags'."
-msgstr ""
-
-#: mod/admin.php:1475
-msgid "Update has been marked successful"
-msgstr ""
-
-#: mod/admin.php:1482
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Tietokannan rakenteen %s-päivitys onnistui."
-
-#: mod/admin.php:1485
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr ""
-
-#: mod/admin.php:1498
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr ""
-
-#: mod/admin.php:1500
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "%s-päivitys onnistui."
-
-#: mod/admin.php:1503
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr ""
-
-#: mod/admin.php:1506
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr ""
-
-#: mod/admin.php:1526
-msgid "No failed updates."
-msgstr "Ei epäonnistuineita päivityksiä."
-
-#: mod/admin.php:1527
-msgid "Check database structure"
-msgstr "Tarkista tietokannan rakenne"
-
-#: mod/admin.php:1532
-msgid "Failed Updates"
-msgstr "Epäonnistuineita päivityksiä"
-
-#: mod/admin.php:1533
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr ""
-
-#: mod/admin.php:1534
-msgid "Mark success (if update was manually applied)"
-msgstr ""
-
-#: mod/admin.php:1535
-msgid "Attempt to execute this update step automatically"
-msgstr ""
-
-#: mod/admin.php:1574
-#, 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:1577
-#, 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\tIf you ever want to delete your account, you can do so at %1$s/removeme\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
-msgstr ""
-
-#: mod/admin.php:1611 src/Model/User.php:663
-#, php-format
-msgid "Registration details for %s"
-msgstr ""
-
-#: mod/admin.php:1621
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s käyttäjä estetty / poistettu estolistalta"
-msgstr[1] "%s käyttäjää estetty / poistettu estolistalta"
-
-#: mod/admin.php:1627
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s käyttäjä poistettu"
-msgstr[1] "%s käyttäjää poistettu"
-
-#: mod/admin.php:1674
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Käyttäjä '%s' poistettu"
-
-#: mod/admin.php:1682
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Käyttäjä '%s' poistettu estolistalta"
-
-#: mod/admin.php:1682
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Käyttäjä '%s' estetty"
-
-#: mod/admin.php:1781 mod/admin.php:1793 mod/admin.php:1806 mod/admin.php:1824
-#: src/Content/ContactSelector.php:82
-msgid "Email"
-msgstr "Sähköposti"
-
-#: mod/admin.php:1781 mod/admin.php:1806
-msgid "Register date"
-msgstr "Rekisteripäivämäärä"
-
-#: mod/admin.php:1781 mod/admin.php:1806
-msgid "Last login"
-msgstr "Viimeisin kirjautuminen"
-
-#: mod/admin.php:1781 mod/admin.php:1806
-msgid "Last item"
-msgstr "Viimeisin kohde"
-
-#: mod/admin.php:1781 mod/settings.php:55
-msgid "Account"
-msgstr "Tili"
-
-#: mod/admin.php:1789
-msgid "Add User"
-msgstr "Lisää käyttäjä"
-
-#: mod/admin.php:1791
-msgid "User registrations waiting for confirm"
-msgstr ""
-
-#: mod/admin.php:1792
-msgid "User waiting for permanent deletion"
-msgstr ""
-
-#: mod/admin.php:1793
-msgid "Request date"
-msgstr "Pyynnön päivämäärä"
-
-#: mod/admin.php:1794
-msgid "No registrations."
-msgstr ""
-
-#: mod/admin.php:1795
-msgid "Note from the user"
-msgstr ""
-
-#: mod/admin.php:1797
-msgid "Deny"
-msgstr "Kieltäydy"
-
-#: mod/admin.php:1801
-msgid "Site admin"
-msgstr "Sivuston ylläpito"
-
-#: mod/admin.php:1802
-msgid "Account expired"
-msgstr "Tili vanhentunut"
-
-#: mod/admin.php:1805
-msgid "New User"
-msgstr "Uusi käyttäjä"
-
-#: mod/admin.php:1806
-msgid "Deleted since"
-msgstr "Poistettu"
-
-#: mod/admin.php:1811
-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:1812
-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:1822
-msgid "Name of the new user."
-msgstr "Uuden käyttäjän nimi."
-
-#: mod/admin.php:1823
-msgid "Nickname"
-msgstr "Lempinimi"
-
-#: mod/admin.php:1823
-msgid "Nickname of the new user."
-msgstr "Uuden käyttäjän lempinimi"
-
-#: mod/admin.php:1824
-msgid "Email address of the new user."
-msgstr "Uuden käyttäjän sähköpostiosoite."
-
-#: mod/admin.php:1866
-#, php-format
-msgid "Addon %s disabled."
-msgstr "Lisäosa %s poistettu käytöstä."
-
-#: mod/admin.php:1870
-#, php-format
-msgid "Addon %s enabled."
-msgstr "Lisäosa %s käytössä."
-
-#: mod/admin.php:1880 mod/admin.php:2129
-msgid "Disable"
-msgstr "Poista käytöstä"
-
-#: mod/admin.php:1883 mod/admin.php:2132
-msgid "Enable"
-msgstr "Ota käyttöön"
-
-#: mod/admin.php:1905 mod/admin.php:2174
-msgid "Toggle"
-msgstr "Vaihda"
-
-#: mod/admin.php:1913 mod/admin.php:2183
-msgid "Author: "
-msgstr "Tekijä"
-
-#: mod/admin.php:1914 mod/admin.php:2184
-msgid "Maintainer: "
-msgstr "Ylläpitäjä:"
-
-#: mod/admin.php:1966
-msgid "Reload active addons"
-msgstr ""
-
-#: mod/admin.php:1971
-#, php-format
-msgid ""
-"There are currently no addons available on your node. You can find the "
-"official addon repository at %1$s and might find other interesting addons in"
-" the open addon registry at %2$s"
-msgstr ""
-
-#: mod/admin.php:2091
-msgid "No themes found."
-msgstr "Teemoja ei löytynyt."
-
-#: mod/admin.php:2165
-msgid "Screenshot"
-msgstr "Kuvakaappaus"
-
-#: mod/admin.php:2219
-msgid "Reload active themes"
-msgstr ""
-
-#: mod/admin.php:2224
-#, php-format
-msgid "No themes found on the system. They should be placed in %1$s"
-msgstr ""
-
-#: mod/admin.php:2225
-msgid "[Experimental]"
-msgstr "[Kokeellinen]"
-
-#: mod/admin.php:2226
-msgid "[Unsupported]"
-msgstr "[Ei tueta]"
-
-#: mod/admin.php:2250
-msgid "Log settings updated."
-msgstr "Lokiasetukset päivitetty."
-
-#: mod/admin.php:2282
-msgid "PHP log currently enabled."
-msgstr "PHP-loki käytössä"
-
-#: mod/admin.php:2284
-msgid "PHP log currently disabled."
-msgstr "PHP-loki pois käytöstä"
-
-#: mod/admin.php:2293
-msgid "Clear"
-msgstr "Tyhjennä"
-
-#: mod/admin.php:2297
-msgid "Enable Debugging"
-msgstr "Ota virheenkorjaustila käyttöön"
-
-#: mod/admin.php:2298
-msgid "Log file"
-msgstr "Lokitiedosto"
-
-#: mod/admin.php:2298
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr ""
-
-#: mod/admin.php:2299
-msgid "Log level"
-msgstr "Lokitaso"
-
-#: mod/admin.php:2301
-msgid "PHP logging"
-msgstr "PHP-loki"
-
-#: mod/admin.php:2302
-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:2333
-#, php-format
-msgid ""
-"Error trying to open %1$s log file.\\r\\n Check to see "
-"if file %1$s exist and is readable."
-msgstr ""
-
-#: mod/admin.php:2337
-#, php-format
-msgid ""
-"Couldn't open %1$s log file.\\r\\n Check to see if file"
-" %1$s is readable."
-msgstr ""
-
-#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775
-msgid "Off"
-msgstr "Pois päältä"
-
-#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775
-msgid "On"
-msgstr "Päällä"
-
-#: mod/admin.php:2429
-#, php-format
-msgid "Lock feature %s"
-msgstr "Lukitse ominaisuus %s"
-
-#: mod/admin.php:2437
-msgid "Manage Additional Features"
-msgstr "Hallitse lisäominaisuudet"
-
-#: mod/babel.php:22
+#: mod/babel.php:23
msgid "Source input"
msgstr ""
-#: mod/babel.php:28
+#: mod/babel.php:29
+msgid "BBCode::toPlaintext"
+msgstr ""
+
+#: mod/babel.php:35
msgid "BBCode::convert (raw HTML)"
msgstr "BBCode::convert (raaka HTML)"
-#: mod/babel.php:33
+#: mod/babel.php:40
msgid "BBCode::convert"
msgstr "BBCode::convert"
-#: mod/babel.php:39
+#: mod/babel.php:46
msgid "BBCode::convert => HTML::toBBCode"
msgstr "BBCode::convert => HTML::toBBCode"
-#: mod/babel.php:45
+#: mod/babel.php:52
msgid "BBCode::toMarkdown"
msgstr "BBCode::toMarkdown"
-#: mod/babel.php:51
+#: mod/babel.php:58
msgid "BBCode::toMarkdown => Markdown::convert"
msgstr "BBCode::toMarkdown => Markdown::convert"
-#: mod/babel.php:57
+#: mod/babel.php:64
msgid "BBCode::toMarkdown => Markdown::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::toBBCode"
-#: mod/babel.php:63
+#: mod/babel.php:70
msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
-#: mod/babel.php:70
+#: mod/babel.php:77
msgid "Source input \\x28Diaspora format\\x29"
msgstr ""
-#: mod/babel.php:76
+#: mod/babel.php:83
msgid "Markdown::toBBCode"
msgstr "Markdown::toBBCode"
-#: mod/babel.php:83
+#: mod/babel.php:90
msgid "Raw HTML input"
msgstr "Raaka HTML-syöte"
-#: mod/babel.php:88
+#: mod/babel.php:95
msgid "HTML Input"
msgstr "HTML-syöte"
-#: mod/babel.php:94
+#: mod/babel.php:101
msgid "HTML::toBBCode"
msgstr "HTML::toBBCode"
-#: mod/babel.php:100
+#: mod/babel.php:107
msgid "HTML::toPlaintext"
msgstr "HTML::toPlaintext"
-#: mod/babel.php:108
+#: mod/babel.php:115
msgid "Source text"
msgstr "Lähdeteksti"
-#: mod/babel.php:109
+#: mod/babel.php:116
msgid "BBCode"
msgstr "BBCode"
-#: mod/babel.php:110
+#: mod/babel.php:117
msgid "Markdown"
msgstr "Markdown"
-#: mod/babel.php:111
+#: mod/babel.php:118
msgid "HTML"
msgstr "HTML"
-#: mod/directory.php:152 src/Model/Profile.php:421 src/Model/Profile.php:771
-msgid "Status:"
-msgstr "Tila:"
+#: mod/lockview.php:38 mod/lockview.php:46
+msgid "Remote privacy information not available."
+msgstr "Yksityisyyden etätietoja ei saatavilla."
-#: mod/directory.php:153 src/Model/Profile.php:422 src/Model/Profile.php:788
-msgid "Homepage:"
-msgstr "Kotisivu:"
+#: mod/lockview.php:55
+msgid "Visible to:"
+msgstr "Näkyvissä:"
-#: mod/directory.php:202 view/theme/vier/theme.php:201
-msgid "Global Directory"
-msgstr "Maailmanlaajuinen hakemisto"
-
-#: mod/directory.php:204
-msgid "Find on this site"
-msgstr ""
-
-#: mod/directory.php:206
-msgid "Results for:"
-msgstr "Tulokset haulla:"
-
-#: mod/directory.php:208
-msgid "Site Directory"
-msgstr "Sivuston luettelo"
-
-#: mod/directory.php:213
-msgid "No entries (some entries may be hidden)."
-msgstr ""
-
-#: mod/dirfind.php:49
+#: mod/wallmessage.php:49 mod/wallmessage.php:112
#, php-format
-msgid "People Search - %s"
-msgstr ""
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "%s-käyttäjän päivittäinen seinäviestiraja ylitetty. Viestin lähettäminen epäonnistui."
-#: mod/dirfind.php:60
+#: mod/wallmessage.php:60
+msgid "Unable to check your home location."
+msgstr "Kotisijaintisi ei voitu tarkistaa."
+
+#: mod/wallmessage.php:86 mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Vastaanottaja puuttuu."
+
+#: mod/wallmessage.php:133
#, php-format
-msgid "Forum Search - %s"
-msgstr "Foorumihaku - %s"
-
-#: mod/follow.php:45
-msgid "The contact could not be added."
-msgstr "Kontaktia ei voitu lisätä."
-
-#: mod/follow.php:73
-msgid "You already added this contact."
-msgstr "Olet jo lisännyt tämän kontaktin."
-
-#: mod/follow.php:83
-msgid "Diaspora support isn't enabled. Contact can't be added."
-msgstr "Diaspora -tuki ei ole käytössä. Kontaktia ei voi lisätä."
-
-#: mod/follow.php:90
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "OStatus -tuki ei ole käytössä. Kontaktia ei voi lisätä."
-
-#: mod/follow.php:97
-msgid "The network type couldn't be detected. Contact can't be added."
-msgstr "Verkkotyyppiä ei voitu havaita. Kontaktia ei voitu lisätä."
-
-#: mod/friendica.php:77
-msgid "This is Friendica, version"
-msgstr "Tämä on Friendica, versio"
-
-#: mod/friendica.php:78
-msgid "running at web location"
-msgstr "käynnissä osoitteessa"
-
-#: mod/friendica.php:82
msgid ""
-"Please visit Friendi.ca to learn more "
-"about the Friendica project."
-msgstr "Vieraile osoitteessa Friendi.ca saadaksesi lisätietoja Friendica- projektista."
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr ""
-#: mod/friendica.php:86
-msgid "Bug reports and issues: please visit"
-msgstr "Bugiraportit ja kysymykset: vieraile osoitteessa"
+#: mod/match.php:48
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Avainsanat puuttuu. Lisää avainsanoja oletusprofiiliisi."
-#: mod/friendica.php:86
-msgid "the bugtracker at github"
-msgstr "githubin bugtrackeri"
+#: mod/match.php:104
+msgid "is interested in:"
+msgstr "on kiinnostunut seuraavista aiheista:"
-#: mod/friendica.php:89
-msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
-msgstr "Ehdotukset ja palaute: lähetä sähköposti osoitteeseen \"info\" at \"friendi - piste - ca"
+#: mod/match.php:120
+msgid "Profile Match"
+msgstr "Vastaavien profiilien haku"
-#: mod/friendica.php:103
-msgid "Installed addons/apps:"
-msgstr "Asennettu lisäosat/sovellukset:"
+#: mod/maintenance.php:24
+msgid "System down for maintenance"
+msgstr "Järjestelmä poiskytketty huoltoa varten"
-#: mod/friendica.php:117
-msgid "No installed addons/apps"
-msgstr "Ei asennettuja lisäosia/sovelluksia"
+#: mod/tagrm.php:47
+msgid "Tag removed"
+msgstr "Tägi poistettiin"
-#: mod/friendica.php:122
+#: mod/tagrm.php:85
+msgid "Remove Item Tag"
+msgstr "Poista tägi"
+
+#: mod/tagrm.php:87
+msgid "Select a tag to remove: "
+msgstr "Valitse tägi poistamista varten:"
+
+#: mod/feedtest.php:20
+msgid "You must be logged in to use this module"
+msgstr "Sinun pitää kirjautua sisään, jotta voit käyttää tätä moduulia"
+
+#: mod/feedtest.php:48
+msgid "Source URL"
+msgstr "Lähde URL"
+
+#: mod/search.php:105
+msgid "Only logged in users are permitted to perform a search."
+msgstr ""
+
+#: mod/search.php:129
+msgid "Too Many Requests"
+msgstr "Liian monta pyyntöä"
+
+#: mod/search.php:130
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr ""
+
+#: mod/search.php:234
#, php-format
-msgid "Read about the Terms of Service of this node."
-msgstr "Lue tämän solmun käyttöehdot ."
+msgid "Items tagged with: %s"
+msgstr "Kohteet joilla tunnisteet: %s"
-#: mod/friendica.php:127
-msgid "On this server the following remote servers are blocked."
-msgstr "Tällä palvelimella seuraavat etäpalvelimet ovat estetty."
+#: mod/uexport.php:44
+msgid "Export account"
+msgstr "Vie tili"
-#: mod/invite.php:33
-msgid "Total invitation limit exceeded."
-msgstr "Kutsuraja ylitetty."
+#: mod/uexport.php:44
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Vie tilin tiedot ja yhteystiedot. Käytä tätä tilisi varmuuskopiointiin ja/tai siirtämiseen toiselle palvelimelle."
-#: mod/invite.php:55
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Virheellinen sähköpostiosoite."
+#: mod/uexport.php:45
+msgid "Export all"
+msgstr "Vie kaikki"
-#: mod/invite.php:87
-msgid "Please join us on Friendica"
+#: mod/uexport.php:45
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Vie tilin tiedot, yhteystiedot ja kaikki nimikkeesi json-muodossa. Saattaa luoda hyvin suuren tiedoston ja kestää todella pitkään. Tämän avulla voit ottaa täydellisen varmuuskopion tilistäsi (valokuvia ei viedä)"
+
+#: mod/newmember.php:11
+msgid "Welcome to Friendica"
msgstr "Tervetuloa Friendicaan"
-#: mod/invite.php:96
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Kutsuraja ylitetty. Ota yhteyttä ylläpitäjään."
+#: mod/newmember.php:12
+msgid "New Member Checklist"
+msgstr "Uuden jäsenen tarkistuslista"
-#: mod/invite.php:100
+#: mod/newmember.php:14
+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:15
+msgid "Getting Started"
+msgstr "Ensiaskeleet"
+
+#: mod/newmember.php:17
+msgid "Friendica Walk-Through"
+msgstr "Friendica -läpikäynti"
+
+#: mod/newmember.php:17
+msgid ""
+"On your Quick Start page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr ""
+
+#: mod/newmember.php:21
+msgid "Go to Your Settings"
+msgstr "Omat Asetukset"
+
+#: mod/newmember.php:21
+msgid ""
+"On your Settings page - change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr ""
+
+#: mod/newmember.php:22
+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:26
+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:27
+msgid "Edit Your Profile"
+msgstr "Muokkaa profiilisi"
+
+#: mod/newmember.php:27
+msgid ""
+"Edit your default profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr ""
+
+#: mod/newmember.php:28
+msgid "Profile Keywords"
+msgstr "Profiilin avainsanat"
+
+#: mod/newmember.php:28
+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:30
+msgid "Connecting"
+msgstr "Yhdistetään"
+
+#: mod/newmember.php:36
+msgid "Importing Emails"
+msgstr "Sähköpostin tuominen"
+
+#: mod/newmember.php:36
+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:39
+msgid "Go to Your Contacts Page"
+msgstr "Näytä minun kontaktit"
+
+#: mod/newmember.php:39
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the Add New Contact dialog."
+msgstr ""
+
+#: mod/newmember.php:40
+msgid "Go to Your Site's Directory"
+msgstr "Näytä oman sivuston luettelo"
+
+#: mod/newmember.php:40
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a Connect or Follow link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr ""
+
+#: mod/newmember.php:41
+msgid "Finding New People"
+msgstr "Kavereiden hankkiminen"
+
+#: mod/newmember.php:41
+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:45
+msgid "Group Your Contacts"
+msgstr "Järjestä kontaktit ryhmiin"
+
+#: mod/newmember.php:45
+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:48
+msgid "Why Aren't My Posts Public?"
+msgstr "Miksi julkaisuni eivät ole julkisia?"
+
+#: mod/newmember.php:48
+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:52
+msgid "Getting Help"
+msgstr "Avun saaminen"
+
+#: mod/newmember.php:54
+msgid "Go to the Help Section"
+msgstr "Näytä ohjeet"
+
+#: mod/newmember.php:54
+msgid ""
+"Our help pages may be consulted for detail on other program"
+" features and resources."
+msgstr ""
+
+#: mod/dfrn_confirm.php:132
+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 "Etäsivuston vastaus oli epäselvä."
+
+#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "Odottamaton vastaus etäsivustolta:"
+
+#: mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "Vahvistus onnistui."
+
+#: mod/dfrn_confirm.php:275
+msgid "Temporary failure. Please wait and try again."
+msgstr "Tilapäinen vika. Yritä myöhemmin uudelleen."
+
+#: mod/dfrn_confirm.php:278
+msgid "Introduction failed or was revoked."
+msgstr "Kaverikutsu epäonnistui tai oli peruutettu."
+
+#: mod/dfrn_confirm.php:283
+msgid "Remote site reported: "
+msgstr ""
+
+#: mod/dfrn_confirm.php:396
+msgid "Unable to set contact photo."
+msgstr "Kontaktin kuvaa ei voitu asettaa"
+
+#: mod/dfrn_confirm.php:498
#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Viestin toimitus epäonnistui."
+msgid "No user record found for '%s' "
+msgstr ""
-#: mod/invite.php:104
+#: mod/dfrn_confirm.php:508
+msgid "Our site encryption key is apparently messed up."
+msgstr "Sivustomme salausavain on sekaisin."
+
+#: mod/dfrn_confirm.php:519
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr ""
+
+#: mod/dfrn_confirm.php:535
+msgid "Contact record was not found for you on our site."
+msgstr ""
+
+#: mod/dfrn_confirm.php:549
#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d viesti lähetetty."
-msgstr[1] "%d viestiä lähetetty."
+msgid "Site public key not available in contact record for URL %s."
+msgstr ""
-#: mod/invite.php:122
-msgid "You have no more invitations available"
-msgstr "Sinulla ei ole kutsuja jäljellä"
+#: mod/dfrn_confirm.php:565
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr ""
-#: mod/invite.php:130
+#: mod/dfrn_confirm.php:576
+msgid "Unable to set your contact credentials on our system."
+msgstr ""
+
+#: mod/dfrn_confirm.php:631
+msgid "Unable to update your contact profile details on our system"
+msgstr ""
+
+#: mod/dfrn_confirm.php:694
#, php-format
-msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr ""
+msgid "%1$s has joined %2$s"
+msgstr "%1$s on liittynyt kohteeseen %2$s"
-#: mod/invite.php:132
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr ""
-
-#: mod/invite.php:133
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr ""
-
-#: mod/invite.php:137
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr ""
-
-#: mod/invite.php:141
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks."
-msgstr ""
-
-#: mod/invite.php:140
-#, php-format
-msgid "To accept this invitation, please visit and register at %s."
-msgstr ""
-
-#: mod/invite.php:147
-msgid "Send invitations"
-msgstr "Lähetä kutsut"
-
-#: mod/invite.php:148
-msgid "Enter email addresses, one per line:"
-msgstr "Syötä sähköpostiosoitteet, yksi riviä kohden:"
-
-#: mod/invite.php:150
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr ""
-
-#: mod/invite.php:152
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr ""
-
-#: mod/invite.php:152
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr ""
-
-#: mod/invite.php:154
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendi.ca"
-msgstr ""
-
-#: mod/lostpass.php:27
-msgid "No valid account found."
-msgstr "Voimassa olevaa tiliä ei löytynyt."
-
-#: mod/lostpass.php:39
-msgid "Password reset request issued. Check your email."
-msgstr "Salasanan nollauspyyntö lähetetty. Tarkista sähköpostisi."
-
-#: mod/lostpass.php:45
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
-msgstr ""
-
-#: mod/lostpass.php:56
-#, php-format
-msgid ""
-"\n"
-"\t\tFollow this link soon to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
-msgstr ""
-
-#: mod/lostpass.php:73
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Salasanan nollauspyyntö kohteessa %s"
-
-#: mod/lostpass.php:89
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Pyyntöä ei voitu vahvistaa. (Saatoit lähettää pyyntöä aikaisemmin.) Salasanan nollaus epäonnistui."
-
-#: mod/lostpass.php:102
-msgid "Request has expired, please make a new one."
-msgstr "Pyyntö on vanhentunut, tehkää uusi pyyntö."
-
-#: mod/lostpass.php:117
-msgid "Forgot your Password?"
-msgstr "Unohditko salasanasi?"
-
-#: mod/lostpass.php:118
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr ""
-
-#: mod/lostpass.php:119 src/Module/Login.php:314
-msgid "Nickname or Email: "
-msgstr "Lempinimi tai sähköposti:"
-
-#: mod/lostpass.php:120
-msgid "Reset"
-msgstr "Nollaus"
-
-#: mod/lostpass.php:136 src/Module/Login.php:326
-msgid "Password Reset"
-msgstr "Salasanan nollaus"
-
-#: mod/lostpass.php:137
-msgid "Your password has been reset as requested."
-msgstr "Salasanasi on nollattu pyynnöstäsi."
-
-#: mod/lostpass.php:138
-msgid "Your new password is"
-msgstr "Uusi salasanasi on"
-
-#: mod/lostpass.php:139
-msgid "Save or copy your new password - and then"
-msgstr "Tallenna tai kopioi uusi salasanasi, ja sitten"
-
-#: mod/lostpass.php:140
-msgid "click here to login"
-msgstr "kirjaudu klikkaamalla tästä"
-
-#: mod/lostpass.php:141
-msgid ""
-"Your password may be changed from the Settings page after "
-"successful login."
-msgstr "Salsanaa voi vaihtaa asetussivulta kirjautumisen jälkeen."
-
-#: mod/lostpass.php:149
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\tsomething that you will remember).\n"
-"\t\t"
-msgstr ""
-
-#: mod/lostpass.php:155
-#, php-format
-msgid ""
-"\n"
-"\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t%2$s\n"
-"\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t"
-msgstr "\n\t\t\tKäyttäjätilisi tiedot:\n\n\t\t\tSivuston osoite:\t%1$s\n\t\t\tKäyttäjätunnus:\t%2$s\n\t\t\tSalasana:\t%3$s\n\n\t\t\tVoit vaihtaa salasanasi kirjautumisen jälkeen asetussivulta.\n\t\t"
-
-#: mod/lostpass.php:169
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Salasanasi on vaihdettu sivustolla %s"
-
-#: mod/network.php:202 src/Model/Group.php:413
-msgid "add"
-msgstr "lisää"
-
-#: mod/network.php:547
-#, php-format
-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 a network that doesn't allow "
-"non public messages."
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/network.php:550
-msgid "Messages in this group won't be send to these receivers."
-msgstr ""
-
-#: mod/network.php:618
-msgid "No such group"
-msgstr "Ryhmä ei ole olemassa"
-
-#: mod/network.php:643
-#, php-format
-msgid "Group: %s"
-msgstr "Ryhmä: %s"
-
-#: mod/network.php:669
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr ""
-
-#: mod/network.php:672
-msgid "Invalid contact."
-msgstr "Virheellinen kontakti."
-
-#: mod/network.php:936
-msgid "Commented Order"
-msgstr "Järjestä viimeisimpien kommenttien mukaan"
-
-#: mod/network.php:939
-msgid "Sort by Comment Date"
-msgstr "Kommentit päivämäärän mukaan"
-
-#: mod/network.php:944
-msgid "Posted Order"
-msgstr "Järjestä julkaisupäivämäärän mukaan"
-
-#: mod/network.php:947
-msgid "Sort by Post Date"
-msgstr "Julkaisut päivämäärän mukaan"
-
-#: mod/network.php:955 mod/profiles.php:687
-#: src/Core/NotificationsManager.php:185
-msgid "Personal"
-msgstr "Henkilökohtainen"
-
-#: mod/network.php:958
-msgid "Posts that mention or involve you"
-msgstr "Julkaisut jotka liittyvät sinuun"
-
-#: mod/network.php:966
-msgid "New"
-msgstr "Uusi"
-
-#: mod/network.php:969
-msgid "Activity Stream - by date"
-msgstr ""
-
-#: mod/network.php:977
-msgid "Shared Links"
-msgstr "Jaetut linkit"
-
-#: mod/network.php:980
-msgid "Interesting Links"
-msgstr "Kiinnostavat linkit"
-
-#: mod/network.php:988
-msgid "Starred"
-msgstr "Tähtimerkitty"
-
-#: mod/network.php:991
-msgid "Favourite Posts"
-msgstr "Lempijulkaisut"
-
-#: mod/profiles.php:58
-msgid "Profile deleted."
-msgstr "Profiili poistettiin."
-
-#: mod/profiles.php:74 mod/profiles.php:110
-msgid "Profile-"
-msgstr "Profiili-"
-
-#: mod/profiles.php:93 mod/profiles.php:132
-msgid "New profile created."
-msgstr "Uusi profiili luotu."
-
-#: mod/profiles.php:116
-msgid "Profile unavailable to clone."
-msgstr "Profiili ei saatavilla kloonattavaksi."
-
-#: mod/profiles.php:206
-msgid "Profile Name is required."
-msgstr "Profiilinimi on pakollinen."
-
-#: mod/profiles.php:347
-msgid "Marital Status"
-msgstr "Siviilisääty"
-
-#: mod/profiles.php:351
-msgid "Romantic Partner"
-msgstr "Romanttinen kumppani"
-
-#: mod/profiles.php:363
-msgid "Work/Employment"
-msgstr "Työ"
-
-#: mod/profiles.php:366
-msgid "Religion"
-msgstr "Uskonto"
-
-#: mod/profiles.php:370
-msgid "Political Views"
-msgstr "Poliittiset näkemykset"
-
-#: mod/profiles.php:374
-msgid "Gender"
-msgstr "Sukupuoli"
-
-#: mod/profiles.php:378
-msgid "Sexual Preference"
-msgstr "Seksuaalinen suuntautuminen"
-
-#: mod/profiles.php:382
-msgid "XMPP"
-msgstr "XMPP"
-
-#: mod/profiles.php:386
-msgid "Homepage"
-msgstr "Kotisivu"
-
-#: mod/profiles.php:390 mod/profiles.php:686
-msgid "Interests"
-msgstr "Kiinnostukset"
-
-#: mod/profiles.php:401 mod/profiles.php:682
-msgid "Location"
-msgstr "Sijainti"
-
-#: mod/profiles.php:486
-msgid "Profile updated."
-msgstr "Profiili päivitettiin."
-
-#: mod/profiles.php:564
-msgid " and "
-msgstr "ja"
-
-#: mod/profiles.php:573
-msgid "public profile"
-msgstr "julkinen profiili"
-
-#: mod/profiles.php:576
-#, php-format
-msgid "%1$s changed %2$s to “%3$s”"
-msgstr ""
-
-#: mod/profiles.php:577
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr ""
-
-#: mod/profiles.php:579
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr ""
-
-#: mod/profiles.php:633
-msgid "Hide contacts and friends:"
-msgstr "Piilota kontaktit ja kaverit:"
-
-#: mod/profiles.php:638
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Piilota tämän profiilin kontakti/kaverilista?"
-
-#: mod/profiles.php:658
-msgid "Show more profile fields:"
-msgstr "Näytä lisää profiilikenttiä:"
-
-#: mod/profiles.php:670
-msgid "Profile Actions"
-msgstr ""
-
-#: mod/profiles.php:671
-msgid "Edit Profile Details"
-msgstr "Muokkaa profiilin yksityiskohdat"
-
-#: mod/profiles.php:673
-msgid "Change Profile Photo"
-msgstr "Vaihda profiilikuva"
-
-#: mod/profiles.php:674
-msgid "View this profile"
-msgstr "Näytä profiilia"
-
-#: mod/profiles.php:675 mod/profiles.php:770 src/Model/Profile.php:393
-msgid "Edit visibility"
-msgstr "Muokkaa näkyvyyttä"
-
-#: mod/profiles.php:676
-msgid "Create a new profile using these settings"
-msgstr "Luo uusi profiili näillä asetuksilla"
-
-#: mod/profiles.php:677
-msgid "Clone this profile"
-msgstr "Kloonaa tämä profiili"
-
-#: mod/profiles.php:678
-msgid "Delete this profile"
-msgstr "Poista tämä profiili"
-
-#: mod/profiles.php:680
-msgid "Basic information"
-msgstr "Perustiedot"
-
-#: mod/profiles.php:681
-msgid "Profile picture"
-msgstr "Profiilikuva"
-
-#: mod/profiles.php:683
-msgid "Preferences"
-msgstr "Mieltymykset"
-
-#: mod/profiles.php:684
-msgid "Status information"
-msgstr "Tilatiedot"
-
-#: mod/profiles.php:685
-msgid "Additional information"
-msgstr "Lisätietoja"
-
-#: mod/profiles.php:688
-msgid "Relation"
-msgstr "Suhde"
-
-#: mod/profiles.php:689 src/Util/Temporal.php:81 src/Util/Temporal.php:83
-msgid "Miscellaneous"
-msgstr "Sekalaista"
-
-#: mod/profiles.php:692
-msgid "Your Gender:"
-msgstr "Sukupuoli:"
-
-#: mod/profiles.php:693
-msgid "♥ Marital Status:"
-msgstr "♥ Siviilisääty:"
-
-#: mod/profiles.php:694 src/Model/Profile.php:784
-msgid "Sexual Preference:"
-msgstr "Seksuaalinen suuntautuminen:"
-
-#: mod/profiles.php:695
-msgid "Example: fishing photography software"
-msgstr "Esimerkki: kalastus valokuvaus ohjelmistot"
-
-#: mod/profiles.php:700
-msgid "Profile Name:"
-msgstr "Profiilinimi:"
-
-#: mod/profiles.php:702
-msgid ""
-"This is your public profile. It may "
-"be visible to anybody using the internet."
-msgstr ""
-
-#: mod/profiles.php:703
-msgid "Your Full Name:"
-msgstr "Koko nimi:"
-
-#: mod/profiles.php:704
-msgid "Title/Description:"
-msgstr "Otsikko/kuvaus:"
-
-#: mod/profiles.php:707
-msgid "Street Address:"
-msgstr "Katuosoite:"
-
-#: mod/profiles.php:708
-msgid "Locality/City:"
-msgstr "Kaupunki:"
-
-#: mod/profiles.php:709
-msgid "Region/State:"
-msgstr "Alue/osavaltio:"
-
-#: mod/profiles.php:710
-msgid "Postal/Zip Code:"
-msgstr "Postinumero:"
-
-#: mod/profiles.php:711
-msgid "Country:"
-msgstr "Maa:"
-
-#: mod/profiles.php:712 src/Util/Temporal.php:149
-msgid "Age: "
-msgstr "Ikä:"
-
-#: mod/profiles.php:715
-msgid "Who: (if applicable)"
-msgstr "Kuka: (tarvittaessa)"
-
-#: mod/profiles.php:715
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Esimerkkejä: cathy123, Cathy Williams, cathy@example.com"
-
-#: mod/profiles.php:716
-msgid "Since [date]:"
-msgstr "Lähtien [päivämäärä]:"
-
-#: mod/profiles.php:718
-msgid "Tell us about yourself..."
-msgstr "Kerro vähän itsestäsi..."
-
-#: mod/profiles.php:719
-msgid "XMPP (Jabber) address:"
-msgstr "XMPP (Jabber) osoite:"
-
-#: mod/profiles.php:719
-msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow"
-" you."
-msgstr ""
-
-#: mod/profiles.php:720
-msgid "Homepage URL:"
-msgstr "Kotisivun URL-osoite:"
-
-#: mod/profiles.php:721 src/Model/Profile.php:792
-msgid "Hometown:"
-msgstr "Kotikaupunki:"
-
-#: mod/profiles.php:722 src/Model/Profile.php:800
-msgid "Political Views:"
-msgstr "Politiikka:"
-
-#: mod/profiles.php:723
-msgid "Religious Views:"
-msgstr "Uskonto:"
-
-#: mod/profiles.php:724
-msgid "Public Keywords:"
-msgstr "Julkiset avainsanat:"
-
-#: mod/profiles.php:724
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Käytetään kaveriehdotuksia varten, näkyy muille)"
-
-#: mod/profiles.php:725
-msgid "Private Keywords:"
-msgstr "Yksityiset avainsanat:"
-
-#: mod/profiles.php:725
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Käytetään profiilihakua varten, ei näy muille)"
-
-#: mod/profiles.php:726 src/Model/Profile.php:816
-msgid "Likes:"
-msgstr "Tykkäykset:"
-
-#: mod/profiles.php:727 src/Model/Profile.php:820
-msgid "Dislikes:"
-msgstr "Ei tykkää:"
-
-#: mod/profiles.php:728
-msgid "Musical interests"
-msgstr "Musiikki"
-
-#: mod/profiles.php:729
-msgid "Books, literature"
-msgstr "Kirjat, kirjallisuus"
-
-#: mod/profiles.php:730
-msgid "Television"
-msgstr "Televisio"
-
-#: mod/profiles.php:731
-msgid "Film/dance/culture/entertainment"
-msgstr "Elokuvat/tanssi/kulttuuri/viihde"
-
-#: mod/profiles.php:732
-msgid "Hobbies/Interests"
-msgstr "Harrastukset"
-
-#: mod/profiles.php:733
-msgid "Love/romance"
-msgstr "Rakkaus/romanssi"
-
-#: mod/profiles.php:734
-msgid "Work/employment"
-msgstr "Työ:"
-
-#: mod/profiles.php:735
-msgid "School/education"
-msgstr "Koulutus:"
-
-#: mod/profiles.php:736
-msgid "Contact information and Social Networks"
-msgstr "Yhteystiedot ja sosiaalinen media"
-
-#: mod/profiles.php:767 src/Model/Profile.php:389
-msgid "Profile Image"
-msgstr "Profiilikuva"
-
-#: mod/profiles.php:769 src/Model/Profile.php:392
-msgid "visible to everybody"
-msgstr "näkyvissä kaikille"
-
-#: mod/profiles.php:776
-msgid "Edit/Manage Profiles"
-msgstr "Muokkaa/hallitse profiilit"
-
-#: mod/profiles.php:777 src/Model/Profile.php:379 src/Model/Profile.php:401
-msgid "Change profile photo"
-msgstr "Vaihda profiilikuva"
-
-#: mod/profiles.php:778 src/Model/Profile.php:380
-msgid "Create New Profile"
-msgstr "Luo uusi profiili"
+#: mod/filer.php:34
+msgid "- select -"
+msgstr "- valitse -"
#: mod/register.php:99
msgid ""
@@ -6661,18 +9246,10 @@ msgid ""
"be an existing address.)"
msgstr "Sähköpostiosoite: (pitää olla toimiva osoite että rekisteröityminen onnistuu)"
-#: mod/register.php:273 mod/settings.php:1201
-msgid "New Password:"
-msgstr "Uusi salasana:"
-
#: mod/register.php:273
msgid "Leave empty for an auto generated password."
msgstr "Jätä tyhjäksi jos haluat automaattisesti luotu salasanan."
-#: mod/register.php:274 mod/settings.php:1202
-msgid "Confirm:"
-msgstr "Vahvista:"
-
#: mod/register.php:275
#, php-format
msgid ""
@@ -6684,923 +9261,104 @@ msgstr ""
msgid "Choose a nickname: "
msgstr "Valitse lempinimi:"
-#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283
-msgid "Register"
-msgstr "Rekisteröidy"
-
#: mod/register.php:286
msgid "Import your profile to this friendica instance"
msgstr "Tuo profiilisi tähän Friendica -instanssiin."
-#: mod/removeme.php:43
-msgid "User deleted their account"
-msgstr "Käyttäjä poisti tilinsä"
+#: mod/common.php:91
+msgid "No contacts in common."
+msgstr "Ei yhteisiä kontakteja."
-#: mod/removeme.php:44
-msgid ""
-"On your Friendica node an user deleted their account. Please ensure that "
-"their data is removed from the backups."
-msgstr "Friendica -solmullasi käyttäjä poisti tilinsä. Varmista että hänen tiedot poistetaan myös varmuuskopioista."
-
-#: mod/removeme.php:45
-#, php-format
-msgid "The user id is %d"
+#: mod/probe.php:14 mod/webfinger.php:17
+msgid "Only logged in users are permitted to perform a probing."
msgstr ""
-#: mod/removeme.php:76 mod/removeme.php:79
-msgid "Remove My Account"
-msgstr "Poista tilini"
+#: mod/help.php:48
+msgid "Help:"
+msgstr "Ohje:"
-#: mod/removeme.php:77
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Tämä poistaa käyttäjätilisi pysyvästi. Poistoa ei voi perua myöhemmin."
+#: mod/help.php:63 index.php:325
+msgid "Page not found."
+msgstr "Sivua ei löytynyt."
-#: mod/removeme.php:78
-msgid "Please enter your password for verification:"
-msgstr "Syötä salasanasi varmistusta varten:"
+#: mod/profperm.php:34 mod/profperm.php:65
+msgid "Invalid profile identifier."
+msgstr "Virheellinen profiilitunniste."
-#: mod/settings.php:72
-msgid "Display"
-msgstr "Ulkonäkö"
+#: mod/profperm.php:111
+msgid "Profile Visibility Editor"
+msgstr "Profiilin näkyvyyden muokkaaminen"
-#: mod/settings.php:79 mod/settings.php:842
-msgid "Social Networks"
-msgstr "Sosiaalinen media"
+#: mod/profperm.php:124
+msgid "Visible To"
+msgstr "Näkyvyys"
-#: mod/settings.php:93 src/Content/Nav.php:204
-msgid "Delegations"
+#: mod/profperm.php:140
+msgid "All Contacts (with secure profile access)"
msgstr ""
-#: mod/settings.php:100
-msgid "Connected apps"
-msgstr "Yhdistetyt sovellukset"
+#: mod/item.php:114
+msgid "Unable to locate original post."
+msgstr "Alkuperäinen julkaisu ei löydy."
-#: mod/settings.php:114
-msgid "Remove account"
-msgstr "Poista tili"
+#: mod/item.php:274
+msgid "Empty post discarded."
+msgstr "Tyhjä julkaisu hylätty."
-#: mod/settings.php:168
-msgid "Missing some important data!"
-msgstr ""
-
-#: mod/settings.php:279
-msgid "Failed to connect with email account using the settings provided."
-msgstr ""
-
-#: mod/settings.php:284
-msgid "Email settings updated."
-msgstr "Sähköpostin asetukset päivitettiin."
-
-#: mod/settings.php:300
-msgid "Features updated"
-msgstr "Ominaisuudet päivitetty"
-
-#: mod/settings.php:372
-msgid "Relocate message has been send to your contacts"
-msgstr ""
-
-#: mod/settings.php:384 src/Model/User.php:339
-msgid "Passwords do not match. Password unchanged."
-msgstr "Salasanat eivät täsmää. Salasana ennallaan."
-
-#: mod/settings.php:389
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Tyhjä salasanakenttä ei ole sallittu. Salasana ennallaan."
-
-#: mod/settings.php:394 src/Core/Console/NewPassword.php:87
-msgid ""
-"The new password has been exposed in a public data dump, please choose "
-"another."
-msgstr ""
-
-#: mod/settings.php:400
-msgid "Wrong password."
-msgstr "Väärä salasana."
-
-#: mod/settings.php:407 src/Core/Console/NewPassword.php:94
-msgid "Password changed."
-msgstr "Salasana vaihdettu."
-
-#: mod/settings.php:409 src/Core/Console/NewPassword.php:91
-msgid "Password update failed. Please try again."
-msgstr "Salasanan vaihto epäonnistui. Yritä uudelleen."
-
-#: mod/settings.php:496
-msgid " Please use a shorter name."
-msgstr "Käytä lyhyempää nimeä."
-
-#: mod/settings.php:499
-msgid " Name too short."
-msgstr "Nimi on liian lyhyt."
-
-#: mod/settings.php:507
-msgid "Wrong Password"
-msgstr "Väärä salasana"
-
-#: mod/settings.php:512
-msgid "Invalid email."
-msgstr "Virheellinen sähköposti."
-
-#: mod/settings.php:519
-msgid "Cannot change to that email."
-msgstr ""
-
-#: mod/settings.php:572
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr ""
-
-#: mod/settings.php:575
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr ""
-
-#: mod/settings.php:615
-msgid "Settings updated."
-msgstr "Asetukset päivitetty."
-
-#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
-msgid "Add application"
-msgstr "Lisää sovellus"
-
-#: mod/settings.php:678 mod/settings.php:704
-msgid "Consumer Key"
-msgstr "Kuluttajan avain"
-
-#: mod/settings.php:679 mod/settings.php:705
-msgid "Consumer Secret"
-msgstr "Kuluttajasalaisuus"
-
-#: mod/settings.php:680 mod/settings.php:706
-msgid "Redirect"
-msgstr "Uudelleenohjaus"
-
-#: mod/settings.php:681 mod/settings.php:707
-msgid "Icon url"
-msgstr "Kuvakkeen URL-osoite"
-
-#: mod/settings.php:692
-msgid "You can't edit this application."
-msgstr "Et voi muokata tätä sovellusta."
-
-#: mod/settings.php:735
-msgid "Connected Apps"
-msgstr "Yhdistetyt sovellukset"
-
-#: mod/settings.php:737 src/Object/Post.php:155 src/Object/Post.php:157
-msgid "Edit"
-msgstr "Muokkaa"
-
-#: mod/settings.php:739
-msgid "Client key starts with"
-msgstr "Asiakasavain alkaa"
-
-#: mod/settings.php:740
-msgid "No name"
-msgstr "Ei nimeä"
-
-#: mod/settings.php:741
-msgid "Remove authorization"
-msgstr "Poista lupa"
-
-#: mod/settings.php:752
-msgid "No Addon settings configured"
-msgstr "Lisäosa-asetukset puuttuvat"
-
-#: mod/settings.php:761
-msgid "Addon Settings"
-msgstr "Lisäosa-asetukset"
-
-#: mod/settings.php:782
-msgid "Additional Features"
-msgstr "Lisäominaisuuksia"
-
-#: mod/settings.php:805 src/Content/ContactSelector.php:83
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: mod/settings.php:805 mod/settings.php:806
-msgid "enabled"
-msgstr "käytössä"
-
-#: mod/settings.php:805 mod/settings.php:806
-msgid "disabled"
-msgstr "pois käytöstä"
-
-#: mod/settings.php:805 mod/settings.php:806
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr ""
-
-#: mod/settings.php:806
-msgid "GNU Social (OStatus)"
-msgstr "GNU Social (OStatus)"
-
-#: mod/settings.php:837
-msgid "Email access is disabled on this site."
-msgstr ""
-
-#: mod/settings.php:847
-msgid "General Social Media Settings"
-msgstr "Yleiset some asetukset"
-
-#: mod/settings.php:848
-msgid "Disable Content Warning"
-msgstr "Poista sisältövaroitus käytöstä"
-
-#: mod/settings.php:848
-msgid ""
-"Users on networks like Mastodon or Pleroma are able to set a content warning"
-" field which collapse their post by default. This disables the automatic "
-"collapsing and sets the content warning as the post title. Doesn't affect "
-"any other content filtering you eventually set up."
-msgstr ""
-
-#: mod/settings.php:849
-msgid "Disable intelligent shortening"
-msgstr ""
-
-#: mod/settings.php:849
-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:850
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
-msgstr "Automaattisesti seuraa GNU social (OStatus) seuraajat/mainitsijat"
-
-#: mod/settings.php:850
-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:851
-msgid "Default group for OStatus contacts"
-msgstr "Oletusryhmä OStatus kontakteille"
-
-#: mod/settings.php:852
-msgid "Your legacy GNU Social account"
-msgstr "Vanha GNU social käyttäjätilisi"
-
-#: mod/settings.php:852
-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:855
-msgid "Repair OStatus subscriptions"
-msgstr "Korjaa OStatus tilaukset"
-
-#: mod/settings.php:859
-msgid "Email/Mailbox Setup"
-msgstr "Sähköpostin asennus"
-
-#: mod/settings.php:860
-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:861
-msgid "Last successful email check:"
-msgstr "Viimeisin onnistunut sähköpostitarkistus:"
-
-#: mod/settings.php:863
-msgid "IMAP server name:"
-msgstr "IMAP-palvelimen nimi:"
-
-#: mod/settings.php:864
-msgid "IMAP port:"
-msgstr "IMAP-porttti:"
-
-#: mod/settings.php:865
-msgid "Security:"
-msgstr "Turvallisuus:"
-
-#: mod/settings.php:865 mod/settings.php:870
-msgid "None"
-msgstr "Ei mitään"
-
-#: mod/settings.php:866
-msgid "Email login name:"
-msgstr "Sähköpostitilin käyttäjätunnus:"
-
-#: mod/settings.php:867
-msgid "Email password:"
-msgstr "Sähköpostin salasana:"
-
-#: mod/settings.php:868
-msgid "Reply-to address:"
-msgstr "Vastausosoite:"
-
-#: mod/settings.php:869
-msgid "Send public posts to all email contacts:"
-msgstr "Lähetä julkiset julkaisut kaikille kontakteille:"
-
-#: mod/settings.php:870
-msgid "Action after import:"
-msgstr ""
-
-#: mod/settings.php:870 src/Content/Nav.php:191
-msgid "Mark as seen"
-msgstr "Merkitse luetuksi"
-
-#: mod/settings.php:870
-msgid "Move to folder"
-msgstr "Siirrä kansioon"
-
-#: mod/settings.php:871
-msgid "Move to folder:"
-msgstr "Siirrä kansioon:"
-
-#: mod/settings.php:914
-#, php-format
-msgid "%s - (Unsupported)"
-msgstr "%s - (Ei tueta)"
-
-#: mod/settings.php:916
-#, php-format
-msgid "%s - (Experimental)"
-msgstr "%s - (Kokeellinen)"
-
-#: mod/settings.php:959
-msgid "Display Settings"
-msgstr "Näyttöasetukset"
-
-#: mod/settings.php:965 mod/settings.php:989
-msgid "Display Theme:"
-msgstr "Käyttöliittymän teema:"
-
-#: mod/settings.php:966
-msgid "Mobile Theme:"
-msgstr "Mobiiliteema:"
-
-#: mod/settings.php:967
-msgid "Suppress warning of insecure networks"
-msgstr ""
-
-#: mod/settings.php:967
-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:968
-msgid "Update browser every xx seconds"
-msgstr "Päivitä selain xx sekunnin välein"
-
-#: mod/settings.php:968
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
-msgstr ""
-
-#: mod/settings.php:969
-msgid "Number of items to display per page:"
-msgstr ""
-
-#: mod/settings.php:969 mod/settings.php:970
-msgid "Maximum of 100 items"
-msgstr "Enintään 100 kohdetta"
-
-#: mod/settings.php:970
-msgid "Number of items to display per page when viewed from mobile device:"
-msgstr ""
-
-#: mod/settings.php:971
-msgid "Don't show emoticons"
-msgstr "Piilota hymiöt"
-
-#: mod/settings.php:972
-msgid "Calendar"
-msgstr "Kalenteri"
-
-#: mod/settings.php:973
-msgid "Beginning of week:"
-msgstr "Viikon alku:"
-
-#: mod/settings.php:974
-msgid "Don't show notices"
-msgstr ""
-
-#: mod/settings.php:975
-msgid "Infinite scroll"
-msgstr "Loputon selaaminen"
-
-#: mod/settings.php:976
-msgid "Automatic updates only at the top of the network page"
-msgstr ""
-
-#: mod/settings.php:976
-msgid ""
-"When disabled, the network page is updated all the time, which could be "
-"confusing while reading."
-msgstr ""
-
-#: mod/settings.php:977
-msgid "Bandwith Saver Mode"
-msgstr "Kaistanleveyssäästömoodi"
-
-#: mod/settings.php:977
-msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
-msgstr ""
-
-#: mod/settings.php:978
-msgid "Smart Threading"
-msgstr ""
-
-#: mod/settings.php:978
-msgid ""
-"When enabled, suppress extraneous thread indentation while keeping it where "
-"it matters. Only works if threading is available and enabled."
-msgstr ""
-
-#: mod/settings.php:980
-msgid "General Theme Settings"
-msgstr "Yleiset teeman asetukset"
-
-#: mod/settings.php:981
-msgid "Custom Theme Settings"
-msgstr "Mukautetut teema-asetukset"
-
-#: mod/settings.php:982
-msgid "Content Settings"
-msgstr "Sisältöasetukset"
-
-#: mod/settings.php:983 view/theme/duepuntozero/config.php:73
-#: view/theme/frio/config.php:115 view/theme/quattro/config.php:75
-#: view/theme/vier/config.php:121
-msgid "Theme settings"
-msgstr "Teeman asetukset"
-
-#: mod/settings.php:1002
-msgid "Unable to find your profile. Please contact your admin."
-msgstr "Profiilisi ei löytynyt. Ota yhteyttä ylläpitäjään."
-
-#: mod/settings.php:1044
-msgid "Account Types"
-msgstr "Tilityypit"
-
-#: mod/settings.php:1045
-msgid "Personal Page Subtypes"
-msgstr "Henkilökohtaisen sivun alatyypit"
-
-#: mod/settings.php:1046
-msgid "Community Forum Subtypes"
-msgstr "Yhteisöfoorumin alatyypit"
-
-#: mod/settings.php:1053
-msgid "Personal Page"
-msgstr "Henkilökohtainen sivu"
-
-#: mod/settings.php:1054
-msgid "Account for a personal profile."
-msgstr ""
-
-#: mod/settings.php:1057
-msgid "Organisation Page"
-msgstr "Järjestön sivu"
-
-#: mod/settings.php:1058
-msgid ""
-"Account for an organisation that automatically approves contact requests as "
-"\"Followers\"."
-msgstr ""
-
-#: mod/settings.php:1061
-msgid "News Page"
-msgstr "Uutissivu"
-
-#: mod/settings.php:1062
-msgid ""
-"Account for a news reflector that automatically approves contact requests as"
-" \"Followers\"."
-msgstr ""
-
-#: mod/settings.php:1065
-msgid "Community Forum"
-msgstr "Yhteisöfoorumi"
-
-#: mod/settings.php:1066
-msgid "Account for community discussions."
-msgstr ""
-
-#: mod/settings.php:1069
-msgid "Normal Account Page"
-msgstr "Tavallinen käyttäjätili"
-
-#: mod/settings.php:1070
-msgid ""
-"Account for a regular personal profile that requires manual approval of "
-"\"Friends\" and \"Followers\"."
-msgstr ""
-
-#: mod/settings.php:1073
-msgid "Soapbox Page"
-msgstr "Saarnatuoli sivu"
-
-#: mod/settings.php:1074
-msgid ""
-"Account for a public profile that automatically approves contact requests as"
-" \"Followers\"."
-msgstr ""
-
-#: mod/settings.php:1077
-msgid "Public Forum"
-msgstr "Julkinen foorumi"
-
-#: mod/settings.php:1078
-msgid "Automatically approves all contact requests."
-msgstr "Automaattisesti hyväksyy kaikki kontaktipyynnöt"
-
-#: mod/settings.php:1081
-msgid "Automatic Friend Page"
-msgstr ""
-
-#: mod/settings.php:1082
-msgid ""
-"Account for a popular profile that automatically approves contact requests "
-"as \"Friends\"."
-msgstr ""
-
-#: mod/settings.php:1085
-msgid "Private Forum [Experimental]"
-msgstr "Yksityisfoorumi [kokeellinen]"
-
-#: mod/settings.php:1086
-msgid "Requires manual approval of contact requests."
-msgstr ""
-
-#: mod/settings.php:1097
-msgid "OpenID:"
-msgstr "OpenID:"
-
-#: mod/settings.php:1097
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr ""
-
-#: mod/settings.php:1105
-msgid "Publish your default profile in your local site directory?"
-msgstr "Julkaise oletusprofiilisi tämän sivuston paikallisluettelossa?"
-
-#: mod/settings.php:1105
+#: mod/item.php:799
#, php-format
msgid ""
-"Your profile will be published in the global friendica directories (e.g. %s ). Your profile will be visible in public."
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
msgstr ""
-#: mod/settings.php:1111
-msgid "Publish your default profile in the global social directory?"
-msgstr "Julkaise oletusprofiilisi maailmanlaajuisessa sosiaaliluettelossa?"
-
-#: mod/settings.php:1111
+#: mod/item.php:801
#, php-format
+msgid "You may visit them online at %s"
+msgstr ""
+
+#: mod/item.php:802
msgid ""
-"Your profile will be published in this node's local "
-"directory . Your profile details may be publicly visible depending on the"
-" system settings."
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
msgstr ""
-#: mod/settings.php:1118
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr ""
-
-#: mod/settings.php:1118
-msgid ""
-"Your contact list won't be shown in your default profile page. You can "
-"decide to show your contact list separately for each additional profile you "
-"create"
-msgstr ""
-
-#: mod/settings.php:1122
-msgid "Hide your profile details from anonymous viewers?"
-msgstr ""
-
-#: mod/settings.php:1122
-msgid ""
-"Anonymous visitors will only see your profile picture, your display name and"
-" the nickname you are using on your profile page. Disables posting public "
-"messages to Diaspora and other networks."
-msgstr ""
-
-#: mod/settings.php:1126
-msgid "Allow friends to post to your profile page?"
-msgstr ""
-
-#: mod/settings.php:1126
-msgid ""
-"Your contacts may write posts on your profile wall. These posts will be "
-"distributed to your contacts"
-msgstr ""
-
-#: mod/settings.php:1130
-msgid "Allow friends to tag your posts?"
-msgstr ""
-
-#: mod/settings.php:1130
-msgid "Your contacts can add additional tags to your posts."
-msgstr ""
-
-#: mod/settings.php:1134
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr ""
-
-#: mod/settings.php:1134
-msgid ""
-"If you like, Friendica may suggest new members to add you as a contact."
-msgstr ""
-
-#: mod/settings.php:1138
-msgid "Permit unknown people to send you private mail?"
-msgstr "Salli yksityisviesit tuntemattomilta?"
-
-#: mod/settings.php:1138
-msgid ""
-"Friendica network users may send you private messages even if they are not "
-"in your contact list."
-msgstr ""
-
-#: mod/settings.php:1142
-msgid "Profile is not published ."
-msgstr "Profiili ei ole julkaistu ."
-
-#: mod/settings.php:1148
+#: mod/item.php:806
#, php-format
-msgid "Your Identity Address is '%s' or '%s'."
-msgstr "Identiteettisi osoite on '%s' tai '%s'."
+msgid "%s posted an update."
+msgstr "%s julkaisi päivityksen."
-#: mod/settings.php:1155
-msgid "Automatically expire posts after this many days:"
-msgstr ""
+#: mod/editpost.php:25 mod/editpost.php:35
+msgid "Item not found"
+msgstr "Kohdetta ei löytynyt"
-#: mod/settings.php:1155
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Jos kenttä jää tyhjäksi, julkaisut eivät vanhene. Vanhentuneet julkaisut poistetaan."
+#: mod/editpost.php:42
+msgid "Edit post"
+msgstr "Muokkaa viestiä"
-#: mod/settings.php:1156
-msgid "Advanced expiration settings"
-msgstr ""
+#: view/theme/quattro/config.php:76
+msgid "Alignment"
+msgstr "Kohdistaminen"
-#: mod/settings.php:1157
-msgid "Advanced Expiration"
-msgstr ""
+#: view/theme/quattro/config.php:76
+msgid "Left"
+msgstr "Vasemmalle"
-#: mod/settings.php:1158
-msgid "Expire posts:"
-msgstr "Julkaisujen vanheneminen:"
+#: view/theme/quattro/config.php:76
+msgid "Center"
+msgstr "Keskelle"
-#: mod/settings.php:1159
-msgid "Expire personal notes:"
-msgstr ""
+#: view/theme/quattro/config.php:77
+msgid "Color scheme"
+msgstr "Värimalli"
-#: mod/settings.php:1160
-msgid "Expire starred posts:"
-msgstr "Tähtimerkityt julkaisut vanhenee:"
+#: view/theme/quattro/config.php:78
+msgid "Posts font size"
+msgstr "Julkaisujen fonttikoko"
-#: mod/settings.php:1161
-msgid "Expire photos:"
-msgstr "Kuvat vanhenee:"
-
-#: mod/settings.php:1162
-msgid "Only expire posts by others:"
-msgstr ""
-
-#: mod/settings.php:1192
-msgid "Account Settings"
-msgstr "Tiliasetukset"
-
-#: mod/settings.php:1200
-msgid "Password Settings"
-msgstr "Salasana-asetukset"
-
-#: mod/settings.php:1202
-msgid "Leave password fields blank unless changing"
-msgstr "Jätä salasana kenttää tyhjäksi jos et halua vaihtaa salasanaa"
-
-#: mod/settings.php:1203
-msgid "Current Password:"
-msgstr "Nykyinen salasana:"
-
-#: mod/settings.php:1203 mod/settings.php:1204
-msgid "Your current password to confirm the changes"
-msgstr ""
-
-#: mod/settings.php:1204
-msgid "Password:"
-msgstr "Salasana:"
-
-#: mod/settings.php:1208
-msgid "Basic Settings"
-msgstr "Perusasetukset"
-
-#: mod/settings.php:1209 src/Model/Profile.php:740
-msgid "Full Name:"
-msgstr "Koko nimi:"
-
-#: mod/settings.php:1210
-msgid "Email Address:"
-msgstr "Sähköpostiosoite:"
-
-#: mod/settings.php:1211
-msgid "Your Timezone:"
-msgstr "Aikavyöhyke:"
-
-#: mod/settings.php:1212
-msgid "Your Language:"
-msgstr "Kieli:"
-
-#: mod/settings.php:1212
-msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
-msgstr ""
-
-#: mod/settings.php:1213
-msgid "Default Post Location:"
-msgstr "Julkaisun oletussijainti:"
-
-#: mod/settings.php:1214
-msgid "Use Browser Location:"
-msgstr "Käytä selaimen sijainti:"
-
-#: mod/settings.php:1217
-msgid "Security and Privacy Settings"
-msgstr "Turvallisuus ja tietosuoja-asetukset"
-
-#: mod/settings.php:1219
-msgid "Maximum Friend Requests/Day:"
-msgstr "Kaveripyyntöraja päivässä:"
-
-#: mod/settings.php:1219 mod/settings.php:1248
-msgid "(to prevent spam abuse)"
-msgstr "(roskapostin estämiseksi)"
-
-#: mod/settings.php:1220
-msgid "Default Post Permissions"
-msgstr "Julkaisun oletuskäyttöoikeudet:"
-
-#: mod/settings.php:1221
-msgid "(click to open/close)"
-msgstr "(klikkaa auki/kiinni)"
-
-#: mod/settings.php:1231
-msgid "Default Private Post"
-msgstr ""
-
-#: mod/settings.php:1232
-msgid "Default Public Post"
-msgstr ""
-
-#: mod/settings.php:1236
-msgid "Default Permissions for New Posts"
-msgstr "Uuden julkaisun oletuskäyttöoikeudet"
-
-#: mod/settings.php:1248
-msgid "Maximum private messages per day from unknown people:"
-msgstr ""
-
-#: mod/settings.php:1251
-msgid "Notification Settings"
-msgstr "Huomautusasetukset"
-
-#: mod/settings.php:1252
-msgid "By default post a status message when:"
-msgstr ""
-
-#: mod/settings.php:1253
-msgid "accepting a friend request"
-msgstr "hyväksyt kaveripyynnön"
-
-#: mod/settings.php:1254
-msgid "joining a forum/community"
-msgstr "liityt foorumiin/yhteisöön"
-
-#: mod/settings.php:1255
-msgid "making an interesting profile change"
-msgstr ""
-
-#: mod/settings.php:1256
-msgid "Send a notification email when:"
-msgstr "Lähetä sähköposti-ilmoitus kun:"
-
-#: mod/settings.php:1257
-msgid "You receive an introduction"
-msgstr "Vastaanotat kaverikutsun"
-
-#: mod/settings.php:1258
-msgid "Your introductions are confirmed"
-msgstr "Kaverikutsusi on hyväksytty"
-
-#: mod/settings.php:1259
-msgid "Someone writes on your profile wall"
-msgstr "Joku kirjoittaa profiiliseinällesi"
-
-#: mod/settings.php:1260
-msgid "Someone writes a followup comment"
-msgstr "Joku vastaa kommenttiin"
-
-#: mod/settings.php:1261
-msgid "You receive a private message"
-msgstr "Vastaanotat yksityisviestin"
-
-#: mod/settings.php:1262
-msgid "You receive a friend suggestion"
-msgstr "Vastaanotat kaveriehdotuksen"
-
-#: mod/settings.php:1263
-msgid "You are tagged in a post"
-msgstr "Sinut on merkitty julkaisuun"
-
-#: mod/settings.php:1264
-msgid "You are poked/prodded/etc. in a post"
-msgstr ""
-
-#: mod/settings.php:1266
-msgid "Activate desktop notifications"
-msgstr "Ota työpöytäilmoitukset käyttöön"
-
-#: mod/settings.php:1266
-msgid "Show desktop popup on new notifications"
-msgstr ""
-
-#: mod/settings.php:1268
-msgid "Text-only notification emails"
-msgstr "Ilmoitussähköposteissa vain tekstiä"
-
-#: mod/settings.php:1270
-msgid "Send text only notification emails, without the html part"
-msgstr "Lähetä ilmoitussähköposteissa vain tekstiä ilman HTML-koodia"
-
-#: mod/settings.php:1272
-msgid "Show detailled notifications"
-msgstr "Näytä yksityiskohtaiset ilmoitukset"
-
-#: mod/settings.php:1274
-msgid ""
-"Per default, notifications are condensed to a single notification per item. "
-"When enabled every notification is displayed."
-msgstr ""
-
-#: mod/settings.php:1276
-msgid "Advanced Account/Page Type Settings"
-msgstr "Käyttäjätili/sivutyyppi lisäasetuksia"
-
-#: mod/settings.php:1277
-msgid "Change the behaviour of this account for special situations"
-msgstr ""
-
-#: mod/settings.php:1280
-msgid "Relocate"
-msgstr "Uudelleensijoitus"
-
-#: mod/settings.php:1281
-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:1282
-msgid "Resend relocate message to contacts"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502
-msgid "default"
-msgstr "oletus"
-
-#: view/theme/duepuntozero/config.php:55
-msgid "greenzero"
-msgstr "greenzero"
-
-#: view/theme/duepuntozero/config.php:56
-msgid "purplezero"
-msgstr "purplezero"
-
-#: view/theme/duepuntozero/config.php:57
-msgid "easterbunny"
-msgstr "easterbunny"
-
-#: view/theme/duepuntozero/config.php:58
-msgid "darkzero"
-msgstr "darkzero"
-
-#: view/theme/duepuntozero/config.php:59
-msgid "comix"
-msgstr "comix"
-
-#: view/theme/duepuntozero/config.php:60
-msgid "slackr"
-msgstr "slackr"
-
-#: view/theme/duepuntozero/config.php:74
-msgid "Variations"
-msgstr "Muunnelmat"
+#: view/theme/quattro/config.php:79
+msgid "Textareas font size"
+msgstr "Tekstikenttien fonttikoko"
#: view/theme/frio/php/Image.php:25
msgid "Repeat the image"
@@ -7694,98 +9452,10 @@ msgstr "Vieras"
msgid "Visitor"
msgstr "Vierailija"
-#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
-#: src/Module/Login.php:311
-msgid "Logout"
-msgstr "Kirjaudu ulos"
-
-#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
-msgid "End this session"
-msgstr "Lopeta istunto"
-
-#: view/theme/frio/theme.php:259 src/Content/Nav.php:100
-#: src/Content/Nav.php:181
-msgid "Your posts and conversations"
-msgstr "Omat julkaisut ja keskustelut"
-
-#: view/theme/frio/theme.php:260 src/Content/Nav.php:101
-msgid "Your profile page"
-msgstr "Oma profiilisivu"
-
-#: view/theme/frio/theme.php:261 src/Content/Nav.php:102
-msgid "Your photos"
-msgstr "Omat kuvat"
-
-#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
-#: src/Model/Profile.php:914 src/Model/Profile.php:917
-msgid "Videos"
-msgstr "Videot"
-
-#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
-msgid "Your videos"
-msgstr "Omat videot"
-
-#: view/theme/frio/theme.php:263 src/Content/Nav.php:104
-msgid "Your events"
-msgstr "Omat tapahtumat"
-
-#: view/theme/frio/theme.php:266 src/Content/Nav.php:178
-msgid "Conversations from your friends"
-msgstr "Kavereiden keskustelut"
-
-#: view/theme/frio/theme.php:267 src/Content/Nav.php:169
-#: src/Model/Profile.php:929 src/Model/Profile.php:940
-msgid "Events and Calendar"
-msgstr "Tapahtumat ja kalenteri"
-
-#: view/theme/frio/theme.php:268 src/Content/Nav.php:195
-msgid "Private mail"
-msgstr "Yksityinen posti"
-
-#: view/theme/frio/theme.php:269 src/Content/Nav.php:206
-msgid "Account settings"
-msgstr "Tiliasetukset"
-
-#: view/theme/frio/theme.php:270 src/Content/Nav.php:212
-msgid "Manage/edit friends and contacts"
-msgstr "Hallitse/muokkaa kaverit ja kontaktit"
-
-#: view/theme/quattro/config.php:76
-msgid "Alignment"
-msgstr "Kohdistaminen"
-
-#: view/theme/quattro/config.php:76
-msgid "Left"
-msgstr "Vasemmalle"
-
-#: view/theme/quattro/config.php:76
-msgid "Center"
-msgstr "Keskelle"
-
-#: view/theme/quattro/config.php:77
-msgid "Color scheme"
-msgstr "Värimalli"
-
-#: view/theme/quattro/config.php:78
-msgid "Posts font size"
-msgstr "Julkaisujen fonttikoko"
-
-#: view/theme/quattro/config.php:79
-msgid "Textareas font size"
-msgstr "Tekstikenttien fonttikoko"
-
#: view/theme/vier/config.php:75
msgid "Comma separated list of helper forums"
msgstr ""
-#: view/theme/vier/config.php:115 src/Core/ACL.php:309
-msgid "don't show"
-msgstr "älä näytä"
-
-#: view/theme/vier/config.php:115 src/Core/ACL.php:308
-msgid "show"
-msgstr "näytä"
-
#: view/theme/vier/config.php:122
msgid "Set style"
msgstr "Aseta tyyli"
@@ -7818,1705 +9488,37 @@ msgstr "Viimeisimmät käyttäjät"
msgid "Local Directory"
msgstr "Paikallinen hakemisto"
-#: view/theme/vier/theme.php:202 src/Content/Widget.php:65
-msgid "Similar Interests"
-msgstr "Yhteiset harrastukset"
-
-#: view/theme/vier/theme.php:204 src/Content/Widget.php:67
-msgid "Invite Friends"
-msgstr "Kutsu kavereita"
-
-#: view/theme/vier/theme.php:256 src/Content/ForumManager.php:127
-msgid "External link to forum"
-msgstr "Ulkoinen linkki foorumiin"
-
#: view/theme/vier/theme.php:292
msgid "Quick Start"
msgstr "Pika-aloitus"
-#: src/Core/UserImport.php:104
-msgid "Error decoding account file"
-msgstr ""
+#: view/theme/duepuntozero/config.php:55
+msgid "greenzero"
+msgstr "greenzero"
-#: src/Core/UserImport.php:110
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Virhe: tiedostosta puuttuu versiotiedot! Saattaa olla että tämä ei ole Friendica -tilitiedosto?"
+#: view/theme/duepuntozero/config.php:56
+msgid "purplezero"
+msgstr "purplezero"
-#: src/Core/UserImport.php:118
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Käyttäjä '%s' on jo olemassa tällä palvelimella!"
+#: view/theme/duepuntozero/config.php:57
+msgid "easterbunny"
+msgstr "easterbunny"
-#: src/Core/UserImport.php:151
-msgid "User creation error"
-msgstr "Virhe käyttäjän luomisessa"
+#: view/theme/duepuntozero/config.php:58
+msgid "darkzero"
+msgstr "darkzero"
-#: src/Core/UserImport.php:169
-msgid "User profile creation error"
-msgstr "Virhe käyttäjäprofiilin luomisessa"
+#: view/theme/duepuntozero/config.php:59
+msgid "comix"
+msgstr "comix"
-#: src/Core/UserImport.php:213
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d kontakti ei tuotu"
-msgstr[1] "%d kontakteja ei tuotu"
+#: view/theme/duepuntozero/config.php:60
+msgid "slackr"
+msgstr "slackr"
-#: src/Core/UserImport.php:278
-msgid "Done. You can now login with your username and password"
-msgstr "Suoritettu. Voit nyt kirjautua sisään käyttäjätunnuksellasi."
-
-#: src/Core/ACL.php:295
-msgid "Post to Email"
-msgstr "Viesti sähköpostiin"
-
-#: src/Core/ACL.php:301
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Piilota profiilitietosi tuntemattomilta?"
-
-#: src/Core/ACL.php:300
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr ""
-
-#: src/Core/ACL.php:307
-msgid "Visible to everybody"
-msgstr "Näkyvissä kaikille"
-
-#: src/Core/ACL.php:319
-msgid "Close"
-msgstr "Sulje"
-
-#: src/Core/Console/NewPassword.php:78
-msgid "Enter new password: "
-msgstr ""
-
-#: src/Core/Console/NewPassword.php:83 src/Model/User.php:262
-msgid "Password can't be empty"
-msgstr ""
-
-#: src/Core/NotificationsManager.php:171
-msgid "System"
-msgstr "Järjestelmä"
-
-#: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124
-#: src/Content/Nav.php:181
-msgid "Home"
-msgstr "Koti"
-
-#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:186
-msgid "Introductions"
-msgstr "Esittelyt"
-
-#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s kommentoi julkaisuun jonka kirjoitti %s"
-
-#: src/Core/NotificationsManager.php:267
-#, php-format
-msgid "%s created a new post"
-msgstr "%s loi uuden julkaisun"
-
-#: src/Core/NotificationsManager.php:281
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s tykkäsi julkaisusta jonka kirjoitti %s"
-
-#: src/Core/NotificationsManager.php:294
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s ei tykännyt julkaisusta jonka kirjoitti %s"
-
-#: src/Core/NotificationsManager.php:307
-#, php-format
-msgid "%s is attending %s's event"
-msgstr ""
-
-#: src/Core/NotificationsManager.php:320
-#, php-format
-msgid "%s is not attending %s's event"
-msgstr ""
-
-#: src/Core/NotificationsManager.php:333
-#, php-format
-msgid "%s may attend %s's event"
-msgstr ""
-
-#: src/Core/NotificationsManager.php:350
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s ja %s ovat kavereita"
-
-#: src/Core/NotificationsManager.php:825
-msgid "Friend Suggestion"
-msgstr "Kaveriehdotus"
-
-#: src/Core/NotificationsManager.php:851
-msgid "Friend/Connect Request"
-msgstr "Ystävä/yhteyspyyntö"
-
-#: src/Core/NotificationsManager.php:851
-msgid "New Follower"
-msgstr "Uusi seuraaja"
-
-#: src/Util/Temporal.php:147 src/Model/Profile.php:760
-msgid "Birthday:"
-msgstr "Syntymäpäivä:"
-
-#: src/Util/Temporal.php:151
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "VVVV-KK-PP tai KK-PP"
-
-#: src/Util/Temporal.php:294
-msgid "never"
-msgstr "ei ikinä"
-
-#: src/Util/Temporal.php:300
-msgid "less than a second ago"
-msgstr "alle sekunti sitten"
-
-#: src/Util/Temporal.php:303
-msgid "year"
-msgstr "vuosi"
-
-#: src/Util/Temporal.php:303
-msgid "years"
-msgstr "vuotta"
-
-#: src/Util/Temporal.php:304
-msgid "months"
-msgstr "kuukautta"
-
-#: src/Util/Temporal.php:305
-msgid "weeks"
-msgstr "viikkoa"
-
-#: src/Util/Temporal.php:306
-msgid "days"
-msgstr "päivää"
-
-#: src/Util/Temporal.php:307
-msgid "hour"
-msgstr "tunti"
-
-#: src/Util/Temporal.php:307
-msgid "hours"
-msgstr "tuntia"
-
-#: src/Util/Temporal.php:308
-msgid "minute"
-msgstr "minuutti"
-
-#: src/Util/Temporal.php:308
-msgid "minutes"
-msgstr "inuuttia"
-
-#: src/Util/Temporal.php:309
-msgid "second"
-msgstr "sekunti"
-
-#: src/Util/Temporal.php:309
-msgid "seconds"
-msgstr "sekuntia"
-
-#: src/Util/Temporal.php:318
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s sitten"
-
-#: src/Content/Text/BBCode.php:555
-msgid "view full size"
-msgstr "näytä täysikokoisena"
-
-#: src/Content/Text/BBCode.php:981 src/Content/Text/BBCode.php:1750
-#: src/Content/Text/BBCode.php:1751
-msgid "Image/photo"
-msgstr "Kuva/valokuva"
-
-#: src/Content/Text/BBCode.php:1119
-#, php-format
-msgid "%2$s %3$s"
-msgstr ""
-
-#: src/Content/Text/BBCode.php:1677 src/Content/Text/BBCode.php:1699
-msgid "$1 wrote:"
-msgstr "$1 kirjoitti:"
-
-#: src/Content/Text/BBCode.php:1759 src/Content/Text/BBCode.php:1760
-msgid "Encrypted content"
-msgstr "Salattu sisältö"
-
-#: src/Content/Text/BBCode.php:1879
-msgid "Invalid source protocol"
-msgstr "Virheellinen lähdeprotokolla"
-
-#: src/Content/Text/BBCode.php:1890
-msgid "Invalid link protocol"
-msgstr "Virheellinen linkkiprotokolla"
-
-#: src/Content/Nav.php:53
-msgid "Nothing new here"
-msgstr ""
-
-#: src/Content/Nav.php:57
-msgid "Clear notifications"
-msgstr "Tyhjennä ilmoitukset"
-
-#: src/Content/Nav.php:105
-msgid "Personal notes"
-msgstr ""
-
-#: src/Content/Nav.php:105
-msgid "Your personal notes"
-msgstr ""
-
-#: src/Content/Nav.php:114
-msgid "Sign in"
-msgstr "Kirjaudu sisään"
-
-#: src/Content/Nav.php:124
-msgid "Home Page"
-msgstr "Kotisivu"
-
-#: src/Content/Nav.php:128
-msgid "Create an account"
-msgstr "Luo tili"
-
-#: src/Content/Nav.php:134
-msgid "Help and documentation"
-msgstr "Ohjeet ja dokmentointi"
-
-#: src/Content/Nav.php:138
-msgid "Apps"
-msgstr "Sovellukset"
-
-#: src/Content/Nav.php:138
-msgid "Addon applications, utilities, games"
-msgstr "Lisäosa sovelluksia, apuohjelmia, pelejä"
-
-#: src/Content/Nav.php:142
-msgid "Search site content"
-msgstr "Sivustohaku"
-
-#: src/Content/Nav.php:165
-msgid "Community"
-msgstr "Yhteisö"
-
-#: src/Content/Nav.php:165
-msgid "Conversations on this and other servers"
-msgstr ""
-
-#: src/Content/Nav.php:172
-msgid "Directory"
-msgstr "Luettelo"
-
-#: src/Content/Nav.php:172
-msgid "People directory"
-msgstr ""
-
-#: src/Content/Nav.php:174
-msgid "Information about this friendica instance"
-msgstr "Lisätietoja tästä Friendica -instanssista"
-
-#: src/Content/Nav.php:179
-msgid "Network Reset"
-msgstr "Verkon nollaus"
-
-#: src/Content/Nav.php:179
-msgid "Load Network page with no filters"
-msgstr ""
-
-#: src/Content/Nav.php:186
-msgid "Friend Requests"
-msgstr "Kaveripyynnöt"
-
-#: src/Content/Nav.php:190
-msgid "See all notifications"
-msgstr "Näytä kaikki ilmoitukset"
-
-#: src/Content/Nav.php:191
-msgid "Mark all system notifications seen"
-msgstr ""
-
-#: src/Content/Nav.php:196
-msgid "Inbox"
-msgstr "Saapuneet"
-
-#: src/Content/Nav.php:197
-msgid "Outbox"
-msgstr "Lähtevät"
-
-#: src/Content/Nav.php:201
-msgid "Manage"
-msgstr "Hallitse"
-
-#: src/Content/Nav.php:201
-msgid "Manage other pages"
-msgstr "Hallitse muita sivuja"
-
-#: src/Content/Nav.php:209 src/Model/Profile.php:372
-msgid "Profiles"
-msgstr "Profiilit"
-
-#: src/Content/Nav.php:209
-msgid "Manage/Edit Profiles"
-msgstr "Hallitse/muokka profiilit"
-
-#: src/Content/Nav.php:217
-msgid "Site setup and configuration"
-msgstr "Sivuston asennus ja asetukset"
-
-#: src/Content/Nav.php:220
-msgid "Navigation"
-msgstr "Navigointi"
-
-#: src/Content/Nav.php:220
-msgid "Site map"
-msgstr "Sivustokartta"
-
-#: src/Content/Feature.php:79
-msgid "General Features"
-msgstr "Yleiset ominaisuudet"
-
-#: src/Content/Feature.php:81
-msgid "Multiple Profiles"
-msgstr ""
-
-#: src/Content/Feature.php:81
-msgid "Ability to create multiple profiles"
-msgstr ""
-
-#: src/Content/Feature.php:82
-msgid "Photo Location"
-msgstr "Kuvan sijainti"
-
-#: src/Content/Feature.php:82
-msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present)"
-" prior to stripping metadata and links it to a map."
-msgstr ""
-
-#: src/Content/Feature.php:83
-msgid "Export Public Calendar"
-msgstr "Vie julkinen kalenteri"
-
-#: src/Content/Feature.php:83
-msgid "Ability for visitors to download the public calendar"
-msgstr ""
-
-#: src/Content/Feature.php:88
-msgid "Post Composition Features"
-msgstr ""
-
-#: src/Content/Feature.php:89
-msgid "Post Preview"
-msgstr "Viestin esikatselu"
-
-#: src/Content/Feature.php:89
-msgid "Allow previewing posts and comments before publishing them"
-msgstr ""
-
-#: src/Content/Feature.php:90
-msgid "Auto-mention Forums"
-msgstr ""
-
-#: src/Content/Feature.php:90
-msgid ""
-"Add/remove mention when a forum page is selected/deselected in ACL window."
-msgstr ""
-
-#: src/Content/Feature.php:95
-msgid "Network Sidebar Widgets"
-msgstr ""
-
-#: src/Content/Feature.php:96
-msgid "Search by Date"
-msgstr "Päivämäärähaku"
-
-#: src/Content/Feature.php:96
-msgid "Ability to select posts by date ranges"
-msgstr ""
-
-#: src/Content/Feature.php:97 src/Content/Feature.php:127
-msgid "List Forums"
-msgstr "Näytä foorumit"
-
-#: src/Content/Feature.php:97
-msgid "Enable widget to display the forums your are connected with"
-msgstr ""
-
-#: src/Content/Feature.php:98
-msgid "Group Filter"
-msgstr "Ryhmäsuodatin"
-
-#: src/Content/Feature.php:98
-msgid "Enable widget to display Network posts only from selected group"
-msgstr ""
-
-#: src/Content/Feature.php:99
-msgid "Network Filter"
-msgstr "Verkkosuodatin"
-
-#: src/Content/Feature.php:99
-msgid "Enable widget to display Network posts only from selected network"
-msgstr ""
-
-#: src/Content/Feature.php:100
-msgid "Save search terms for re-use"
-msgstr ""
-
-#: src/Content/Feature.php:105
-msgid "Network Tabs"
-msgstr ""
-
-#: src/Content/Feature.php:106
-msgid "Network Personal Tab"
-msgstr ""
-
-#: src/Content/Feature.php:106
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr ""
-
-#: src/Content/Feature.php:107
-msgid "Network New Tab"
-msgstr ""
-
-#: src/Content/Feature.php:107
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr ""
-
-#: src/Content/Feature.php:108
-msgid "Network Shared Links Tab"
-msgstr ""
-
-#: src/Content/Feature.php:108
-msgid "Enable tab to display only Network posts with links in them"
-msgstr ""
-
-#: src/Content/Feature.php:113
-msgid "Post/Comment Tools"
-msgstr "Julkaisu/kommentti työkalut"
-
-#: src/Content/Feature.php:114
-msgid "Multiple Deletion"
-msgstr ""
-
-#: src/Content/Feature.php:114
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Valitse ja poista monta julkaisua/kommentia yhtaikaa"
-
-#: src/Content/Feature.php:115
-msgid "Edit Sent Posts"
-msgstr "Muokkaa lähetetyt julkaisut"
-
-#: src/Content/Feature.php:115
-msgid "Edit and correct posts and comments after sending"
-msgstr "Muokkaa ja korjaa julkaisuja ja kommenteja julkaisun jälkeen"
-
-#: src/Content/Feature.php:116
-msgid "Tagging"
-msgstr "Tunnisteet"
-
-#: src/Content/Feature.php:116
-msgid "Ability to tag existing posts"
-msgstr ""
-
-#: src/Content/Feature.php:117
-msgid "Post Categories"
-msgstr "Julkaisuluokat"
-
-#: src/Content/Feature.php:117
-msgid "Add categories to your posts"
-msgstr "Luokittele julkaisusi"
-
-#: src/Content/Feature.php:118 src/Content/Widget.php:200
-msgid "Saved Folders"
-msgstr "Tallennetut kansiot"
-
-#: src/Content/Feature.php:118
-msgid "Ability to file posts under folders"
-msgstr ""
-
-#: src/Content/Feature.php:119
-msgid "Dislike Posts"
-msgstr ""
-
-#: src/Content/Feature.php:119
-msgid "Ability to dislike posts/comments"
-msgstr ""
-
-#: src/Content/Feature.php:120
-msgid "Star Posts"
-msgstr "Tähtimerkityt julkaisut"
-
-#: src/Content/Feature.php:120
-msgid "Ability to mark special posts with a star indicator"
-msgstr ""
-
-#: src/Content/Feature.php:121
-msgid "Mute Post Notifications"
-msgstr "Mykistä julkaisuilmoitukset"
-
-#: src/Content/Feature.php:121
-msgid "Ability to mute notifications for a thread"
-msgstr ""
-
-#: src/Content/Feature.php:126
-msgid "Advanced Profile Settings"
-msgstr "Profiilin lisäasetukset"
-
-#: src/Content/Feature.php:127
-msgid "Show visitors public community forums at the Advanced Profile Page"
-msgstr ""
-
-#: src/Content/Feature.php:128
-msgid "Tag Cloud"
-msgstr "Tunnistepilvi"
-
-#: src/Content/Feature.php:128
-msgid "Provide a personal tag cloud on your profile page"
-msgstr ""
-
-#: src/Content/Feature.php:129
-msgid "Display Membership Date"
-msgstr "Näytä liittymispäivämäärä"
-
-#: src/Content/Feature.php:129
-msgid "Display membership date in profile"
-msgstr "Näytä liittymispäivämäärä profiilissa"
-
-#: src/Content/OEmbed.php:253
-msgid "Embedding disabled"
-msgstr "Upottaminen poistettu käytöstä"
-
-#: src/Content/OEmbed.php:373
-msgid "Embedded content"
-msgstr "Upotettu sisältö"
-
-#: src/Content/Widget/CalendarExport.php:61
-msgid "Export"
-msgstr "Vie"
-
-#: src/Content/Widget/CalendarExport.php:62
-msgid "Export calendar as ical"
-msgstr "Vie kalenteri ical -tiedostona"
-
-#: src/Content/Widget/CalendarExport.php:63
-msgid "Export calendar as csv"
-msgstr "Vie kalenteri csv-tiedostona"
-
-#: src/Content/Widget.php:33
-msgid "Add New Contact"
-msgstr "Lisää uusi kontakti"
-
-#: src/Content/Widget.php:34
-msgid "Enter address or web location"
-msgstr "Syötä verkko-osoite"
-
-#: src/Content/Widget.php:35
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Esimerkki: bob@example.com, http://example.com/barbara"
-
-#: src/Content/Widget.php:53
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d kutsu saatavilla"
-msgstr[1] "%d kutsuja saatavilla"
-
-#: src/Content/Widget.php:59
-msgid "Find People"
-msgstr "Löydä ihmisiä"
-
-#: src/Content/Widget.php:60
-msgid "Enter name or interest"
-msgstr "Syötä nimi tai harrastus"
-
-#: src/Content/Widget.php:62
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Esim. Matti Meikäläinen, kalastus yms."
-
-#: src/Content/Widget.php:66
-msgid "Random Profile"
-msgstr "Satunnainen profiili"
-
-#: src/Content/Widget.php:68
-msgid "View Global Directory"
-msgstr "Katso maailmanlaajuista luetteloa"
-
-#: src/Content/Widget.php:159
-msgid "Networks"
-msgstr "Verkot"
-
-#: src/Content/Widget.php:162
-msgid "All Networks"
-msgstr "Kaikki verkot"
-
-#: src/Content/Widget.php:203 src/Content/Widget.php:243
-msgid "Everything"
-msgstr "Kaikki"
-
-#: src/Content/Widget.php:240
-msgid "Categories"
-msgstr "Luokat"
-
-#: src/Content/Widget.php:307
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d yhteinen kontakti"
-msgstr[1] "%d yhteistä kontaktia"
-
-#: src/Content/ContactSelector.php:55
-msgid "Frequently"
-msgstr "Usein"
-
-#: src/Content/ContactSelector.php:56
-msgid "Hourly"
-msgstr "Tunneittain"
-
-#: src/Content/ContactSelector.php:57
-msgid "Twice daily"
-msgstr "Kahdesti päivässä"
-
-#: src/Content/ContactSelector.php:58
-msgid "Daily"
-msgstr "Päivittäin"
-
-#: src/Content/ContactSelector.php:59
-msgid "Weekly"
-msgstr "Viikottain"
-
-#: src/Content/ContactSelector.php:60
-msgid "Monthly"
-msgstr "Kuukausittain"
-
-#: src/Content/ContactSelector.php:80
-msgid "OStatus"
-msgstr "OStatus"
-
-#: src/Content/ContactSelector.php:81
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
-
-#: src/Content/ContactSelector.php:84
-msgid "Facebook"
-msgstr "Facebook"
-
-#: src/Content/ContactSelector.php:85
-msgid "Zot!"
-msgstr "Zot!"
-
-#: src/Content/ContactSelector.php:86
-msgid "LinkedIn"
-msgstr "LinkedIn"
-
-#: src/Content/ContactSelector.php:87
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
-
-#: src/Content/ContactSelector.php:88
-msgid "MySpace"
-msgstr "MySpace"
-
-#: src/Content/ContactSelector.php:89
-msgid "Google+"
-msgstr "Google+"
-
-#: src/Content/ContactSelector.php:90
-msgid "pump.io"
-msgstr "pump.io"
-
-#: src/Content/ContactSelector.php:91
-msgid "Twitter"
-msgstr "Twitter"
-
-#: src/Content/ContactSelector.php:92
-msgid "Diaspora Connector"
-msgstr "Diaspora -liitin"
-
-#: src/Content/ContactSelector.php:93
-msgid "GNU Social Connector"
-msgstr "GNU social -liitin"
-
-#: src/Content/ContactSelector.php:94
-msgid "pnut"
-msgstr "pnut"
-
-#: src/Content/ContactSelector.php:95
-msgid "App.net"
-msgstr "App.net"
-
-#: src/Content/ContactSelector.php:125
-msgid "Male"
-msgstr "Mies"
-
-#: src/Content/ContactSelector.php:125
-msgid "Female"
-msgstr "Nainen"
-
-#: src/Content/ContactSelector.php:125
-msgid "Currently Male"
-msgstr "Tällä hetkellä mies"
-
-#: src/Content/ContactSelector.php:125
-msgid "Currently Female"
-msgstr "Tällä hetkellä nainen"
-
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Male"
-msgstr "Enimmäkseen mies"
-
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Female"
-msgstr "Enimmäkseen nainen"
-
-#: src/Content/ContactSelector.php:125
-msgid "Transgender"
-msgstr "Transsukupuolinen"
-
-#: src/Content/ContactSelector.php:125
-msgid "Intersex"
-msgstr "Intersukupuolinen"
-
-#: src/Content/ContactSelector.php:125
-msgid "Transsexual"
-msgstr "Transsukupuolinen"
-
-#: src/Content/ContactSelector.php:125
-msgid "Hermaphrodite"
-msgstr "Hermafrodiitti"
-
-#: src/Content/ContactSelector.php:125
-msgid "Neuter"
-msgstr "Neutri"
-
-#: src/Content/ContactSelector.php:125
-msgid "Non-specific"
-msgstr "Ei-binäärinen"
-
-#: src/Content/ContactSelector.php:125
-msgid "Other"
-msgstr "Toinen"
-
-#: src/Content/ContactSelector.php:147
-msgid "Males"
-msgstr "Miehet"
-
-#: src/Content/ContactSelector.php:147
-msgid "Females"
-msgstr "Naiset"
-
-#: src/Content/ContactSelector.php:147
-msgid "Gay"
-msgstr "Homo"
-
-#: src/Content/ContactSelector.php:147
-msgid "Lesbian"
-msgstr "Lesbo"
-
-#: src/Content/ContactSelector.php:147
-msgid "No Preference"
-msgstr ""
-
-#: src/Content/ContactSelector.php:147
-msgid "Bisexual"
-msgstr "Biseksuaali"
-
-#: src/Content/ContactSelector.php:147
-msgid "Autosexual"
-msgstr ""
-
-#: src/Content/ContactSelector.php:147
-msgid "Abstinent"
-msgstr "Selibaatissa elävä"
-
-#: src/Content/ContactSelector.php:147
-msgid "Virgin"
-msgstr "Neitsyt"
-
-#: src/Content/ContactSelector.php:147
-msgid "Deviant"
-msgstr ""
-
-#: src/Content/ContactSelector.php:147
-msgid "Fetish"
-msgstr ""
-
-#: src/Content/ContactSelector.php:147
-msgid "Oodles"
-msgstr ""
-
-#: src/Content/ContactSelector.php:147
-msgid "Nonsexual"
-msgstr "Aseksuaali"
-
-#: src/Content/ContactSelector.php:169
-msgid "Single"
-msgstr "Sinkku"
-
-#: src/Content/ContactSelector.php:169
-msgid "Lonely"
-msgstr "Yksinäinen"
-
-#: src/Content/ContactSelector.php:169
-msgid "Available"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Unavailable"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Has crush"
-msgstr "Ihastunut"
-
-#: src/Content/ContactSelector.php:169
-msgid "Infatuated"
-msgstr "Hullaantunut"
-
-#: src/Content/ContactSelector.php:169
-msgid "Dating"
-msgstr "Seurustelee"
-
-#: src/Content/ContactSelector.php:169
-msgid "Unfaithful"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Sex Addict"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169 src/Model/User.php:519
-msgid "Friends"
-msgstr "Kaverit"
-
-#: src/Content/ContactSelector.php:169
-msgid "Friends/Benefits"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Casual"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Engaged"
-msgstr "Kihloissa"
-
-#: src/Content/ContactSelector.php:169
-msgid "Married"
-msgstr "Naimisissa"
-
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily married"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Partners"
-msgstr "Kumppanit"
-
-#: src/Content/ContactSelector.php:169
-msgid "Cohabiting"
-msgstr "Avoliitossa"
-
-#: src/Content/ContactSelector.php:169
-msgid "Common law"
-msgstr "Avoliitossa"
-
-#: src/Content/ContactSelector.php:169
-msgid "Happy"
-msgstr "Iloinen"
-
-#: src/Content/ContactSelector.php:169
-msgid "Not looking"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Swinger"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Betrayed"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Separated"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Unstable"
-msgstr "Epävakaa"
-
-#: src/Content/ContactSelector.php:169
-msgid "Divorced"
-msgstr "Eronnut"
-
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily divorced"
-msgstr ""
-
-#: src/Content/ContactSelector.php:169
-msgid "Widowed"
-msgstr "Leski"
-
-#: src/Content/ContactSelector.php:169
-msgid "Uncertain"
-msgstr "Epävarma"
-
-#: src/Content/ContactSelector.php:169
-msgid "It's complicated"
-msgstr "Se on monimutkaista"
-
-#: src/Content/ContactSelector.php:169
-msgid "Don't care"
-msgstr "Ei ole väliä"
-
-#: src/Content/ContactSelector.php:169
-msgid "Ask me"
-msgstr "Kysy minulta"
-
-#: src/Database/DBStructure.php:32
-msgid "There are no tables on MyISAM."
-msgstr ""
-
-#: src/Database/DBStructure.php:75
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr ""
-
-#: src/Database/DBStructure.php:80
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Virheviesti on\n[pre]%s[/pre]"
-
-#: src/Database/DBStructure.php:191
-#, php-format
-msgid ""
-"\n"
-"Error %d occurred during database update:\n"
-"%s\n"
-msgstr "\n%d virhe tapahtui tietokannan päivityksen aikana:\n%s\n"
-
-#: src/Database/DBStructure.php:194
-msgid "Errors encountered performing database changes: "
-msgstr "Tietokannan muokkauksessa tapahtui virheitä:"
-
-#: src/Database/DBStructure.php:210
-msgid ": Database update"
-msgstr ": Tietokannan päivitys"
-
-#: src/Database/DBStructure.php:460
-#, php-format
-msgid "%s: updating %s table."
-msgstr ""
-
-#: src/Model/Mail.php:40 src/Model/Mail.php:174
-msgid "[no subject]"
-msgstr "[ei aihetta]"
-
-#: src/Model/Item.php:1676
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
-
-#: src/Model/Item.php:1681
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s"
-
-#: src/Model/Item.php:1686
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s ehkä osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
-
-#: src/Model/Contact.php:657
-msgid "Drop Contact"
-msgstr "Poista kontakti"
-
-#: src/Model/Contact.php:1060
-msgid "Organisation"
-msgstr "Järjestö"
-
-#: src/Model/Contact.php:1063
-msgid "News"
-msgstr "Uutiset"
-
-#: src/Model/Contact.php:1066
-msgid "Forum"
-msgstr "Keskustelupalsta"
-
-#: src/Model/Contact.php:1245
-msgid "Connect URL missing."
-msgstr "Yhteys URL-linkki puuttuu."
-
-#: src/Model/Contact.php:1254
-msgid ""
-"The contact could not be added. Please check the relevant network "
-"credentials in your Settings -> Social Networks page."
-msgstr ""
-
-#: src/Model/Contact.php:1301
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr ""
-
-#: src/Model/Contact.php:1302 src/Model/Contact.php:1316
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr ""
-
-#: src/Model/Contact.php:1314
-msgid "The profile address specified does not provide adequate information."
-msgstr ""
-
-#: src/Model/Contact.php:1319
-msgid "An author or name was not found."
-msgstr ""
-
-#: src/Model/Contact.php:1322
-msgid "No browser URL could be matched to this address."
-msgstr ""
-
-#: src/Model/Contact.php:1325
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr ""
-
-#: src/Model/Contact.php:1326
-msgid "Use mailto: in front of address to force email check."
-msgstr ""
-
-#: src/Model/Contact.php:1332
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr ""
-
-#: src/Model/Contact.php:1337
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr ""
-
-#: src/Model/Contact.php:1388
-msgid "Unable to retrieve contact information."
-msgstr ""
-
-#: src/Model/Contact.php:1605
-#, php-format
-msgid "%s's birthday"
-msgstr "%s: syntymäpäivä"
-
-#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Hyvää syntymäpäivää %s"
-
-#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
-#: src/Model/Event.php:882
-msgid "Starts:"
-msgstr "Alkaa:"
-
-#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420
-#: src/Model/Event.php:886
-msgid "Finishes:"
-msgstr "Päättyy:"
-
-#: src/Model/Event.php:368
-msgid "all-day"
-msgstr "koko päivä"
-
-#: src/Model/Event.php:391
-msgid "Jun"
-msgstr "Kes."
-
-#: src/Model/Event.php:394
-msgid "Sept"
-msgstr "Syy."
-
-#: src/Model/Event.php:417
-msgid "No events to display"
-msgstr "Ei näytettäviä tapahtumia."
-
-#: src/Model/Event.php:543
-msgid "l, F j"
-msgstr "l, F j"
-
-#: src/Model/Event.php:566
-msgid "Edit event"
-msgstr "Muokkaa tapahtumaa"
-
-#: src/Model/Event.php:567
-msgid "Duplicate event"
-msgstr "Monista tapahtuma"
-
-#: src/Model/Event.php:568
-msgid "Delete event"
-msgstr "Poista tapahtuma"
-
-#: src/Model/Event.php:815
-msgid "D g:i A"
-msgstr ""
-
-#: src/Model/Event.php:816
-msgid "g:i A"
-msgstr ""
-
-#: src/Model/Event.php:901 src/Model/Event.php:903
-msgid "Show map"
-msgstr "Näytä kartta"
-
-#: src/Model/Event.php:902
-msgid "Hide map"
-msgstr "Piilota kartta"
-
-#: src/Model/Group.php:44
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"may apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr ""
-
-#: src/Model/Group.php:341
-msgid "Default privacy group for new contacts"
-msgstr "Oletusryhmä uusille kontakteille"
-
-#: src/Model/Group.php:374
-msgid "Everybody"
-msgstr "Kaikki"
-
-#: src/Model/Group.php:394
-msgid "edit"
-msgstr "muokkaa"
-
-#: src/Model/Group.php:418
-msgid "Edit group"
-msgstr "Muokkaa ryhmää"
-
-#: src/Model/Group.php:419
-msgid "Contacts not in any group"
-msgstr "Kontaktit ilman ryhmää"
-
-#: src/Model/Group.php:420
-msgid "Create a new group"
-msgstr "Luo uusi ryhmä"
-
-#: src/Model/Group.php:422
-msgid "Edit groups"
-msgstr "Muokkaa ryhmiä"
-
-#: src/Model/Profile.php:97
-msgid "Requested account is not available."
-msgstr "Pyydetty käyttäjätili ei ole saatavilla."
-
-#: src/Model/Profile.php:168 src/Model/Profile.php:399
-#: src/Model/Profile.php:861
-msgid "Edit profile"
-msgstr "Muokkaa profiilia"
-
-#: src/Model/Profile.php:336
-msgid "Atom feed"
-msgstr "Atom -syöte"
-
-#: src/Model/Profile.php:372
-msgid "Manage/edit profiles"
-msgstr "Hallitse/muokkaa profiilit"
-
-#: src/Model/Profile.php:550 src/Model/Profile.php:643
-msgid "g A l F d"
-msgstr ""
-
-#: src/Model/Profile.php:551
-msgid "F d"
-msgstr ""
-
-#: src/Model/Profile.php:608 src/Model/Profile.php:705
-msgid "[today]"
-msgstr "[tänään]"
-
-#: src/Model/Profile.php:619
-msgid "Birthday Reminders"
-msgstr "Syntymäpäivämuistutukset"
-
-#: src/Model/Profile.php:620
-msgid "Birthdays this week:"
-msgstr "Syntymäpäiviä tällä viikolla:"
-
-#: src/Model/Profile.php:692
-msgid "[No description]"
-msgstr "[Ei kuvausta]"
-
-#: src/Model/Profile.php:719
-msgid "Event Reminders"
-msgstr "Tapahtumamuistutukset"
-
-#: src/Model/Profile.php:720
-msgid "Events this week:"
-msgstr "Tapahtumia tällä viikolla:"
-
-#: src/Model/Profile.php:743
-msgid "Member since:"
-msgstr "Liittymispäivämäärä:"
-
-#: src/Model/Profile.php:751
-msgid "j F, Y"
-msgstr ""
-
-#: src/Model/Profile.php:752
-msgid "j F"
-msgstr ""
-
-#: src/Model/Profile.php:767
-msgid "Age:"
-msgstr "Ikä:"
-
-#: src/Model/Profile.php:780
-#, php-format
-msgid "for %1$d %2$s"
-msgstr ""
-
-#: src/Model/Profile.php:804
-msgid "Religion:"
-msgstr "Uskonto:"
-
-#: src/Model/Profile.php:812
-msgid "Hobbies/Interests:"
-msgstr "Harrastukset:"
-
-#: src/Model/Profile.php:824
-msgid "Contact information and Social Networks:"
-msgstr "Yhteystiedot ja sosiaalinen media:"
-
-#: src/Model/Profile.php:828
-msgid "Musical interests:"
-msgstr "Musiikki:"
-
-#: src/Model/Profile.php:832
-msgid "Books, literature:"
-msgstr "Kirjat, kirjallisuus:"
-
-#: src/Model/Profile.php:836
-msgid "Television:"
-msgstr "Televisio:"
-
-#: src/Model/Profile.php:840
-msgid "Film/dance/culture/entertainment:"
-msgstr "Elokuvat/tanssit/kulttuuri/viihde:"
-
-#: src/Model/Profile.php:844
-msgid "Love/Romance:"
-msgstr "Rakkaus/romanssi:"
-
-#: src/Model/Profile.php:848
-msgid "Work/employment:"
-msgstr "Työ:"
-
-#: src/Model/Profile.php:852
-msgid "School/education:"
-msgstr "Koulutus:"
-
-#: src/Model/Profile.php:857
-msgid "Forums:"
-msgstr "Foorumit:"
-
-#: src/Model/Profile.php:951
-msgid "Only You Can See This"
-msgstr "Vain sinä näet tämän"
-
-#: src/Model/User.php:154
-msgid "Login failed"
-msgstr "Kirjautuminen epäonnistui"
-
-#: src/Model/User.php:185
-msgid "Not enough information to authenticate"
-msgstr ""
-
-#: src/Model/User.php:346
-msgid "An invitation is required."
-msgstr ""
-
-#: src/Model/User.php:350
-msgid "Invitation could not be verified."
-msgstr "Kutsua ei voitu vahvistaa."
-
-#: src/Model/User.php:357
-msgid "Invalid OpenID url"
-msgstr "Virheellinen OpenID url-osoite"
-
-#: src/Model/User.php:370 src/Module/Login.php:100
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr ""
-
-#: src/Model/User.php:370 src/Module/Login.php:100
-msgid "The error message was:"
-msgstr "Virheviesti oli:"
-
-#: src/Model/User.php:376
-msgid "Please enter the required information."
-msgstr "Syötä tarvittavat tiedot."
-
-#: src/Model/User.php:389
-msgid "Please use a shorter name."
-msgstr "Käytä lyhyempää nimeä."
-
-#: src/Model/User.php:392
-msgid "Name too short."
-msgstr "Nimi on liian lyhyt."
-
-#: src/Model/User.php:400
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr ""
-
-#: src/Model/User.php:405
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Sähköpostiosoitteesi verkkotunnus on tämän sivuston estolistalla."
-
-#: src/Model/User.php:409
-msgid "Not a valid email address."
-msgstr "Virheellinen sähköpostiosoite."
-
-#: src/Model/User.php:413 src/Model/User.php:421
-msgid "Cannot use that email."
-msgstr "Sähköpostiosoitetta ei voitu käyttää."
-
-#: src/Model/User.php:428
-msgid "Your nickname can only contain a-z, 0-9 and _."
-msgstr "Nimimerkki voi sisältää a-z, 0-9 ja _."
-
-#: src/Model/User.php:435 src/Model/User.php:491
-msgid "Nickname is already registered. Please choose another."
-msgstr "Valitsemasi nimimerkki on jo käytössä. Valitse toinen nimimerkki."
-
-#: src/Model/User.php:445
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "VAKAVA VIRHE: Salausavainten luominen epäonnistui."
-
-#: src/Model/User.php:478 src/Model/User.php:482
-msgid "An error occurred during registration. Please try again."
-msgstr "Rekisteröityminen epäonnistui. Yritä uudelleen."
-
-#: src/Model/User.php:507
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Oletusprofiilin luominen epäonnistui. Yritä uudelleen."
-
-#: src/Model/User.php:514
-msgid "An error occurred creating your self contact. Please try again."
-msgstr ""
-
-#: src/Model/User.php:523
-msgid ""
-"An error occurred creating your default contact group. Please try again."
-msgstr ""
-
-#: src/Model/User.php:597
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
-"\t\t"
-msgstr ""
-
-#: src/Model/User.php:607
-#, php-format
-msgid "Registration at %s"
-msgstr "Rekisteröityminen kohteessa %s"
-
-#: src/Model/User.php:625
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t\t"
-msgstr ""
-
-#: src/Model/User.php:629
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t\t%1$s\n"
-"\t\t\tPassword:\t\t%5$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\tIf you ever want to delete your account, you can do so at %3$s/removeme\n"
-"\n"
-"\t\t\tThank you and welcome to %2$s."
-msgstr ""
-
-#: src/Protocol/OStatus.php:1799
-#, php-format
-msgid "%s is now following %s."
-msgstr "%s seuraa %s."
-
-#: src/Protocol/OStatus.php:1800
-msgid "following"
-msgstr "seuraa"
-
-#: src/Protocol/OStatus.php:1803
-#, php-format
-msgid "%s stopped following %s."
-msgstr "%s ei enää seuraa %s."
-
-#: src/Protocol/OStatus.php:1804
-msgid "stopped following"
-msgstr "ei enää seuraa"
-
-#: src/Protocol/DFRN.php:1482
-#, php-format
-msgid "%s\\'s birthday"
-msgstr "%s\\ käyttäjän syntymäpäivä"
-
-#: src/Protocol/Diaspora.php:2680
-msgid "Sharing notification from Diaspora network"
-msgstr ""
-
-#: src/Protocol/Diaspora.php:3756
-msgid "Attachments:"
-msgstr "Liitteitä:"
-
-#: src/Worker/Delivery.php:390
-msgid "(no subject)"
-msgstr "(ei aihetta)"
-
-#: src/Module/Login.php:282
-msgid "Create a New Account"
-msgstr "Luo uusi käyttäjätili"
-
-#: src/Module/Login.php:315
-msgid "Password: "
-msgstr "Salasana:"
-
-#: src/Module/Login.php:316
-msgid "Remember me"
-msgstr "Muista minut"
-
-#: src/Module/Login.php:319
-msgid "Or login using OpenID: "
-msgstr "Kirjaudu sisään OpenID -tunnuksella:"
-
-#: src/Module/Login.php:325
-msgid "Forgot your password?"
-msgstr "Unohditko salasanasi?"
-
-#: src/Module/Login.php:328
-msgid "Website Terms of Service"
-msgstr "Verkkosivun käyttöehdot"
-
-#: src/Module/Login.php:329
-msgid "terms of service"
-msgstr "käyttöehdot"
-
-#: src/Module/Login.php:331
-msgid "Website Privacy Policy"
-msgstr "Sivuston tietosuojakäytäntö"
-
-#: src/Module/Login.php:332
-msgid "privacy policy"
-msgstr "tietosuojakäytäntö"
-
-#: src/Module/Logout.php:28
-msgid "Logged out."
-msgstr "Kirjautunut ulos."
-
-#: src/Module/Tos.php:51
-msgid "Privacy Statement"
-msgstr "Tietosuojalausunto"
-
-#: src/Module/Tos.php:52
-msgid ""
-"At the time of registration, and for providing communications between the "
-"user account and their contacts, the user has to provide a display name (pen"
-" name), an username (nickname) and a working email address. The names will "
-"be accessible on the profile page of the account by any visitor of the page,"
-" even if other profile details are not displayed. The email address will "
-"only be used to send the user notifications about interactions, but wont be "
-"visibly displayed. The listing of an account in the node's user directory or"
-" the global user directory is optional and can be controlled in the user "
-"settings, it is not necessary for communication."
-msgstr ""
-
-#: src/Module/Tos.php:53
-msgid ""
-"This data is required for communication and is passed on to the nodes of the"
-" communication partners. Users can enter additional private data that may be"
-" transmitted to the communication partners accounts."
-msgstr ""
-
-#: src/Module/Tos.php:54
-#, php-format
-msgid ""
-"At any point in time a logged in user can export their account data from the"
-" account settings . If the user wants "
-"to delete their account they can do so at %1$s/removeme . The deletion of the account will "
-"be permanent."
-msgstr ""
-
-#: src/Object/Post.php:128
-msgid "This entry was edited"
-msgstr "Tämä kohde oli muokattu"
-
-#: src/Object/Post.php:182
-msgid "save to folder"
-msgstr "tallenna kansioon"
-
-#: src/Object/Post.php:235
-msgid "I will attend"
-msgstr "Osallistun"
-
-#: src/Object/Post.php:235
-msgid "I will not attend"
-msgstr "En aio osallistua"
-
-#: src/Object/Post.php:235
-msgid "I might attend"
-msgstr "Ehkä osallistun"
-
-#: src/Object/Post.php:263
-msgid "add star"
-msgstr "lisää tähti"
-
-#: src/Object/Post.php:264
-msgid "remove star"
-msgstr "poista tähti"
-
-#: src/Object/Post.php:265
-msgid "toggle star status"
-msgstr "Tähtitila päälle/pois"
-
-#: src/Object/Post.php:268
-msgid "starred"
-msgstr "tähtimerkitty"
-
-#: src/Object/Post.php:274
-msgid "ignore thread"
-msgstr ""
-
-#: src/Object/Post.php:275
-msgid "unignore thread"
-msgstr ""
-
-#: src/Object/Post.php:276
-msgid "toggle ignore status"
-msgstr ""
-
-#: src/Object/Post.php:285
-msgid "add tag"
-msgstr "lisää tägi"
-
-#: src/Object/Post.php:296
-msgid "like"
-msgstr "tykkää"
-
-#: src/Object/Post.php:297
-msgid "dislike"
-msgstr "en tykkää"
-
-#: src/Object/Post.php:300
-msgid "Share this"
-msgstr "Jaa tämä"
-
-#: src/Object/Post.php:300
-msgid "share"
-msgstr "jaa"
-
-#: src/Object/Post.php:365
-msgid "to"
-msgstr ""
-
-#: src/Object/Post.php:366
-msgid "via"
-msgstr "kautta"
-
-#: src/Object/Post.php:367
-msgid "Wall-to-Wall"
-msgstr ""
-
-#: src/Object/Post.php:368
-msgid "via Wall-To-Wall:"
-msgstr ""
-
-#: src/Object/Post.php:427
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d kommentti"
-msgstr[1] "%d kommentteja"
-
-#: src/Object/Post.php:797
-msgid "Bold"
-msgstr "Lihavoitu"
-
-#: src/Object/Post.php:798
-msgid "Italic"
-msgstr "Kursivoitu"
-
-#: src/Object/Post.php:799
-msgid "Underline"
-msgstr "Alleviivaus"
-
-#: src/Object/Post.php:800
-msgid "Quote"
-msgstr "Lainaus"
-
-#: src/Object/Post.php:801
-msgid "Code"
-msgstr "Koodi"
-
-#: src/Object/Post.php:802
-msgid "Image"
-msgstr "Kuva"
-
-#: src/Object/Post.php:803
-msgid "Link"
-msgstr "Linkki"
-
-#: src/Object/Post.php:804
-msgid "Video"
-msgstr "Video"
-
-#: src/App.php:511
-msgid "Delete this item?"
-msgstr "Poista tämä kohde?"
-
-#: src/App.php:513
-msgid "show fewer"
-msgstr "näytä vähemmän"
-
-#: boot.php:795
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "%s päivitys epäonnistui, katso virhelokit."
+#: view/theme/duepuntozero/config.php:74
+msgid "Variations"
+msgstr "Muunnelmat"
#: index.php:472
msgid "toggle mobile"
diff --git a/view/lang/fi-fi/strings.php b/view/lang/fi-fi/strings.php
index 0dec51bee..89513a7e5 100644
--- a/view/lang/fi-fi/strings.php
+++ b/view/lang/fi-fi/strings.php
@@ -5,13 +5,7 @@ function string_plural_select_fi_fi($n){
return ($n != 1);;
}}
;
-$a->strings["Item not found."] = "Kohdetta ei löytynyt.";
-$a->strings["Do you really want to delete this item?"] = "Haluatko varmasti poistaa tämän kohteen?";
-$a->strings["Yes"] = "Kyllä";
-$a->strings["Cancel"] = "Peru";
-$a->strings["Permission denied."] = "Käyttöoikeus evätty.";
-$a->strings["Archives"] = "Arkisto";
-$a->strings["show more"] = "näytä lisää";
+$a->strings["Update %s failed. See error logs."] = "%s päivitys epäonnistui, katso virhelokit.";
$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [
0 => "Päivittäinen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.",
1 => "Päivittäinen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.",
@@ -22,6 +16,65 @@ $a->strings["Weekly posting limit of %d post reached. The post was rejected."] =
];
$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Kuukausittainen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.";
$a->strings["Profile Photos"] = "Profiilin valokuvat";
+$a->strings["Friendica Notification"] = "Friendica-huomautus";
+$a->strings["Thank You,"] = "Kiitos,";
+$a->strings["%s Administrator"] = "%s Ylläpitäjä";
+$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Ylläpitäjä";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Uusi viesti, katso %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s lähetti sinulle uuden yksityisviestin kohteessa %2\$s.";
+$a->strings["a private message"] = "yksityisviesti";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s lähetti sinulle %2\$s.";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Katso yksityisviestisi kohteessa %s.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] %2\$s kommentoi keskustelussa #%1\$d";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s kommentoi kohteessa/keskustelussa jota seuraat.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s kirjoitti profiiliseinällesi";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s kirjoitti seinällesi kohteessa %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s kirjoitti [url=%2\$s]seinällesi[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s merkitsi sinut";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s merkitsi sinut kohteessa %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]merkitsi sinut[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s jakoi uuden julkaisun";
+$a->strings["%1\$s shared a new post at %2\$s"] = "";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]jakoi julkaisun[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s tökkäsi sinua.";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s tökkäsi sinua kohteessa %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]tökkasi sinua[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s merkitsi julkaisusi";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s merkitsi julkaisusi kohteessa %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s merkitsi [url=%2\$s]julkaisusi[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Esittely vastaanotettu";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Olet vastaanottanut kaverikutsun henkilöltä '%1\$s' kohteessa %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Olet vastaanottanut [url=%1\$s]kaverikutsun[/url] henkilöltä %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Voit vierailla hänen profiilissaan kohteessa %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Hyväksy tai hylkää esittely %s-sivustossa";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notify] Uusi henkilö jakaa päivityksensä kanssasi";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s jakaa päivityksensä kanssasi kohteessa %2\$s";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notify] Sinulla on uusi seuraaja";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "Sinulla on uusi seuraaja sivustolla %2\$s : %1\$s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Kaveripyyntö vastaanotettu";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Sait kaverikutsun henkilöltä '%1\$s' (%2\$s)";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
+$a->strings["Name:"] = "Nimi:";
+$a->strings["Photo:"] = "Kuva:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Hyväksy tai hylkää ehdotus %s-sivustossa";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notify] Yhteys hyväksytty";
+$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' on hyväksynyt kaverikutsusi kohteessa %2\$s";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hyväksyi [url=%1\$s]kaverikutsusi[/url].";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Olette nyt yhteiset ystävät ja voitte lähettää toisillenne tilapäivityksiä, kuvia ja sähköposteja ilman rajoituksia.";
+$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta.";
+$a->strings["'%1\$s' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' voi halutessaan laajentaa suhteenne kahdenväliseksi.";
+$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta.";
+$a->strings["[Friendica System Notify]"] = "[Friendica Järjestelmäilmoitus]";
+$a->strings["registration request"] = "rekisteröintipyyntö";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Olet vastaanottanut rekisteröintipyynnön henkilöltä '%1\$s' kohteessa %2\$s";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Olet vastaanottanut [url=%1\$s]rekisteröintipyynnön[/url] henkilöltä %2\$s.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Koko nimi:\t%1\$s\\nSivusto:\t%2\$s\\nKäyttäjätunnus:\t%3\$s (%4\$s)";
+$a->strings["Please visit %s to approve or reject the request."] = "Hyväksy tai hylkää pyyntö %s-sivustossa.";
$a->strings["event"] = "tapahtuma";
$a->strings["status"] = "tila";
$a->strings["photo"] = "kuva";
@@ -48,7 +101,7 @@ $a->strings["Delete"] = "Poista";
$a->strings["View %s's profile @ %s"] = "Katso %s-henkilön profiilia @ %s";
$a->strings["Categories:"] = "Luokat:";
$a->strings["Filed under:"] = "Arkistoitu kansioon:";
-$a->strings["%s from %s"] = "";
+$a->strings["%s from %s"] = "%s sovelluksesta %s";
$a->strings["View in context"] = "Näytä kontekstissa";
$a->strings["Please wait"] = "Odota";
$a->strings["remove"] = "poista";
@@ -109,6 +162,7 @@ $a->strings["Permission settings"] = "Käyttöoikeusasetukset";
$a->strings["permissions"] = "käyttöoikeudet";
$a->strings["Public post"] = "Julkinen viesti";
$a->strings["Preview"] = "Esikatselu";
+$a->strings["Cancel"] = "Peru";
$a->strings["Post to Groups"] = "Lähetä ryhmiin";
$a->strings["Post to Contacts"] = "Lähetä kontakteille";
$a->strings["Private post"] = "Yksityinen julkaisu";
@@ -132,65 +186,6 @@ $a->strings["Undecided"] = [
1 => "En ole varma",
];
$a->strings["Cannot locate DNS info for database server '%s'"] = "'%s' tietokantapalvelimen DNS-tieto ei löydy";
-$a->strings["Friendica Notification"] = "Friendica-huomautus";
-$a->strings["Thank You,"] = "Kiitos,";
-$a->strings["%s Administrator"] = "%s Ylläpitäjä";
-$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Ylläpitäjä";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Uusi viesti, katso %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s lähetti sinulle uuden yksityisviestin kohteessa %2\$s.";
-$a->strings["a private message"] = "yksityisviesti";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s lähetti sinulle %2\$s.";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Katso yksityisviestisi kohteessa %s.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] %2\$s kommentoi keskustelussa #%1\$d";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s kommentoi kohteessa/keskustelussa jota seuraat.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s kirjoitti profiiliseinällesi";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s kirjoitti seinällesi kohteessa %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s kirjoitti [url=%2\$s]seinällesi[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s merkitsi sinut";
-$a->strings["%1\$s tagged you at %2\$s"] = "";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]merkitsi sinut[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s jakoi uuden julkaisun";
-$a->strings["%1\$s shared a new post at %2\$s"] = "";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]jakoi julkaisun[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s tökkäsi sinua.";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s tökkäsi sinua kohteessa %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]tökkasi sinua[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s merkitsi julkaisusi";
-$a->strings["%1\$s tagged your post at %2\$s"] = "";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s merkitsi [url=%2\$s]julkaisusi[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Esittely vastaanotettu";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "";
-$a->strings["You may visit their profile at %s"] = "Voit vierailla hänen profiilissaan kohteessa %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Hyväksy tai hylkää esittely %s-sivustossa";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "";
-$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notify] Sinulla on uusi seuraaja";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "Sinulla on uusi seuraaja sivustolla %2\$s : %1\$s";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Kaveripyyntö vastaanotettu";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Sait kaverikutsun henkilöltä '%1\$s' (%2\$s)";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
-$a->strings["Name:"] = "Nimi:";
-$a->strings["Photo:"] = "Kuva:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Hyväksy tai hylkää ehdotus %s-sivustossa";
-$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notify] Yhteys hyväksytty";
-$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' on hyväksynyt kaverikutsusi kohteessa %2\$s";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hyväksyi [url=%1\$s]kaverikutsusi[/url].";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Olette nyt yhteiset ystävät ja voitte lähettää toisillenne tilapäivityksiä, kuvia ja sähköposteja ilman rajoituksia.";
-$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta.";
-$a->strings["'%1\$s' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' voi halutessaan laajentaa suhteenne kahdenväliseksi.";
-$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta.";
-$a->strings["[Friendica System Notify]"] = "[Friendica Järjestelmäilmoitus]";
-$a->strings["registration request"] = "rekisteröintipyyntö";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Olet vastaanottanut rekisteröintipyynnön henkilöltä '%1\$s' kohteessa %2\$s";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Olet vastaanottanut [url=%1\$s]rekisteröintipyynnön[/url] henkilöltä %2\$s.";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "";
-$a->strings["Please visit %s to approve or reject the request."] = "Hyväksy tai hylkää pyyntö %s-sivustossa.";
$a->strings["Welcome "] = "Tervetuloa";
$a->strings["Please upload a profile photo."] = "Lataa profiilikuva.";
$a->strings["Welcome back "] = "Tervetuloa takaisin";
@@ -279,104 +274,567 @@ $a->strings["comment"] = [
];
$a->strings["post"] = "julkaisu";
$a->strings["Item filed"] = "Kohde arkistoitu";
-$a->strings["No friends to display."] = "Ei näytettäviä kavereita.";
+$a->strings["Item not found."] = "Kohdetta ei löytynyt.";
+$a->strings["Do you really want to delete this item?"] = "Haluatko varmasti poistaa tämän kohteen?";
+$a->strings["Yes"] = "Kyllä";
+$a->strings["Permission denied."] = "Käyttöoikeus evätty.";
+$a->strings["Archives"] = "Arkisto";
+$a->strings["show more"] = "näytä lisää";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s osallistuu tapahtumaan %3\$s, jonka järjestää %2\$s";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ei osallistu tapahtumaan %3\$s, jonka järjestää %2\$s";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s ehkä osallistuu tapahtumaan %3\$s, jonka järjestää %2\$s";
+$a->strings["Drop Contact"] = "Poista kontakti";
+$a->strings["Organisation"] = "Järjestö";
+$a->strings["News"] = "Uutiset";
+$a->strings["Forum"] = "Keskustelupalsta";
+$a->strings["Disallowed profile URL."] = "Kielletty profiiliosoite.";
+$a->strings["Blocked domain"] = "Estetty verkkotunnus";
+$a->strings["Connect URL missing."] = "Yhteys URL-linkki puuttuu.";
+$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "";
+$a->strings["This site is not configured to allow communications with other networks."] = "";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Yhteensopivia viestintäprotokolleja tai syötteitä ei löytynyt.";
+$a->strings["The profile address specified does not provide adequate information."] = "Annettu profiiliosoite ei sisällä riittävästi tietoa.";
+$a->strings["An author or name was not found."] = "";
+$a->strings["No browser URL could be matched to this address."] = "";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "";
+$a->strings["Use mailto: in front of address to force email check."] = "";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "";
+$a->strings["Unable to retrieve contact information."] = "Kontaktin tietoja ei voitu hakea.";
+$a->strings["[Name Withheld]"] = "[Nimi jätetty pois]";
+$a->strings["%s's birthday"] = "%s: syntymäpäivä";
+$a->strings["Happy Birthday %s"] = "Hyvää syntymäpäivää %s";
+$a->strings["[no subject]"] = "[ei aihetta]";
+$a->strings["Requested account is not available."] = "Pyydetty käyttäjätili ei ole saatavilla.";
+$a->strings["Requested profile is not available."] = "Pyydettyä profiilia ei saatavilla.";
+$a->strings["Edit profile"] = "Muokkaa profiilia";
$a->strings["Connect"] = "Yhdistä";
-$a->strings["Authorize application connection"] = "Vahvista sovellusyhteys";
-$a->strings["Return to your app and insert this Securty Code:"] = "Palaa takaisin sovellukseen ja lisää tämä turvakoodi:";
-$a->strings["Please login to continue."] = "Ole hyvä ja kirjaudu jatkaaksesi.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Haluatko antaa tälle sovellukselle luvan hakea viestejäsi ja yhteystietojasi ja/tai luoda uusia viestejä?";
-$a->strings["No"] = "Ei";
-$a->strings["You must be logged in to use addons. "] = "Sinun pitää kirjautua sisään, jotta voit käyttää lisäosia";
-$a->strings["Applications"] = "Sovellukset";
-$a->strings["No installed applications."] = "Ei asennettuja sovelluksia.";
-$a->strings["Item not available."] = "Kohde ei saatavilla.";
-$a->strings["Item was not found."] = "Kohdetta ei löytynyt.";
-$a->strings["No contacts in common."] = "Ei yhteisiä kontakteja.";
-$a->strings["Common Friends"] = "Yhteisiä kavereita";
-$a->strings["Credits"] = "Lopputekstit";
-$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!"] = "";
-$a->strings["Contact settings applied."] = "Kontaktiasetukset tallennettu.";
-$a->strings["Contact update failed."] = "Kontaktipäivitys epäonnistui.";
-$a->strings["Contact not found."] = "Kontaktia ei ole.";
-$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "VAROITUS: Tämä on erittäin vaativaa ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta.";
-$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta nyt , jos olet epävarma tämän sivun toiminnoista.";
-$a->strings["No mirroring"] = "Ei peilausta";
-$a->strings["Mirror as forwarded posting"] = "Peilaa välitettynä julkaisuna";
-$a->strings["Mirror as my own posting"] = "Peilaa omana julkaisuna";
-$a->strings["Return to contact editor"] = "Palaa kontaktin muokkaamiseen";
-$a->strings["Refetch contact data"] = "";
-$a->strings["Submit"] = "Lähetä";
-$a->strings["Remote Self"] = "";
-$a->strings["Mirror postings from this contact"] = "Peilaa tämän kontaktin julkaisut";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
-$a->strings["Name"] = "Nimi";
-$a->strings["Account Nickname"] = "Tilin lempinimi";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - ohittaa Nimen/Nimimerkin";
-$a->strings["Account URL"] = "Tilin URL-osoite";
-$a->strings["Friend Request URL"] = "URL kaveripyyntöä varten";
-$a->strings["Friend Confirm URL"] = "URL kaverin vahvistusta varten";
-$a->strings["Notification Endpoint URL"] = "URL huomautuksia varten";
-$a->strings["Poll/Feed URL"] = "URL äänestyksiä/syötteitä varten";
-$a->strings["New photo from this URL"] = "Uusi kuva osoitteesta";
-$a->strings["Photos"] = "Kuvat";
-$a->strings["Contact Photos"] = "Kontaktin valokuvat";
-$a->strings["Upload"] = "Lähetä";
-$a->strings["Files"] = "Tiedostot";
-$a->strings["Not Found"] = "Ei löydetty";
-$a->strings["No profile"] = "Ei profiilia";
-$a->strings["Help:"] = "Ohje:";
-$a->strings["Help"] = "Ohje";
-$a->strings["Page not found."] = "Sivua ei löytynyt.";
-$a->strings["Welcome to %s"] = "Tervetuloa %s";
-$a->strings["Remote privacy information not available."] = "Yksityisyyden etätietoja ei saatavilla.";
-$a->strings["Visible to:"] = "Näkyvissä:";
-$a->strings["System down for maintenance"] = "Järjestelmä poiskytketty huoltoa varten";
-$a->strings["Welcome to Friendica"] = "Tervetuloa Friendicaan";
-$a->strings["New Member Checklist"] = "Uuden jäsenen tarkistuslista";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "";
-$a->strings["Getting Started"] = "Ensiaskeleet";
-$a->strings["Friendica Walk-Through"] = "Friendica -läpikäynti";
-$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "";
-$a->strings["Settings"] = "Asetukset";
-$a->strings["Go to Your Settings"] = "Omat Asetukset";
-$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "";
+$a->strings["Atom feed"] = "Atom -syöte";
+$a->strings["Profiles"] = "Profiilit";
+$a->strings["Manage/edit profiles"] = "Hallitse/muokkaa profiilit";
+$a->strings["Change profile photo"] = "Vaihda profiilikuva";
+$a->strings["Create New Profile"] = "Luo uusi profiili";
+$a->strings["Profile Image"] = "Profiilikuva";
+$a->strings["visible to everybody"] = "näkyvissä kaikille";
+$a->strings["Edit visibility"] = "Muokkaa näkyvyyttä";
+$a->strings["Location:"] = "Sijainti:";
+$a->strings["Gender:"] = "Sukupuoli:";
+$a->strings["Status:"] = "Tila:";
+$a->strings["Homepage:"] = "Kotisivu:";
+$a->strings["About:"] = "Lisätietoja:";
+$a->strings["XMPP:"] = "XMPP:";
+$a->strings["Network:"] = "Verkko:";
+$a->strings["g A l F d"] = "";
+$a->strings["F d"] = "";
+$a->strings["[today]"] = "[tänään]";
+$a->strings["Birthday Reminders"] = "Syntymäpäivämuistutukset";
+$a->strings["Birthdays this week:"] = "Syntymäpäiviä tällä viikolla:";
+$a->strings["[No description]"] = "[Ei kuvausta]";
+$a->strings["Event Reminders"] = "Tapahtumamuistutukset";
+$a->strings["Events this week:"] = "Tapahtumia tällä viikolla:";
$a->strings["Profile"] = "Profiili";
-$a->strings["Upload Profile Photo"] = "Lataa profiilikuva";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "";
-$a->strings["Edit Your Profile"] = "Muokkaa profiilisi";
-$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "";
-$a->strings["Profile Keywords"] = "Profiilin avainsanat";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "";
-$a->strings["Connecting"] = "Yhdistetään";
-$a->strings["Importing Emails"] = "Sähköpostin tuominen";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "";
-$a->strings["Go to Your Contacts Page"] = "Näytä minun kontaktit";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "";
-$a->strings["Go to Your Site's Directory"] = "Näytä oman sivuston luettelo";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "";
-$a->strings["Finding New People"] = "Kavereiden hankkiminen";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "";
+$a->strings["Full Name:"] = "Koko nimi:";
+$a->strings["Member since:"] = "Liittymispäivämäärä:";
+$a->strings["j F, Y"] = "";
+$a->strings["j F"] = "";
+$a->strings["Birthday:"] = "Syntymäpäivä:";
+$a->strings["Age:"] = "Ikä:";
+$a->strings["for %1\$d %2\$s"] = "";
+$a->strings["Sexual Preference:"] = "Seksuaalinen suuntautuminen:";
+$a->strings["Hometown:"] = "Kotikaupunki:";
+$a->strings["Tags:"] = "Tunnisteet:";
+$a->strings["Political Views:"] = "Politiikka:";
+$a->strings["Religion:"] = "Uskonto:";
+$a->strings["Hobbies/Interests:"] = "Harrastukset:";
+$a->strings["Likes:"] = "Tykkäykset:";
+$a->strings["Dislikes:"] = "Ei tykkää:";
+$a->strings["Contact information and Social Networks:"] = "Yhteystiedot ja sosiaalinen media:";
+$a->strings["Musical interests:"] = "Musiikki:";
+$a->strings["Books, literature:"] = "Kirjat, kirjallisuus:";
+$a->strings["Television:"] = "Televisio:";
+$a->strings["Film/dance/culture/entertainment:"] = "Elokuvat/tanssit/kulttuuri/viihde:";
+$a->strings["Love/Romance:"] = "Rakkaus/romanssi:";
+$a->strings["Work/employment:"] = "Työ:";
+$a->strings["School/education:"] = "Koulutus:";
+$a->strings["Forums:"] = "Foorumit:";
+$a->strings["Basic"] = "";
+$a->strings["Advanced"] = "";
+$a->strings["Status"] = "Tila";
+$a->strings["Status Messages and Posts"] = "Statusviestit ja postaukset";
+$a->strings["Profile Details"] = "Profiilitiedot";
+$a->strings["Photos"] = "Kuvat";
+$a->strings["Photo Albums"] = "Valokuva-albumit";
+$a->strings["Videos"] = "Videot";
+$a->strings["Events"] = "Tapahtumat";
+$a->strings["Events and Calendar"] = "Tapahtumat ja kalenteri";
+$a->strings["Personal Notes"] = "Henkilökohtaiset tiedot";
+$a->strings["Only You Can See This"] = "Vain sinä näet tämän";
+$a->strings["l F d, Y \\@ g:i A"] = "";
+$a->strings["Starts:"] = "Alkaa:";
+$a->strings["Finishes:"] = "Päättyy:";
+$a->strings["all-day"] = "koko päivä";
+$a->strings["Jun"] = "Kes.";
+$a->strings["Sept"] = "Syy.";
+$a->strings["today"] = "tänään";
+$a->strings["month"] = "kuukausi";
+$a->strings["week"] = "viikko";
+$a->strings["day"] = "päivä";
+$a->strings["No events to display"] = "Ei näytettäviä tapahtumia.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Muokkaa tapahtumaa";
+$a->strings["Duplicate event"] = "Monista tapahtuma";
+$a->strings["Delete event"] = "Poista tapahtuma";
+$a->strings["D g:i A"] = "";
+$a->strings["g:i A"] = "";
+$a->strings["Show map"] = "Näytä kartta";
+$a->strings["Hide map"] = "Piilota kartta";
+$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "";
+$a->strings["Default privacy group for new contacts"] = "Oletusryhmä uusille kontakteille";
+$a->strings["Everybody"] = "Kaikki";
+$a->strings["edit"] = "muokkaa";
+$a->strings["add"] = "lisää";
$a->strings["Groups"] = "Ryhmät";
-$a->strings["Group Your Contacts"] = "Järjestä kontaktit ryhmiin";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "";
-$a->strings["Why Aren't My Posts Public?"] = "Miksi julkaisuni eivät ole julkisia?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "";
-$a->strings["Getting Help"] = "Avun saaminen";
-$a->strings["Go to the Help Section"] = "Näytä ohjeet";
-$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "";
-$a->strings["Visit %s's profile [%s]"] = "Näytä %s-käyttäjän profiili [%s]";
-$a->strings["Edit contact"] = "Muokkaa kontaktia";
-$a->strings["Contacts who are not members of a group"] = "Kontaktit jotka eivät kuulu ryhmään";
-$a->strings["Not Extended"] = "Ei laajennettu";
+$a->strings["Edit group"] = "Muokkaa ryhmää";
+$a->strings["Contacts not in any group"] = "Kontaktit ilman ryhmää";
+$a->strings["Create a new group"] = "Luo uusi ryhmä";
+$a->strings["Group Name: "] = "Ryhmän nimi:";
+$a->strings["Edit groups"] = "Muokkaa ryhmiä";
+$a->strings["Contact Photos"] = "Kontaktin valokuvat";
+$a->strings["Login failed"] = "Kirjautuminen epäonnistui";
+$a->strings["Not enough information to authenticate"] = "";
+$a->strings["User not found"] = "Käyttäjää ei löydy";
+$a->strings["Passwords do not match. Password unchanged."] = "Salasanat eivät täsmää. Salasana ennallaan.";
+$a->strings["An invitation is required."] = "";
+$a->strings["Invitation could not be verified."] = "Kutsua ei voitu vahvistaa.";
+$a->strings["Invalid OpenID url"] = "Virheellinen OpenID url-osoite";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
+$a->strings["The error message was:"] = "Virheviesti oli:";
+$a->strings["Please enter the required information."] = "Syötä tarvittavat tiedot.";
+$a->strings["Please use a shorter name."] = "Käytä lyhyempää nimeä.";
+$a->strings["Name too short."] = "Nimi on liian lyhyt.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "";
+$a->strings["Your email domain is not among those allowed on this site."] = "Sähköpostiosoitteesi verkkotunnus on tämän sivuston estolistalla.";
+$a->strings["Not a valid email address."] = "Virheellinen sähköpostiosoite.";
+$a->strings["Cannot use that email."] = "Sähköpostiosoitetta ei voitu käyttää.";
+$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Nimimerkki voi sisältää a-z, 0-9 ja _.";
+$a->strings["Nickname is already registered. Please choose another."] = "Valitsemasi nimimerkki on jo käytössä. Valitse toinen nimimerkki.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "VAKAVA VIRHE: Salausavainten luominen epäonnistui.";
+$a->strings["An error occurred during registration. Please try again."] = "Rekisteröityminen epäonnistui. Yritä uudelleen.";
+$a->strings["default"] = "oletus";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Oletusprofiilin luominen epäonnistui. Yritä uudelleen.";
+$a->strings["An error occurred creating your self contact. Please try again."] = "";
+$a->strings["Friends"] = "Kaverit";
+$a->strings["An error occurred creating your default contact group. Please try again."] = "";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t\t"] = "";
+$a->strings["Registration at %s"] = "Rekisteröityminen kohteessa %s";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t"] = "";
+$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$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\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "";
+$a->strings["Registration details for %s"] = "";
+$a->strings["view full size"] = "näytä täysikokoisena";
+$a->strings["Image/photo"] = "Kuva/valokuva";
+$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s";
+$a->strings["$1 wrote:"] = "$1 kirjoitti:";
+$a->strings["Encrypted content"] = "Salattu sisältö";
+$a->strings["Invalid source protocol"] = "Virheellinen lähdeprotokolla";
+$a->strings["Invalid link protocol"] = "Virheellinen linkkiprotokolla";
+$a->strings["General Features"] = "Yleiset ominaisuudet";
+$a->strings["Multiple Profiles"] = "";
+$a->strings["Ability to create multiple profiles"] = "";
+$a->strings["Photo Location"] = "Kuvan sijainti";
+$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "";
+$a->strings["Export Public Calendar"] = "Vie julkinen kalenteri";
+$a->strings["Ability for visitors to download the public calendar"] = "";
+$a->strings["Post Composition Features"] = "";
+$a->strings["Post Preview"] = "Viestin esikatselu";
+$a->strings["Allow previewing posts and comments before publishing them"] = "";
+$a->strings["Auto-mention Forums"] = "";
+$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "";
+$a->strings["Network Sidebar Widgets"] = "";
+$a->strings["Search by Date"] = "Päivämäärähaku";
+$a->strings["Ability to select posts by date ranges"] = "";
+$a->strings["List Forums"] = "Näytä foorumit";
+$a->strings["Enable widget to display the forums your are connected with"] = "";
+$a->strings["Group Filter"] = "Ryhmäsuodatin";
+$a->strings["Enable widget to display Network posts only from selected group"] = "";
+$a->strings["Network Filter"] = "Verkkosuodatin";
+$a->strings["Enable widget to display Network posts only from selected network"] = "";
+$a->strings["Saved Searches"] = "Tallennetut haut";
+$a->strings["Save search terms for re-use"] = "Tallenna hakutermit myöhempää käyttöä varten";
+$a->strings["Network Tabs"] = "Verkko välilehdet";
+$a->strings["Network Personal Tab"] = "";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "";
+$a->strings["Network New Tab"] = "";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "";
+$a->strings["Network Shared Links Tab"] = "";
+$a->strings["Enable tab to display only Network posts with links in them"] = "";
+$a->strings["Post/Comment Tools"] = "Julkaisu/kommentti työkalut";
+$a->strings["Multiple Deletion"] = "";
+$a->strings["Select and delete multiple posts/comments at once"] = "Valitse ja poista monta julkaisua/kommentia yhtaikaa";
+$a->strings["Edit Sent Posts"] = "Muokkaa lähetetyt julkaisut";
+$a->strings["Edit and correct posts and comments after sending"] = "Muokkaa ja korjaa julkaisuja ja kommenteja julkaisun jälkeen";
+$a->strings["Tagging"] = "Tunnisteet";
+$a->strings["Ability to tag existing posts"] = "Saa merkitä olemassa olevia julkaisuja";
+$a->strings["Post Categories"] = "Julkaisuluokat";
+$a->strings["Add categories to your posts"] = "Luokittele julkaisusi";
+$a->strings["Saved Folders"] = "Tallennetut kansiot";
+$a->strings["Ability to file posts under folders"] = "";
+$a->strings["Dislike Posts"] = "";
+$a->strings["Ability to dislike posts/comments"] = "";
+$a->strings["Star Posts"] = "Tähtimerkityt julkaisut";
+$a->strings["Ability to mark special posts with a star indicator"] = "Salli julkaisujen tähtimerkintä";
+$a->strings["Mute Post Notifications"] = "Mykistä julkaisuilmoitukset";
+$a->strings["Ability to mute notifications for a thread"] = "";
+$a->strings["Advanced Profile Settings"] = "Profiilin lisäasetukset";
+$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "";
+$a->strings["Tag Cloud"] = "Tunnistepilvi";
+$a->strings["Provide a personal tag cloud on your profile page"] = "Näytä henkilökohtainen tunnistepilvi profiilisivullasi";
+$a->strings["Display Membership Date"] = "Näytä liittymispäivämäärä";
+$a->strings["Display membership date in profile"] = "Näytä liittymispäivämäärä profiilissa";
+$a->strings["Export"] = "Vie";
+$a->strings["Export calendar as ical"] = "Vie kalenteri ical -tiedostona";
+$a->strings["Export calendar as csv"] = "Vie kalenteri csv-tiedostona";
+$a->strings["Add New Contact"] = "Lisää uusi kontakti";
+$a->strings["Enter address or web location"] = "Syötä verkko-osoite";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esimerkki: bob@example.com, http://example.com/barbara";
+$a->strings["%d invitation available"] = [
+ 0 => "%d kutsu saatavilla",
+ 1 => "%d kutsuja saatavilla",
+];
+$a->strings["Find People"] = "Löydä ihmisiä";
+$a->strings["Enter name or interest"] = "Syötä nimi tai harrastus";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esim. Matti Meikäläinen, kalastus yms.";
+$a->strings["Find"] = "Etsi";
+$a->strings["Friend Suggestions"] = "Ystäväehdotukset";
+$a->strings["Similar Interests"] = "Yhteiset harrastukset";
+$a->strings["Random Profile"] = "Satunnainen profiili";
+$a->strings["Invite Friends"] = "Kutsu kavereita";
+$a->strings["View Global Directory"] = "Katso maailmanlaajuista luetteloa";
+$a->strings["Networks"] = "Verkot";
+$a->strings["All Networks"] = "Kaikki verkot";
+$a->strings["Everything"] = "Kaikki";
+$a->strings["Categories"] = "Luokat";
+$a->strings["%d contact in common"] = [
+ 0 => "%d yhteinen kontakti",
+ 1 => "%d yhteistä kontaktia",
+];
+$a->strings["Frequently"] = "Usein";
+$a->strings["Hourly"] = "Tunneittain";
+$a->strings["Twice daily"] = "Kahdesti päivässä";
+$a->strings["Daily"] = "Päivittäin";
+$a->strings["Weekly"] = "Viikottain";
+$a->strings["Monthly"] = "Kuukausittain";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "Sähköposti";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Diaspora -liitin";
+$a->strings["GNU Social Connector"] = "GNU social -liitin";
+$a->strings["pnut"] = "pnut";
+$a->strings["App.net"] = "App.net";
+$a->strings["Male"] = "Mies";
+$a->strings["Female"] = "Nainen";
+$a->strings["Currently Male"] = "Tällä hetkellä mies";
+$a->strings["Currently Female"] = "Tällä hetkellä nainen";
+$a->strings["Mostly Male"] = "Enimmäkseen mies";
+$a->strings["Mostly Female"] = "Enimmäkseen nainen";
+$a->strings["Transgender"] = "Transsukupuolinen";
+$a->strings["Intersex"] = "Intersukupuolinen";
+$a->strings["Transsexual"] = "Transsukupuolinen";
+$a->strings["Hermaphrodite"] = "Hermafrodiitti";
+$a->strings["Neuter"] = "Neutri";
+$a->strings["Non-specific"] = "Ei-binäärinen";
+$a->strings["Other"] = "Toinen";
+$a->strings["Males"] = "Miehet";
+$a->strings["Females"] = "Naiset";
+$a->strings["Gay"] = "Homo";
+$a->strings["Lesbian"] = "Lesbo";
+$a->strings["No Preference"] = "";
+$a->strings["Bisexual"] = "Biseksuaali";
+$a->strings["Autosexual"] = "";
+$a->strings["Abstinent"] = "Selibaatissa elävä";
+$a->strings["Virgin"] = "Neitsyt";
+$a->strings["Deviant"] = "";
+$a->strings["Fetish"] = "";
+$a->strings["Oodles"] = "";
+$a->strings["Nonsexual"] = "Aseksuaali";
+$a->strings["Single"] = "Sinkku";
+$a->strings["Lonely"] = "Yksinäinen";
+$a->strings["Available"] = "";
+$a->strings["Unavailable"] = "";
+$a->strings["Has crush"] = "Ihastunut";
+$a->strings["Infatuated"] = "Hullaantunut";
+$a->strings["Dating"] = "Seurustelee";
+$a->strings["Unfaithful"] = "";
+$a->strings["Sex Addict"] = "";
+$a->strings["Friends/Benefits"] = "";
+$a->strings["Casual"] = "";
+$a->strings["Engaged"] = "Kihloissa";
+$a->strings["Married"] = "Naimisissa";
+$a->strings["Imaginarily married"] = "";
+$a->strings["Partners"] = "Kumppanit";
+$a->strings["Cohabiting"] = "Avoliitossa";
+$a->strings["Common law"] = "Avoliitossa";
+$a->strings["Happy"] = "Iloinen";
+$a->strings["Not looking"] = "Ei etsi";
+$a->strings["Swinger"] = "";
+$a->strings["Betrayed"] = "Petetty";
+$a->strings["Separated"] = "";
+$a->strings["Unstable"] = "Epävakaa";
+$a->strings["Divorced"] = "Eronnut";
+$a->strings["Imaginarily divorced"] = "";
+$a->strings["Widowed"] = "Leski";
+$a->strings["Uncertain"] = "Epävarma";
+$a->strings["It's complicated"] = "Se on monimutkaista";
+$a->strings["Don't care"] = "Ei ole väliä";
+$a->strings["Ask me"] = "Kysy minulta";
+$a->strings["Embedding disabled"] = "Upottaminen poistettu käytöstä";
+$a->strings["Embedded content"] = "Upotettu sisältö";
+$a->strings["External link to forum"] = "Ulkoinen linkki foorumiin";
+$a->strings["Nothing new here"] = "";
+$a->strings["Clear notifications"] = "Tyhjennä ilmoitukset";
+$a->strings["Logout"] = "Kirjaudu ulos";
+$a->strings["End this session"] = "Lopeta istunto";
+$a->strings["Your posts and conversations"] = "Omat julkaisut ja keskustelut";
+$a->strings["Your profile page"] = "Oma profiilisivu";
+$a->strings["Your photos"] = "Omat kuvat";
+$a->strings["Your videos"] = "Omat videot";
+$a->strings["Your events"] = "Omat tapahtumat";
+$a->strings["Personal notes"] = "";
+$a->strings["Your personal notes"] = "";
+$a->strings["Login"] = "Kirjaudu sisään";
+$a->strings["Sign in"] = "Kirjaudu sisään";
+$a->strings["Home"] = "Koti";
+$a->strings["Home Page"] = "Kotisivu";
+$a->strings["Register"] = "Rekisteröidy";
+$a->strings["Create an account"] = "Luo tili";
+$a->strings["Help"] = "Ohje";
+$a->strings["Help and documentation"] = "Ohjeet ja dokmentointi";
+$a->strings["Apps"] = "Sovellukset";
+$a->strings["Addon applications, utilities, games"] = "Lisäosa sovelluksia, apuohjelmia, pelejä";
+$a->strings["Search site content"] = "Sivustohaku";
+$a->strings["Community"] = "Yhteisö";
+$a->strings["Conversations on this and other servers"] = "Keskustelut täällä ja muilla palvelimilla";
+$a->strings["Directory"] = "Luettelo";
+$a->strings["People directory"] = "Henkilöluettelo";
+$a->strings["Information"] = "Tietoja";
+$a->strings["Information about this friendica instance"] = "Lisätietoja tästä Friendica -instanssista";
+$a->strings["Network"] = "Verkko";
+$a->strings["Conversations from your friends"] = "Kavereiden keskustelut";
+$a->strings["Network Reset"] = "Verkon nollaus";
+$a->strings["Load Network page with no filters"] = "";
+$a->strings["Introductions"] = "Esittelyt";
+$a->strings["Friend Requests"] = "Kaveripyynnöt";
+$a->strings["Notifications"] = "Huomautukset";
+$a->strings["See all notifications"] = "Näytä kaikki ilmoitukset";
+$a->strings["Mark as seen"] = "Merkitse luetuksi";
+$a->strings["Mark all system notifications seen"] = "";
+$a->strings["Messages"] = "Viestit";
+$a->strings["Private mail"] = "Yksityinen posti";
+$a->strings["Inbox"] = "Saapuneet";
+$a->strings["Outbox"] = "Lähtevät";
+$a->strings["New Message"] = "Uusi viesti";
+$a->strings["Manage"] = "Hallitse";
+$a->strings["Manage other pages"] = "Hallitse muita sivuja";
+$a->strings["Delegations"] = "";
+$a->strings["Delegate Page Management"] = "";
+$a->strings["Settings"] = "Asetukset";
+$a->strings["Account settings"] = "Tiliasetukset";
+$a->strings["Manage/Edit Profiles"] = "Hallitse/muokka profiilit";
+$a->strings["Manage/edit friends and contacts"] = "Hallitse/muokkaa kaverit ja kontaktit";
+$a->strings["Admin"] = "Ylläpitäjä";
+$a->strings["Site setup and configuration"] = "Sivuston asennus ja asetukset";
+$a->strings["Navigation"] = "Navigointi";
+$a->strings["Site map"] = "Sivustokartta";
+$a->strings["(no subject)"] = "(ei aihetta)";
+$a->strings["Delete this item?"] = "Poista tämä kohde?";
+$a->strings["show fewer"] = "näytä vähemmän";
+$a->strings["Login failed."] = "Kirjautuminen epäonnistui";
+$a->strings["Create a New Account"] = "Luo uusi käyttäjätili";
+$a->strings["Nickname or Email: "] = "Lempinimi tai sähköposti:";
+$a->strings["Password: "] = "Salasana:";
+$a->strings["Remember me"] = "Muista minut";
+$a->strings["Or login using OpenID: "] = "Kirjaudu sisään OpenID -tunnuksella:";
+$a->strings["Forgot your password?"] = "Unohditko salasanasi?";
+$a->strings["Password Reset"] = "Salasanan nollaus";
+$a->strings["Website Terms of Service"] = "Verkkosivun käyttöehdot";
+$a->strings["terms of service"] = "käyttöehdot";
+$a->strings["Website Privacy Policy"] = "Sivuston tietosuojakäytäntö";
+$a->strings["privacy policy"] = "tietosuojakäytäntö";
+$a->strings["Terms of Service"] = "Käyttöehdot";
+$a->strings["Privacy Statement"] = "Tietosuojalausunto";
+$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "";
+$a->strings["This data is required for communication and is passed on to the nodes of the communication partners. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "";
+$a->strings["At any point in time a logged in user can export their account data from the account settings . If the user wants to delete their account they can do so at %1\$s/removeme . The deletion of the account will be permanent."] = "";
+$a->strings["Logged out."] = "Kirjautunut ulos.";
+$a->strings["Wall Photos"] = "Seinäkuvat";
+$a->strings["This entry was edited"] = "Tämä kohde oli muokattu";
+$a->strings["Private Message"] = "Yksityisviesti";
+$a->strings["Edit"] = "Muokkaa";
+$a->strings["save to folder"] = "tallenna kansioon";
+$a->strings["I will attend"] = "Osallistun";
+$a->strings["I will not attend"] = "En aio osallistua";
+$a->strings["I might attend"] = "Ehkä osallistun";
+$a->strings["add star"] = "lisää tähti";
+$a->strings["remove star"] = "poista tähti";
+$a->strings["toggle star status"] = "Tähtitila päälle/pois";
+$a->strings["starred"] = "tähtimerkitty";
+$a->strings["ignore thread"] = "Sivuuta keskustelu";
+$a->strings["unignore thread"] = "Seuraa keskustelua";
+$a->strings["toggle ignore status"] = "Sivuuta/seuraa";
+$a->strings["ignored"] = "ohitettu";
+$a->strings["add tag"] = "lisää tägi";
+$a->strings["I like this (toggle)"] = "Tykkään tästä (vaihda)";
+$a->strings["like"] = "tykkää";
+$a->strings["I don't like this (toggle)"] = "En tykkää tästä (vaihda)";
+$a->strings["dislike"] = "en tykkää";
+$a->strings["Share this"] = "Jaa tämä";
+$a->strings["share"] = "jaa";
+$a->strings["to"] = "";
+$a->strings["via"] = "kautta";
+$a->strings["Wall-to-Wall"] = "Seinäjulkaisu";
+$a->strings["via Wall-To-Wall:"] = "seinäjulkaisun kautta";
+$a->strings["Comment"] = "Kommentti";
+$a->strings["%d comment"] = [
+ 0 => "%d kommentti",
+ 1 => "%d kommentteja",
+];
+$a->strings["This is you"] = "Tämä olet sinä";
+$a->strings["Submit"] = "Lähetä";
+$a->strings["Bold"] = "Lihavoitu";
+$a->strings["Italic"] = "Kursivoitu";
+$a->strings["Underline"] = "Alleviivaus";
+$a->strings["Quote"] = "Lainaus";
+$a->strings["Code"] = "Koodi";
+$a->strings["Image"] = "Kuva";
+$a->strings["Link"] = "Linkki";
+$a->strings["Video"] = "Video";
+$a->strings["There are no tables on MyISAM."] = "MyISAMissa ei ole taulukoita.";
+$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tFriendican kehittäjät askettäin julkaisi %s-päivityksen,\n\t\t\t\tmutta asennuksessa jotain meni pahasti pieleen.\n\t\t\t\tTämä on korjattava pian, ja en voi korjata sitä itse. Ota yhteyttä\n\t\t\t\tFriendica -kehittäjään jos et voi auttaa. Tietokantani saattaa olla virheellinen.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "Virheviesti on\n[pre]%s[/pre]";
+$a->strings["\nError %d occurred during database update:\n%s\n"] = "\n%d virhe tapahtui tietokannan päivityksen aikana:\n%s\n";
+$a->strings["Errors encountered performing database changes: "] = "Tietokannan muokkauksessa tapahtui virheitä:";
+$a->strings[": Database update"] = ": Tietokannan päivitys";
+$a->strings["%s: updating %s table."] = "%s: päivitetään %s-taulukkoa.";
+$a->strings["Error decoding account file"] = "";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Virhe: tiedostosta puuttuu versiotiedot! Saattaa olla että tämä ei ole Friendica -tilitiedosto?";
+$a->strings["User '%s' already exists on this server!"] = "Käyttäjä '%s' on jo olemassa tällä palvelimella!";
+$a->strings["User creation error"] = "Virhe käyttäjän luomisessa";
+$a->strings["User profile creation error"] = "Virhe käyttäjäprofiilin luomisessa";
+$a->strings["%d contact not imported"] = [
+ 0 => "%d kontakti ei tuotu",
+ 1 => "%d kontakteja ei tuotu",
+];
+$a->strings["Done. You can now login with your username and password"] = "Suoritettu. Voit nyt kirjautua sisään käyttäjätunnuksellasi.";
+$a->strings["The new password has been exposed in a public data dump, please choose another."] = "";
+$a->strings["Password update failed. Please try again."] = "Salasanan vaihto epäonnistui. Yritä uudelleen.";
+$a->strings["Password changed."] = "Salasana vaihdettu.";
+$a->strings["Could not find any contact entry for this URL (%s)"] = "";
+$a->strings["The contact has been blocked from the node"] = "Kontakti on estetty tällä solmulla";
+$a->strings["Post to Email"] = "Viesti sähköpostiin";
+$a->strings["Hide your profile details from unknown viewers?"] = "Piilota profiilitietosi tuntemattomilta?";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
+$a->strings["Visible to everybody"] = "Näkyvissä kaikille";
+$a->strings["show"] = "näytä";
+$a->strings["don't show"] = "älä näytä";
+$a->strings["CC: email addresses"] = "Kopio: sähköpostiosoitteet";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Esimerkki: bob@example.com, mary@example.com";
+$a->strings["Permissions"] = "Käyttöoikeudet";
+$a->strings["Close"] = "Sulje";
+$a->strings["System"] = "Järjestelmä";
+$a->strings["Personal"] = "Henkilökohtainen";
+$a->strings["%s commented on %s's post"] = "%s kommentoi julkaisuun jonka kirjoitti %s";
+$a->strings["%s created a new post"] = "%s loi uuden julkaisun";
+$a->strings["%s liked %s's post"] = "%s tykkäsi julkaisusta jonka kirjoitti %s";
+$a->strings["%s disliked %s's post"] = "%s ei tykännyt julkaisusta jonka kirjoitti %s";
+$a->strings["%s is attending %s's event"] = "%s osallistuu tapahtumaan jonka järjestää %s";
+$a->strings["%s is not attending %s's event"] = "%s ei osallistu tapahtumaan jonka järjestää %s";
+$a->strings["%s may attend %s's event"] = "%s ehkä osallistuu tapahtumaan jonka järjestää %s";
+$a->strings["%s is now friends with %s"] = "%s ja %s ovat kavereita";
+$a->strings["Friend Suggestion"] = "Kaveriehdotus";
+$a->strings["Friend/Connect Request"] = "Ystävä/yhteyspyyntö";
+$a->strings["New Follower"] = "Uusi seuraaja";
+$a->strings["Miscellaneous"] = "Sekalaista";
+$a->strings["Age: "] = "Ikä:";
+$a->strings["YYYY-MM-DD or MM-DD"] = "VVVV-KK-PP tai KK-PP";
+$a->strings["never"] = "ei ikinä";
+$a->strings["less than a second ago"] = "alle sekunti sitten";
+$a->strings["year"] = "vuosi";
+$a->strings["years"] = "vuotta";
+$a->strings["months"] = "kuukautta";
+$a->strings["weeks"] = "viikkoa";
+$a->strings["days"] = "päivää";
+$a->strings["hour"] = "tunti";
+$a->strings["hours"] = "tuntia";
+$a->strings["minute"] = "minuutti";
+$a->strings["minutes"] = "inuuttia";
+$a->strings["second"] = "sekunti";
+$a->strings["seconds"] = "sekuntia";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s sitten";
+$a->strings["%s's timeline"] = "%s: aikajana";
+$a->strings["%s's posts"] = "%s: julkaisut";
+$a->strings["%s's comments"] = "%s: kommentit";
+$a->strings["%s is now following %s."] = "%s seuraa %s.";
+$a->strings["following"] = "seuraa";
+$a->strings["%s stopped following %s."] = "%s ei enää seuraa %s.";
+$a->strings["stopped following"] = "ei enää seuraa";
+$a->strings["Sharing notification from Diaspora network"] = "";
+$a->strings["Attachments:"] = "Liitteitä:";
+$a->strings["Public access denied."] = "Julkinen käyttö estetty.";
+$a->strings["Global Directory"] = "Maailmanlaajuinen hakemisto";
+$a->strings["Find on this site"] = "";
+$a->strings["Results for:"] = "Tulokset haulla:";
+$a->strings["Site Directory"] = "Sivuston luettelo";
+$a->strings["No entries (some entries may be hidden)."] = "";
+$a->strings["People Search - %s"] = "Käyttäjähaku - %s";
+$a->strings["Forum Search - %s"] = "Foorumihaku - %s";
+$a->strings["No matches"] = "Ei täsmääviä profiileja";
$a->strings["Resubscribing to OStatus contacts"] = "";
$a->strings["Error"] = "Virhe";
$a->strings["Done"] = "Valmis";
$a->strings["Keep this window open until done."] = "Pidä tämä ikkuna auki kunnes kaikki tehtävät on suoritettu.";
+$a->strings["{0} wants to be your friend"] = "{0} lähetti kaveripyynnön";
+$a->strings["{0} sent you a message"] = "{0} lähetti sinulle viestin";
+$a->strings["{0} requested registration"] = "{0} jätti rekisteröintipyynnön";
$a->strings["Do you really want to delete this suggestion?"] = "Haluatko varmasti poistaa ehdotuksen?";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Ehdotuksia ei löydy. Jos tämä on uusi sivusto, kokeile uudelleen vuorokauden kuluttua.";
$a->strings["Ignore/Hide"] = "Jätä huomiotta/piilota";
-$a->strings["Friend Suggestions"] = "Ystäväehdotukset";
+$a->strings["Access to this profile has been restricted."] = "Pääsy tähän profiiliin on rajoitettu";
+$a->strings["Image uploaded but image cropping failed."] = "Kuva ladattu mutta kuvan rajaus epäonnistui.";
+$a->strings["Image size reduction [%s] failed."] = "Kuvan pienentäminen [%s] epäonnistui.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Jos kuva ei näy heti, lataa sivu uudelleen tai tyhjennä selaimen välimuisti.";
+$a->strings["Unable to process image"] = "Kuvan käsitteleminen epäonnistui";
+$a->strings["Image exceeds size limit of %s"] = "Kuva ylittää kokorajoituksen %s";
+$a->strings["Unable to process image."] = "Kuvan käsitteleminen epäonnistui.";
+$a->strings["Upload File:"] = "Lähetä tiedosto:";
+$a->strings["Select a profile:"] = "Valitse profiili:";
+$a->strings["Upload Profile Photo"] = "Lataa profiilikuva";
+$a->strings["Upload"] = "Lähetä";
+$a->strings["or"] = "tai";
+$a->strings["skip this step"] = "ohita tämä vaihe";
+$a->strings["select a photo from your photo albums"] = "valitse kuva albumeistasi";
+$a->strings["Crop Image"] = "Rajaa kuva";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Rajaa kuva sopivasti.";
+$a->strings["Done Editing"] = "Lopeta muokkaus";
+$a->strings["Image uploaded successfully."] = "Kuvan lähettäminen onnistui.";
+$a->strings["Image upload failed."] = "Kuvan lähettäminen epäonnistui.";
+$a->strings["User deleted their account"] = "Käyttäjä poisti tilinsä";
+$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Friendica -solmullasi käyttäjä poisti tilinsä. Varmista että hänen tiedot poistetaan myös varmuuskopioista.";
+$a->strings["The user id is %d"] = "";
+$a->strings["Remove My Account"] = "Poista tilini";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tämä poistaa käyttäjätilisi pysyvästi. Poistoa ei voi perua myöhemmin.";
+$a->strings["Please enter your password for verification:"] = "Syötä salasanasi varmistusta varten:";
+$a->strings["Manage Identities and/or Pages"] = "Hallitse identiteetit ja/tai sivut";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "";
+$a->strings["Select an identity to manage: "] = "Valitse identiteetti hallitavaksi:";
$a->strings["[Embedded content - reload page to view]"] = "[Upotettu sisältö - näet sen päivittämällä sivun]";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Sivuston päivittäinen rekisteröintiraja ylitetty. Yritä uudelleen huomenna.";
$a->strings["Import"] = "Tuo";
@@ -386,206 +844,396 @@ $a->strings["You need to export your account from the old server and upload it h
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Tämä on kokeellinen ominaisuus. Emme voi tuoda kontakteja OStatus-verkolta (GNU social/Statusnet) tai Diasporalta.";
$a->strings["Account file"] = "Tilitiedosto";
$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s toivottaa tervetulleeksi ystävän %2\$s";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Avainsanat puuttuu. Lisää avainsanoja oletusprofiiliisi.";
-$a->strings["is interested in:"] = "on kiinnostunut seuraavista aiheista:";
-$a->strings["Profile Match"] = "Vastaavien profiilien haku";
-$a->strings["No matches"] = "Ei täsmääviä profiileja";
-$a->strings["Invalid request identifier."] = "Virheellinen pyyntötunniste.";
-$a->strings["Discard"] = "Hylkää";
-$a->strings["Ignore"] = "Jätä huomiotta";
-$a->strings["Notifications"] = "Huomautukset";
-$a->strings["Network Notifications"] = "Verkkoilmoitukset";
-$a->strings["System Notifications"] = "Järjestelmäilmoitukset";
-$a->strings["Personal Notifications"] = "Henkilökohtaiset ilmoitukset";
-$a->strings["Home Notifications"] = "Koti-ilmoitukset";
-$a->strings["Show Ignored Requests"] = "Näytä ohitetut pyynnöt";
-$a->strings["Hide Ignored Requests"] = "Piilota ohitetut pyynnöt";
-$a->strings["Notification type: "] = "Ilmoitustyyppi:";
-$a->strings["suggested by %s"] = "ehdottaa %s";
-$a->strings["Hide this contact from others"] = "Piilota kontakti muilta";
-$a->strings["Post a new friend activity"] = "";
-$a->strings["if applicable"] = "tarvittaessa";
-$a->strings["Approve"] = "Hyväksy";
-$a->strings["Claims to be known to you: "] = "Väittää tuntevansa sinut:";
-$a->strings["yes"] = "kyllä";
-$a->strings["no"] = "ei";
-$a->strings["Shall your connection be bidirectional or not?"] = "Kaksisuuntainen yhteys?";
-$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "";
-$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "";
-$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "";
-$a->strings["Friend"] = "Kaveri";
-$a->strings["Sharer"] = "Jakaja";
-$a->strings["Subscriber"] = "Tilaaja";
-$a->strings["Location:"] = "Sijainti:";
-$a->strings["About:"] = "Lisätietoja:";
-$a->strings["Tags:"] = "Tunnisteet:";
-$a->strings["Gender:"] = "Sukupuoli:";
-$a->strings["Profile URL"] = "Profiilin URL";
-$a->strings["Network:"] = "Verkko:";
-$a->strings["No introductions."] = "Ei esittelyjä.";
-$a->strings["Show unread"] = "Näytä lukemattomat";
-$a->strings["Show all"] = "Näytä kaikki";
-$a->strings["No more %s notifications."] = "Ei muita %s ilmoituksia.";
+$a->strings["Total invitation limit exceeded."] = "Kutsuraja ylitetty.";
+$a->strings["%s : Not a valid email address."] = "%s : Virheellinen sähköpostiosoite.";
+$a->strings["Please join us on Friendica"] = "Tervetuloa Friendicaan";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Kutsuraja ylitetty. Ota yhteyttä ylläpitäjään.";
+$a->strings["%s : Message delivery failed."] = "%s : Viestin toimitus epäonnistui.";
+$a->strings["%d message sent."] = [
+ 0 => "%d viesti lähetetty.",
+ 1 => "%d viestiä lähetetty.",
+];
+$a->strings["You have no more invitations available"] = "Sinulla ei ole kutsuja jäljellä";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "";
+$a->strings["To accept this invitation, please visit and register at %s."] = "";
+$a->strings["Send invitations"] = "Lähetä kutsut";
+$a->strings["Enter email addresses, one per line:"] = "Syötä sähköpostiosoitteet, yksi riviä kohden:";
+$a->strings["Your message:"] = "Viestisi:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Kun olet rekisteröitynyt, lähetä minulle kaverikutsun profiilisivuni kautta:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "";
$a->strings["OpenID protocol error. No ID returned."] = "OpenID -protokollavirhe. Tunnusta ei vastaanotettu.";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Käyttäjätiliä ei löytynyt. Rekisteröityminen OpenID:n kautta ei ole sallittua tällä sivustolla.";
-$a->strings["Login failed."] = "Kirjautuminen epäonnistui";
-$a->strings["Profile not found."] = "Profiilia ei löytynyt.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "";
-$a->strings["Response from remote site was not understood."] = "Etäsivuston vastaus oli epäselvä.";
-$a->strings["Unexpected response from remote site: "] = "Odottamaton vastaus etäsivustolta:";
-$a->strings["Confirmation completed successfully."] = "Vahvistus onnistui.";
-$a->strings["Temporary failure. Please wait and try again."] = "Tilapäinen vika. Yritä myöhemmin uudelleen.";
-$a->strings["Introduction failed or was revoked."] = "Kaverikutsu epäonnistui tai oli peruutettu.";
-$a->strings["Remote site reported: "] = "";
-$a->strings["Unable to set contact photo."] = "Kontaktin kuvaa ei voitu asettaa";
-$a->strings["No user record found for '%s' "] = "";
-$a->strings["Our site encryption key is apparently messed up."] = "Sivustomme salausavain on sekaisin.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "";
-$a->strings["Contact record was not found for you on our site."] = "";
-$a->strings["Site public key not available in contact record for URL %s."] = "";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "";
-$a->strings["Unable to set your contact credentials on our system."] = "";
-$a->strings["Unable to update your contact profile details on our system"] = "";
-$a->strings["[Name Withheld]"] = "[Nimi jätetty pois]";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s on liittynyt kohteeseen %2\$s";
-$a->strings["Manage Identities and/or Pages"] = "Hallitse identiteetit ja/tai sivut";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "";
-$a->strings["Select an identity to manage: "] = "Valitse identiteetti hallitavaksi:";
-$a->strings["Invalid request."] = "Virheellinen pyyntö.";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "";
-$a->strings["Or - did you try to upload an empty file?"] = "Yrititkö ladata tyhjän tiedoston?";
-$a->strings["File exceeds size limit of %s"] = "Tiedosto ylittää kokorajoituksen %s";
-$a->strings["File upload failed."] = "Tiedoston lähettäminen epäonnistui.";
-$a->strings["This introduction has already been accepted."] = "Tämä esittely on jo hyväksytty.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Profiilin sijainti on viallinen tai se ei sisällä profiilitietoja.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Varoitus: profiilin sijainnissa ei ole tunnistettavaa omistajan nimeä.";
-$a->strings["Warning: profile location has no profile photo."] = "Varoitus: profiilin sijainnissa ei ole profiilikuvaa.";
-$a->strings["%d required parameter was not found at the given location"] = [
+$a->strings["No profile"] = "Ei profiilia";
+$a->strings["You must be logged in to use addons. "] = "Sinun pitää kirjautua sisään, jotta voit käyttää lisäosia";
+$a->strings["Applications"] = "Sovellukset";
+$a->strings["No installed applications."] = "Ei asennettuja sovelluksia.";
+$a->strings["Remove term"] = "Poista kohde";
+$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
0 => "",
1 => "",
];
-$a->strings["Introduction complete."] = "Esittely valmis.";
-$a->strings["Unrecoverable protocol error."] = "Vakava protokollavirhe.";
-$a->strings["Profile unavailable."] = "Profiili ei saatavilla.";
-$a->strings["%s has received too many connection requests today."] = "%s on saanut liikaa yhteyspyyntöjä tänään.";
-$a->strings["Spam protection measures have been invoked."] = "Roskapostisuojaukset otettu käyttöön.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Ystäviä suositellaan yrittämään uudelleen vuorokauden sisällä.";
-$a->strings["Invalid locator"] = "Viallinen paikannin";
-$a->strings["You have already introduced yourself here."] = "Olet jo esitellyt itsesi täällä.";
-$a->strings["Apparently you are already friends with %s."] = "Ilmeisesti olet jo ystävystynyt henkilön %s kanssa.";
-$a->strings["Invalid profile URL."] = "Viallinen profiiliosoite.";
-$a->strings["Disallowed profile URL."] = "Kielletty profiiliosoite.";
-$a->strings["Blocked domain"] = "Estetty verkkotunnus";
-$a->strings["Failed to update contact record."] = "Kontaktitietojen päivitys epäonnistui.";
-$a->strings["Your introduction has been sent."] = "Esittelysi lähetettiin.";
-$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "";
-$a->strings["Please login to confirm introduction."] = "Kirjaudu vahvistaaksesi esittelysi.";
-$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Väärä identiteetti kirjautuneena sisään. Kirjaudu tähän profiiliin.";
-$a->strings["Confirm"] = "Vahvista";
-$a->strings["Hide this contact"] = "Piilota kontakti";
-$a->strings["Welcome home %s."] = "Tervetuloa kotiin %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Vahvista esittelysi/yhteyspyyntösi henkilölle %s.";
-$a->strings["Public access denied."] = "Julkinen käyttö estetty.";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Anna \"henkilöllisyysosoitteesi\" joissakin seuraavista tuetuista viestintäverkoista:";
-$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today ."] = "";
-$a->strings["Friend/Connection Request"] = "Ystävä/yhteyspyyntö";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = "Esim. jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de";
-$a->strings["Please answer the following:"] = "Vastaa seuraavaan:";
-$a->strings["Does %s know you?"] = "Tunteeko %s sinut?";
-$a->strings["Add a personal note:"] = "Lisää oma merkintä:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)";
-$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)";
-$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - älä käytä tätä lomaketta. Kirjoita sen sijaan %s Diaspora-hakupalkkiisi.";
-$a->strings["Your Identity Address:"] = "Identiteettisi osoite:";
-$a->strings["Submit Request"] = "Lähetä pyyntö";
-$a->strings["- select -"] = "- valitse -";
-$a->strings["l F d, Y \\@ g:i A"] = "";
-$a->strings["Time Conversion"] = "Aikamuunnos";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "";
-$a->strings["UTC time: %s"] = "UTC-aika: %s";
-$a->strings["Current timezone: %s"] = "Aikavyöhyke: %s";
-$a->strings["Converted localtime: %s"] = "Muunnettu paikallisaika: %s";
-$a->strings["Please select your timezone:"] = "Valitse aikavyöhykkeesi:";
-$a->strings["No more system notifications."] = "Ei enää järjestelmäilmoituksia.";
-$a->strings["{0} wants to be your friend"] = "{0} lähetti kaveripyynnön";
-$a->strings["{0} sent you a message"] = "{0} lähetti sinulle viestin";
-$a->strings["{0} requested registration"] = "{0} jätti rekisteröintipyynnön";
-$a->strings["Poke/Prod"] = "Tökkää";
-$a->strings["poke, prod or do other things to somebody"] = "";
-$a->strings["Recipient"] = "Vastaanottaja";
-$a->strings["Choose what you wish to do to recipient"] = "";
-$a->strings["Make this post private"] = "Muuta julkaisu yksityiseksi";
-$a->strings["Only logged in users are permitted to perform a probing."] = "";
-$a->strings["Permission denied"] = "Käyttöoikeus evätty";
-$a->strings["Invalid profile identifier."] = "Virheellinen profiilitunniste.";
-$a->strings["Profile Visibility Editor"] = "";
-$a->strings["Click on a contact to add or remove."] = "Valitse kontakti, jota haluat poistaa tai lisätä.";
-$a->strings["Visible To"] = "Näkyvyys";
-$a->strings["All Contacts (with secure profile access)"] = "";
-$a->strings["Account approved."] = "Tili hyväksytty.";
-$a->strings["Registration revoked for %s"] = "";
-$a->strings["Please login."] = "Ole hyvä ja kirjaudu.";
-$a->strings["Remove term"] = "Poista kohde";
-$a->strings["Saved Searches"] = "Tallennetut haut";
-$a->strings["Only logged in users are permitted to perform a search."] = "";
-$a->strings["Too Many Requests"] = "Liian monta pyyntöä";
-$a->strings["Only one search per minute is permitted for not logged in users."] = "";
-$a->strings["No results."] = "Ei tuloksia.";
-$a->strings["Items tagged with: %s"] = "Kohteet joilla tunnisteet: %s";
-$a->strings["Results for: %s"] = "Tulokset haulla: %s";
+$a->strings["Messages in this group won't be send to these receivers."] = "";
+$a->strings["No such group"] = "Ryhmä ei ole olemassa";
+$a->strings["Group is empty"] = "Ryhmä on tyhjä";
+$a->strings["Group: %s"] = "Ryhmä: %s";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Yksityisviestit lähetetty tälle henkilölle saattaa näkyä muillekin.";
+$a->strings["Invalid contact."] = "Virheellinen kontakti.";
+$a->strings["Commented Order"] = "Järjestä viimeisimpien kommenttien mukaan";
+$a->strings["Sort by Comment Date"] = "Kommentit päivämäärän mukaan";
+$a->strings["Posted Order"] = "Järjestä julkaisupäivämäärän mukaan";
+$a->strings["Sort by Post Date"] = "Julkaisut päivämäärän mukaan";
+$a->strings["Posts that mention or involve you"] = "Julkaisut jotka liittyvät sinuun";
+$a->strings["New"] = "Uusi";
+$a->strings["Activity Stream - by date"] = "";
+$a->strings["Shared Links"] = "Jaetut linkit";
+$a->strings["Interesting Links"] = "Kiinnostavat linkit";
+$a->strings["Starred"] = "Tähtimerkitty";
+$a->strings["Favourite Posts"] = "Lempijulkaisut";
+$a->strings["This is Friendica, version"] = "Tämä on Friendica, versio";
+$a->strings["running at web location"] = "käynnissä osoitteessa";
+$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Vieraile osoitteessa Friendi.ca saadaksesi lisätietoja Friendica- projektista.";
+$a->strings["Bug reports and issues: please visit"] = "Bugiraportit ja kysymykset: vieraile osoitteessa";
+$a->strings["the bugtracker at github"] = "githubin bugtrackeri";
+$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Ehdotukset ja palaute: lähetä sähköposti osoitteeseen \"info\" at \"friendi - piste - ca";
+$a->strings["Installed addons/apps:"] = "Asennettu lisäosat/sovellukset:";
+$a->strings["No installed addons/apps"] = "Ei asennettuja lisäosia/sovelluksia";
+$a->strings["Read about the Terms of Service of this node."] = "Lue tämän solmun käyttöehdot .";
+$a->strings["On this server the following remote servers are blocked."] = "Tällä palvelimella seuraavat etäpalvelimet ovat estetty.";
+$a->strings["Reason for the block"] = "Eston syy";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
-$a->strings["Tag removed"] = "Tägi poistettiin";
-$a->strings["Remove Item Tag"] = "Poista tägi";
-$a->strings["Select a tag to remove: "] = "Valitse tägi poistamista varten:";
-$a->strings["Remove"] = "Poista";
-$a->strings["Export account"] = "Vie tili";
-$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."] = "Vie tilin tiedot ja yhteystiedot. Käytä tätä tilisi varmuuskopiointiin ja/tai siirtämiseen toiselle palvelimelle.";
-$a->strings["Export all"] = "Vie kaikki";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Vie tilin tiedot, yhteystiedot ja kaikki nimikkeesi json-muodossa. Saattaa luoda hyvin suuren tiedoston ja kestää todella pitkään. Tämän avulla voit ottaa täydellisen varmuuskopion tilistäsi (valokuvia ei viedä)";
-$a->strings["Export personal data"] = "Vie henkilökohtaiset tiedot";
-$a->strings["No contacts."] = "Ei kontakteja.";
-$a->strings["Access denied."] = "Käyttö estetty.";
-$a->strings["Image exceeds size limit of %s"] = "Kuva ylittää kokorajoituksen %s";
-$a->strings["Unable to process image."] = "Kuvan käsitteleminen epäonnistui.";
-$a->strings["Wall Photos"] = "Seinäkuvat";
-$a->strings["Image upload failed."] = "Kuvan lähettäminen epäonnistui.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "%s-käyttäjän päivittäinen seinäviestiraja ylitetty. Viestin lähettäminen epäonnistui.";
-$a->strings["No recipient selected."] = "Vastaanottaja puuttuu.";
-$a->strings["Unable to check your home location."] = "Kotisijaintisi ei voitu tarkistaa.";
-$a->strings["Message could not be sent."] = "Viestiä ei voitu lähettää.";
-$a->strings["Message collection failure."] = "Viestin noutaminen epäonnistui.";
-$a->strings["Message sent."] = "Viesti lähetetty.";
-$a->strings["No recipient."] = "Vastaanottaja puuttuu.";
-$a->strings["Send Private Message"] = "Lähetä yksityisviesti";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "";
-$a->strings["To:"] = "Vastaanottaja:";
-$a->strings["Subject:"] = "Aihe:";
-$a->strings["Your message:"] = "Viestisi:";
-$a->strings["Login"] = "Kirjaudu sisään";
-$a->strings["The post was created"] = "Julkaisu luotu";
-$a->strings["Community option not available."] = "Yhteisö vaihtoehto ei saatavilla.";
-$a->strings["Not available."] = "Ei saatavilla.";
-$a->strings["Local Community"] = "Paikallinen yhteisö";
-$a->strings["Posts from local users on this server"] = "Tämän palvelimen julkaisut";
-$a->strings["Global Community"] = "Maailmanlaajuinen yhteisö";
-$a->strings["Posts from users of the whole federated network"] = "Maailmanlaajuisen verkon julkaisut";
-$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "";
-$a->strings["Item not found"] = "Kohdetta ei löytynyt";
-$a->strings["Edit post"] = "Muokkaa viestiä";
-$a->strings["CC: email addresses"] = "Kopio: sähköpostiosoitteet";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Esimerkki: bob@example.com, mary@example.com";
+$a->strings["Profile not found."] = "Profiilia ei löytynyt.";
+$a->strings["Profile deleted."] = "Profiili poistettiin.";
+$a->strings["Profile-"] = "Profiili-";
+$a->strings["New profile created."] = "Uusi profiili luotu.";
+$a->strings["Profile unavailable to clone."] = "Profiili ei saatavilla kloonattavaksi.";
+$a->strings["Profile Name is required."] = "Profiilinimi on pakollinen.";
+$a->strings["Marital Status"] = "Siviilisääty";
+$a->strings["Romantic Partner"] = "Romanttinen kumppani";
+$a->strings["Work/Employment"] = "Työ";
+$a->strings["Religion"] = "Uskonto";
+$a->strings["Political Views"] = "Poliittiset näkemykset";
+$a->strings["Gender"] = "Sukupuoli";
+$a->strings["Sexual Preference"] = "Seksuaalinen suuntautuminen";
+$a->strings["XMPP"] = "XMPP";
+$a->strings["Homepage"] = "Kotisivu";
+$a->strings["Interests"] = "Kiinnostukset";
+$a->strings["Address"] = "Osoite";
+$a->strings["Location"] = "Sijainti";
+$a->strings["Profile updated."] = "Profiili päivitettiin.";
+$a->strings[" and "] = "ja";
+$a->strings["public profile"] = "julkinen profiili";
+$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "";
+$a->strings[" - Visit %1\$s's %2\$s"] = "";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
+$a->strings["Hide contacts and friends:"] = "Piilota kontaktit ja kaverit:";
+$a->strings["No"] = "Ei";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Piilota tämän profiilin kontakti/kaverilista?";
+$a->strings["Show more profile fields:"] = "Näytä lisää profiilikenttiä:";
+$a->strings["Profile Actions"] = "";
+$a->strings["Edit Profile Details"] = "Muokkaa profiilin yksityiskohdat";
+$a->strings["Change Profile Photo"] = "Vaihda profiilikuva";
+$a->strings["View this profile"] = "Näytä profiilia";
+$a->strings["Create a new profile using these settings"] = "Luo uusi profiili näillä asetuksilla";
+$a->strings["Clone this profile"] = "Kloonaa tämä profiili";
+$a->strings["Delete this profile"] = "Poista tämä profiili";
+$a->strings["Basic information"] = "Perustiedot";
+$a->strings["Profile picture"] = "Profiilikuva";
+$a->strings["Preferences"] = "Mieltymykset";
+$a->strings["Status information"] = "Tilatiedot";
+$a->strings["Additional information"] = "Lisätietoja";
+$a->strings["Relation"] = "Suhde";
+$a->strings["Your Gender:"] = "Sukupuoli:";
+$a->strings["♥ Marital Status:"] = "♥ Siviilisääty:";
+$a->strings["Example: fishing photography software"] = "Esimerkki: kalastus valokuvaus ohjelmistot";
+$a->strings["Profile Name:"] = "Profiilinimi:";
+$a->strings["Required"] = "Vaaditaan";
+$a->strings["This is your public profile. It may be visible to anybody using the internet."] = "";
+$a->strings["Your Full Name:"] = "Koko nimi:";
+$a->strings["Title/Description:"] = "Otsikko/kuvaus:";
+$a->strings["Street Address:"] = "Katuosoite:";
+$a->strings["Locality/City:"] = "Kaupunki:";
+$a->strings["Region/State:"] = "Alue/osavaltio:";
+$a->strings["Postal/Zip Code:"] = "Postinumero:";
+$a->strings["Country:"] = "Maa:";
+$a->strings["Who: (if applicable)"] = "Kuka: (tarvittaessa)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esimerkkejä: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Lähtien [päivämäärä]:";
+$a->strings["Tell us about yourself..."] = "Kerro vähän itsestäsi...";
+$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) osoite:";
+$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "";
+$a->strings["Homepage URL:"] = "Kotisivun URL-osoite:";
+$a->strings["Religious Views:"] = "Uskonto:";
+$a->strings["Public Keywords:"] = "Julkiset avainsanat:";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Käytetään kaveriehdotuksia varten, näkyy muille)";
+$a->strings["Private Keywords:"] = "Yksityiset avainsanat:";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Käytetään profiilihakua varten, ei näy muille)";
+$a->strings["Musical interests"] = "Musiikki";
+$a->strings["Books, literature"] = "Kirjat, kirjallisuus";
+$a->strings["Television"] = "Televisio";
+$a->strings["Film/dance/culture/entertainment"] = "Elokuvat/tanssi/kulttuuri/viihde";
+$a->strings["Hobbies/Interests"] = "Harrastukset";
+$a->strings["Love/romance"] = "Rakkaus/romanssi";
+$a->strings["Work/employment"] = "Työ:";
+$a->strings["School/education"] = "Koulutus:";
+$a->strings["Contact information and Social Networks"] = "Yhteystiedot ja sosiaalinen media";
+$a->strings["Edit/Manage Profiles"] = "Muokkaa/hallitse profiilit";
+$a->strings["Event can not end before it has started."] = "";
+$a->strings["Event title and start time are required."] = "Tapahtuman nimi ja alkamisaika vaaditaan.";
+$a->strings["View"] = "Katso";
+$a->strings["Create New Event"] = "Luo uusi tapahtuma";
+$a->strings["Previous"] = "Edellinen";
+$a->strings["Next"] = "Seuraava";
+$a->strings["list"] = "luettelo";
+$a->strings["Event details"] = "Tapahtuman tiedot";
+$a->strings["Starting date and Title are required."] = "Aloituspvm ja otsikko vaaditaan.";
+$a->strings["Event Starts:"] = "Tapahtuma alkaa:";
+$a->strings["Finish date/time is not known or not relevant"] = "Päättymispvm ja kellonaika ei ole tiedossa tai niillä ei ole merkitystä";
+$a->strings["Event Finishes:"] = "Tapahtuma päättyy:";
+$a->strings["Adjust for viewer timezone"] = "Ota huomioon katsojan aikavyöhyke";
+$a->strings["Description:"] = "Kuvaus:";
+$a->strings["Title:"] = "Otsikko:";
+$a->strings["Share this event"] = "Jaa tämä tapahtuma";
+$a->strings["Failed to remove event"] = "Tapahtuman poisto epäonnistui";
+$a->strings["Event removed"] = "Tapahtuma poistettu";
+$a->strings["No more system notifications."] = "Ei enää järjestelmäilmoituksia.";
+$a->strings["System Notifications"] = "Järjestelmäilmoitukset";
+$a->strings["Contact not found."] = "Kontaktia ei ole.";
$a->strings["Friend suggestion sent."] = "Ystäväehdotus lähetettiin.";
$a->strings["Suggest Friends"] = "Ehdota ystäviä";
$a->strings["Suggest a friend for %s"] = "Ehdota ystävää ystävälle %s";
+$a->strings["Item not available."] = "Kohde ei saatavilla.";
+$a->strings["Item was not found."] = "Kohdetta ei löytynyt.";
+$a->strings["No friends to display."] = "Ei näytettäviä kavereita.";
+$a->strings["No contacts."] = "Ei kontakteja.";
+$a->strings["Visit %s's profile [%s]"] = "Näytä %s-käyttäjän profiili [%s]";
+$a->strings["Subscribing to OStatus contacts"] = "OStatus -kontaktien tilaaminen";
+$a->strings["No contact provided."] = "Kontakti puuttuu.";
+$a->strings["Couldn't fetch information for contact."] = "Kontaktin tietoja ei voitu hakea.";
+$a->strings["Couldn't fetch friends for contact."] = "Ei voitu hakea kontaktin kaverit.";
+$a->strings["success"] = "onnistui";
+$a->strings["failed"] = "epäonnistui";
+$a->strings["Authorize application connection"] = "Vahvista sovellusyhteys";
+$a->strings["Return to your app and insert this Securty Code:"] = "Palaa takaisin sovellukseen ja lisää tämä turvakoodi:";
+$a->strings["Please login to continue."] = "Ole hyvä ja kirjaudu jatkaaksesi.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Haluatko antaa tälle sovellukselle luvan hakea viestejäsi ja yhteystietojasi ja/tai luoda uusia viestejä?";
+$a->strings["everybody"] = "kaikki";
+$a->strings["Account"] = "Tili";
+$a->strings["Additional features"] = "Lisäominaisuuksia";
+$a->strings["Display"] = "Ulkonäkö";
+$a->strings["Social Networks"] = "Sosiaalinen media";
+$a->strings["Addons"] = "Lisäosat";
+$a->strings["Connected apps"] = "Yhdistetyt sovellukset";
+$a->strings["Export personal data"] = "Vie henkilökohtaiset tiedot";
+$a->strings["Remove account"] = "Poista tili";
+$a->strings["Missing some important data!"] = "Tärkeää dataa puuttuu!";
+$a->strings["Update"] = "Päivitä";
+$a->strings["Failed to connect with email account using the settings provided."] = "";
+$a->strings["Email settings updated."] = "Sähköpostin asetukset päivitettiin.";
+$a->strings["Features updated"] = "Ominaisuudet päivitetty";
+$a->strings["Relocate message has been send to your contacts"] = "";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tyhjä salasanakenttä ei ole sallittu. Salasana ennallaan.";
+$a->strings["Wrong password."] = "Väärä salasana.";
+$a->strings[" Please use a shorter name."] = "Käytä lyhyempää nimeä.";
+$a->strings[" Name too short."] = "Nimi on liian lyhyt.";
+$a->strings["Wrong Password"] = "Väärä salasana";
+$a->strings["Invalid email."] = "Virheellinen sähköposti.";
+$a->strings["Cannot change to that email."] = "";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "";
+$a->strings["Settings updated."] = "Asetukset päivitetty.";
+$a->strings["Add application"] = "Lisää sovellus";
+$a->strings["Save Settings"] = "Tallenna asetukset";
+$a->strings["Name"] = "Nimi";
+$a->strings["Consumer Key"] = "Kuluttajan avain";
+$a->strings["Consumer Secret"] = "Kuluttajasalaisuus";
+$a->strings["Redirect"] = "Uudelleenohjaus";
+$a->strings["Icon url"] = "Kuvakkeen URL-osoite";
+$a->strings["You can't edit this application."] = "Et voi muokata tätä sovellusta.";
+$a->strings["Connected Apps"] = "Yhdistetyt sovellukset";
+$a->strings["Client key starts with"] = "Asiakasavain alkaa";
+$a->strings["No name"] = "Ei nimeä";
+$a->strings["Remove authorization"] = "Poista lupa";
+$a->strings["No Addon settings configured"] = "Lisäosa-asetukset puuttuvat";
+$a->strings["Addon Settings"] = "Lisäosa-asetukset";
+$a->strings["Off"] = "Pois päältä";
+$a->strings["On"] = "Päällä";
+$a->strings["Additional Features"] = "Lisäominaisuuksia";
+$a->strings["enabled"] = "käytössä";
+$a->strings["disabled"] = "pois käytöstä";
+$a->strings["Built-in support for %s connectivity is %s"] = "";
+$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)";
+$a->strings["Email access is disabled on this site."] = "";
+$a->strings["General Social Media Settings"] = "Yleiset some asetukset";
+$a->strings["Disable Content Warning"] = "Poista sisältövaroitus käytöstä";
+$a->strings["Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn't affect any other content filtering you eventually set up."] = "";
+$a->strings["Disable intelligent shortening"] = "";
+$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "";
+$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automaattisesti seuraa GNU social (OStatus) seuraajat/mainitsijat";
+$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "";
+$a->strings["Default group for OStatus contacts"] = "Oletusryhmä OStatus kontakteille";
+$a->strings["Your legacy GNU Social account"] = "Vanha GNU social käyttäjätilisi";
+$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "";
+$a->strings["Repair OStatus subscriptions"] = "Korjaa OStatus tilaukset";
+$a->strings["Email/Mailbox Setup"] = "Sähköpostin asennus";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "";
+$a->strings["Last successful email check:"] = "Viimeisin onnistunut sähköpostitarkistus:";
+$a->strings["IMAP server name:"] = "IMAP-palvelimen nimi:";
+$a->strings["IMAP port:"] = "IMAP-porttti:";
+$a->strings["Security:"] = "Turvallisuus:";
+$a->strings["None"] = "Ei mitään";
+$a->strings["Email login name:"] = "Sähköpostitilin käyttäjätunnus:";
+$a->strings["Email password:"] = "Sähköpostin salasana:";
+$a->strings["Reply-to address:"] = "Vastausosoite:";
+$a->strings["Send public posts to all email contacts:"] = "Lähetä julkiset julkaisut kaikille kontakteille:";
+$a->strings["Action after import:"] = "Toiminta tuonnin jälkeen:";
+$a->strings["Move to folder"] = "Siirrä kansioon";
+$a->strings["Move to folder:"] = "Siirrä kansioon:";
+$a->strings["No special theme for mobile devices"] = "Ei mobiiliteemaa";
+$a->strings["%s - (Unsupported)"] = "%s - (Ei tueta)";
+$a->strings["%s - (Experimental)"] = "%s - (Kokeellinen)";
+$a->strings["Display Settings"] = "Näyttöasetukset";
+$a->strings["Display Theme:"] = "Käyttöliittymän teema:";
+$a->strings["Mobile Theme:"] = "Mobiiliteema:";
+$a->strings["Suppress warning of insecure networks"] = "";
+$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "";
+$a->strings["Update browser every xx seconds"] = "Päivitä selain xx sekunnin välein";
+$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Vähintään 10 sekuntia. -1 poistaa ominaisuuden käytöstä.";
+$a->strings["Number of items to display per page:"] = "";
+$a->strings["Maximum of 100 items"] = "Enintään 100 kohdetta";
+$a->strings["Number of items to display per page when viewed from mobile device:"] = "";
+$a->strings["Don't show emoticons"] = "Piilota hymiöt";
+$a->strings["Calendar"] = "Kalenteri";
+$a->strings["Beginning of week:"] = "Viikon alku:";
+$a->strings["Don't show notices"] = "";
+$a->strings["Infinite scroll"] = "Loputon selaaminen";
+$a->strings["Automatic updates only at the top of the network page"] = "";
+$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "";
+$a->strings["Bandwith Saver Mode"] = "Kaistanleveyssäästömoodi";
+$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "";
+$a->strings["Smart Threading"] = "";
+$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "";
+$a->strings["General Theme Settings"] = "Yleiset teeman asetukset";
+$a->strings["Custom Theme Settings"] = "Mukautetut teema-asetukset";
+$a->strings["Content Settings"] = "Sisältöasetukset";
+$a->strings["Theme settings"] = "Teeman asetukset";
+$a->strings["Unable to find your profile. Please contact your admin."] = "Profiilisi ei löytynyt. Ota yhteyttä ylläpitäjään.";
+$a->strings["Account Types"] = "Tilityypit";
+$a->strings["Personal Page Subtypes"] = "Henkilökohtaisen sivun alatyypit";
+$a->strings["Community Forum Subtypes"] = "Yhteisöfoorumin alatyypit";
+$a->strings["Personal Page"] = "Henkilökohtainen sivu";
+$a->strings["Account for a personal profile."] = "Henkilökohtaisen profiilin käyttäjätili.";
+$a->strings["Organisation Page"] = "Järjestön sivu";
+$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = "";
+$a->strings["News Page"] = "Uutissivu";
+$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = "";
+$a->strings["Community Forum"] = "Yhteisöfoorumi";
+$a->strings["Account for community discussions."] = "";
+$a->strings["Normal Account Page"] = "Tavallinen käyttäjätili";
+$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = "";
+$a->strings["Soapbox Page"] = "Saarnatuoli sivu";
+$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = "";
+$a->strings["Public Forum"] = "Julkinen foorumi";
+$a->strings["Automatically approves all contact requests."] = "Automaattisesti hyväksyy kaikki kontaktipyynnöt";
+$a->strings["Automatic Friend Page"] = "";
+$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "";
+$a->strings["Private Forum [Experimental]"] = "Yksityisfoorumi [kokeellinen]";
+$a->strings["Requires manual approval of contact requests."] = "";
+$a->strings["OpenID:"] = "OpenID:";
+$a->strings["(Optional) Allow this OpenID to login to this account."] = "";
+$a->strings["Publish your default profile in your local site directory?"] = "Julkaise oletusprofiilisi tämän sivuston paikallisluettelossa?";
+$a->strings["Your profile will be published in the global friendica directories (e.g. %s ). Your profile will be visible in public."] = "";
+$a->strings["Publish your default profile in the global social directory?"] = "Julkaise oletusprofiilisi maailmanlaajuisessa sosiaaliluettelossa?";
+$a->strings["Your profile will be published in this node's local directory . Your profile details may be publicly visible depending on the system settings."] = "";
+$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "";
+$a->strings["Your contact list won't be shown in your default profile page. You can decide to show your contact list separately for each additional profile you create"] = "";
+$a->strings["Hide your profile details from anonymous viewers?"] = "";
+$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Disables posting public messages to Diaspora and other networks."] = "";
+$a->strings["Allow friends to post to your profile page?"] = "Anna kavereiden julkaista profiilisivullasi?";
+$a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = "";
+$a->strings["Allow friends to tag your posts?"] = "Anna kavereiden lisätä tunnisteita julkaisuusi?";
+$a->strings["Your contacts can add additional tags to your posts."] = "Kontaktisi voi lisätä ylimääräisiä tunnisteita julkaisuusi.";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "";
+$a->strings["If you like, Friendica may suggest new members to add you as a contact."] = "";
+$a->strings["Permit unknown people to send you private mail?"] = "Salli yksityisviesit tuntemattomilta?";
+$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = "";
+$a->strings["Profile is not published ."] = "Profiili ei ole julkaistu .";
+$a->strings["Your Identity Address is '%s' or '%s'."] = "Identiteettisi osoite on '%s' tai '%s'.";
+$a->strings["Automatically expire posts after this many days:"] = "";
+$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Jos kenttä jää tyhjäksi, julkaisut eivät vanhene. Vanhentuneet julkaisut poistetaan.";
+$a->strings["Advanced expiration settings"] = "";
+$a->strings["Advanced Expiration"] = "";
+$a->strings["Expire posts:"] = "Julkaisujen vanheneminen:";
+$a->strings["Expire personal notes:"] = "";
+$a->strings["Expire starred posts:"] = "Tähtimerkityt julkaisut vanhenee:";
+$a->strings["Expire photos:"] = "Kuvat vanhenee:";
+$a->strings["Only expire posts by others:"] = "";
+$a->strings["Account Settings"] = "Tiliasetukset";
+$a->strings["Password Settings"] = "Salasana-asetukset";
+$a->strings["New Password:"] = "Uusi salasana:";
+$a->strings["Confirm:"] = "Vahvista:";
+$a->strings["Leave password fields blank unless changing"] = "Jätä salasana kenttää tyhjäksi jos et halua vaihtaa salasanaa";
+$a->strings["Current Password:"] = "Nykyinen salasana:";
+$a->strings["Your current password to confirm the changes"] = "";
+$a->strings["Password:"] = "Salasana:";
+$a->strings["Basic Settings"] = "Perusasetukset";
+$a->strings["Email Address:"] = "Sähköpostiosoite:";
+$a->strings["Your Timezone:"] = "Aikavyöhyke:";
+$a->strings["Your Language:"] = "Kieli:";
+$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "";
+$a->strings["Default Post Location:"] = "Julkaisun oletussijainti:";
+$a->strings["Use Browser Location:"] = "Käytä selaimen sijainti:";
+$a->strings["Security and Privacy Settings"] = "Turvallisuus ja tietosuoja-asetukset";
+$a->strings["Maximum Friend Requests/Day:"] = "Kaveripyyntöraja päivässä:";
+$a->strings["(to prevent spam abuse)"] = "(roskapostin estämiseksi)";
+$a->strings["Default Post Permissions"] = "Julkaisun oletuskäyttöoikeudet:";
+$a->strings["(click to open/close)"] = "(klikkaa auki/kiinni)";
+$a->strings["Show to Groups"] = "Näytä ryhmille";
+$a->strings["Show to Contacts"] = "Näytä kontakteille";
+$a->strings["Default Private Post"] = "";
+$a->strings["Default Public Post"] = "";
+$a->strings["Default Permissions for New Posts"] = "Uuden julkaisun oletuskäyttöoikeudet";
+$a->strings["Maximum private messages per day from unknown people:"] = "Enimmäismäärä yksityisviestejä päivässä tuntemattomilta henkilöiltä:";
+$a->strings["Notification Settings"] = "Huomautusasetukset";
+$a->strings["By default post a status message when:"] = "Oletuksena julkaise tilapäivitys kun:";
+$a->strings["accepting a friend request"] = "hyväksyt kaveripyynnön";
+$a->strings["joining a forum/community"] = "liityt foorumiin/yhteisöön";
+$a->strings["making an interesting profile change"] = "muokkaat kiinnostavalla tavalla profiiliasi";
+$a->strings["Send a notification email when:"] = "Lähetä sähköposti-ilmoitus kun:";
+$a->strings["You receive an introduction"] = "Vastaanotat kaverikutsun";
+$a->strings["Your introductions are confirmed"] = "Kaverikutsusi on hyväksytty";
+$a->strings["Someone writes on your profile wall"] = "Joku kirjoittaa profiiliseinällesi";
+$a->strings["Someone writes a followup comment"] = "Joku vastaa kommenttiin";
+$a->strings["You receive a private message"] = "Vastaanotat yksityisviestin";
+$a->strings["You receive a friend suggestion"] = "Vastaanotat kaveriehdotuksen";
+$a->strings["You are tagged in a post"] = "Sinut on merkitty julkaisuun";
+$a->strings["You are poked/prodded/etc. in a post"] = "sinut on tökätty tms. julkaisussa";
+$a->strings["Activate desktop notifications"] = "Ota työpöytäilmoitukset käyttöön";
+$a->strings["Show desktop popup on new notifications"] = "Näytä uudet ilmoitukset ponnahdusikkunassa";
+$a->strings["Text-only notification emails"] = "Ilmoitussähköposteissa vain tekstiä";
+$a->strings["Send text only notification emails, without the html part"] = "Lähetä ilmoitussähköposteissa vain tekstiä ilman HTML-koodia";
+$a->strings["Show detailled notifications"] = "Näytä yksityiskohtaiset ilmoitukset";
+$a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = "";
+$a->strings["Advanced Account/Page Type Settings"] = "Käyttäjätili/sivutyyppi lisäasetuksia";
+$a->strings["Change the behaviour of this account for special situations"] = "";
+$a->strings["Relocate"] = "Uudelleensijoitus";
+$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "";
+$a->strings["Resend relocate message to contacts"] = "";
+$a->strings["Account approved."] = "Tili hyväksytty.";
+$a->strings["Registration revoked for %s"] = "";
+$a->strings["Please login."] = "Ole hyvä ja kirjaudu.";
$a->strings["Group created."] = "Ryhmä luotu.";
$a->strings["Could not create group."] = "Ryhmää ei voitu luoda.";
$a->strings["Group not found."] = "Ryhmää ei löytynyt.";
$a->strings["Group name changed."] = "Ryhmän nimi muutettu.";
+$a->strings["Permission denied"] = "Käyttöoikeus evätty";
$a->strings["Save Group"] = "Tallenna ryhmä";
$a->strings["Create a group of contacts/friends."] = "Luo kontakti/kaveriryhmä";
-$a->strings["Group Name: "] = "Ryhmän nimi:";
$a->strings["Group removed."] = "Ryhmä poistettu.";
$a->strings["Unable to remove group."] = "Ryhmää ei voida poistaa.";
$a->strings["Delete Group"] = "Poista ryhmä";
@@ -593,34 +1241,389 @@ $a->strings["Group Editor"] = "Ryhmien muokkausta";
$a->strings["Edit Group Name"] = "Muokkaa ryhmän nimeä";
$a->strings["Members"] = "Jäsenet";
$a->strings["All Contacts"] = "Kaikki yhteystiedot";
-$a->strings["Group is empty"] = "Ryhmä on tyhjä";
$a->strings["Remove Contact"] = "Poista kontakti";
$a->strings["Add Contact"] = "Lisää kontakti";
-$a->strings["New Message"] = "Uusi viesti";
-$a->strings["Unable to locate contact information."] = "Kontaktin tiedot ei löydy.";
-$a->strings["Messages"] = "Viestit";
-$a->strings["Do you really want to delete this message?"] = "Haluatko varmasti poistaa viestin?";
-$a->strings["Message deleted."] = "Viesti poistettu.";
-$a->strings["Conversation removed."] = "Keskustelu poistettu.";
-$a->strings["No messages."] = "Ei viestejä.";
-$a->strings["Message not available."] = "Viesti ei saatavilla.";
-$a->strings["Delete message"] = "Poista viesti";
-$a->strings["D, d M Y - g:i A"] = "";
-$a->strings["Delete conversation"] = "Poista keskustelu";
-$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "";
-$a->strings["Send Reply"] = "Lähetä vastaus";
-$a->strings["Unknown sender - %s"] = "Tuntematon lähettäjä - %s";
-$a->strings["You and %s"] = "Sinä ja %s";
-$a->strings["%s and You"] = "%s ja sinä";
-$a->strings["%d message"] = [
- 0 => "%d viesti",
- 1 => "%d viestiä",
+$a->strings["Click on a contact to add or remove."] = "Valitse kontakti, jota haluat poistaa tai lisätä.";
+$a->strings["Files"] = "Tiedostot";
+$a->strings["Theme settings updated."] = "Teeman asetukset päivitetty.";
+$a->strings["Overview"] = "Yleiskatsaus";
+$a->strings["Federation Statistics"] = "Liiton tilastotiedot";
+$a->strings["Configuration"] = "Kokoonpano";
+$a->strings["Site"] = "Sivusto";
+$a->strings["Users"] = "Käyttäjät";
+$a->strings["Themes"] = "Teemat";
+$a->strings["Database"] = "Tietokanta";
+$a->strings["DB updates"] = "Tietokannan päivitykset";
+$a->strings["Inspect Queue"] = "Tarkista jono";
+$a->strings["Tools"] = "Työkalut";
+$a->strings["Contact Blocklist"] = "Kontaktien estolista";
+$a->strings["Server Blocklist"] = "Palvelimien estolista";
+$a->strings["Delete Item"] = "Poista kohde";
+$a->strings["Logs"] = "Lokit";
+$a->strings["View Logs"] = "Katso lokit";
+$a->strings["Diagnostics"] = "Diagnostiikka";
+$a->strings["PHP Info"] = "PHP tietoja";
+$a->strings["probe address"] = "";
+$a->strings["check webfinger"] = "Tarkista webfinger";
+$a->strings["Addon Features"] = "Lisäosaominaisuudet";
+$a->strings["User registrations waiting for confirmation"] = "Käyttäjärekisteröinnit odottavat hyväksyntää";
+$a->strings["Administration"] = "Ylläpito";
+$a->strings["Display Terms of Service"] = "Näytä käyttöehdot";
+$a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = "";
+$a->strings["Display Privacy Statement"] = "Näytä tietosuojalausunto";
+$a->strings["Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR ."] = "";
+$a->strings["The Terms of Service"] = "Käyttöehdot";
+$a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "";
+$a->strings["The blocked domain"] = "Estetty verkkotunnus";
+$a->strings["The reason why you blocked this domain."] = "Verkkotunnuksen estosyy.";
+$a->strings["Delete domain"] = "Poista verkkotunnus";
+$a->strings["Check to delete this entry from the blocklist"] = "Laita rasti poistaaksesi kohde estolistalta";
+$a->strings["This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."] = "";
+$a->strings["The list of blocked servers will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "";
+$a->strings["Add new entry to block list"] = "Lisää uusi kohde estolistaan";
+$a->strings["Server Domain"] = "Palvelimen verkkotunnus";
+$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "";
+$a->strings["Block reason"] = "Estosyy";
+$a->strings["Add Entry"] = "Lisää merkintä";
+$a->strings["Save changes to the blocklist"] = "Tallenna muutoksia estolistaan";
+$a->strings["Current Entries in the Blocklist"] = "Nykyinen estolista";
+$a->strings["Delete entry from blocklist"] = "Poista kohde estolistalta";
+$a->strings["Delete entry from blocklist?"] = "Poista kohde estolistalta?";
+$a->strings["Server added to blocklist."] = "Palvelin lisätty estolistalle";
+$a->strings["Site blocklist updated."] = "Sivuston estolista päivitetty.";
+$a->strings["%s contact unblocked"] = [
+ 0 => "%s kontakti poistettu estolistalta",
+ 1 => "%s kontaktia poistettu estolistalta",
];
-$a->strings["Personal Notes"] = "Henkilökohtaiset tiedot";
-$a->strings["Photo Albums"] = "Valokuva-albumit";
+$a->strings["Remote Contact Blocklist"] = "Etäkontakti estolista";
+$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "";
+$a->strings["Block Remote Contact"] = "Estä etäkontakti";
+$a->strings["select all"] = "valitse kaikki";
+$a->strings["select none"] = "älä valitse mitään";
+$a->strings["Block"] = "Estä";
+$a->strings["Unblock"] = "Salli";
+$a->strings["No remote contact is blocked from this node."] = "";
+$a->strings["Blocked Remote Contacts"] = "Estetty etäkontaktit";
+$a->strings["Block New Remote Contact"] = "Estä uusi etäkontakti";
+$a->strings["Photo"] = "Kuva";
+$a->strings["Profile URL"] = "Profiilin URL";
+$a->strings["%s total blocked contact"] = [
+ 0 => "Yhteensä %s estetty kontakti",
+ 1 => "Yhteensä %s estettyjä kontakteja",
+];
+$a->strings["URL of the remote contact to block."] = "Estettävän etäkontaktin URL-osoite";
+$a->strings["Delete this Item"] = "Poista tämä kohde";
+$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "";
+$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "";
+$a->strings["GUID"] = "GUID";
+$a->strings["The GUID of the item you want to delete."] = "Poistettavan kohteen GUID.";
+$a->strings["Item marked for deletion."] = "Kohde merkitty poistettavaksi.";
+$a->strings["unknown"] = "tuntematon";
+$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."] = "";
+$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = "";
+$a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = "Tällä hetkellä tämä solmu havaitsee %d muita solmuja joissa %d rekisteröityneitä käyttäjiä. Tarkemmat tiedot:";
+$a->strings["ID"] = "";
+$a->strings["Recipient Name"] = "Vastaanottajan nimi";
+$a->strings["Recipient Profile"] = "Vastaanottajan profiili";
+$a->strings["Created"] = "Luotu";
+$a->strings["Last Tried"] = "Viimeksi yritetty";
+$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "";
+$a->strings["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 here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion. "] = "";
+$a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "";
+$a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = "Tietokannan päivitys epäonnistui. Suorita komento \"php bin/console.php dbstructure update\" komentoriviltä ja lue mahdolliset virheviestit.";
+$a->strings["The worker was never executed. Please check your database structure!"] = "Workeriä ei ole otettu käyttöön. Tarkista tietokantasi rakenne!";
+$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "Viimeisin worker -käynnistys tapahtui klo %s UTC, eli yli tunti sitten. Tarkista crontab -asetukset.";
+$a->strings["Normal Account"] = "Perustili";
+$a->strings["Automatic Follower Account"] = "Automaattinen seuraajatili";
+$a->strings["Public Forum Account"] = "Julkinen foorumitili";
+$a->strings["Automatic Friend Account"] = "Automaattinen kaveritili";
+$a->strings["Blog Account"] = "Blogitili";
+$a->strings["Private Forum Account"] = "Yksityinen foorumitili";
+$a->strings["Message queues"] = "Viestijonot";
+$a->strings["Summary"] = "Yhteenveto";
+$a->strings["Registered users"] = "Rekisteröityneet käyttäjät";
+$a->strings["Pending registrations"] = "Vireillä olevat rekisteröinnit";
+$a->strings["Version"] = "Versio";
+$a->strings["Active addons"] = "Käytössäolevat lisäosat";
+$a->strings["Can not parse base url. Must have at least ://"] = "Ei voitu jäsentää perusosoitetta. Täytyy sisältää ainakin ://";
+$a->strings["Site settings updated."] = "Sivuston asetukset päivitettiin.";
+$a->strings["No community page"] = "Ei yhteisösivua";
+$a->strings["Public postings from users of this site"] = "Julkiset julkaisut tämän sivuston käyttäjiltä";
+$a->strings["Public postings from the federated network"] = "Julkiset julkaisut liittoutuneelta verkolta";
+$a->strings["Public postings from local users and the federated network"] = "Julkiset julkaisut tältä sivustolta ja liittoutuneelta verkolta";
+$a->strings["Disabled"] = "Pois käytöstä";
+$a->strings["Users, Global Contacts"] = "Käyttäjät, maailmanlaajuiset kontaktit";
+$a->strings["Users, Global Contacts/fallback"] = "";
+$a->strings["One month"] = "Yksi kuukausi";
+$a->strings["Three months"] = "Kolme kuukautta";
+$a->strings["Half a year"] = "Puoli vuotta";
+$a->strings["One year"] = "Yksi vuosi";
+$a->strings["Multi user instance"] = "Monen käyttäjän instanssi";
+$a->strings["Closed"] = "Suljettu";
+$a->strings["Requires approval"] = "Edellyttää hyväksyntää";
+$a->strings["Open"] = "Avoin";
+$a->strings["No SSL policy, links will track page SSL state"] = "";
+$a->strings["Force all links to use SSL"] = "Pakota kaikki linkit käyttämään SSL-yhteyttä";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
+$a->strings["Don't check"] = "Älä tarkista";
+$a->strings["check the stable version"] = "";
+$a->strings["check the development version"] = "";
+$a->strings["Republish users to directory"] = "";
+$a->strings["Registration"] = "Rekisteröityminen";
+$a->strings["File upload"] = "Tiedoston lataus";
+$a->strings["Policies"] = "Käytännöt";
+$a->strings["Auto Discovered Contact Directory"] = "";
+$a->strings["Performance"] = "Suoritus";
+$a->strings["Worker"] = "Worker";
+$a->strings["Message Relay"] = "Viestirele";
+$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "";
+$a->strings["Site name"] = "Sivuston nimi";
+$a->strings["Host name"] = "Palvelimen nimi";
+$a->strings["Sender Email"] = "Lähettäjän sähköposti";
+$a->strings["The email address your server shall use to send notification emails from."] = "Lähettäjän sähköpostiosoite palvelimen ilmoitussähköposteissa.";
+$a->strings["Banner/Logo"] = "Banneri/logo";
+$a->strings["Shortcut icon"] = "Pikakuvake";
+$a->strings["Link to an icon that will be used for browsers."] = "Linkki kuvakkeeseen jota selaimet saa käyttää.";
+$a->strings["Touch icon"] = "Kosketusnäyttökuvake";
+$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Linkki kuvakkeeseen jota tabletit ja matkapuhelimet saa käyttää.";
+$a->strings["Additional Info"] = "Lisätietoja";
+$a->strings["For public servers: you can add additional information here that will be listed at %s/servers."] = "";
+$a->strings["System language"] = "Järjestelmän kieli";
+$a->strings["System theme"] = "Järjestelmäteema";
+$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings "] = "";
+$a->strings["Mobile system theme"] = "Mobiili järjestelmäteema";
+$a->strings["Theme for mobile devices"] = "Mobiiliteema";
+$a->strings["SSL link policy"] = "SSL-linkkikäytäntö";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Määrittää pakotetaanko tuotetut linkit käyttämään SSL-yhteyttä.";
+$a->strings["Force SSL"] = "Pakoita SSL-yhteyden käyttöä";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "";
+$a->strings["Hide help entry from navigation menu"] = "";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "";
+$a->strings["Single user instance"] = "Yksittäisen käyttäjän instanssi";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "";
+$a->strings["Maximum image size"] = "Suurin kuvakoko";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Ladattavan kuvatiedoston enimmäiskoko tavuina. Oletusarvo on 0, eli ei enimmäiskokoa.";
+$a->strings["Maximum image length"] = "Suurin kuvapituus";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Ladattavan kuvatiedoston enimmäispituus pikseleinä. Oletusarvo on -1, eli ei enimmäispituutta.";
+$a->strings["JPEG image quality"] = "JPEG-kuvanlaatu";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
+$a->strings["Register policy"] = "Rekisteröintipolitiikka";
+$a->strings["Maximum Daily Registrations"] = "Päivittäinen rekisteröitymisraja";
+$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Mikäli rekisteröityminen on sallittu, tämä asettaa enimmäismäärä uusia rekisteröitymisiä päivässä. Jos reksiteröityminen ei ole sallittu, tällä asetuksella ei ole vaikutusta.";
+$a->strings["Register text"] = "Rekisteröitymisteksti";
+$a->strings["Will be displayed prominently on the registration page. You can use BBCode here."] = "Näkyvästi esillä rekisteröitymissivulla. Voit käyttää BBCodeia.";
+$a->strings["Accounts abandoned after x days"] = "Käyttäjätilit hylätään X päivän jälkeen";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
+$a->strings["Allowed friend domains"] = "Sallittuja kaveri-verkkotunnuksia";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
+$a->strings["Allowed email domains"] = "Sallittuja sähköposti-verkkotunnuksia";
+$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "";
+$a->strings["No OEmbed rich content"] = "";
+$a->strings["Don't show the rich content (e.g. embedded PDF), except from the domains listed below."] = "";
+$a->strings["Allowed OEmbed domains"] = "Sallittuja OEmbed -verkkotunnuksia";
+$a->strings["Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted."] = "";
+$a->strings["Block public"] = "Estä vierailijat";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
+$a->strings["Force publish"] = "";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
+$a->strings["Global directory URL"] = "Maailmanlaajuisen hakemiston URL-osoite";
+$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
+$a->strings["Private posts by default for new users"] = "";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "";
+$a->strings["Don't include post content in email notifications"] = "Älä lisää julkaisun sisältö sähköposti-ilmoitukseen";
+$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "";
+$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "";
+$a->strings["Don't embed private images in posts"] = "Älä upota yksityisiä kuvia julkaisuissa";
+$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "";
+$a->strings["Allow Users to set remote_self"] = "";
+$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "";
+$a->strings["Block multiple registrations"] = "";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "";
+$a->strings["OpenID support"] = "OpenID-tuki";
+$a->strings["OpenID support for registration and logins."] = "OpenID-tuki rekisteröitymiseen ja kirjautumiseen";
+$a->strings["Fullname check"] = "Koko nimi tarkistus";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
+$a->strings["Community pages for visitors"] = "Yhteisösivu vieraille";
+$a->strings["Which community pages should be available for visitors. Local users always see both pages."] = "";
+$a->strings["Posts per user on community page"] = "";
+$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Enimmäismäärä julkaisuja käyttäjää kohden yhteisösivulla. (Ei koske maailmanlaajuista yhteisösivua.)";
+$a->strings["Enable OStatus support"] = "Salli OStatus-tuki";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
+$a->strings["Only import OStatus threads from our contacts"] = "Ainoastaan tuo OStatus -ketjuja kontakteiltamme";
+$a->strings["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."] = "";
+$a->strings["OStatus support can only be enabled if threading is enabled."] = "OStatus-tuki voidaan ottaa käyttöön ainoastaan jos ketjuttaminen on jo otettu käyttöön.";
+$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Diaspora -tukea ei voitu ottaa käyttöön koska Friendica on asennettu alihakemistoon.";
+$a->strings["Enable Diaspora support"] = "Salli Diaspora-tuki";
+$a->strings["Provide built-in Diaspora network compatibility."] = "Ota käyttöön Diaspora-yhteensopivuus";
+$a->strings["Only allow Friendica contacts"] = "Salli ainoastaan Friendica -kontakteja";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Kaikkien kontaktien on käytettävä Friendica-protokollaa. Kaikki muut protokollat poistetaan käytöstä.";
+$a->strings["Verify SSL"] = "Vahvista SSL";
+$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "";
+$a->strings["Proxy user"] = "Välityspalvelimen käyttäjä";
+$a->strings["Proxy URL"] = "Välityspalvelimen osoite";
+$a->strings["Network timeout"] = "Verkon aikakatkaisu";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
+$a->strings["Maximum Load Average"] = "Kuorman enimmäiskeksiarvo";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Järjestelmäkuormitus jolloin lähetys- ja kyselyprosessit lykätään (oletusarvo 50).";
+$a->strings["Maximum Load Average (Frontend)"] = "Kuorman enimmäiskeskiarvo (Frontend)";
+$a->strings["Maximum system load before the frontend quits service - default 50."] = "Järjestelmäkuormitus jolloin Frontend poistetaan käytöstä (oletusarvo 50).";
+$a->strings["Minimal Memory"] = "";
+$a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "";
+$a->strings["Maximum table size for optimization"] = "Taulukon enimmäiskoko optimointia varten";
+$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "Taulukon enimmäiskoko (megatavuina) automaattista optimointia varten - oletusarvo 100 mt. Syötä -1 poistamaan optimointi käytöstä.";
+$a->strings["Minimum level of fragmentation"] = "";
+$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "";
+$a->strings["Periodical check of global contacts"] = "";
+$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "";
+$a->strings["Days between requery"] = "";
+$a->strings["Number of days after which a server is requeried for his contacts."] = "";
+$a->strings["Discover contacts from other servers"] = "Etsi kontakteja muilta palvelimilta";
+$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "";
+$a->strings["Timeframe for fetching global contacts"] = "";
+$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "";
+$a->strings["Search the local directory"] = "Paikallisluettelohaku";
+$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "";
+$a->strings["Publish server information"] = "Julkaise palvelintiedot";
+$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = "";
+$a->strings["Check upstream version"] = "";
+$a->strings["Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview."] = "";
+$a->strings["Suppress Tags"] = "Piilota tunnisteet";
+$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Piilota tunnistelista julkaisun lopussa.";
+$a->strings["Path to item cache"] = "";
+$a->strings["The item caches buffers generated bbcode and external images."] = "";
+$a->strings["Cache duration in seconds"] = "";
+$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "";
+$a->strings["Maximum numbers of comments per post"] = "Julkaisun kommentiraja";
+$a->strings["How much comments should be shown for each post? Default value is 100."] = "";
+$a->strings["Temp path"] = "";
+$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "";
+$a->strings["Base path to installation"] = "Asennuksen peruspolku";
+$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "";
+$a->strings["Disable picture proxy"] = "";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
+$a->strings["Only search in tags"] = "Tunnistehaku";
+$a->strings["On large systems the text search can slow down the system extremely."] = "";
+$a->strings["New base url"] = "Uusi perusosoite";
+$a->strings["Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users."] = "Vaihtaa tämän palvelimen perus-URL-osoitteen. Lähettää uudelleensijoitusviestit käyttäjien kaikille kontakteille Friendicassa ja Diasporassa*.";
+$a->strings["RINO Encryption"] = "RINO-salaus";
+$a->strings["Encryption layer between nodes."] = "Salauskerros solmujen välillä.";
+$a->strings["Enabled"] = "Käytössä";
+$a->strings["Maximum number of parallel workers"] = "Enimmäismäärä rinnakkaisia workereitä";
+$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "";
+$a->strings["Don't use 'proc_open' with the worker"] = "";
+$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 worker calls in your crontab."] = "";
+$a->strings["Enable fastlane"] = "Käytä fastlane";
+$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "";
+$a->strings["Enable frontend worker"] = "Ota Frontend Worker käyttöön";
+$a->strings["When enabled the Worker process is triggered when backend access is performed \\x28e.g. messages being delivered\\x29. On smaller sites you might want to call %s/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."] = "";
+$a->strings["Subscribe to relay"] = "Relen tilaus";
+$a->strings["Enables the receiving of public posts from the relay. They will be included in the search, subscribed tags and on the global community page."] = "";
+$a->strings["Relay server"] = "Relepalvelin";
+$a->strings["Address of the relay server where public posts should be send to. For example https://relay.diasp.org"] = "";
+$a->strings["Direct relay transfer"] = "Suora releen siirto";
+$a->strings["Enables the direct transfer to other servers without using the relay servers"] = "";
+$a->strings["Relay scope"] = "Relen soveltamisala";
+$a->strings["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."] = "";
+$a->strings["all"] = "kaikki";
+$a->strings["tags"] = "tunnisteet";
+$a->strings["Server tags"] = "palvelintunnisteet";
+$a->strings["Comma separated list of tags for the 'tags' subscription."] = "Pilkulla erotettu tunnistelista tunnistetilausta varten.";
+$a->strings["Allow user tags"] = "Salli käyttäjien tunnisteet";
+$a->strings["If enabled, the tags from the saved searches will used for the 'tags' subscription in addition to the 'relay_server_tags'."] = "Jos otettu käyttöön, tunnisteet tallennetuista hauista käytetään tunnistetilaukseen 'relay_server_tags'in lisäksi.";
+$a->strings["Update has been marked successful"] = "";
+$a->strings["Database structure update %s was successfully applied."] = "Tietokannan rakenteen %s-päivitys onnistui.";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "Tietokannan rakennepäivitys %s epäonnistui virheviestillä %s";
+$a->strings["Executing %s failed with error: %s"] = "";
+$a->strings["Update %s was successfully applied."] = "%s-päivitys onnistui.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
+$a->strings["There was no additional update function %s that needed to be called."] = "";
+$a->strings["No failed updates."] = "Ei epäonnistuineita päivityksiä.";
+$a->strings["Check database structure"] = "Tarkista tietokannan rakenne";
+$a->strings["Failed Updates"] = "Epäonnistuineita päivityksiä";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
+$a->strings["Mark success (if update was manually applied)"] = "";
+$a->strings["Attempt to execute this update step automatically"] = "";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "";
+$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\t\tThank you and welcome to %4\$s."] = "";
+$a->strings["%s user blocked/unblocked"] = [
+ 0 => "%s käyttäjä estetty / poistettu estolistalta",
+ 1 => "%s käyttäjää estetty / poistettu estolistalta",
+];
+$a->strings["%s user deleted"] = [
+ 0 => "%s käyttäjä poistettu",
+ 1 => "%s käyttäjää poistettu",
+];
+$a->strings["User '%s' deleted"] = "Käyttäjä '%s' poistettu";
+$a->strings["User '%s' unblocked"] = "Käyttäjä '%s' poistettu estolistalta";
+$a->strings["User '%s' blocked"] = "Käyttäjä '%s' estetty";
+$a->strings["Private Forum"] = "";
+$a->strings["Register date"] = "Rekisteripäivämäärä";
+$a->strings["Last login"] = "Viimeisin kirjautuminen";
+$a->strings["Last item"] = "Viimeisin kohde";
+$a->strings["Type"] = "";
+$a->strings["Add User"] = "Lisää käyttäjä";
+$a->strings["User registrations waiting for confirm"] = "";
+$a->strings["User waiting for permanent deletion"] = "";
+$a->strings["Request date"] = "Pyynnön päivämäärä";
+$a->strings["No registrations."] = "Ei rekisteröintejä.";
+$a->strings["Note from the user"] = "";
+$a->strings["Approve"] = "Hyväksy";
+$a->strings["Deny"] = "Kieltäydy";
+$a->strings["Site admin"] = "Sivuston ylläpito";
+$a->strings["Account expired"] = "Tili vanhentunut";
+$a->strings["New User"] = "Uusi käyttäjä";
+$a->strings["Deleted since"] = "Poistettu";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
+$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
+$a->strings["Name of the new user."] = "Uuden käyttäjän nimi.";
+$a->strings["Nickname"] = "Lempinimi";
+$a->strings["Nickname of the new user."] = "Uuden käyttäjän lempinimi";
+$a->strings["Email address of the new user."] = "Uuden käyttäjän sähköpostiosoite.";
+$a->strings["Addon %s disabled."] = "Lisäosa %s poistettu käytöstä.";
+$a->strings["Addon %s enabled."] = "Lisäosa %s käytössä.";
+$a->strings["Disable"] = "Poista käytöstä";
+$a->strings["Enable"] = "Ota käyttöön";
+$a->strings["Toggle"] = "Vaihda";
+$a->strings["Author: "] = "Tekijä";
+$a->strings["Maintainer: "] = "Ylläpitäjä:";
+$a->strings["Reload active addons"] = "";
+$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "";
+$a->strings["No themes found."] = "Teemoja ei löytynyt.";
+$a->strings["Screenshot"] = "Kuvakaappaus";
+$a->strings["Reload active themes"] = "Lataa aktiiviset teemat uudelleen";
+$a->strings["No themes found on the system. They should be placed in %1\$s"] = "";
+$a->strings["[Experimental]"] = "[Kokeellinen]";
+$a->strings["[Unsupported]"] = "[Ei tueta]";
+$a->strings["Log settings updated."] = "Lokiasetukset päivitetty.";
+$a->strings["PHP log currently enabled."] = "PHP-loki käytössä";
+$a->strings["PHP log currently disabled."] = "PHP-loki pois käytöstä";
+$a->strings["Clear"] = "Tyhjennä";
+$a->strings["Enable Debugging"] = "Ota virheenkorjaustila käyttöön";
+$a->strings["Log file"] = "Lokitiedosto";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
+$a->strings["Log level"] = "Lokitaso";
+$a->strings["PHP logging"] = "PHP-loki";
+$a->strings["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."] = "";
+$a->strings["Error trying to open %1\$s log file.\\r\\n Check to see if file %1\$s exist and is readable."] = "";
+$a->strings["Couldn't open %1\$s log file.\\r\\n Check to see if file %1\$s is readable."] = "";
+$a->strings["Lock feature %s"] = "Lukitse ominaisuus %s";
+$a->strings["Manage Additional Features"] = "Hallitse lisäominaisuudet";
+$a->strings["Parent user not found."] = "";
+$a->strings["No parent user"] = "";
+$a->strings["Parent Password:"] = "";
+$a->strings["Please enter the password of the parent account to legitimize your request."] = "";
+$a->strings["Parent User"] = "";
+$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "";
+$a->strings["Delegates"] = "";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "";
+$a->strings["Existing Page Delegates"] = "";
+$a->strings["Potential Delegates"] = "";
+$a->strings["Remove"] = "Poista";
+$a->strings["Add"] = "Lisää";
+$a->strings["No entries."] = "";
$a->strings["Recent Photos"] = "Viimeaikaisia kuvia";
$a->strings["Upload New Photos"] = "Lähetä uusia kuvia";
-$a->strings["everybody"] = "kaikki";
$a->strings["Contact information unavailable"] = "Kontaktin tietoja ei saatavilla";
$a->strings["Album not found."] = "Albumia ei ole.";
$a->strings["Delete Album"] = "Poista albumi";
@@ -639,9 +1642,6 @@ $a->strings["Upload Photos"] = "Lähetä kuvia";
$a->strings["New album name: "] = "Albumin uusi nimi: ";
$a->strings["or existing album name: "] = "tai olemassaolevan albumin nimi: ";
$a->strings["Do not show a status post for this upload"] = "Älä näytä tilaviestiä tälle lähetykselle";
-$a->strings["Permissions"] = "Käyttöoikeudet";
-$a->strings["Show to Groups"] = "Näytä ryhmille";
-$a->strings["Show to Contacts"] = "Näytä kontakteille";
$a->strings["Edit Album"] = "Muokkaa albumia";
$a->strings["Show Newest First"] = "Näytä uusin ensin";
$a->strings["Show Oldest First"] = "Näytä vanhin ensin";
@@ -651,7 +1651,6 @@ $a->strings["Photo not available"] = "Kuva ei ole saatavilla";
$a->strings["View photo"] = "Näytä kuva";
$a->strings["Edit photo"] = "Muokkaa kuvaa";
$a->strings["Use as profile photo"] = "Käytä profiilikuvana";
-$a->strings["Private Message"] = "Yksityisviesti";
$a->strings["View Full Size"] = "Näytä täysikokoisena";
$a->strings["Tags: "] = "Merkinnät:";
$a->strings["[Remove any tag]"] = "[Poista mikä tahansa merkintä]";
@@ -662,33 +1661,169 @@ $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #cam
$a->strings["Do not rotate"] = "Älä kierrä";
$a->strings["Rotate CW (right)"] = "Käännä oikealle";
$a->strings["Rotate CCW (left)"] = "Käännä vasemmalle";
-$a->strings["I like this (toggle)"] = "Tykkään tästä (vaihda)";
-$a->strings["I don't like this (toggle)"] = "En tykkää tästä (vaihda)";
-$a->strings["This is you"] = "Tämä olet sinä";
-$a->strings["Comment"] = "Kommentti";
$a->strings["Map"] = "Kartta";
$a->strings["View Album"] = "Näytä albumi";
-$a->strings["Requested profile is not available."] = "Pyydettyä profiilia ei saatavilla.";
-$a->strings["%s's posts"] = "%s: julkaisut";
-$a->strings["%s's comments"] = "%s: kommentit";
-$a->strings["%s's timeline"] = "%s: aikajana";
-$a->strings["Access to this profile has been restricted."] = "Pääsy tähän profiiliin on rajoitettu";
-$a->strings["Tips for New Members"] = "Vinkkejä uusille käyttäjille";
+$a->strings["Edit contact"] = "Muokkaa kontaktia";
+$a->strings["Contacts who are not members of a group"] = "Kontaktit jotka eivät kuulu ryhmään";
+$a->strings["Community option not available."] = "Yhteisö vaihtoehto ei saatavilla.";
+$a->strings["Not available."] = "Ei saatavilla.";
+$a->strings["Local Community"] = "Paikallinen yhteisö";
+$a->strings["Posts from local users on this server"] = "Tämän palvelimen julkaisut";
+$a->strings["Global Community"] = "Maailmanlaajuinen yhteisö";
+$a->strings["Posts from users of the whole federated network"] = "Maailmanlaajuisen verkon julkaisut";
+$a->strings["No results."] = "Ei tuloksia.";
+$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "";
+$a->strings["No recipient selected."] = "Vastaanottaja puuttuu.";
+$a->strings["Unable to locate contact information."] = "Kontaktin tiedot ei löydy.";
+$a->strings["Message could not be sent."] = "Viestiä ei voitu lähettää.";
+$a->strings["Message collection failure."] = "Viestin noutaminen epäonnistui.";
+$a->strings["Message sent."] = "Viesti lähetetty.";
+$a->strings["Do you really want to delete this message?"] = "Haluatko varmasti poistaa viestin?";
+$a->strings["Message deleted."] = "Viesti poistettu.";
+$a->strings["Conversation removed."] = "Keskustelu poistettu.";
+$a->strings["Send Private Message"] = "Lähetä yksityisviesti";
+$a->strings["To:"] = "Vastaanottaja:";
+$a->strings["Subject:"] = "Aihe:";
+$a->strings["No messages."] = "Ei viestejä.";
+$a->strings["Message not available."] = "Viesti ei saatavilla.";
+$a->strings["Delete message"] = "Poista viesti";
+$a->strings["D, d M Y - g:i A"] = "";
+$a->strings["Delete conversation"] = "Poista keskustelu";
+$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "";
+$a->strings["Send Reply"] = "Lähetä vastaus";
+$a->strings["Unknown sender - %s"] = "Tuntematon lähettäjä - %s";
+$a->strings["You and %s"] = "Sinä ja %s";
+$a->strings["%s and You"] = "%s ja sinä";
+$a->strings["%d message"] = [
+ 0 => "%d viesti",
+ 1 => "%d viestiä",
+];
$a->strings["Do you really want to delete this video?"] = "Haluatko varmasti poistaa tämän videon?";
$a->strings["Delete Video"] = "Poista video";
$a->strings["No videos selected"] = "Ei videoita valittuna";
$a->strings["Recent Videos"] = "Viimeisimmät videot";
$a->strings["Upload New Videos"] = "Lataa uusia videoita";
-$a->strings["Events"] = "Tapahtumat";
-$a->strings["View"] = "Katso";
-$a->strings["Previous"] = "Edellinen";
-$a->strings["Next"] = "Seuraava";
-$a->strings["today"] = "tänään";
-$a->strings["month"] = "kuukausi";
-$a->strings["week"] = "viikko";
-$a->strings["day"] = "päivä";
-$a->strings["list"] = "luettelo";
-$a->strings["User not found"] = "Käyttäjää ei löydy";
+$a->strings["Credits"] = "Lopputekstit";
+$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!"] = "";
+$a->strings["Contact wasn't found or can't be unfollowed."] = "";
+$a->strings["Contact unfollowed"] = "Kontaktia ei enää seurata";
+$a->strings["Submit Request"] = "Lähetä pyyntö";
+$a->strings["You aren't a friend of this contact."] = "Et ole kontaktin kaveri.";
+$a->strings["Unfollowing is currently not supported by your network."] = "Seuraamisen lopettaminen ei tällä hetkellä tueta verkossasi.";
+$a->strings["Disconnect/Unfollow"] = "Katkaise / Lopeta seuraaminen";
+$a->strings["Your Identity Address:"] = "Identiteettisi osoite:";
+$a->strings["Invalid request."] = "Virheellinen pyyntö.";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "";
+$a->strings["Or - did you try to upload an empty file?"] = "Yrititkö ladata tyhjän tiedoston?";
+$a->strings["File exceeds size limit of %s"] = "Tiedosto ylittää kokorajoituksen %s";
+$a->strings["File upload failed."] = "Tiedoston lähettäminen epäonnistui.";
+$a->strings["Tips for New Members"] = "Vinkkejä uusille käyttäjille";
+$a->strings["Time Conversion"] = "Aikamuunnos";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "";
+$a->strings["UTC time: %s"] = "UTC-aika: %s";
+$a->strings["Current timezone: %s"] = "Aikavyöhyke: %s";
+$a->strings["Converted localtime: %s"] = "Muunnettu paikallisaika: %s";
+$a->strings["Please select your timezone:"] = "Valitse aikavyöhykkeesi:";
+$a->strings["This introduction has already been accepted."] = "Tämä esittely on jo hyväksytty.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Profiilin sijainti on viallinen tai se ei sisällä profiilitietoja.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Varoitus: profiilin sijainnissa ei ole tunnistettavaa omistajan nimeä.";
+$a->strings["Warning: profile location has no profile photo."] = "Varoitus: profiilin sijainnissa ei ole profiilikuvaa.";
+$a->strings["%d required parameter was not found at the given location"] = [
+ 0 => "",
+ 1 => "",
+];
+$a->strings["Introduction complete."] = "Esittely valmis.";
+$a->strings["Unrecoverable protocol error."] = "Vakava protokollavirhe.";
+$a->strings["Profile unavailable."] = "Profiili ei saatavilla.";
+$a->strings["%s has received too many connection requests today."] = "%s on saanut liikaa yhteyspyyntöjä tänään.";
+$a->strings["Spam protection measures have been invoked."] = "Roskapostisuojaukset otettu käyttöön.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Ystäviä suositellaan yrittämään uudelleen vuorokauden sisällä.";
+$a->strings["Invalid locator"] = "Viallinen paikannin";
+$a->strings["You have already introduced yourself here."] = "Olet jo esitellyt itsesi täällä.";
+$a->strings["Apparently you are already friends with %s."] = "Ilmeisesti olet jo ystävystynyt henkilön %s kanssa.";
+$a->strings["Invalid profile URL."] = "Viallinen profiiliosoite.";
+$a->strings["Failed to update contact record."] = "Kontaktitietojen päivitys epäonnistui.";
+$a->strings["Your introduction has been sent."] = "Esittelysi lähetettiin.";
+$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "";
+$a->strings["Please login to confirm introduction."] = "Kirjaudu vahvistaaksesi esittelysi.";
+$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Väärä identiteetti kirjautuneena sisään. Kirjaudu tähän profiiliin.";
+$a->strings["Confirm"] = "Vahvista";
+$a->strings["Hide this contact"] = "Piilota kontakti";
+$a->strings["Welcome home %s."] = "Tervetuloa kotiin %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Vahvista esittelysi/yhteyspyyntösi henkilölle %s.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Anna \"henkilöllisyysosoitteesi\" joissakin seuraavista tuetuista viestintäverkoista:";
+$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today ."] = "";
+$a->strings["Friend/Connection Request"] = "Ystävä/yhteyspyyntö";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = "Esim. jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de";
+$a->strings["Please answer the following:"] = "Vastaa seuraavaan:";
+$a->strings["Does %s know you?"] = "Tunteeko %s sinut?";
+$a->strings["Add a personal note:"] = "Lisää oma merkintä:";
+$a->strings["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)";
+$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)";
+$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - älä käytä tätä lomaketta. Kirjoita sen sijaan %s Diaspora-hakupalkkiisi.";
+$a->strings["Contact settings applied."] = "Kontaktiasetukset tallennettu.";
+$a->strings["Contact update failed."] = "Kontaktipäivitys epäonnistui.";
+$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "VAROITUS: Tämä on erittäin vaativaa ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta.";
+$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta nyt , jos olet epävarma tämän sivun toiminnoista.";
+$a->strings["No mirroring"] = "Ei peilausta";
+$a->strings["Mirror as forwarded posting"] = "Peilaa välitettynä julkaisuna";
+$a->strings["Mirror as my own posting"] = "Peilaa omana julkaisuna";
+$a->strings["Return to contact editor"] = "Palaa kontaktin muokkaamiseen";
+$a->strings["Refetch contact data"] = "";
+$a->strings["Remote Self"] = "";
+$a->strings["Mirror postings from this contact"] = "Peilaa tämän kontaktin julkaisut";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
+$a->strings["Account Nickname"] = "Tilin lempinimi";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - ohittaa Nimen/Nimimerkin";
+$a->strings["Account URL"] = "Tilin URL-osoite";
+$a->strings["Friend Request URL"] = "URL kaveripyyntöä varten";
+$a->strings["Friend Confirm URL"] = "URL kaverin vahvistusta varten";
+$a->strings["Notification Endpoint URL"] = "URL huomautuksia varten";
+$a->strings["Poll/Feed URL"] = "URL äänestyksiä/syötteitä varten";
+$a->strings["New photo from this URL"] = "Uusi kuva osoitteesta";
+$a->strings["Welcome to %s"] = "Tervetuloa %s";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s toivottaa tervetulleeksi ystävän %2\$s";
+$a->strings["Poke/Prod"] = "Tökkää";
+$a->strings["poke, prod or do other things to somebody"] = "";
+$a->strings["Recipient"] = "Vastaanottaja";
+$a->strings["Choose what you wish to do to recipient"] = "Valitse mitä haluat tehdä vastaanottajalle";
+$a->strings["Make this post private"] = "Muuta julkaisu yksityiseksi";
+$a->strings["Post successful."] = "Viestin lähetys onnistui.";
+$a->strings["Access denied."] = "Käyttö estetty.";
+$a->strings["Invalid request identifier."] = "Virheellinen pyyntötunniste.";
+$a->strings["Discard"] = "Hylkää";
+$a->strings["Ignore"] = "Jätä huomiotta";
+$a->strings["Network Notifications"] = "Verkkoilmoitukset";
+$a->strings["Personal Notifications"] = "Henkilökohtaiset ilmoitukset";
+$a->strings["Home Notifications"] = "Koti-ilmoitukset";
+$a->strings["Show Ignored Requests"] = "Näytä ohitetut pyynnöt";
+$a->strings["Hide Ignored Requests"] = "Piilota ohitetut pyynnöt";
+$a->strings["Notification type: "] = "Ilmoitustyyppi:";
+$a->strings["suggested by %s"] = "ehdottaa %s";
+$a->strings["Hide this contact from others"] = "Piilota kontakti muilta";
+$a->strings["Post a new friend activity"] = "";
+$a->strings["if applicable"] = "tarvittaessa";
+$a->strings["Claims to be known to you: "] = "Väittää tuntevansa sinut:";
+$a->strings["yes"] = "kyllä";
+$a->strings["no"] = "ei";
+$a->strings["Shall your connection be bidirectional or not?"] = "Kaksisuuntainen yhteys?";
+$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "";
+$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "";
+$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "";
+$a->strings["Friend"] = "Kaveri";
+$a->strings["Sharer"] = "Jakaja";
+$a->strings["Subscriber"] = "Tilaaja";
+$a->strings["No introductions."] = "Ei esittelyjä.";
+$a->strings["Show unread"] = "Näytä lukemattomat";
+$a->strings["Show all"] = "Näytä kaikki";
+$a->strings["No more %s notifications."] = "Ei muita %s ilmoituksia.";
+$a->strings["Not Extended"] = "Ei laajennettu";
+$a->strings["Not Found"] = "Ei löydetty";
+$a->strings["The contact could not be added."] = "Kontaktia ei voitu lisätä.";
+$a->strings["You already added this contact."] = "Olet jo lisännyt tämän kontaktin.";
+$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora -tuki ei ole käytössä. Kontaktia ei voi lisätä.";
+$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus -tuki ei ole käytössä. Kontaktia ei voi lisätä.";
+$a->strings["The network type couldn't be detected. Contact can't be added."] = "Verkkotyyppiä ei voitu havaita. Kontaktia ei voitu lisätä.";
$a->strings["This calendar format is not supported"] = "Tätä kalenteriformaattia ei tueta";
$a->strings["No exportable data found"] = "Vientikelpoista dataa ei löytynyt";
$a->strings["calendar"] = "kalenteri";
@@ -720,11 +1855,9 @@ $a->strings["Network type: %s"] = "Verkkotyyppi: %s";
$a->strings["Communications lost with this contact!"] = "Yhteys tähän henkilöön menetettiin!";
$a->strings["Fetch further information for feeds"] = "";
$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "";
-$a->strings["Disabled"] = "Pois käytöstä";
$a->strings["Fetch information"] = "Nouda tiedot";
$a->strings["Fetch keywords"] = "Nouda avainsanat";
$a->strings["Fetch information and keywords"] = "Nouda tiedot ja avainsanat";
-$a->strings["Disconnect/Unfollow"] = "Katkaise / Lopeta seuraaminen";
$a->strings["Contact"] = "Kontakti";
$a->strings["Profile Visibility"] = "Profiilin näkyvyys";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Valitse profiili, jonka haluat näyttää %s:lle, kun hän haluaa katsoa profiiliasi turvallisesti.";
@@ -738,8 +1871,6 @@ $a->strings["View conversations"] = "Katso keskusteluja";
$a->strings["Last update:"] = "Viimeksi päivitetty:";
$a->strings["Update public posts"] = "Päivitä julkiset postaukset";
$a->strings["Update now"] = "Päivitä nyt";
-$a->strings["Unblock"] = "Salli";
-$a->strings["Block"] = "Estä";
$a->strings["Unignore"] = "Ota huomioon";
$a->strings["Currently blocked"] = "Estetty tällä hetkellä";
$a->strings["Currently ignored"] = "Jätetty huomiotta tällä hetkellä";
@@ -750,9 +1881,7 @@ $a->strings["Notification for new posts"] = "Uusien postausten ilmoitus";
$a->strings["Send a notification of every new post of this contact"] = "Lähetä ilmoitus tälle henkilölle kaikista uusista postauksista";
$a->strings["Blacklisted keywords"] = "Kielletyt avainsanat";
$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "";
-$a->strings["XMPP:"] = "XMPP:";
$a->strings["Actions"] = "Toimenpiteet";
-$a->strings["Status"] = "Tila";
$a->strings["Contact Settings"] = "Yhteystietoasetukset";
$a->strings["Suggestions"] = "Ehdotukset";
$a->strings["Suggest potential friends"] = "Ehdota mahdollisille ystäville";
@@ -768,56 +1897,40 @@ $a->strings["Only show archived contacts"] = "Näytä vain arkistoidut henkilöt
$a->strings["Hidden"] = "Piilotettu";
$a->strings["Only show hidden contacts"] = "Näytä vain piilotetut henkilöt";
$a->strings["Search your contacts"] = "Etsi henkilöitä";
-$a->strings["Find"] = "Etsi";
-$a->strings["Update"] = "Päivitä";
+$a->strings["Results for: %s"] = "Tulokset haulla: %s";
$a->strings["Archive"] = "Arkistoi";
$a->strings["Unarchive"] = "Poista arkistosta";
$a->strings["Batch Actions"] = "";
-$a->strings["Status Messages and Posts"] = "Statusviestit ja postaukset";
-$a->strings["Profile Details"] = "Profiilitiedot";
$a->strings["View all contacts"] = "Näytä kaikki kontaktit";
+$a->strings["Common Friends"] = "Yhteisiä kavereita";
$a->strings["View all common friends"] = "Näytä kaikki yhteiset kaverit";
-$a->strings["Advanced"] = "";
$a->strings["Advanced Contact Settings"] = "Kontakti-lisäasetukset";
$a->strings["Mutual Friendship"] = "Yhteinen kaveruus";
$a->strings["is a fan of yours"] = "on fanisi";
$a->strings["you are a fan of"] = "fanitat";
$a->strings["Toggle Blocked status"] = "Estetty tila päälle/pois";
-$a->strings["Toggle Ignored status"] = "";
+$a->strings["Toggle Ignored status"] = "Sivuuta/seuraa";
$a->strings["Toggle Archive status"] = "Arkistotila päälle/pois";
$a->strings["Delete contact"] = "Poista kontakti";
-$a->strings["Parent user not found."] = "";
-$a->strings["No parent user"] = "";
-$a->strings["Parent Password:"] = "";
-$a->strings["Please enter the password of the parent account to legitimize your request."] = "";
-$a->strings["Parent User"] = "";
-$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "";
-$a->strings["Save Settings"] = "Tallenna asetukset";
-$a->strings["Delegate Page Management"] = "";
-$a->strings["Delegates"] = "";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "";
-$a->strings["Existing Page Delegates"] = "";
-$a->strings["Potential Delegates"] = "";
-$a->strings["Add"] = "Lisää";
-$a->strings["No entries."] = "";
-$a->strings["Event can not end before it has started."] = "";
-$a->strings["Event title and start time are required."] = "Tapahtuman nimi ja alkamisaika vaaditaan.";
-$a->strings["Create New Event"] = "Luo uusi tapahtuma";
-$a->strings["Event details"] = "Tapahtuman tiedot";
-$a->strings["Starting date and Title are required."] = "Aloituspvm ja otsikko vaaditaan.";
-$a->strings["Event Starts:"] = "Tapahtuma alkaa:";
-$a->strings["Required"] = "Vaaditaan";
-$a->strings["Finish date/time is not known or not relevant"] = "Päättymispvm ja kellonaika ei ole tiedossa tai niillä ei ole merkitystä";
-$a->strings["Event Finishes:"] = "Tapahtuma päättyy:";
-$a->strings["Adjust for viewer timezone"] = "Ota huomioon katsojan aikavyöhyke";
-$a->strings["Description:"] = "Kuvaus:";
-$a->strings["Title:"] = "Otsikko:";
-$a->strings["Share this event"] = "Jaa tämä tapahtuma";
-$a->strings["Basic"] = "";
-$a->strings["Failed to remove event"] = "Tapahtuman poisto epäonnistui";
-$a->strings["Event removed"] = "Tapahtuma poistettu";
-$a->strings["You must be logged in to use this module"] = "Sinun pitää kirjautua sisään, jotta voit käyttää tätä moduulia";
-$a->strings["Source URL"] = "Lähde URL";
+$a->strings["The post was created"] = "Julkaisu luotu";
+$a->strings["No valid account found."] = "Voimassa olevaa tiliä ei löytynyt.";
+$a->strings["Password reset request issued. Check your email."] = "Salasanan nollauspyyntö lähetetty. Tarkista sähköpostisi.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "";
+$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "";
+$a->strings["Password reset requested at %s"] = "Salasanan nollauspyyntö kohteessa %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Pyyntöä ei voitu vahvistaa. (Saatoit lähettää pyyntöä aikaisemmin.) Salasanan nollaus epäonnistui.";
+$a->strings["Request has expired, please make a new one."] = "Pyyntö on vanhentunut, tehkää uusi pyyntö.";
+$a->strings["Forgot your Password?"] = "Unohditko salasanasi?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "";
+$a->strings["Reset"] = "Nollaus";
+$a->strings["Your password has been reset as requested."] = "Salasanasi on nollattu pyynnöstäsi.";
+$a->strings["Your new password is"] = "Uusi salasanasi on";
+$a->strings["Save or copy your new password - and then"] = "Tallenna tai kopioi uusi salasanasi, ja sitten";
+$a->strings["click here to login"] = "kirjaudu klikkaamalla tästä";
+$a->strings["Your password may be changed from the Settings page after successful login."] = "Salsanaa voi vaihtaa asetussivulta kirjautumisen jälkeen.";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "";
+$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tKäyttäjätilisi tiedot:\n\n\t\t\tSivuston osoite:\t%1\$s\n\t\t\tKäyttäjätunnus:\t%2\$s\n\t\t\tSalasana:\t%3\$s\n\n\t\t\tVoit vaihtaa salasanasi kirjautumisen jälkeen asetussivulta.\n\t\t";
+$a->strings["Your password has been changed at %s"] = "Salasanasi on vaihdettu sivustolla %s";
$a->strings["Friendica Communications Server - Setup"] = "Friendica viestinnän palvelin - asetukset";
$a->strings["Could not connect to database."] = "Tietokantaan ei saada yhteyttä.";
$a->strings["Could not create table."] = "Taulun luominen epäonnistui.";
@@ -894,411 +2007,8 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ
$a->strings["What next "] = "Mitä seuraavaksi ";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "TÄRKEÄÄ: Sinun pitää asettaa [manuaalisesti] ajastettu tehtävä Workerille.";
$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "";
-$a->strings["Unable to locate original post."] = "Alkuperäinen julkaisu ei löydy.";
-$a->strings["Empty post discarded."] = "Tyhjä julkaisu hylätty.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "";
-$a->strings["You may visit them online at %s"] = "";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "";
-$a->strings["%s posted an update."] = "%s julkaisi päivityksen.";
-$a->strings["Post successful."] = "Viestin lähetys onnistui.";
-$a->strings["Subscribing to OStatus contacts"] = "OStatus -kontaktien tilaaminen";
-$a->strings["No contact provided."] = "Kontakti puuttuu.";
-$a->strings["Couldn't fetch information for contact."] = "Kontaktin tietoja ei voitu hakea.";
-$a->strings["Couldn't fetch friends for contact."] = "Ei voitu hakea kontaktin kaverit.";
-$a->strings["success"] = "onnistui";
-$a->strings["failed"] = "epäonnistui";
-$a->strings["ignored"] = "ohitettu";
-$a->strings["Image uploaded but image cropping failed."] = "Kuva ladattu mutta kuvan rajaus epäonnistui.";
-$a->strings["Image size reduction [%s] failed."] = "Kuvan pienentäminen [%s] epäonnistui.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Jos kuva ei näy heti, lataa sivu uudelleen tai tyhjennä selaimen välimuisti.";
-$a->strings["Unable to process image"] = "Kuvan käsitteleminen epäonnistui";
-$a->strings["Upload File:"] = "Lähetä tiedosto:";
-$a->strings["Select a profile:"] = "Valitse profiili:";
-$a->strings["or"] = "tai";
-$a->strings["skip this step"] = "ohita tämä vaihe";
-$a->strings["select a photo from your photo albums"] = "valitse kuva albumeistasi";
-$a->strings["Crop Image"] = "Rajaa kuva";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Rajaa kuva sopivasti.";
-$a->strings["Done Editing"] = "Lopeta muokkaus";
-$a->strings["Image uploaded successfully."] = "Kuvan lähettäminen onnistui.";
-$a->strings["Contact wasn't found or can't be unfollowed."] = "";
-$a->strings["Contact unfollowed"] = "Kontaktia ei enää seurata";
-$a->strings["You aren't a friend of this contact."] = "Et ole kontaktin kaveri.";
-$a->strings["Unfollowing is currently not supported by your network."] = "Seuraamisen lopettaminen ei tällä hetkellä tueta verkossasi.";
-$a->strings["Theme settings updated."] = "Teeman asetukset päivitetty.";
-$a->strings["Information"] = "Tietoja";
-$a->strings["Overview"] = "Yleiskatsaus";
-$a->strings["Federation Statistics"] = "Liiton tilastotiedot";
-$a->strings["Configuration"] = "Kokoonpano";
-$a->strings["Site"] = "Sivusto";
-$a->strings["Users"] = "Käyttäjät";
-$a->strings["Addons"] = "Lisäosat";
-$a->strings["Themes"] = "Teemat";
-$a->strings["Additional features"] = "Lisäominaisuuksia";
-$a->strings["Terms of Service"] = "Käyttöehdot";
-$a->strings["Database"] = "Tietokanta";
-$a->strings["DB updates"] = "Tietokannan päivitykset";
-$a->strings["Inspect Queue"] = "Tarkista jono";
-$a->strings["Tools"] = "Työkalut";
-$a->strings["Contact Blocklist"] = "Kontaktien estolista";
-$a->strings["Server Blocklist"] = "Palvelimien estolista";
-$a->strings["Delete Item"] = "Poista kohde";
-$a->strings["Logs"] = "Lokit";
-$a->strings["View Logs"] = "Katso lokit";
-$a->strings["Diagnostics"] = "Diagnostiikka";
-$a->strings["PHP Info"] = "PHP tietoja";
-$a->strings["probe address"] = "";
-$a->strings["check webfinger"] = "Tarkista webfinger";
-$a->strings["Admin"] = "Ylläpitäjä";
-$a->strings["Addon Features"] = "Lisäosaominaisuudet";
-$a->strings["User registrations waiting for confirmation"] = "Käyttäjärekisteröinnit odottavat hyväksyntää";
-$a->strings["Administration"] = "Ylläpito";
-$a->strings["Display Terms of Service"] = "Näytä käyttöehdot";
-$a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = "";
-$a->strings["Display Privacy Statement"] = "Näytä tietosuojalausunto";
-$a->strings["Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR ."] = "";
-$a->strings["The Terms of Service"] = "Käyttöehdot";
-$a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "";
-$a->strings["The blocked domain"] = "Estetty verkkotunnus";
-$a->strings["Reason for the block"] = "Eston syy";
-$a->strings["The reason why you blocked this domain."] = "Verkkotunnuksen estosyy.";
-$a->strings["Delete domain"] = "Poista verkkotunnus";
-$a->strings["Check to delete this entry from the blocklist"] = "Laita rasti poistaaksesi kohde estolistalta";
-$a->strings["This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."] = "";
-$a->strings["The list of blocked servers will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "";
-$a->strings["Add new entry to block list"] = "Lisää uusi kohde estolistaan";
-$a->strings["Server Domain"] = "Palvelimen verkkotunnus";
-$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "";
-$a->strings["Block reason"] = "Estosyy";
-$a->strings["Add Entry"] = "Lisää merkintä";
-$a->strings["Save changes to the blocklist"] = "Tallenna muutoksia estolistaan";
-$a->strings["Current Entries in the Blocklist"] = "Nykyinen estolista";
-$a->strings["Delete entry from blocklist"] = "Poista kohde estolistalta";
-$a->strings["Delete entry from blocklist?"] = "Poista kohde estolistalta?";
-$a->strings["Server added to blocklist."] = "Palvelin lisätty estolistalle";
-$a->strings["Site blocklist updated."] = "Sivuston estolista päivitetty.";
-$a->strings["The contact has been blocked from the node"] = "Kontakti on estetty tällä solmulla";
-$a->strings["Could not find any contact entry for this URL (%s)"] = "";
-$a->strings["%s contact unblocked"] = [
- 0 => "%s kontakti poistettu estolistalta",
- 1 => "%s kontaktia poistettu estolistalta",
-];
-$a->strings["Remote Contact Blocklist"] = "Etäkontakti estolista";
-$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "";
-$a->strings["Block Remote Contact"] = "Estä etäkontakti";
-$a->strings["select all"] = "valitse kaikki";
-$a->strings["select none"] = "älä valitse mitään";
-$a->strings["No remote contact is blocked from this node."] = "";
-$a->strings["Blocked Remote Contacts"] = "Estetty etäkontaktit";
-$a->strings["Block New Remote Contact"] = "Estä uusi etäkontakti";
-$a->strings["Photo"] = "Kuva";
-$a->strings["Address"] = "Osoite";
-$a->strings["%s total blocked contact"] = [
- 0 => "Yhteensä %s estetty kontakti",
- 1 => "Yhteensä %s estettyjä kontakteja",
-];
-$a->strings["URL of the remote contact to block."] = "Estettävän etäkontaktin URL-osoite";
-$a->strings["Delete this Item"] = "Poista tämä kohde";
-$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "";
-$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "";
-$a->strings["GUID"] = "GUID";
-$a->strings["The GUID of the item you want to delete."] = "Poistettavan kohteen GUID.";
-$a->strings["Item marked for deletion."] = "Kohde merkitty poistettavaksi.";
-$a->strings["unknown"] = "tuntematon";
-$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."] = "";
-$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = "";
-$a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = "";
-$a->strings["ID"] = "";
-$a->strings["Recipient Name"] = "Vastaanottajan nimi";
-$a->strings["Recipient Profile"] = "Vastaanottajan profiili";
-$a->strings["Network"] = "Verkko";
-$a->strings["Created"] = "Luotu";
-$a->strings["Last Tried"] = "Viimeksi yritetty";
-$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "";
-$a->strings["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 here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion. "] = "";
-$a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "";
-$a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = "";
-$a->strings["The worker was never executed. Please check your database structure!"] = "";
-$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "";
-$a->strings["Normal Account"] = "Perustili";
-$a->strings["Automatic Follower Account"] = "Automaattinen seuraajatili";
-$a->strings["Public Forum Account"] = "Julkinen foorumitili";
-$a->strings["Automatic Friend Account"] = "Automaattinen kaveritili";
-$a->strings["Blog Account"] = "Blogitili";
-$a->strings["Private Forum Account"] = "Yksityinen foorumitili";
-$a->strings["Message queues"] = "Viestijonot";
-$a->strings["Summary"] = "Yhteenveto";
-$a->strings["Registered users"] = "Rekisteröityneet käyttäjät";
-$a->strings["Pending registrations"] = "";
-$a->strings["Version"] = "Versio";
-$a->strings["Active addons"] = "Käytössäolevat lisäosat";
-$a->strings["Can not parse base url. Must have at least ://"] = "";
-$a->strings["Site settings updated."] = "Sivuston asetukset päivitettiin.";
-$a->strings["No special theme for mobile devices"] = "Ei mobiiliteemaa";
-$a->strings["No community page"] = "Ei yhteisösivua";
-$a->strings["Public postings from users of this site"] = "Julkiset julkaisut tämän sivuston käyttäjiltä";
-$a->strings["Public postings from the federated network"] = "Julkiset julkaisut liittoutuneelta verkolta";
-$a->strings["Public postings from local users and the federated network"] = "Julkiset julkaisut tältä sivustolta ja liittoutuneelta verkolta";
-$a->strings["Users, Global Contacts"] = "Käyttäjät, maailmanlaajuiset kontaktit";
-$a->strings["Users, Global Contacts/fallback"] = "";
-$a->strings["One month"] = "Yksi kuukausi";
-$a->strings["Three months"] = "Kolme kuukautta";
-$a->strings["Half a year"] = "Puoli vuotta";
-$a->strings["One year"] = "Yksi vuosi";
-$a->strings["Multi user instance"] = "Monen käyttäjän instanssi";
-$a->strings["Closed"] = "Suljettu";
-$a->strings["Requires approval"] = "Edellyttää hyväksyntää";
-$a->strings["Open"] = "Avoin";
-$a->strings["No SSL policy, links will track page SSL state"] = "";
-$a->strings["Force all links to use SSL"] = "Pakota kaikki linkit käyttämään SSL-yhteyttä";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
-$a->strings["Don't check"] = "Älä tarkista";
-$a->strings["check the stable version"] = "";
-$a->strings["check the development version"] = "";
-$a->strings["Republish users to directory"] = "";
-$a->strings["Registration"] = "Rekisteröityminen";
-$a->strings["File upload"] = "Tiedoston lataus";
-$a->strings["Policies"] = "Käytännöt";
-$a->strings["Auto Discovered Contact Directory"] = "";
-$a->strings["Performance"] = "Suoritus";
-$a->strings["Worker"] = "Worker";
-$a->strings["Message Relay"] = "";
-$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "";
-$a->strings["Site name"] = "Sivuston nimi";
-$a->strings["Host name"] = "Palvelimen nimi";
-$a->strings["Sender Email"] = "Lähettäjän sähköposti";
-$a->strings["The email address your server shall use to send notification emails from."] = "";
-$a->strings["Banner/Logo"] = "Banneri/logo";
-$a->strings["Shortcut icon"] = "Pikakuvake";
-$a->strings["Link to an icon that will be used for browsers."] = "";
-$a->strings["Touch icon"] = "Kosketusnäyttökuvake";
-$a->strings["Link to an icon that will be used for tablets and mobiles."] = "";
-$a->strings["Additional Info"] = "Lisätietoja";
-$a->strings["For public servers: you can add additional information here that will be listed at %s/servers."] = "";
-$a->strings["System language"] = "Järjestelmän kieli";
-$a->strings["System theme"] = "Järjestelmäteema";
-$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings "] = "";
-$a->strings["Mobile system theme"] = "Mobiili järjestelmäteema";
-$a->strings["Theme for mobile devices"] = "Mobiiliteema";
-$a->strings["SSL link policy"] = "SSL-linkkikäytäntö";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "";
-$a->strings["Force SSL"] = "Pakoita SSL-yhteyden käyttöä";
-$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "";
-$a->strings["Hide help entry from navigation menu"] = "";
-$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "";
-$a->strings["Single user instance"] = "Yksittäisen käyttäjän instanssi";
-$a->strings["Make this instance multi-user or single-user for the named user"] = "";
-$a->strings["Maximum image size"] = "Suurin kuvakoko";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
-$a->strings["Maximum image length"] = "Suurin kuvapituus";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "";
-$a->strings["JPEG image quality"] = "JPEG-kuvanlaatu";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
-$a->strings["Register policy"] = "";
-$a->strings["Maximum Daily Registrations"] = "Päivittäinen rekisteröitymisraja";
-$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "";
-$a->strings["Register text"] = "Rekisteröitymisteksti";
-$a->strings["Will be displayed prominently on the registration page. You can use BBCode here."] = "Näkyvästi esillä rekisteröitymissivulla. Voit käyttää BBCodeia.";
-$a->strings["Accounts abandoned after x days"] = "";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
-$a->strings["Allowed friend domains"] = "Sallittuja kaveri-verkkotunnuksia";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
-$a->strings["Allowed email domains"] = "Sallittuja sähköposti-verkkotunnuksia";
-$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "";
-$a->strings["No OEmbed rich content"] = "";
-$a->strings["Don't show the rich content (e.g. embedded PDF), except from the domains listed below."] = "";
-$a->strings["Allowed OEmbed domains"] = "Sallittuja OEmbed -verkkotunnuksia";
-$a->strings["Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted."] = "";
-$a->strings["Block public"] = "Estä vierailijat";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
-$a->strings["Force publish"] = "";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
-$a->strings["Global directory URL"] = "Maailmanlaajuisen hakemiston URL-osoite";
-$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
-$a->strings["Private posts by default for new users"] = "";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "";
-$a->strings["Don't include post content in email notifications"] = "Älä lisää julkaisun sisältö sähköposti-ilmoitukseen";
-$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "";
-$a->strings["Disallow public access to addons listed in the apps menu."] = "";
-$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "";
-$a->strings["Don't embed private images in posts"] = "Älä upota yksityisiä kuvia julkaisuissa";
-$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "";
-$a->strings["Allow Users to set remote_self"] = "";
-$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "";
-$a->strings["Block multiple registrations"] = "";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "";
-$a->strings["OpenID support"] = "OpenID-tuki";
-$a->strings["OpenID support for registration and logins."] = "OpenID-tuki rekisteröitymiseen ja kirjautumiseen";
-$a->strings["Fullname check"] = "Koko nimi tarkistus";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
-$a->strings["Community pages for visitors"] = "Yhteisösivu vieraille";
-$a->strings["Which community pages should be available for visitors. Local users always see both pages."] = "";
-$a->strings["Posts per user on community page"] = "";
-$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "";
-$a->strings["Enable OStatus support"] = "Salli OStatus-tuki";
-$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
-$a->strings["Only import OStatus threads from our contacts"] = "Ainoastaan tuo OStatus -ketjuja kontakteiltamme";
-$a->strings["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."] = "";
-$a->strings["OStatus support can only be enabled if threading is enabled."] = "OStatus-tuki voidaan ottaa käyttöön ainoastaan jos ketjuttaminen on jo otettu käyttöön.";
-$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "";
-$a->strings["Enable Diaspora support"] = "Salli Diaspora-tuki";
-$a->strings["Provide built-in Diaspora network compatibility."] = "Ota käyttöön Diaspora-yhteensopivuus";
-$a->strings["Only allow Friendica contacts"] = "Salli ainoastaan Friendica -kontakteja";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Kaikkien kontaktien on käytettävä Friendica-protokollaa. Kaikki muut protokollat poistetaan käytöstä.";
-$a->strings["Verify SSL"] = "Vahvista SSL";
-$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "";
-$a->strings["Proxy user"] = "Välityspalvelimen käyttäjä";
-$a->strings["Proxy URL"] = "Välityspalvelimen osoite";
-$a->strings["Network timeout"] = "Verkon aikakatkaisu";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
-$a->strings["Maximum Load Average"] = "";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
-$a->strings["Maximum Load Average (Frontend)"] = "";
-$a->strings["Maximum system load before the frontend quits service - default 50."] = "";
-$a->strings["Minimal Memory"] = "";
-$a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "";
-$a->strings["Maximum table size for optimization"] = "";
-$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "";
-$a->strings["Minimum level of fragmentation"] = "";
-$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "";
-$a->strings["Periodical check of global contacts"] = "";
-$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "";
-$a->strings["Days between requery"] = "";
-$a->strings["Number of days after which a server is requeried for his contacts."] = "";
-$a->strings["Discover contacts from other servers"] = "";
-$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "";
-$a->strings["Timeframe for fetching global contacts"] = "";
-$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "";
-$a->strings["Search the local directory"] = "Paikallisluettelohaku";
-$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "";
-$a->strings["Publish server information"] = "Julkaise palvelintiedot";
-$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = "";
-$a->strings["Check upstream version"] = "";
-$a->strings["Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview."] = "";
-$a->strings["Suppress Tags"] = "Piilota tunnisteet";
-$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "";
-$a->strings["Path to item cache"] = "";
-$a->strings["The item caches buffers generated bbcode and external images."] = "";
-$a->strings["Cache duration in seconds"] = "";
-$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "";
-$a->strings["Maximum numbers of comments per post"] = "Julkaisun kommentiraja";
-$a->strings["How much comments should be shown for each post? Default value is 100."] = "";
-$a->strings["Temp path"] = "";
-$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "";
-$a->strings["Base path to installation"] = "";
-$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "";
-$a->strings["Disable picture proxy"] = "";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
-$a->strings["Only search in tags"] = "";
-$a->strings["On large systems the text search can slow down the system extremely."] = "";
-$a->strings["New base url"] = "";
-$a->strings["Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users."] = "";
-$a->strings["RINO Encryption"] = "RINO-salaus";
-$a->strings["Encryption layer between nodes."] = "Salauskerros solmujen välillä.";
-$a->strings["Enabled"] = "Käytössä";
-$a->strings["Maximum number of parallel workers"] = "";
-$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "";
-$a->strings["Don't use 'proc_open' with the worker"] = "";
-$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 worker calls in your crontab."] = "";
-$a->strings["Enable fastlane"] = "Käytä fastlane";
-$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "";
-$a->strings["Enable frontend worker"] = "";
-$a->strings["When enabled the Worker process is triggered when backend access is performed \\x28e.g. messages being delivered\\x29. On smaller sites you might want to call %s/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."] = "";
-$a->strings["Subscribe to relay"] = "";
-$a->strings["Enables the receiving of public posts from the relay. They will be included in the search, subscribed tags and on the global community page."] = "";
-$a->strings["Relay server"] = "";
-$a->strings["Address of the relay server where public posts should be send to. For example https://relay.diasp.org"] = "";
-$a->strings["Direct relay transfer"] = "";
-$a->strings["Enables the direct transfer to other servers without using the relay servers"] = "";
-$a->strings["Relay scope"] = "";
-$a->strings["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."] = "";
-$a->strings["all"] = "kaikki";
-$a->strings["tags"] = "tunnisteet";
-$a->strings["Server tags"] = "palvelintunnisteet";
-$a->strings["Comma separated list of tags for the 'tags' subscription."] = "";
-$a->strings["Allow user tags"] = "Salli käyttäjien tunnisteet";
-$a->strings["If enabled, the tags from the saved searches will used for the 'tags' subscription in addition to the 'relay_server_tags'."] = "";
-$a->strings["Update has been marked successful"] = "";
-$a->strings["Database structure update %s was successfully applied."] = "Tietokannan rakenteen %s-päivitys onnistui.";
-$a->strings["Executing of database structure update %s failed with error: %s"] = "";
-$a->strings["Executing %s failed with error: %s"] = "";
-$a->strings["Update %s was successfully applied."] = "%s-päivitys onnistui.";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
-$a->strings["There was no additional update function %s that needed to be called."] = "";
-$a->strings["No failed updates."] = "Ei epäonnistuineita päivityksiä.";
-$a->strings["Check database structure"] = "Tarkista tietokannan rakenne";
-$a->strings["Failed Updates"] = "Epäonnistuineita päivityksiä";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
-$a->strings["Mark success (if update was manually applied)"] = "";
-$a->strings["Attempt to execute this update step automatically"] = "";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "";
-$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\t\tThank you and welcome to %4\$s."] = "";
-$a->strings["Registration details for %s"] = "";
-$a->strings["%s user blocked/unblocked"] = [
- 0 => "%s käyttäjä estetty / poistettu estolistalta",
- 1 => "%s käyttäjää estetty / poistettu estolistalta",
-];
-$a->strings["%s user deleted"] = [
- 0 => "%s käyttäjä poistettu",
- 1 => "%s käyttäjää poistettu",
-];
-$a->strings["User '%s' deleted"] = "Käyttäjä '%s' poistettu";
-$a->strings["User '%s' unblocked"] = "Käyttäjä '%s' poistettu estolistalta";
-$a->strings["User '%s' blocked"] = "Käyttäjä '%s' estetty";
-$a->strings["Email"] = "Sähköposti";
-$a->strings["Register date"] = "Rekisteripäivämäärä";
-$a->strings["Last login"] = "Viimeisin kirjautuminen";
-$a->strings["Last item"] = "Viimeisin kohde";
-$a->strings["Account"] = "Tili";
-$a->strings["Add User"] = "Lisää käyttäjä";
-$a->strings["User registrations waiting for confirm"] = "";
-$a->strings["User waiting for permanent deletion"] = "";
-$a->strings["Request date"] = "Pyynnön päivämäärä";
-$a->strings["No registrations."] = "";
-$a->strings["Note from the user"] = "";
-$a->strings["Deny"] = "Kieltäydy";
-$a->strings["Site admin"] = "Sivuston ylläpito";
-$a->strings["Account expired"] = "Tili vanhentunut";
-$a->strings["New User"] = "Uusi käyttäjä";
-$a->strings["Deleted since"] = "Poistettu";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
-$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
-$a->strings["Name of the new user."] = "Uuden käyttäjän nimi.";
-$a->strings["Nickname"] = "Lempinimi";
-$a->strings["Nickname of the new user."] = "Uuden käyttäjän lempinimi";
-$a->strings["Email address of the new user."] = "Uuden käyttäjän sähköpostiosoite.";
-$a->strings["Addon %s disabled."] = "Lisäosa %s poistettu käytöstä.";
-$a->strings["Addon %s enabled."] = "Lisäosa %s käytössä.";
-$a->strings["Disable"] = "Poista käytöstä";
-$a->strings["Enable"] = "Ota käyttöön";
-$a->strings["Toggle"] = "Vaihda";
-$a->strings["Author: "] = "Tekijä";
-$a->strings["Maintainer: "] = "Ylläpitäjä:";
-$a->strings["Reload active addons"] = "";
-$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "";
-$a->strings["No themes found."] = "Teemoja ei löytynyt.";
-$a->strings["Screenshot"] = "Kuvakaappaus";
-$a->strings["Reload active themes"] = "";
-$a->strings["No themes found on the system. They should be placed in %1\$s"] = "";
-$a->strings["[Experimental]"] = "[Kokeellinen]";
-$a->strings["[Unsupported]"] = "[Ei tueta]";
-$a->strings["Log settings updated."] = "Lokiasetukset päivitetty.";
-$a->strings["PHP log currently enabled."] = "PHP-loki käytössä";
-$a->strings["PHP log currently disabled."] = "PHP-loki pois käytöstä";
-$a->strings["Clear"] = "Tyhjennä";
-$a->strings["Enable Debugging"] = "Ota virheenkorjaustila käyttöön";
-$a->strings["Log file"] = "Lokitiedosto";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
-$a->strings["Log level"] = "Lokitaso";
-$a->strings["PHP logging"] = "PHP-loki";
-$a->strings["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."] = "";
-$a->strings["Error trying to open %1\$s log file.\\r\\n Check to see if file %1\$s exist and is readable."] = "";
-$a->strings["Couldn't open %1\$s log file.\\r\\n Check to see if file %1\$s is readable."] = "";
-$a->strings["Off"] = "Pois päältä";
-$a->strings["On"] = "Päällä";
-$a->strings["Lock feature %s"] = "Lukitse ominaisuus %s";
-$a->strings["Manage Additional Features"] = "Hallitse lisäominaisuudet";
$a->strings["Source input"] = "";
+$a->strings["BBCode::toPlaintext"] = "";
$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (raaka HTML)";
$a->strings["BBCode::convert"] = "BBCode::convert";
$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::convert => HTML::toBBCode";
@@ -1316,178 +2026,77 @@ $a->strings["Source text"] = "Lähdeteksti";
$a->strings["BBCode"] = "BBCode";
$a->strings["Markdown"] = "Markdown";
$a->strings["HTML"] = "HTML";
-$a->strings["Status:"] = "Tila:";
-$a->strings["Homepage:"] = "Kotisivu:";
-$a->strings["Global Directory"] = "Maailmanlaajuinen hakemisto";
-$a->strings["Find on this site"] = "";
-$a->strings["Results for:"] = "Tulokset haulla:";
-$a->strings["Site Directory"] = "Sivuston luettelo";
-$a->strings["No entries (some entries may be hidden)."] = "";
-$a->strings["People Search - %s"] = "";
-$a->strings["Forum Search - %s"] = "Foorumihaku - %s";
-$a->strings["The contact could not be added."] = "Kontaktia ei voitu lisätä.";
-$a->strings["You already added this contact."] = "Olet jo lisännyt tämän kontaktin.";
-$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora -tuki ei ole käytössä. Kontaktia ei voi lisätä.";
-$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus -tuki ei ole käytössä. Kontaktia ei voi lisätä.";
-$a->strings["The network type couldn't be detected. Contact can't be added."] = "Verkkotyyppiä ei voitu havaita. Kontaktia ei voitu lisätä.";
-$a->strings["This is Friendica, version"] = "Tämä on Friendica, versio";
-$a->strings["running at web location"] = "käynnissä osoitteessa";
-$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Vieraile osoitteessa Friendi.ca saadaksesi lisätietoja Friendica- projektista.";
-$a->strings["Bug reports and issues: please visit"] = "Bugiraportit ja kysymykset: vieraile osoitteessa";
-$a->strings["the bugtracker at github"] = "githubin bugtrackeri";
-$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Ehdotukset ja palaute: lähetä sähköposti osoitteeseen \"info\" at \"friendi - piste - ca";
-$a->strings["Installed addons/apps:"] = "Asennettu lisäosat/sovellukset:";
-$a->strings["No installed addons/apps"] = "Ei asennettuja lisäosia/sovelluksia";
-$a->strings["Read about the Terms of Service of this node."] = "Lue tämän solmun käyttöehdot .";
-$a->strings["On this server the following remote servers are blocked."] = "Tällä palvelimella seuraavat etäpalvelimet ovat estetty.";
-$a->strings["Total invitation limit exceeded."] = "Kutsuraja ylitetty.";
-$a->strings["%s : Not a valid email address."] = "%s : Virheellinen sähköpostiosoite.";
-$a->strings["Please join us on Friendica"] = "Tervetuloa Friendicaan";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Kutsuraja ylitetty. Ota yhteyttä ylläpitäjään.";
-$a->strings["%s : Message delivery failed."] = "%s : Viestin toimitus epäonnistui.";
-$a->strings["%d message sent."] = [
- 0 => "%d viesti lähetetty.",
- 1 => "%d viestiä lähetetty.",
-];
-$a->strings["You have no more invitations available"] = "Sinulla ei ole kutsuja jäljellä";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "";
-$a->strings["To accept this invitation, please visit and register at %s."] = "";
-$a->strings["Send invitations"] = "Lähetä kutsut";
-$a->strings["Enter email addresses, one per line:"] = "Syötä sähköpostiosoitteet, yksi riviä kohden:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "";
-$a->strings["No valid account found."] = "Voimassa olevaa tiliä ei löytynyt.";
-$a->strings["Password reset request issued. Check your email."] = "Salasanan nollauspyyntö lähetetty. Tarkista sähköpostisi.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "";
-$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "";
-$a->strings["Password reset requested at %s"] = "Salasanan nollauspyyntö kohteessa %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Pyyntöä ei voitu vahvistaa. (Saatoit lähettää pyyntöä aikaisemmin.) Salasanan nollaus epäonnistui.";
-$a->strings["Request has expired, please make a new one."] = "Pyyntö on vanhentunut, tehkää uusi pyyntö.";
-$a->strings["Forgot your Password?"] = "Unohditko salasanasi?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "";
-$a->strings["Nickname or Email: "] = "Lempinimi tai sähköposti:";
-$a->strings["Reset"] = "Nollaus";
-$a->strings["Password Reset"] = "Salasanan nollaus";
-$a->strings["Your password has been reset as requested."] = "Salasanasi on nollattu pyynnöstäsi.";
-$a->strings["Your new password is"] = "Uusi salasanasi on";
-$a->strings["Save or copy your new password - and then"] = "Tallenna tai kopioi uusi salasanasi, ja sitten";
-$a->strings["click here to login"] = "kirjaudu klikkaamalla tästä";
-$a->strings["Your password may be changed from the Settings page after successful login."] = "Salsanaa voi vaihtaa asetussivulta kirjautumisen jälkeen.";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "";
-$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tKäyttäjätilisi tiedot:\n\n\t\t\tSivuston osoite:\t%1\$s\n\t\t\tKäyttäjätunnus:\t%2\$s\n\t\t\tSalasana:\t%3\$s\n\n\t\t\tVoit vaihtaa salasanasi kirjautumisen jälkeen asetussivulta.\n\t\t";
-$a->strings["Your password has been changed at %s"] = "Salasanasi on vaihdettu sivustolla %s";
-$a->strings["add"] = "lisää";
-$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
- 0 => "",
- 1 => "",
-];
-$a->strings["Messages in this group won't be send to these receivers."] = "";
-$a->strings["No such group"] = "Ryhmä ei ole olemassa";
-$a->strings["Group: %s"] = "Ryhmä: %s";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "";
-$a->strings["Invalid contact."] = "Virheellinen kontakti.";
-$a->strings["Commented Order"] = "Järjestä viimeisimpien kommenttien mukaan";
-$a->strings["Sort by Comment Date"] = "Kommentit päivämäärän mukaan";
-$a->strings["Posted Order"] = "Järjestä julkaisupäivämäärän mukaan";
-$a->strings["Sort by Post Date"] = "Julkaisut päivämäärän mukaan";
-$a->strings["Personal"] = "Henkilökohtainen";
-$a->strings["Posts that mention or involve you"] = "Julkaisut jotka liittyvät sinuun";
-$a->strings["New"] = "Uusi";
-$a->strings["Activity Stream - by date"] = "";
-$a->strings["Shared Links"] = "Jaetut linkit";
-$a->strings["Interesting Links"] = "Kiinnostavat linkit";
-$a->strings["Starred"] = "Tähtimerkitty";
-$a->strings["Favourite Posts"] = "Lempijulkaisut";
-$a->strings["Profile deleted."] = "Profiili poistettiin.";
-$a->strings["Profile-"] = "Profiili-";
-$a->strings["New profile created."] = "Uusi profiili luotu.";
-$a->strings["Profile unavailable to clone."] = "Profiili ei saatavilla kloonattavaksi.";
-$a->strings["Profile Name is required."] = "Profiilinimi on pakollinen.";
-$a->strings["Marital Status"] = "Siviilisääty";
-$a->strings["Romantic Partner"] = "Romanttinen kumppani";
-$a->strings["Work/Employment"] = "Työ";
-$a->strings["Religion"] = "Uskonto";
-$a->strings["Political Views"] = "Poliittiset näkemykset";
-$a->strings["Gender"] = "Sukupuoli";
-$a->strings["Sexual Preference"] = "Seksuaalinen suuntautuminen";
-$a->strings["XMPP"] = "XMPP";
-$a->strings["Homepage"] = "Kotisivu";
-$a->strings["Interests"] = "Kiinnostukset";
-$a->strings["Location"] = "Sijainti";
-$a->strings["Profile updated."] = "Profiili päivitettiin.";
-$a->strings[" and "] = "ja";
-$a->strings["public profile"] = "julkinen profiili";
-$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "";
-$a->strings[" - Visit %1\$s's %2\$s"] = "";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
-$a->strings["Hide contacts and friends:"] = "Piilota kontaktit ja kaverit:";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Piilota tämän profiilin kontakti/kaverilista?";
-$a->strings["Show more profile fields:"] = "Näytä lisää profiilikenttiä:";
-$a->strings["Profile Actions"] = "";
-$a->strings["Edit Profile Details"] = "Muokkaa profiilin yksityiskohdat";
-$a->strings["Change Profile Photo"] = "Vaihda profiilikuva";
-$a->strings["View this profile"] = "Näytä profiilia";
-$a->strings["Edit visibility"] = "Muokkaa näkyvyyttä";
-$a->strings["Create a new profile using these settings"] = "Luo uusi profiili näillä asetuksilla";
-$a->strings["Clone this profile"] = "Kloonaa tämä profiili";
-$a->strings["Delete this profile"] = "Poista tämä profiili";
-$a->strings["Basic information"] = "Perustiedot";
-$a->strings["Profile picture"] = "Profiilikuva";
-$a->strings["Preferences"] = "Mieltymykset";
-$a->strings["Status information"] = "Tilatiedot";
-$a->strings["Additional information"] = "Lisätietoja";
-$a->strings["Relation"] = "Suhde";
-$a->strings["Miscellaneous"] = "Sekalaista";
-$a->strings["Your Gender:"] = "Sukupuoli:";
-$a->strings["♥ Marital Status:"] = "♥ Siviilisääty:";
-$a->strings["Sexual Preference:"] = "Seksuaalinen suuntautuminen:";
-$a->strings["Example: fishing photography software"] = "Esimerkki: kalastus valokuvaus ohjelmistot";
-$a->strings["Profile Name:"] = "Profiilinimi:";
-$a->strings["This is your public profile. It may be visible to anybody using the internet."] = "";
-$a->strings["Your Full Name:"] = "Koko nimi:";
-$a->strings["Title/Description:"] = "Otsikko/kuvaus:";
-$a->strings["Street Address:"] = "Katuosoite:";
-$a->strings["Locality/City:"] = "Kaupunki:";
-$a->strings["Region/State:"] = "Alue/osavaltio:";
-$a->strings["Postal/Zip Code:"] = "Postinumero:";
-$a->strings["Country:"] = "Maa:";
-$a->strings["Age: "] = "Ikä:";
-$a->strings["Who: (if applicable)"] = "Kuka: (tarvittaessa)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esimerkkejä: cathy123, Cathy Williams, cathy@example.com";
-$a->strings["Since [date]:"] = "Lähtien [päivämäärä]:";
-$a->strings["Tell us about yourself..."] = "Kerro vähän itsestäsi...";
-$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) osoite:";
-$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "";
-$a->strings["Homepage URL:"] = "Kotisivun URL-osoite:";
-$a->strings["Hometown:"] = "Kotikaupunki:";
-$a->strings["Political Views:"] = "Politiikka:";
-$a->strings["Religious Views:"] = "Uskonto:";
-$a->strings["Public Keywords:"] = "Julkiset avainsanat:";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Käytetään kaveriehdotuksia varten, näkyy muille)";
-$a->strings["Private Keywords:"] = "Yksityiset avainsanat:";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Käytetään profiilihakua varten, ei näy muille)";
-$a->strings["Likes:"] = "Tykkäykset:";
-$a->strings["Dislikes:"] = "Ei tykkää:";
-$a->strings["Musical interests"] = "Musiikki";
-$a->strings["Books, literature"] = "Kirjat, kirjallisuus";
-$a->strings["Television"] = "Televisio";
-$a->strings["Film/dance/culture/entertainment"] = "Elokuvat/tanssi/kulttuuri/viihde";
-$a->strings["Hobbies/Interests"] = "Harrastukset";
-$a->strings["Love/romance"] = "Rakkaus/romanssi";
-$a->strings["Work/employment"] = "Työ:";
-$a->strings["School/education"] = "Koulutus:";
-$a->strings["Contact information and Social Networks"] = "Yhteystiedot ja sosiaalinen media";
-$a->strings["Profile Image"] = "Profiilikuva";
-$a->strings["visible to everybody"] = "näkyvissä kaikille";
-$a->strings["Edit/Manage Profiles"] = "Muokkaa/hallitse profiilit";
-$a->strings["Change profile photo"] = "Vaihda profiilikuva";
-$a->strings["Create New Profile"] = "Luo uusi profiili";
+$a->strings["Remote privacy information not available."] = "Yksityisyyden etätietoja ei saatavilla.";
+$a->strings["Visible to:"] = "Näkyvissä:";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "%s-käyttäjän päivittäinen seinäviestiraja ylitetty. Viestin lähettäminen epäonnistui.";
+$a->strings["Unable to check your home location."] = "Kotisijaintisi ei voitu tarkistaa.";
+$a->strings["No recipient."] = "Vastaanottaja puuttuu.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Avainsanat puuttuu. Lisää avainsanoja oletusprofiiliisi.";
+$a->strings["is interested in:"] = "on kiinnostunut seuraavista aiheista:";
+$a->strings["Profile Match"] = "Vastaavien profiilien haku";
+$a->strings["System down for maintenance"] = "Järjestelmä poiskytketty huoltoa varten";
+$a->strings["Tag removed"] = "Tägi poistettiin";
+$a->strings["Remove Item Tag"] = "Poista tägi";
+$a->strings["Select a tag to remove: "] = "Valitse tägi poistamista varten:";
+$a->strings["You must be logged in to use this module"] = "Sinun pitää kirjautua sisään, jotta voit käyttää tätä moduulia";
+$a->strings["Source URL"] = "Lähde URL";
+$a->strings["Only logged in users are permitted to perform a search."] = "";
+$a->strings["Too Many Requests"] = "Liian monta pyyntöä";
+$a->strings["Only one search per minute is permitted for not logged in users."] = "";
+$a->strings["Items tagged with: %s"] = "Kohteet joilla tunnisteet: %s";
+$a->strings["Export account"] = "Vie tili";
+$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."] = "Vie tilin tiedot ja yhteystiedot. Käytä tätä tilisi varmuuskopiointiin ja/tai siirtämiseen toiselle palvelimelle.";
+$a->strings["Export all"] = "Vie kaikki";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Vie tilin tiedot, yhteystiedot ja kaikki nimikkeesi json-muodossa. Saattaa luoda hyvin suuren tiedoston ja kestää todella pitkään. Tämän avulla voit ottaa täydellisen varmuuskopion tilistäsi (valokuvia ei viedä)";
+$a->strings["Welcome to Friendica"] = "Tervetuloa Friendicaan";
+$a->strings["New Member Checklist"] = "Uuden jäsenen tarkistuslista";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "";
+$a->strings["Getting Started"] = "Ensiaskeleet";
+$a->strings["Friendica Walk-Through"] = "Friendica -läpikäynti";
+$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "";
+$a->strings["Go to Your Settings"] = "Omat Asetukset";
+$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "";
+$a->strings["Edit Your Profile"] = "Muokkaa profiilisi";
+$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "";
+$a->strings["Profile Keywords"] = "Profiilin avainsanat";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "";
+$a->strings["Connecting"] = "Yhdistetään";
+$a->strings["Importing Emails"] = "Sähköpostin tuominen";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "";
+$a->strings["Go to Your Contacts Page"] = "Näytä minun kontaktit";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "";
+$a->strings["Go to Your Site's Directory"] = "Näytä oman sivuston luettelo";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "";
+$a->strings["Finding New People"] = "Kavereiden hankkiminen";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "";
+$a->strings["Group Your Contacts"] = "Järjestä kontaktit ryhmiin";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "";
+$a->strings["Why Aren't My Posts Public?"] = "Miksi julkaisuni eivät ole julkisia?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "";
+$a->strings["Getting Help"] = "Avun saaminen";
+$a->strings["Go to the Help Section"] = "Näytä ohjeet";
+$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "";
+$a->strings["Response from remote site was not understood."] = "Etäsivuston vastaus oli epäselvä.";
+$a->strings["Unexpected response from remote site: "] = "Odottamaton vastaus etäsivustolta:";
+$a->strings["Confirmation completed successfully."] = "Vahvistus onnistui.";
+$a->strings["Temporary failure. Please wait and try again."] = "Tilapäinen vika. Yritä myöhemmin uudelleen.";
+$a->strings["Introduction failed or was revoked."] = "Kaverikutsu epäonnistui tai oli peruutettu.";
+$a->strings["Remote site reported: "] = "";
+$a->strings["Unable to set contact photo."] = "Kontaktin kuvaa ei voitu asettaa";
+$a->strings["No user record found for '%s' "] = "";
+$a->strings["Our site encryption key is apparently messed up."] = "Sivustomme salausavain on sekaisin.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "";
+$a->strings["Contact record was not found for you on our site."] = "";
+$a->strings["Site public key not available in contact record for URL %s."] = "";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "";
+$a->strings["Unable to set your contact credentials on our system."] = "";
+$a->strings["Unable to update your contact profile details on our system"] = "";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s on liittynyt kohteeseen %2\$s";
+$a->strings["- select -"] = "- valitse -";
$a->strings["Registration successful. Please check your email for further instructions."] = "Rekisteröityminen onnistui. Saat kohta lisäohjeita sähköpostitse.";
$a->strings["Failed to send email message. Here your accout details: login: %s password: %s You can change your password after login."] = "";
$a->strings["Registration successful."] = "Rekisteröityminen onnistui.";
@@ -1503,223 +2112,32 @@ $a->strings["Membership on this site is by invitation only."] = "Tähän sivusto
$a->strings["Your invitation code: "] = "Kutsukoodisi:";
$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Koko nimi (esim. Matti Meikäläinen, Aku Ankka):";
$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Sähköpostiosoite: (pitää olla toimiva osoite että rekisteröityminen onnistuu)";
-$a->strings["New Password:"] = "Uusi salasana:";
$a->strings["Leave empty for an auto generated password."] = "Jätä tyhjäksi jos haluat automaattisesti luotu salasanan.";
-$a->strings["Confirm:"] = "Vahvista:";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@%s '."] = "";
$a->strings["Choose a nickname: "] = "Valitse lempinimi:";
-$a->strings["Register"] = "Rekisteröidy";
$a->strings["Import your profile to this friendica instance"] = "Tuo profiilisi tähän Friendica -instanssiin.";
-$a->strings["User deleted their account"] = "Käyttäjä poisti tilinsä";
-$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Friendica -solmullasi käyttäjä poisti tilinsä. Varmista että hänen tiedot poistetaan myös varmuuskopioista.";
-$a->strings["The user id is %d"] = "";
-$a->strings["Remove My Account"] = "Poista tilini";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tämä poistaa käyttäjätilisi pysyvästi. Poistoa ei voi perua myöhemmin.";
-$a->strings["Please enter your password for verification:"] = "Syötä salasanasi varmistusta varten:";
-$a->strings["Display"] = "Ulkonäkö";
-$a->strings["Social Networks"] = "Sosiaalinen media";
-$a->strings["Delegations"] = "";
-$a->strings["Connected apps"] = "Yhdistetyt sovellukset";
-$a->strings["Remove account"] = "Poista tili";
-$a->strings["Missing some important data!"] = "";
-$a->strings["Failed to connect with email account using the settings provided."] = "";
-$a->strings["Email settings updated."] = "Sähköpostin asetukset päivitettiin.";
-$a->strings["Features updated"] = "Ominaisuudet päivitetty";
-$a->strings["Relocate message has been send to your contacts"] = "";
-$a->strings["Passwords do not match. Password unchanged."] = "Salasanat eivät täsmää. Salasana ennallaan.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tyhjä salasanakenttä ei ole sallittu. Salasana ennallaan.";
-$a->strings["The new password has been exposed in a public data dump, please choose another."] = "";
-$a->strings["Wrong password."] = "Väärä salasana.";
-$a->strings["Password changed."] = "Salasana vaihdettu.";
-$a->strings["Password update failed. Please try again."] = "Salasanan vaihto epäonnistui. Yritä uudelleen.";
-$a->strings[" Please use a shorter name."] = "Käytä lyhyempää nimeä.";
-$a->strings[" Name too short."] = "Nimi on liian lyhyt.";
-$a->strings["Wrong Password"] = "Väärä salasana";
-$a->strings["Invalid email."] = "Virheellinen sähköposti.";
-$a->strings["Cannot change to that email."] = "";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "";
-$a->strings["Settings updated."] = "Asetukset päivitetty.";
-$a->strings["Add application"] = "Lisää sovellus";
-$a->strings["Consumer Key"] = "Kuluttajan avain";
-$a->strings["Consumer Secret"] = "Kuluttajasalaisuus";
-$a->strings["Redirect"] = "Uudelleenohjaus";
-$a->strings["Icon url"] = "Kuvakkeen URL-osoite";
-$a->strings["You can't edit this application."] = "Et voi muokata tätä sovellusta.";
-$a->strings["Connected Apps"] = "Yhdistetyt sovellukset";
-$a->strings["Edit"] = "Muokkaa";
-$a->strings["Client key starts with"] = "Asiakasavain alkaa";
-$a->strings["No name"] = "Ei nimeä";
-$a->strings["Remove authorization"] = "Poista lupa";
-$a->strings["No Addon settings configured"] = "Lisäosa-asetukset puuttuvat";
-$a->strings["Addon Settings"] = "Lisäosa-asetukset";
-$a->strings["Additional Features"] = "Lisäominaisuuksia";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings["enabled"] = "käytössä";
-$a->strings["disabled"] = "pois käytöstä";
-$a->strings["Built-in support for %s connectivity is %s"] = "";
-$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)";
-$a->strings["Email access is disabled on this site."] = "";
-$a->strings["General Social Media Settings"] = "Yleiset some asetukset";
-$a->strings["Disable Content Warning"] = "Poista sisältövaroitus käytöstä";
-$a->strings["Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn't affect any other content filtering you eventually set up."] = "";
-$a->strings["Disable intelligent shortening"] = "";
-$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "";
-$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automaattisesti seuraa GNU social (OStatus) seuraajat/mainitsijat";
-$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "";
-$a->strings["Default group for OStatus contacts"] = "Oletusryhmä OStatus kontakteille";
-$a->strings["Your legacy GNU Social account"] = "Vanha GNU social käyttäjätilisi";
-$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "";
-$a->strings["Repair OStatus subscriptions"] = "Korjaa OStatus tilaukset";
-$a->strings["Email/Mailbox Setup"] = "Sähköpostin asennus";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "";
-$a->strings["Last successful email check:"] = "Viimeisin onnistunut sähköpostitarkistus:";
-$a->strings["IMAP server name:"] = "IMAP-palvelimen nimi:";
-$a->strings["IMAP port:"] = "IMAP-porttti:";
-$a->strings["Security:"] = "Turvallisuus:";
-$a->strings["None"] = "Ei mitään";
-$a->strings["Email login name:"] = "Sähköpostitilin käyttäjätunnus:";
-$a->strings["Email password:"] = "Sähköpostin salasana:";
-$a->strings["Reply-to address:"] = "Vastausosoite:";
-$a->strings["Send public posts to all email contacts:"] = "Lähetä julkiset julkaisut kaikille kontakteille:";
-$a->strings["Action after import:"] = "";
-$a->strings["Mark as seen"] = "Merkitse luetuksi";
-$a->strings["Move to folder"] = "Siirrä kansioon";
-$a->strings["Move to folder:"] = "Siirrä kansioon:";
-$a->strings["%s - (Unsupported)"] = "%s - (Ei tueta)";
-$a->strings["%s - (Experimental)"] = "%s - (Kokeellinen)";
-$a->strings["Display Settings"] = "Näyttöasetukset";
-$a->strings["Display Theme:"] = "Käyttöliittymän teema:";
-$a->strings["Mobile Theme:"] = "Mobiiliteema:";
-$a->strings["Suppress warning of insecure networks"] = "";
-$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "";
-$a->strings["Update browser every xx seconds"] = "Päivitä selain xx sekunnin välein";
-$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "";
-$a->strings["Number of items to display per page:"] = "";
-$a->strings["Maximum of 100 items"] = "Enintään 100 kohdetta";
-$a->strings["Number of items to display per page when viewed from mobile device:"] = "";
-$a->strings["Don't show emoticons"] = "Piilota hymiöt";
-$a->strings["Calendar"] = "Kalenteri";
-$a->strings["Beginning of week:"] = "Viikon alku:";
-$a->strings["Don't show notices"] = "";
-$a->strings["Infinite scroll"] = "Loputon selaaminen";
-$a->strings["Automatic updates only at the top of the network page"] = "";
-$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "";
-$a->strings["Bandwith Saver Mode"] = "Kaistanleveyssäästömoodi";
-$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "";
-$a->strings["Smart Threading"] = "";
-$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "";
-$a->strings["General Theme Settings"] = "Yleiset teeman asetukset";
-$a->strings["Custom Theme Settings"] = "Mukautetut teema-asetukset";
-$a->strings["Content Settings"] = "Sisältöasetukset";
-$a->strings["Theme settings"] = "Teeman asetukset";
-$a->strings["Unable to find your profile. Please contact your admin."] = "Profiilisi ei löytynyt. Ota yhteyttä ylläpitäjään.";
-$a->strings["Account Types"] = "Tilityypit";
-$a->strings["Personal Page Subtypes"] = "Henkilökohtaisen sivun alatyypit";
-$a->strings["Community Forum Subtypes"] = "Yhteisöfoorumin alatyypit";
-$a->strings["Personal Page"] = "Henkilökohtainen sivu";
-$a->strings["Account for a personal profile."] = "";
-$a->strings["Organisation Page"] = "Järjestön sivu";
-$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = "";
-$a->strings["News Page"] = "Uutissivu";
-$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = "";
-$a->strings["Community Forum"] = "Yhteisöfoorumi";
-$a->strings["Account for community discussions."] = "";
-$a->strings["Normal Account Page"] = "Tavallinen käyttäjätili";
-$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = "";
-$a->strings["Soapbox Page"] = "Saarnatuoli sivu";
-$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = "";
-$a->strings["Public Forum"] = "Julkinen foorumi";
-$a->strings["Automatically approves all contact requests."] = "Automaattisesti hyväksyy kaikki kontaktipyynnöt";
-$a->strings["Automatic Friend Page"] = "";
-$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "";
-$a->strings["Private Forum [Experimental]"] = "Yksityisfoorumi [kokeellinen]";
-$a->strings["Requires manual approval of contact requests."] = "";
-$a->strings["OpenID:"] = "OpenID:";
-$a->strings["(Optional) Allow this OpenID to login to this account."] = "";
-$a->strings["Publish your default profile in your local site directory?"] = "Julkaise oletusprofiilisi tämän sivuston paikallisluettelossa?";
-$a->strings["Your profile will be published in the global friendica directories (e.g. %s ). Your profile will be visible in public."] = "";
-$a->strings["Publish your default profile in the global social directory?"] = "Julkaise oletusprofiilisi maailmanlaajuisessa sosiaaliluettelossa?";
-$a->strings["Your profile will be published in this node's local directory . Your profile details may be publicly visible depending on the system settings."] = "";
-$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "";
-$a->strings["Your contact list won't be shown in your default profile page. You can decide to show your contact list separately for each additional profile you create"] = "";
-$a->strings["Hide your profile details from anonymous viewers?"] = "";
-$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Disables posting public messages to Diaspora and other networks."] = "";
-$a->strings["Allow friends to post to your profile page?"] = "";
-$a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = "";
-$a->strings["Allow friends to tag your posts?"] = "";
-$a->strings["Your contacts can add additional tags to your posts."] = "";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "";
-$a->strings["If you like, Friendica may suggest new members to add you as a contact."] = "";
-$a->strings["Permit unknown people to send you private mail?"] = "Salli yksityisviesit tuntemattomilta?";
-$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = "";
-$a->strings["Profile is not published ."] = "Profiili ei ole julkaistu .";
-$a->strings["Your Identity Address is '%s' or '%s'."] = "Identiteettisi osoite on '%s' tai '%s'.";
-$a->strings["Automatically expire posts after this many days:"] = "";
-$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Jos kenttä jää tyhjäksi, julkaisut eivät vanhene. Vanhentuneet julkaisut poistetaan.";
-$a->strings["Advanced expiration settings"] = "";
-$a->strings["Advanced Expiration"] = "";
-$a->strings["Expire posts:"] = "Julkaisujen vanheneminen:";
-$a->strings["Expire personal notes:"] = "";
-$a->strings["Expire starred posts:"] = "Tähtimerkityt julkaisut vanhenee:";
-$a->strings["Expire photos:"] = "Kuvat vanhenee:";
-$a->strings["Only expire posts by others:"] = "";
-$a->strings["Account Settings"] = "Tiliasetukset";
-$a->strings["Password Settings"] = "Salasana-asetukset";
-$a->strings["Leave password fields blank unless changing"] = "Jätä salasana kenttää tyhjäksi jos et halua vaihtaa salasanaa";
-$a->strings["Current Password:"] = "Nykyinen salasana:";
-$a->strings["Your current password to confirm the changes"] = "";
-$a->strings["Password:"] = "Salasana:";
-$a->strings["Basic Settings"] = "Perusasetukset";
-$a->strings["Full Name:"] = "Koko nimi:";
-$a->strings["Email Address:"] = "Sähköpostiosoite:";
-$a->strings["Your Timezone:"] = "Aikavyöhyke:";
-$a->strings["Your Language:"] = "Kieli:";
-$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "";
-$a->strings["Default Post Location:"] = "Julkaisun oletussijainti:";
-$a->strings["Use Browser Location:"] = "Käytä selaimen sijainti:";
-$a->strings["Security and Privacy Settings"] = "Turvallisuus ja tietosuoja-asetukset";
-$a->strings["Maximum Friend Requests/Day:"] = "Kaveripyyntöraja päivässä:";
-$a->strings["(to prevent spam abuse)"] = "(roskapostin estämiseksi)";
-$a->strings["Default Post Permissions"] = "Julkaisun oletuskäyttöoikeudet:";
-$a->strings["(click to open/close)"] = "(klikkaa auki/kiinni)";
-$a->strings["Default Private Post"] = "";
-$a->strings["Default Public Post"] = "";
-$a->strings["Default Permissions for New Posts"] = "Uuden julkaisun oletuskäyttöoikeudet";
-$a->strings["Maximum private messages per day from unknown people:"] = "";
-$a->strings["Notification Settings"] = "Huomautusasetukset";
-$a->strings["By default post a status message when:"] = "";
-$a->strings["accepting a friend request"] = "hyväksyt kaveripyynnön";
-$a->strings["joining a forum/community"] = "liityt foorumiin/yhteisöön";
-$a->strings["making an interesting profile change"] = "";
-$a->strings["Send a notification email when:"] = "Lähetä sähköposti-ilmoitus kun:";
-$a->strings["You receive an introduction"] = "Vastaanotat kaverikutsun";
-$a->strings["Your introductions are confirmed"] = "Kaverikutsusi on hyväksytty";
-$a->strings["Someone writes on your profile wall"] = "Joku kirjoittaa profiiliseinällesi";
-$a->strings["Someone writes a followup comment"] = "Joku vastaa kommenttiin";
-$a->strings["You receive a private message"] = "Vastaanotat yksityisviestin";
-$a->strings["You receive a friend suggestion"] = "Vastaanotat kaveriehdotuksen";
-$a->strings["You are tagged in a post"] = "Sinut on merkitty julkaisuun";
-$a->strings["You are poked/prodded/etc. in a post"] = "";
-$a->strings["Activate desktop notifications"] = "Ota työpöytäilmoitukset käyttöön";
-$a->strings["Show desktop popup on new notifications"] = "";
-$a->strings["Text-only notification emails"] = "Ilmoitussähköposteissa vain tekstiä";
-$a->strings["Send text only notification emails, without the html part"] = "Lähetä ilmoitussähköposteissa vain tekstiä ilman HTML-koodia";
-$a->strings["Show detailled notifications"] = "Näytä yksityiskohtaiset ilmoitukset";
-$a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = "";
-$a->strings["Advanced Account/Page Type Settings"] = "Käyttäjätili/sivutyyppi lisäasetuksia";
-$a->strings["Change the behaviour of this account for special situations"] = "";
-$a->strings["Relocate"] = "Uudelleensijoitus";
-$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "";
-$a->strings["Resend relocate message to contacts"] = "";
-$a->strings["default"] = "oletus";
-$a->strings["greenzero"] = "greenzero";
-$a->strings["purplezero"] = "purplezero";
-$a->strings["easterbunny"] = "easterbunny";
-$a->strings["darkzero"] = "darkzero";
-$a->strings["comix"] = "comix";
-$a->strings["slackr"] = "slackr";
-$a->strings["Variations"] = "Muunnelmat";
+$a->strings["No contacts in common."] = "Ei yhteisiä kontakteja.";
+$a->strings["Only logged in users are permitted to perform a probing."] = "";
+$a->strings["Help:"] = "Ohje:";
+$a->strings["Page not found."] = "Sivua ei löytynyt.";
+$a->strings["Invalid profile identifier."] = "Virheellinen profiilitunniste.";
+$a->strings["Profile Visibility Editor"] = "Profiilin näkyvyyden muokkaaminen";
+$a->strings["Visible To"] = "Näkyvyys";
+$a->strings["All Contacts (with secure profile access)"] = "";
+$a->strings["Unable to locate original post."] = "Alkuperäinen julkaisu ei löydy.";
+$a->strings["Empty post discarded."] = "Tyhjä julkaisu hylätty.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "";
+$a->strings["You may visit them online at %s"] = "";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "";
+$a->strings["%s posted an update."] = "%s julkaisi päivityksen.";
+$a->strings["Item not found"] = "Kohdetta ei löytynyt";
+$a->strings["Edit post"] = "Muokkaa viestiä";
+$a->strings["Alignment"] = "Kohdistaminen";
+$a->strings["Left"] = "Vasemmalle";
+$a->strings["Center"] = "Keskelle";
+$a->strings["Color scheme"] = "Värimalli";
+$a->strings["Posts font size"] = "Julkaisujen fonttikoko";
+$a->strings["Textareas font size"] = "Tekstikenttien fonttikoko";
$a->strings["Repeat the image"] = "Toista kuva";
$a->strings["Will repeat your image to fill the background."] = "";
$a->strings["Stretch"] = "Venytä";
@@ -1743,28 +2161,7 @@ $a->strings["Login page background color"] = "Sisäänkirjautumissivun taustavä
$a->strings["Leave background image and color empty for theme defaults"] = "";
$a->strings["Guest"] = "Vieras";
$a->strings["Visitor"] = "Vierailija";
-$a->strings["Logout"] = "Kirjaudu ulos";
-$a->strings["End this session"] = "Lopeta istunto";
-$a->strings["Your posts and conversations"] = "Omat julkaisut ja keskustelut";
-$a->strings["Your profile page"] = "Oma profiilisivu";
-$a->strings["Your photos"] = "Omat kuvat";
-$a->strings["Videos"] = "Videot";
-$a->strings["Your videos"] = "Omat videot";
-$a->strings["Your events"] = "Omat tapahtumat";
-$a->strings["Conversations from your friends"] = "Kavereiden keskustelut";
-$a->strings["Events and Calendar"] = "Tapahtumat ja kalenteri";
-$a->strings["Private mail"] = "Yksityinen posti";
-$a->strings["Account settings"] = "Tiliasetukset";
-$a->strings["Manage/edit friends and contacts"] = "Hallitse/muokkaa kaverit ja kontaktit";
-$a->strings["Alignment"] = "Kohdistaminen";
-$a->strings["Left"] = "Vasemmalle";
-$a->strings["Center"] = "Keskelle";
-$a->strings["Color scheme"] = "Värimalli";
-$a->strings["Posts font size"] = "Julkaisujen fonttikoko";
-$a->strings["Textareas font size"] = "Tekstikenttien fonttikoko";
$a->strings["Comma separated list of helper forums"] = "";
-$a->strings["don't show"] = "älä näytä";
-$a->strings["show"] = "näytä";
$a->strings["Set style"] = "Aseta tyyli";
$a->strings["Community Pages"] = "Yhteisösivut";
$a->strings["Community Profiles"] = "Yhteisöprofiilit";
@@ -1773,409 +2170,12 @@ $a->strings["Connect Services"] = "Yhdistä palvelut";
$a->strings["Find Friends"] = "Etsi kavereita";
$a->strings["Last users"] = "Viimeisimmät käyttäjät";
$a->strings["Local Directory"] = "Paikallinen hakemisto";
-$a->strings["Similar Interests"] = "Yhteiset harrastukset";
-$a->strings["Invite Friends"] = "Kutsu kavereita";
-$a->strings["External link to forum"] = "Ulkoinen linkki foorumiin";
$a->strings["Quick Start"] = "Pika-aloitus";
-$a->strings["Error decoding account file"] = "";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Virhe: tiedostosta puuttuu versiotiedot! Saattaa olla että tämä ei ole Friendica -tilitiedosto?";
-$a->strings["User '%s' already exists on this server!"] = "Käyttäjä '%s' on jo olemassa tällä palvelimella!";
-$a->strings["User creation error"] = "Virhe käyttäjän luomisessa";
-$a->strings["User profile creation error"] = "Virhe käyttäjäprofiilin luomisessa";
-$a->strings["%d contact not imported"] = [
- 0 => "%d kontakti ei tuotu",
- 1 => "%d kontakteja ei tuotu",
-];
-$a->strings["Done. You can now login with your username and password"] = "Suoritettu. Voit nyt kirjautua sisään käyttäjätunnuksellasi.";
-$a->strings["Post to Email"] = "Viesti sähköpostiin";
-$a->strings["Hide your profile details from unknown viewers?"] = "Piilota profiilitietosi tuntemattomilta?";
-$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
-$a->strings["Visible to everybody"] = "Näkyvissä kaikille";
-$a->strings["Close"] = "Sulje";
-$a->strings["Enter new password: "] = "";
-$a->strings["Password can't be empty"] = "";
-$a->strings["System"] = "Järjestelmä";
-$a->strings["Home"] = "Koti";
-$a->strings["Introductions"] = "Esittelyt";
-$a->strings["%s commented on %s's post"] = "%s kommentoi julkaisuun jonka kirjoitti %s";
-$a->strings["%s created a new post"] = "%s loi uuden julkaisun";
-$a->strings["%s liked %s's post"] = "%s tykkäsi julkaisusta jonka kirjoitti %s";
-$a->strings["%s disliked %s's post"] = "%s ei tykännyt julkaisusta jonka kirjoitti %s";
-$a->strings["%s is attending %s's event"] = "";
-$a->strings["%s is not attending %s's event"] = "";
-$a->strings["%s may attend %s's event"] = "";
-$a->strings["%s is now friends with %s"] = "%s ja %s ovat kavereita";
-$a->strings["Friend Suggestion"] = "Kaveriehdotus";
-$a->strings["Friend/Connect Request"] = "Ystävä/yhteyspyyntö";
-$a->strings["New Follower"] = "Uusi seuraaja";
-$a->strings["Birthday:"] = "Syntymäpäivä:";
-$a->strings["YYYY-MM-DD or MM-DD"] = "VVVV-KK-PP tai KK-PP";
-$a->strings["never"] = "ei ikinä";
-$a->strings["less than a second ago"] = "alle sekunti sitten";
-$a->strings["year"] = "vuosi";
-$a->strings["years"] = "vuotta";
-$a->strings["months"] = "kuukautta";
-$a->strings["weeks"] = "viikkoa";
-$a->strings["days"] = "päivää";
-$a->strings["hour"] = "tunti";
-$a->strings["hours"] = "tuntia";
-$a->strings["minute"] = "minuutti";
-$a->strings["minutes"] = "inuuttia";
-$a->strings["second"] = "sekunti";
-$a->strings["seconds"] = "sekuntia";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s sitten";
-$a->strings["view full size"] = "näytä täysikokoisena";
-$a->strings["Image/photo"] = "Kuva/valokuva";
-$a->strings["%2\$s %3\$s"] = "";
-$a->strings["$1 wrote:"] = "$1 kirjoitti:";
-$a->strings["Encrypted content"] = "Salattu sisältö";
-$a->strings["Invalid source protocol"] = "Virheellinen lähdeprotokolla";
-$a->strings["Invalid link protocol"] = "Virheellinen linkkiprotokolla";
-$a->strings["Nothing new here"] = "";
-$a->strings["Clear notifications"] = "Tyhjennä ilmoitukset";
-$a->strings["Personal notes"] = "";
-$a->strings["Your personal notes"] = "";
-$a->strings["Sign in"] = "Kirjaudu sisään";
-$a->strings["Home Page"] = "Kotisivu";
-$a->strings["Create an account"] = "Luo tili";
-$a->strings["Help and documentation"] = "Ohjeet ja dokmentointi";
-$a->strings["Apps"] = "Sovellukset";
-$a->strings["Addon applications, utilities, games"] = "Lisäosa sovelluksia, apuohjelmia, pelejä";
-$a->strings["Search site content"] = "Sivustohaku";
-$a->strings["Community"] = "Yhteisö";
-$a->strings["Conversations on this and other servers"] = "";
-$a->strings["Directory"] = "Luettelo";
-$a->strings["People directory"] = "";
-$a->strings["Information about this friendica instance"] = "Lisätietoja tästä Friendica -instanssista";
-$a->strings["Network Reset"] = "Verkon nollaus";
-$a->strings["Load Network page with no filters"] = "";
-$a->strings["Friend Requests"] = "Kaveripyynnöt";
-$a->strings["See all notifications"] = "Näytä kaikki ilmoitukset";
-$a->strings["Mark all system notifications seen"] = "";
-$a->strings["Inbox"] = "Saapuneet";
-$a->strings["Outbox"] = "Lähtevät";
-$a->strings["Manage"] = "Hallitse";
-$a->strings["Manage other pages"] = "Hallitse muita sivuja";
-$a->strings["Profiles"] = "Profiilit";
-$a->strings["Manage/Edit Profiles"] = "Hallitse/muokka profiilit";
-$a->strings["Site setup and configuration"] = "Sivuston asennus ja asetukset";
-$a->strings["Navigation"] = "Navigointi";
-$a->strings["Site map"] = "Sivustokartta";
-$a->strings["General Features"] = "Yleiset ominaisuudet";
-$a->strings["Multiple Profiles"] = "";
-$a->strings["Ability to create multiple profiles"] = "";
-$a->strings["Photo Location"] = "Kuvan sijainti";
-$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "";
-$a->strings["Export Public Calendar"] = "Vie julkinen kalenteri";
-$a->strings["Ability for visitors to download the public calendar"] = "";
-$a->strings["Post Composition Features"] = "";
-$a->strings["Post Preview"] = "Viestin esikatselu";
-$a->strings["Allow previewing posts and comments before publishing them"] = "";
-$a->strings["Auto-mention Forums"] = "";
-$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "";
-$a->strings["Network Sidebar Widgets"] = "";
-$a->strings["Search by Date"] = "Päivämäärähaku";
-$a->strings["Ability to select posts by date ranges"] = "";
-$a->strings["List Forums"] = "Näytä foorumit";
-$a->strings["Enable widget to display the forums your are connected with"] = "";
-$a->strings["Group Filter"] = "Ryhmäsuodatin";
-$a->strings["Enable widget to display Network posts only from selected group"] = "";
-$a->strings["Network Filter"] = "Verkkosuodatin";
-$a->strings["Enable widget to display Network posts only from selected network"] = "";
-$a->strings["Save search terms for re-use"] = "";
-$a->strings["Network Tabs"] = "";
-$a->strings["Network Personal Tab"] = "";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "";
-$a->strings["Network New Tab"] = "";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "";
-$a->strings["Network Shared Links Tab"] = "";
-$a->strings["Enable tab to display only Network posts with links in them"] = "";
-$a->strings["Post/Comment Tools"] = "Julkaisu/kommentti työkalut";
-$a->strings["Multiple Deletion"] = "";
-$a->strings["Select and delete multiple posts/comments at once"] = "Valitse ja poista monta julkaisua/kommentia yhtaikaa";
-$a->strings["Edit Sent Posts"] = "Muokkaa lähetetyt julkaisut";
-$a->strings["Edit and correct posts and comments after sending"] = "Muokkaa ja korjaa julkaisuja ja kommenteja julkaisun jälkeen";
-$a->strings["Tagging"] = "Tunnisteet";
-$a->strings["Ability to tag existing posts"] = "";
-$a->strings["Post Categories"] = "Julkaisuluokat";
-$a->strings["Add categories to your posts"] = "Luokittele julkaisusi";
-$a->strings["Saved Folders"] = "Tallennetut kansiot";
-$a->strings["Ability to file posts under folders"] = "";
-$a->strings["Dislike Posts"] = "";
-$a->strings["Ability to dislike posts/comments"] = "";
-$a->strings["Star Posts"] = "Tähtimerkityt julkaisut";
-$a->strings["Ability to mark special posts with a star indicator"] = "";
-$a->strings["Mute Post Notifications"] = "Mykistä julkaisuilmoitukset";
-$a->strings["Ability to mute notifications for a thread"] = "";
-$a->strings["Advanced Profile Settings"] = "Profiilin lisäasetukset";
-$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "";
-$a->strings["Tag Cloud"] = "Tunnistepilvi";
-$a->strings["Provide a personal tag cloud on your profile page"] = "";
-$a->strings["Display Membership Date"] = "Näytä liittymispäivämäärä";
-$a->strings["Display membership date in profile"] = "Näytä liittymispäivämäärä profiilissa";
-$a->strings["Embedding disabled"] = "Upottaminen poistettu käytöstä";
-$a->strings["Embedded content"] = "Upotettu sisältö";
-$a->strings["Export"] = "Vie";
-$a->strings["Export calendar as ical"] = "Vie kalenteri ical -tiedostona";
-$a->strings["Export calendar as csv"] = "Vie kalenteri csv-tiedostona";
-$a->strings["Add New Contact"] = "Lisää uusi kontakti";
-$a->strings["Enter address or web location"] = "Syötä verkko-osoite";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esimerkki: bob@example.com, http://example.com/barbara";
-$a->strings["%d invitation available"] = [
- 0 => "%d kutsu saatavilla",
- 1 => "%d kutsuja saatavilla",
-];
-$a->strings["Find People"] = "Löydä ihmisiä";
-$a->strings["Enter name or interest"] = "Syötä nimi tai harrastus";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esim. Matti Meikäläinen, kalastus yms.";
-$a->strings["Random Profile"] = "Satunnainen profiili";
-$a->strings["View Global Directory"] = "Katso maailmanlaajuista luetteloa";
-$a->strings["Networks"] = "Verkot";
-$a->strings["All Networks"] = "Kaikki verkot";
-$a->strings["Everything"] = "Kaikki";
-$a->strings["Categories"] = "Luokat";
-$a->strings["%d contact in common"] = [
- 0 => "%d yhteinen kontakti",
- 1 => "%d yhteistä kontaktia",
-];
-$a->strings["Frequently"] = "Usein";
-$a->strings["Hourly"] = "Tunneittain";
-$a->strings["Twice daily"] = "Kahdesti päivässä";
-$a->strings["Daily"] = "Päivittäin";
-$a->strings["Weekly"] = "Viikottain";
-$a->strings["Monthly"] = "Kuukausittain";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Diaspora Connector"] = "Diaspora -liitin";
-$a->strings["GNU Social Connector"] = "GNU social -liitin";
-$a->strings["pnut"] = "pnut";
-$a->strings["App.net"] = "App.net";
-$a->strings["Male"] = "Mies";
-$a->strings["Female"] = "Nainen";
-$a->strings["Currently Male"] = "Tällä hetkellä mies";
-$a->strings["Currently Female"] = "Tällä hetkellä nainen";
-$a->strings["Mostly Male"] = "Enimmäkseen mies";
-$a->strings["Mostly Female"] = "Enimmäkseen nainen";
-$a->strings["Transgender"] = "Transsukupuolinen";
-$a->strings["Intersex"] = "Intersukupuolinen";
-$a->strings["Transsexual"] = "Transsukupuolinen";
-$a->strings["Hermaphrodite"] = "Hermafrodiitti";
-$a->strings["Neuter"] = "Neutri";
-$a->strings["Non-specific"] = "Ei-binäärinen";
-$a->strings["Other"] = "Toinen";
-$a->strings["Males"] = "Miehet";
-$a->strings["Females"] = "Naiset";
-$a->strings["Gay"] = "Homo";
-$a->strings["Lesbian"] = "Lesbo";
-$a->strings["No Preference"] = "";
-$a->strings["Bisexual"] = "Biseksuaali";
-$a->strings["Autosexual"] = "";
-$a->strings["Abstinent"] = "Selibaatissa elävä";
-$a->strings["Virgin"] = "Neitsyt";
-$a->strings["Deviant"] = "";
-$a->strings["Fetish"] = "";
-$a->strings["Oodles"] = "";
-$a->strings["Nonsexual"] = "Aseksuaali";
-$a->strings["Single"] = "Sinkku";
-$a->strings["Lonely"] = "Yksinäinen";
-$a->strings["Available"] = "";
-$a->strings["Unavailable"] = "";
-$a->strings["Has crush"] = "Ihastunut";
-$a->strings["Infatuated"] = "Hullaantunut";
-$a->strings["Dating"] = "Seurustelee";
-$a->strings["Unfaithful"] = "";
-$a->strings["Sex Addict"] = "";
-$a->strings["Friends"] = "Kaverit";
-$a->strings["Friends/Benefits"] = "";
-$a->strings["Casual"] = "";
-$a->strings["Engaged"] = "Kihloissa";
-$a->strings["Married"] = "Naimisissa";
-$a->strings["Imaginarily married"] = "";
-$a->strings["Partners"] = "Kumppanit";
-$a->strings["Cohabiting"] = "Avoliitossa";
-$a->strings["Common law"] = "Avoliitossa";
-$a->strings["Happy"] = "Iloinen";
-$a->strings["Not looking"] = "";
-$a->strings["Swinger"] = "";
-$a->strings["Betrayed"] = "";
-$a->strings["Separated"] = "";
-$a->strings["Unstable"] = "Epävakaa";
-$a->strings["Divorced"] = "Eronnut";
-$a->strings["Imaginarily divorced"] = "";
-$a->strings["Widowed"] = "Leski";
-$a->strings["Uncertain"] = "Epävarma";
-$a->strings["It's complicated"] = "Se on monimutkaista";
-$a->strings["Don't care"] = "Ei ole väliä";
-$a->strings["Ask me"] = "Kysy minulta";
-$a->strings["There are no tables on MyISAM."] = "";
-$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "Virheviesti on\n[pre]%s[/pre]";
-$a->strings["\nError %d occurred during database update:\n%s\n"] = "\n%d virhe tapahtui tietokannan päivityksen aikana:\n%s\n";
-$a->strings["Errors encountered performing database changes: "] = "Tietokannan muokkauksessa tapahtui virheitä:";
-$a->strings[": Database update"] = ": Tietokannan päivitys";
-$a->strings["%s: updating %s table."] = "";
-$a->strings["[no subject]"] = "[ei aihetta]";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s osallistuu tapahtumaan %3\$s, jonka järjestää %2\$s";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ei osallistu tapahtumaan %3\$s, jonka järjestää %2\$s";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s ehkä osallistuu tapahtumaan %3\$s, jonka järjestää %2\$s";
-$a->strings["Drop Contact"] = "Poista kontakti";
-$a->strings["Organisation"] = "Järjestö";
-$a->strings["News"] = "Uutiset";
-$a->strings["Forum"] = "Keskustelupalsta";
-$a->strings["Connect URL missing."] = "Yhteys URL-linkki puuttuu.";
-$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "";
-$a->strings["This site is not configured to allow communications with other networks."] = "";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "";
-$a->strings["The profile address specified does not provide adequate information."] = "";
-$a->strings["An author or name was not found."] = "";
-$a->strings["No browser URL could be matched to this address."] = "";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "";
-$a->strings["Use mailto: in front of address to force email check."] = "";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "";
-$a->strings["Unable to retrieve contact information."] = "";
-$a->strings["%s's birthday"] = "%s: syntymäpäivä";
-$a->strings["Happy Birthday %s"] = "Hyvää syntymäpäivää %s";
-$a->strings["Starts:"] = "Alkaa:";
-$a->strings["Finishes:"] = "Päättyy:";
-$a->strings["all-day"] = "koko päivä";
-$a->strings["Jun"] = "Kes.";
-$a->strings["Sept"] = "Syy.";
-$a->strings["No events to display"] = "Ei näytettäviä tapahtumia.";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Muokkaa tapahtumaa";
-$a->strings["Duplicate event"] = "Monista tapahtuma";
-$a->strings["Delete event"] = "Poista tapahtuma";
-$a->strings["D g:i A"] = "";
-$a->strings["g:i A"] = "";
-$a->strings["Show map"] = "Näytä kartta";
-$a->strings["Hide map"] = "Piilota kartta";
-$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "";
-$a->strings["Default privacy group for new contacts"] = "Oletusryhmä uusille kontakteille";
-$a->strings["Everybody"] = "Kaikki";
-$a->strings["edit"] = "muokkaa";
-$a->strings["Edit group"] = "Muokkaa ryhmää";
-$a->strings["Contacts not in any group"] = "Kontaktit ilman ryhmää";
-$a->strings["Create a new group"] = "Luo uusi ryhmä";
-$a->strings["Edit groups"] = "Muokkaa ryhmiä";
-$a->strings["Requested account is not available."] = "Pyydetty käyttäjätili ei ole saatavilla.";
-$a->strings["Edit profile"] = "Muokkaa profiilia";
-$a->strings["Atom feed"] = "Atom -syöte";
-$a->strings["Manage/edit profiles"] = "Hallitse/muokkaa profiilit";
-$a->strings["g A l F d"] = "";
-$a->strings["F d"] = "";
-$a->strings["[today]"] = "[tänään]";
-$a->strings["Birthday Reminders"] = "Syntymäpäivämuistutukset";
-$a->strings["Birthdays this week:"] = "Syntymäpäiviä tällä viikolla:";
-$a->strings["[No description]"] = "[Ei kuvausta]";
-$a->strings["Event Reminders"] = "Tapahtumamuistutukset";
-$a->strings["Events this week:"] = "Tapahtumia tällä viikolla:";
-$a->strings["Member since:"] = "Liittymispäivämäärä:";
-$a->strings["j F, Y"] = "";
-$a->strings["j F"] = "";
-$a->strings["Age:"] = "Ikä:";
-$a->strings["for %1\$d %2\$s"] = "";
-$a->strings["Religion:"] = "Uskonto:";
-$a->strings["Hobbies/Interests:"] = "Harrastukset:";
-$a->strings["Contact information and Social Networks:"] = "Yhteystiedot ja sosiaalinen media:";
-$a->strings["Musical interests:"] = "Musiikki:";
-$a->strings["Books, literature:"] = "Kirjat, kirjallisuus:";
-$a->strings["Television:"] = "Televisio:";
-$a->strings["Film/dance/culture/entertainment:"] = "Elokuvat/tanssit/kulttuuri/viihde:";
-$a->strings["Love/Romance:"] = "Rakkaus/romanssi:";
-$a->strings["Work/employment:"] = "Työ:";
-$a->strings["School/education:"] = "Koulutus:";
-$a->strings["Forums:"] = "Foorumit:";
-$a->strings["Only You Can See This"] = "Vain sinä näet tämän";
-$a->strings["Login failed"] = "Kirjautuminen epäonnistui";
-$a->strings["Not enough information to authenticate"] = "";
-$a->strings["An invitation is required."] = "";
-$a->strings["Invitation could not be verified."] = "Kutsua ei voitu vahvistaa.";
-$a->strings["Invalid OpenID url"] = "Virheellinen OpenID url-osoite";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
-$a->strings["The error message was:"] = "Virheviesti oli:";
-$a->strings["Please enter the required information."] = "Syötä tarvittavat tiedot.";
-$a->strings["Please use a shorter name."] = "Käytä lyhyempää nimeä.";
-$a->strings["Name too short."] = "Nimi on liian lyhyt.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "";
-$a->strings["Your email domain is not among those allowed on this site."] = "Sähköpostiosoitteesi verkkotunnus on tämän sivuston estolistalla.";
-$a->strings["Not a valid email address."] = "Virheellinen sähköpostiosoite.";
-$a->strings["Cannot use that email."] = "Sähköpostiosoitetta ei voitu käyttää.";
-$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Nimimerkki voi sisältää a-z, 0-9 ja _.";
-$a->strings["Nickname is already registered. Please choose another."] = "Valitsemasi nimimerkki on jo käytössä. Valitse toinen nimimerkki.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "VAKAVA VIRHE: Salausavainten luominen epäonnistui.";
-$a->strings["An error occurred during registration. Please try again."] = "Rekisteröityminen epäonnistui. Yritä uudelleen.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Oletusprofiilin luominen epäonnistui. Yritä uudelleen.";
-$a->strings["An error occurred creating your self contact. Please try again."] = "";
-$a->strings["An error occurred creating your default contact group. Please try again."] = "";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t\t"] = "";
-$a->strings["Registration at %s"] = "Rekisteröityminen kohteessa %s";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t"] = "";
-$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$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\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "";
-$a->strings["%s is now following %s."] = "%s seuraa %s.";
-$a->strings["following"] = "seuraa";
-$a->strings["%s stopped following %s."] = "%s ei enää seuraa %s.";
-$a->strings["stopped following"] = "ei enää seuraa";
-$a->strings["%s\\'s birthday"] = "%s\\ käyttäjän syntymäpäivä";
-$a->strings["Sharing notification from Diaspora network"] = "";
-$a->strings["Attachments:"] = "Liitteitä:";
-$a->strings["(no subject)"] = "(ei aihetta)";
-$a->strings["Create a New Account"] = "Luo uusi käyttäjätili";
-$a->strings["Password: "] = "Salasana:";
-$a->strings["Remember me"] = "Muista minut";
-$a->strings["Or login using OpenID: "] = "Kirjaudu sisään OpenID -tunnuksella:";
-$a->strings["Forgot your password?"] = "Unohditko salasanasi?";
-$a->strings["Website Terms of Service"] = "Verkkosivun käyttöehdot";
-$a->strings["terms of service"] = "käyttöehdot";
-$a->strings["Website Privacy Policy"] = "Sivuston tietosuojakäytäntö";
-$a->strings["privacy policy"] = "tietosuojakäytäntö";
-$a->strings["Logged out."] = "Kirjautunut ulos.";
-$a->strings["Privacy Statement"] = "Tietosuojalausunto";
-$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "";
-$a->strings["This data is required for communication and is passed on to the nodes of the communication partners. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "";
-$a->strings["At any point in time a logged in user can export their account data from the account settings . If the user wants to delete their account they can do so at %1\$s/removeme . The deletion of the account will be permanent."] = "";
-$a->strings["This entry was edited"] = "Tämä kohde oli muokattu";
-$a->strings["save to folder"] = "tallenna kansioon";
-$a->strings["I will attend"] = "Osallistun";
-$a->strings["I will not attend"] = "En aio osallistua";
-$a->strings["I might attend"] = "Ehkä osallistun";
-$a->strings["add star"] = "lisää tähti";
-$a->strings["remove star"] = "poista tähti";
-$a->strings["toggle star status"] = "Tähtitila päälle/pois";
-$a->strings["starred"] = "tähtimerkitty";
-$a->strings["ignore thread"] = "";
-$a->strings["unignore thread"] = "";
-$a->strings["toggle ignore status"] = "";
-$a->strings["add tag"] = "lisää tägi";
-$a->strings["like"] = "tykkää";
-$a->strings["dislike"] = "en tykkää";
-$a->strings["Share this"] = "Jaa tämä";
-$a->strings["share"] = "jaa";
-$a->strings["to"] = "";
-$a->strings["via"] = "kautta";
-$a->strings["Wall-to-Wall"] = "";
-$a->strings["via Wall-To-Wall:"] = "";
-$a->strings["%d comment"] = [
- 0 => "%d kommentti",
- 1 => "%d kommentteja",
-];
-$a->strings["Bold"] = "Lihavoitu";
-$a->strings["Italic"] = "Kursivoitu";
-$a->strings["Underline"] = "Alleviivaus";
-$a->strings["Quote"] = "Lainaus";
-$a->strings["Code"] = "Koodi";
-$a->strings["Image"] = "Kuva";
-$a->strings["Link"] = "Linkki";
-$a->strings["Video"] = "Video";
-$a->strings["Delete this item?"] = "Poista tämä kohde?";
-$a->strings["show fewer"] = "näytä vähemmän";
-$a->strings["Update %s failed. See error logs."] = "%s päivitys epäonnistui, katso virhelokit.";
+$a->strings["greenzero"] = "greenzero";
+$a->strings["purplezero"] = "purplezero";
+$a->strings["easterbunny"] = "easterbunny";
+$a->strings["darkzero"] = "darkzero";
+$a->strings["comix"] = "comix";
+$a->strings["slackr"] = "slackr";
+$a->strings["Variations"] = "Muunnelmat";
$a->strings["toggle mobile"] = "Mobiilisivusto päälle/pois";
diff --git a/view/lang/pl/messages.po b/view/lang/pl/messages.po
index a09bd6a28..eecbfba40 100644
--- a/view/lang/pl/messages.po
+++ b/view/lang/pl/messages.po
@@ -38,8 +38,8 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-04-20 09:30+0200\n"
-"PO-Revision-Date: 2018-04-20 20:52+0000\n"
+"POT-Creation-Date: 2018-04-22 11:15+0200\n"
+"PO-Revision-Date: 2018-04-27 20:47+0000\n"
"Last-Translator: Waldemar Stoczkowski \n"
"Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/pl/)\n"
"MIME-Version: 1.0\n"
@@ -48,67 +48,10 @@ msgstr ""
"Language: pl\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
-#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21
-#: mod/display.php:72 mod/display.php:252 mod/display.php:354
-#: mod/admin.php:276 mod/admin.php:1854 mod/admin.php:2102
-msgid "Item not found."
-msgstr "Element nie znaleziony."
-
-#: include/items.php:382
-msgid "Do you really want to delete this item?"
-msgstr "Czy na pewno chcesz usunąć ten element?"
-
-#: include/items.php:384 mod/api.php:110 mod/suggest.php:38
-#: mod/dfrn_request.php:653 mod/message.php:138 mod/contacts.php:472
-#: mod/follow.php:150 mod/profiles.php:636 mod/profiles.php:639
-#: mod/profiles.php:661 mod/register.php:237 mod/settings.php:1105
-#: mod/settings.php:1111 mod/settings.php:1118 mod/settings.php:1122
-#: mod/settings.php:1126 mod/settings.php:1130 mod/settings.php:1134
-#: mod/settings.php:1138 mod/settings.php:1158 mod/settings.php:1159
-#: mod/settings.php:1160 mod/settings.php:1161 mod/settings.php:1162
-msgid "Yes"
-msgstr "Tak"
-
-#: include/items.php:387 include/conversation.php:1352 mod/fbrowser.php:103
-#: mod/fbrowser.php:134 mod/suggest.php:41 mod/dfrn_request.php:663
-#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149 mod/message.php:141
-#: mod/photos.php:248 mod/photos.php:324 mod/videos.php:147
-#: mod/contacts.php:475 mod/unfollow.php:117 mod/follow.php:161
-#: mod/settings.php:676 mod/settings.php:702
-msgid "Cancel"
-msgstr "Anuluj"
-
-#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40
-#: mod/attach.php:38 mod/common.php:26 mod/crepair.php:98 mod/nogroup.php:28
-#: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28
-#: mod/notifications.php:73 mod/dfrn_confirm.php:68 mod/manage.php:131
-#: mod/wall_attach.php:74 mod/wall_attach.php:77 mod/poke.php:150
-#: mod/regmod.php:108 mod/viewcontacts.php:57 mod/wall_upload.php:103
-#: mod/wall_upload.php:106 mod/wallmessage.php:16 mod/wallmessage.php:40
-#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/editpost.php:18
-#: mod/fsuggest.php:80 mod/group.php:26 mod/message.php:59 mod/message.php:104
-#: mod/notes.php:30 mod/photos.php:174 mod/photos.php:1051 mod/cal.php:304
-#: mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43
-#: mod/delegate.php:54 mod/events.php:194 mod/item.php:160
-#: mod/ostatus_subscribe.php:16 mod/profile_photo.php:30
-#: mod/profile_photo.php:176 mod/profile_photo.php:187
-#: mod/profile_photo.php:200 mod/unfollow.php:15 mod/unfollow.php:57
-#: mod/unfollow.php:90 mod/dirfind.php:25 mod/follow.php:17 mod/follow.php:54
-#: mod/follow.php:118 mod/invite.php:20 mod/invite.php:111 mod/network.php:32
-#: mod/profiles.php:182 mod/profiles.php:606 mod/register.php:53
-#: mod/settings.php:42 mod/settings.php:141 mod/settings.php:665 index.php:444
-msgid "Permission denied."
-msgstr "Brak uprawnień."
-
-#: include/items.php:471
-msgid "Archives"
-msgstr "Archiwum"
-
-#: include/items.php:477 view/theme/vier/theme.php:259
-#: src/Content/ForumManager.php:130 src/Content/Widget.php:312
-#: src/Object/Post.php:430 src/App.php:512
-msgid "show more"
-msgstr "Pokaż więcej"
+#: boot.php:795
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Aktualizacja %s nie powiodła się. Zobacz dziennik błędów."
#: include/api.php:1202
#, php-format
@@ -134,470 +77,15 @@ msgstr[3] ""
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgstr "Miesięczny limit %d wysyłania postów. Post został odrzucony."
-#: include/api.php:4523 mod/photos.php:88 mod/photos.php:194
-#: mod/photos.php:722 mod/photos.php:1149 mod/photos.php:1166
-#: mod/photos.php:1684 mod/profile_photo.php:85 mod/profile_photo.php:93
+#: include/api.php:4523 src/Model/User.php:549 src/Model/User.php:557
+#: src/Model/User.php:565 mod/profile_photo.php:85 mod/profile_photo.php:93
#: mod/profile_photo.php:101 mod/profile_photo.php:211
-#: mod/profile_photo.php:302 mod/profile_photo.php:312 src/Model/User.php:553
-#: src/Model/User.php:561 src/Model/User.php:569
+#: mod/profile_photo.php:302 mod/profile_photo.php:312 mod/photos.php:88
+#: mod/photos.php:194 mod/photos.php:722 mod/photos.php:1149
+#: mod/photos.php:1166 mod/photos.php:1684
msgid "Profile Photos"
msgstr "Zdjęcie profilowe"
-#: include/conversation.php:144 include/conversation.php:282
-#: include/text.php:1753 src/Model/Item.php:1795
-msgid "event"
-msgstr "wydarzenie"
-
-#: include/conversation.php:147 include/conversation.php:157
-#: include/conversation.php:285 include/conversation.php:294
-#: mod/subthread.php:97 mod/tagger.php:72 src/Model/Item.php:1793
-#: src/Protocol/Diaspora.php:2039
-msgid "status"
-msgstr "status"
-
-#: include/conversation.php:152 include/conversation.php:290
-#: include/text.php:1755 mod/subthread.php:97 mod/tagger.php:72
-#: src/Model/Item.php:1793
-msgid "photo"
-msgstr "zdjęcie"
-
-#: include/conversation.php:164 src/Model/Item.php:1666
-#: src/Protocol/Diaspora.php:2035
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s lubi to %2$s's %3$s"
-
-#: include/conversation.php:167 src/Model/Item.php:1671
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s nie lubi %2$s's %3$s"
-
-#: include/conversation.php:170
-#, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr "%1$sbierze udział w %2$s's%3$s "
-
-#: include/conversation.php:173
-#, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr "%1$s nie uczestniczy %2$s 's %3$s"
-
-#: include/conversation.php:176
-#, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr "%1$s może uczęszcza %2$s 's %3$s"
-
-#: include/conversation.php:209 mod/dfrn_confirm.php:431
-#: src/Protocol/Diaspora.php:2510
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s jest teraz znajomym z %2$s"
-
-#: include/conversation.php:250
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s zaczepił Cię %2$s"
-
-#: include/conversation.php:304 mod/tagger.php:110
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s"
-
-#: include/conversation.php:331
-msgid "post/item"
-msgstr "stanowisko/pozycja"
-
-#: include/conversation.php:332
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s oznacz %2$s's %3$s jako ulubione"
-
-#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:355
-msgid "Likes"
-msgstr "Lubię to"
-
-#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:359
-msgid "Dislikes"
-msgstr "Nie lubię tego"
-
-#: include/conversation.php:606 include/conversation.php:1661
-#: mod/photos.php:1502
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: include/conversation.php:606 mod/photos.php:1502
-msgid "Not attending"
-msgstr "Nie uczestniczyłem"
-
-#: include/conversation.php:606 mod/photos.php:1502
-msgid "Might attend"
-msgstr "Może wziąć udział"
-
-#: include/conversation.php:718 mod/photos.php:1569 src/Object/Post.php:178
-msgid "Select"
-msgstr "Wybierz"
-
-#: include/conversation.php:719 mod/photos.php:1570 mod/contacts.php:830
-#: mod/contacts.php:1035 mod/admin.php:1798 mod/settings.php:738
-#: src/Object/Post.php:179
-msgid "Delete"
-msgstr "Usuń"
-
-#: include/conversation.php:757 src/Object/Post.php:363
-#: src/Object/Post.php:364
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Pokaż %s's profil @ %s"
-
-#: include/conversation.php:769 src/Object/Post.php:351
-msgid "Categories:"
-msgstr "Kategorie:"
-
-#: include/conversation.php:770 src/Object/Post.php:352
-msgid "Filed under:"
-msgstr "Zapisano w:"
-
-#: include/conversation.php:777 src/Object/Post.php:377
-#, php-format
-msgid "%s from %s"
-msgstr "%s od %s"
-
-#: include/conversation.php:792
-msgid "View in context"
-msgstr "Zobacz w kontekście"
-
-#: include/conversation.php:794 include/conversation.php:1334
-#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:264
-#: mod/message.php:433 mod/photos.php:1473 src/Object/Post.php:402
-msgid "Please wait"
-msgstr "Proszę czekać"
-
-#: include/conversation.php:865
-msgid "remove"
-msgstr "usuń"
-
-#: include/conversation.php:869
-msgid "Delete Selected Items"
-msgstr "Usuń zaznaczone elementy"
-
-#: include/conversation.php:1039 view/theme/frio/theme.php:352
-msgid "Follow Thread"
-msgstr "Śledź wątek"
-
-#: include/conversation.php:1040 src/Model/Contact.php:652
-msgid "View Status"
-msgstr "Zobacz status"
-
-#: include/conversation.php:1041 include/conversation.php:1057
-#: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89
-#: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:592
-#: src/Model/Contact.php:605 src/Model/Contact.php:653
-msgid "View Profile"
-msgstr "Zobacz profil"
-
-#: include/conversation.php:1042 src/Model/Contact.php:654
-msgid "View Photos"
-msgstr "Zobacz zdjęcia"
-
-#: include/conversation.php:1043 src/Model/Contact.php:655
-msgid "Network Posts"
-msgstr "Wiadomości sieciowe"
-
-#: include/conversation.php:1044 src/Model/Contact.php:656
-msgid "View Contact"
-msgstr "Pokaż kontakt"
-
-#: include/conversation.php:1045 src/Model/Contact.php:658
-msgid "Send PM"
-msgstr "Wyślij prywatną wiadomość"
-
-#: include/conversation.php:1049 src/Model/Contact.php:659
-msgid "Poke"
-msgstr "Zaczepka"
-
-#: include/conversation.php:1054 mod/allfriends.php:74 mod/suggest.php:83
-#: mod/match.php:90 mod/contacts.php:596 mod/dirfind.php:218
-#: mod/follow.php:143 src/Content/Widget.php:61 src/Model/Contact.php:606
-msgid "Connect/Follow"
-msgstr "Połącz/Obserwuj"
-
-#: include/conversation.php:1173
-#, php-format
-msgid "%s likes this."
-msgstr "%s lubi to."
-
-#: include/conversation.php:1176
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s nie lubi tego."
-
-#: include/conversation.php:1179
-#, php-format
-msgid "%s attends."
-msgstr "%s uczestniczy."
-
-#: include/conversation.php:1182
-#, php-format
-msgid "%s doesn't attend."
-msgstr "%s nie uczestniczy."
-
-#: include/conversation.php:1185
-#, php-format
-msgid "%s attends maybe."
-msgstr "%s może uczęszcza."
-
-#: include/conversation.php:1196
-msgid "and"
-msgstr "i"
-
-#: include/conversation.php:1202
-#, php-format
-msgid "and %d other people"
-msgstr "i %d inni ludzie"
-
-#: include/conversation.php:1211
-#, php-format
-msgid "%2$d people like this"
-msgstr "%2$d ludzi lubi to"
-
-#: include/conversation.php:1212
-#, php-format
-msgid "%s like this."
-msgstr "%s lubię to."
-
-#: include/conversation.php:1215
-#, php-format
-msgid "%2$d people don't like this"
-msgstr "%2$d ludzi nie lubi tego "
-
-#: include/conversation.php:1216
-#, php-format
-msgid "%s don't like this."
-msgstr "%s nie lubię tego."
-
-#: include/conversation.php:1219
-#, php-format
-msgid "%2$d people attend"
-msgstr "%2$dosoby uczestniczą"
-
-#: include/conversation.php:1220
-#, php-format
-msgid "%s attend."
-msgstr "%suczestniczy"
-
-#: include/conversation.php:1223
-#, php-format
-msgid "%2$d people don't attend"
-msgstr "%2$dludzie nie uczestniczą"
-
-#: include/conversation.php:1224
-#, php-format
-msgid "%s don't attend."
-msgstr "%s nie uczestnicz"
-
-#: include/conversation.php:1227
-#, php-format
-msgid "%2$d people attend maybe"
-msgstr "%2$dprzyjaciele mogą uczestniczyć "
-
-#: include/conversation.php:1228
-#, php-format
-msgid "%s attend maybe."
-msgstr "%sbyć może uczestniczyć. "
-
-#: include/conversation.php:1258 include/conversation.php:1274
-msgid "Visible to everybody "
-msgstr "Widoczne dla wszystkich "
-
-#: include/conversation.php:1259 include/conversation.php:1275
-#: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:200
-#: mod/message.php:207 mod/message.php:343 mod/message.php:350
-msgid "Please enter a link URL:"
-msgstr "Proszę wpisać adres URL:"
-
-#: include/conversation.php:1260 include/conversation.php:1276
-msgid "Please enter a video link/URL:"
-msgstr "Podaj link do filmu"
-
-#: include/conversation.php:1261 include/conversation.php:1277
-msgid "Please enter an audio link/URL:"
-msgstr "Podaj link do muzyki"
-
-#: include/conversation.php:1262 include/conversation.php:1278
-msgid "Tag term:"
-msgstr "Termin tagu:"
-
-#: include/conversation.php:1263 include/conversation.php:1279
-#: mod/filer.php:34
-msgid "Save to Folder:"
-msgstr "Zapisz w folderze:"
-
-#: include/conversation.php:1264 include/conversation.php:1280
-msgid "Where are you right now?"
-msgstr "Gdzie teraz jesteś?"
-
-#: include/conversation.php:1265
-msgid "Delete item(s)?"
-msgstr "Usunąć pozycję (pozycje)?"
-
-#: include/conversation.php:1312
-msgid "New Post"
-msgstr "Nowy Post"
-
-#: include/conversation.php:1315
-msgid "Share"
-msgstr "Podziel się"
-
-#: include/conversation.php:1316 mod/wallmessage.php:143 mod/editpost.php:111
-#: mod/message.php:262 mod/message.php:430
-msgid "Upload photo"
-msgstr "Wyślij zdjęcie"
-
-#: include/conversation.php:1317 mod/editpost.php:112
-msgid "upload photo"
-msgstr "dodaj zdjęcie"
-
-#: include/conversation.php:1318 mod/editpost.php:113
-msgid "Attach file"
-msgstr "Załącz plik"
-
-#: include/conversation.php:1319 mod/editpost.php:114
-msgid "attach file"
-msgstr "załącz plik"
-
-#: include/conversation.php:1320 mod/wallmessage.php:144 mod/editpost.php:115
-#: mod/message.php:263 mod/message.php:431
-msgid "Insert web link"
-msgstr "Wstaw link"
-
-#: include/conversation.php:1321 mod/editpost.php:116
-msgid "web link"
-msgstr "Adres www"
-
-#: include/conversation.php:1322 mod/editpost.php:117
-msgid "Insert video link"
-msgstr "Wstaw link do filmu"
-
-#: include/conversation.php:1323 mod/editpost.php:118
-msgid "video link"
-msgstr "link do filmu"
-
-#: include/conversation.php:1324 mod/editpost.php:119
-msgid "Insert audio link"
-msgstr "Wstaw link do audio"
-
-#: include/conversation.php:1325 mod/editpost.php:120
-msgid "audio link"
-msgstr "Link do nagrania audio"
-
-#: include/conversation.php:1326 mod/editpost.php:121
-msgid "Set your location"
-msgstr "Ustaw swoją lokalizację"
-
-#: include/conversation.php:1327 mod/editpost.php:122
-msgid "set location"
-msgstr "wybierz lokalizację"
-
-#: include/conversation.php:1328 mod/editpost.php:123
-msgid "Clear browser location"
-msgstr "Wyczyść lokalizację przeglądarki"
-
-#: include/conversation.php:1329 mod/editpost.php:124
-msgid "clear location"
-msgstr "wyczyść lokalizację"
-
-#: include/conversation.php:1331 mod/editpost.php:138
-msgid "Set title"
-msgstr "Ustaw tytuł"
-
-#: include/conversation.php:1333 mod/editpost.php:140
-msgid "Categories (comma-separated list)"
-msgstr "Kategorie (lista słów oddzielonych przecinkiem)"
-
-#: include/conversation.php:1335 mod/editpost.php:126
-msgid "Permission settings"
-msgstr "Ustawienia uprawnień"
-
-#: include/conversation.php:1336 mod/editpost.php:155
-msgid "permissions"
-msgstr "zezwolenia"
-
-#: include/conversation.php:1344 mod/editpost.php:135
-msgid "Public post"
-msgstr "Publiczny post"
-
-#: include/conversation.php:1348 mod/editpost.php:146 mod/photos.php:1492
-#: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528
-#: src/Object/Post.php:805
-msgid "Preview"
-msgstr "Podgląd"
-
-#: include/conversation.php:1357
-msgid "Post to Groups"
-msgstr "Opublikuj w grupach"
-
-#: include/conversation.php:1358
-msgid "Post to Contacts"
-msgstr "Wstaw do kontaktów"
-
-#: include/conversation.php:1359
-msgid "Private post"
-msgstr "Prywatne posty"
-
-#: include/conversation.php:1364 mod/editpost.php:153
-#: src/Model/Profile.php:342
-msgid "Message"
-msgstr "Wiadomość"
-
-#: include/conversation.php:1365 mod/editpost.php:154
-msgid "Browser"
-msgstr "Przeglądarka"
-
-#: include/conversation.php:1632
-msgid "View all"
-msgstr "Pokaż wszystkie"
-
-#: include/conversation.php:1655
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: include/conversation.php:1658
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: include/conversation.php:1664
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: include/conversation.php:1667 src/Content/ContactSelector.php:125
-msgid "Undecided"
-msgid_plural "Undecided"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: include/dba.php:58
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Nie można zlokalizować serwera DNS dla bazy danych '%s'"
-
#: include/enotify.php:31
msgid "Friendica Notification"
msgstr "Powiadomienia Friendica"
@@ -684,7 +172,7 @@ msgstr "%1$sopublikowano na ścianie profilu w %2$s "
#: include/enotify.php:183
#, php-format
msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s wysłano do [url =%2$s]twojej ściany[/url] "
+msgstr "%1$s wysłano do [url =%2$s]twojej strony[/url] "
#: include/enotify.php:195
#, php-format
@@ -758,7 +246,7 @@ msgstr "Otrzymałeś wstęp od '%1$s' z %2$s"
#: include/enotify.php:262
#, php-format
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Otrzymałeś [url=%1$s] wprowadzenie [/ url] z %2$s."
+msgstr "Zostałeś [url=%1$s] przyjęty [/ url] z %2$s."
#: include/enotify.php:267 include/enotify.php:313
#, php-format
@@ -890,6 +378,471 @@ msgstr "Pełna nazwa:\t%1$s \\Lokalizacja nSite:\t%2$s\\ nNazwa Użytkownika: \t
msgid "Please visit %s to approve or reject the request."
msgstr "Odwiedź stronę %s, aby zatwierdzić lub odrzucić wniosek."
+#: include/conversation.php:144 include/conversation.php:282
+#: include/text.php:1753 src/Model/Item.php:1796
+msgid "event"
+msgstr "wydarzenie"
+
+#: include/conversation.php:147 include/conversation.php:157
+#: include/conversation.php:285 include/conversation.php:294
+#: src/Model/Item.php:1794 src/Protocol/Diaspora.php:2039 mod/subthread.php:97
+#: mod/tagger.php:72
+msgid "status"
+msgstr "status"
+
+#: include/conversation.php:152 include/conversation.php:290
+#: include/text.php:1755 src/Model/Item.php:1794 mod/subthread.php:97
+#: mod/tagger.php:72
+msgid "photo"
+msgstr "zdjęcie"
+
+#: include/conversation.php:164 src/Model/Item.php:1667
+#: src/Protocol/Diaspora.php:2035
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s lubi to %2$s's %3$s"
+
+#: include/conversation.php:167 src/Model/Item.php:1672
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s nie lubi %2$s's %3$s"
+
+#: include/conversation.php:170
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$sbierze udział w %2$s's%3$s "
+
+#: include/conversation.php:173
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr "%1$s nie uczestniczy %2$s 's %3$s"
+
+#: include/conversation.php:176
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr "%1$s może uczęszcza %2$s 's %3$s"
+
+#: include/conversation.php:209 src/Protocol/Diaspora.php:2510
+#: mod/dfrn_confirm.php:431
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s jest teraz znajomym z %2$s"
+
+#: include/conversation.php:250
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s zaczepił Cię %2$s"
+
+#: include/conversation.php:304 mod/tagger.php:110
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s"
+
+#: include/conversation.php:331
+msgid "post/item"
+msgstr "stanowisko/pozycja"
+
+#: include/conversation.php:332
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s oznacz %2$s's %3$s jako ulubione"
+
+#: include/conversation.php:605 mod/profiles.php:355 mod/photos.php:1501
+msgid "Likes"
+msgstr "Lubię to"
+
+#: include/conversation.php:605 mod/profiles.php:359 mod/photos.php:1501
+msgid "Dislikes"
+msgstr "Nie lubię tego"
+
+#: include/conversation.php:606 include/conversation.php:1661
+#: mod/photos.php:1502
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: include/conversation.php:606 mod/photos.php:1502
+msgid "Not attending"
+msgstr "Nie uczestniczyłem"
+
+#: include/conversation.php:606 mod/photos.php:1502
+msgid "Might attend"
+msgstr "Może wziąć udział"
+
+#: include/conversation.php:718 src/Object/Post.php:178 mod/photos.php:1569
+msgid "Select"
+msgstr "Wybierz"
+
+#: include/conversation.php:719 src/Object/Post.php:179 mod/settings.php:738
+#: mod/admin.php:1812 mod/photos.php:1570 mod/contacts.php:830
+#: mod/contacts.php:1035
+msgid "Delete"
+msgstr "Usuń"
+
+#: include/conversation.php:757 src/Object/Post.php:363
+#: src/Object/Post.php:364
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Pokaż %s's profil @ %s"
+
+#: include/conversation.php:769 src/Object/Post.php:351
+msgid "Categories:"
+msgstr "Kategorie:"
+
+#: include/conversation.php:770 src/Object/Post.php:352
+msgid "Filed under:"
+msgstr "Zapisano w:"
+
+#: include/conversation.php:777 src/Object/Post.php:377
+#, php-format
+msgid "%s from %s"
+msgstr "%s od %s"
+
+#: include/conversation.php:792
+msgid "View in context"
+msgstr "Zobacz w kontekście"
+
+#: include/conversation.php:794 include/conversation.php:1334
+#: src/Object/Post.php:402 mod/photos.php:1473 mod/message.php:264
+#: mod/message.php:433 mod/wallmessage.php:145 mod/editpost.php:125
+msgid "Please wait"
+msgstr "Proszę czekać"
+
+#: include/conversation.php:865
+msgid "remove"
+msgstr "usuń"
+
+#: include/conversation.php:869
+msgid "Delete Selected Items"
+msgstr "Usuń zaznaczone elementy"
+
+#: include/conversation.php:1039 view/theme/frio/theme.php:352
+msgid "Follow Thread"
+msgstr "Śledź wątek"
+
+#: include/conversation.php:1040 src/Model/Contact.php:652
+msgid "View Status"
+msgstr "Zobacz status"
+
+#: include/conversation.php:1041 include/conversation.php:1057
+#: src/Model/Contact.php:592 src/Model/Contact.php:605
+#: src/Model/Contact.php:653 mod/directory.php:159 mod/dirfind.php:217
+#: mod/suggest.php:82 mod/allfriends.php:73 mod/match.php:89
+msgid "View Profile"
+msgstr "Zobacz profil"
+
+#: include/conversation.php:1042 src/Model/Contact.php:654
+msgid "View Photos"
+msgstr "Zobacz zdjęcia"
+
+#: include/conversation.php:1043 src/Model/Contact.php:655
+msgid "Network Posts"
+msgstr "Wiadomości sieciowe"
+
+#: include/conversation.php:1044 src/Model/Contact.php:656
+msgid "View Contact"
+msgstr "Pokaż kontakt"
+
+#: include/conversation.php:1045 src/Model/Contact.php:658
+msgid "Send PM"
+msgstr "Wyślij prywatną wiadomość"
+
+#: include/conversation.php:1049 src/Model/Contact.php:659
+msgid "Poke"
+msgstr "Zaczepka"
+
+#: include/conversation.php:1054 src/Model/Contact.php:606
+#: src/Content/Widget.php:61 mod/dirfind.php:218 mod/suggest.php:83
+#: mod/allfriends.php:74 mod/follow.php:143 mod/contacts.php:596
+#: mod/match.php:90
+msgid "Connect/Follow"
+msgstr "Połącz/Obserwuj"
+
+#: include/conversation.php:1173
+#, php-format
+msgid "%s likes this."
+msgstr "%s lubi to."
+
+#: include/conversation.php:1176
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s nie lubi tego."
+
+#: include/conversation.php:1179
+#, php-format
+msgid "%s attends."
+msgstr "%s uczestniczy."
+
+#: include/conversation.php:1182
+#, php-format
+msgid "%s doesn't attend."
+msgstr "%s nie uczestniczy."
+
+#: include/conversation.php:1185
+#, php-format
+msgid "%s attends maybe."
+msgstr "%s może uczęszcza."
+
+#: include/conversation.php:1196
+msgid "and"
+msgstr "i"
+
+#: include/conversation.php:1202
+#, php-format
+msgid "and %d other people"
+msgstr "i %d inni ludzie"
+
+#: include/conversation.php:1211
+#, php-format
+msgid "%2$d people like this"
+msgstr "%2$d ludzi lubi to"
+
+#: include/conversation.php:1212
+#, php-format
+msgid "%s like this."
+msgstr "%s lubię to."
+
+#: include/conversation.php:1215
+#, php-format
+msgid "%2$d people don't like this"
+msgstr "%2$d ludzi nie lubi tego "
+
+#: include/conversation.php:1216
+#, php-format
+msgid "%s don't like this."
+msgstr "%s nie lubię tego."
+
+#: include/conversation.php:1219
+#, php-format
+msgid "%2$d people attend"
+msgstr "%2$dosoby uczestniczą"
+
+#: include/conversation.php:1220
+#, php-format
+msgid "%s attend."
+msgstr "%suczestniczy"
+
+#: include/conversation.php:1223
+#, php-format
+msgid "%2$d people don't attend"
+msgstr "%2$dludzie nie uczestniczą"
+
+#: include/conversation.php:1224
+#, php-format
+msgid "%s don't attend."
+msgstr "%s nie uczestnicz"
+
+#: include/conversation.php:1227
+#, php-format
+msgid "%2$d people attend maybe"
+msgstr "%2$dprzyjaciele mogą uczestniczyć "
+
+#: include/conversation.php:1228
+#, php-format
+msgid "%s attend maybe."
+msgstr "%sbyć może uczestniczyć. "
+
+#: include/conversation.php:1258 include/conversation.php:1274
+msgid "Visible to everybody "
+msgstr "Widoczne dla wszystkich "
+
+#: include/conversation.php:1259 include/conversation.php:1275
+#: mod/message.php:200 mod/message.php:207 mod/message.php:343
+#: mod/message.php:350 mod/wallmessage.php:120 mod/wallmessage.php:127
+msgid "Please enter a link URL:"
+msgstr "Proszę wpisać adres URL:"
+
+#: include/conversation.php:1260 include/conversation.php:1276
+msgid "Please enter a video link/URL:"
+msgstr "Podaj link do filmu"
+
+#: include/conversation.php:1261 include/conversation.php:1277
+msgid "Please enter an audio link/URL:"
+msgstr "Podaj link do muzyki"
+
+#: include/conversation.php:1262 include/conversation.php:1278
+msgid "Tag term:"
+msgstr "Termin tagu:"
+
+#: include/conversation.php:1263 include/conversation.php:1279
+#: mod/filer.php:34
+msgid "Save to Folder:"
+msgstr "Zapisz w folderze:"
+
+#: include/conversation.php:1264 include/conversation.php:1280
+msgid "Where are you right now?"
+msgstr "Gdzie teraz jesteś?"
+
+#: include/conversation.php:1265
+msgid "Delete item(s)?"
+msgstr "Usunąć pozycję (pozycje)?"
+
+#: include/conversation.php:1312
+msgid "New Post"
+msgstr "Nowy Post"
+
+#: include/conversation.php:1315
+msgid "Share"
+msgstr "Podziel się"
+
+#: include/conversation.php:1316 mod/message.php:262 mod/message.php:430
+#: mod/wallmessage.php:143 mod/editpost.php:111
+msgid "Upload photo"
+msgstr "Wyślij zdjęcie"
+
+#: include/conversation.php:1317 mod/editpost.php:112
+msgid "upload photo"
+msgstr "dodaj zdjęcie"
+
+#: include/conversation.php:1318 mod/editpost.php:113
+msgid "Attach file"
+msgstr "Załącz plik"
+
+#: include/conversation.php:1319 mod/editpost.php:114
+msgid "attach file"
+msgstr "załącz plik"
+
+#: include/conversation.php:1320 mod/message.php:263 mod/message.php:431
+#: mod/wallmessage.php:144 mod/editpost.php:115
+msgid "Insert web link"
+msgstr "Wstaw link"
+
+#: include/conversation.php:1321 mod/editpost.php:116
+msgid "web link"
+msgstr "Adres www"
+
+#: include/conversation.php:1322 mod/editpost.php:117
+msgid "Insert video link"
+msgstr "Wstaw link do filmu"
+
+#: include/conversation.php:1323 mod/editpost.php:118
+msgid "video link"
+msgstr "link do filmu"
+
+#: include/conversation.php:1324 mod/editpost.php:119
+msgid "Insert audio link"
+msgstr "Wstaw link do audio"
+
+#: include/conversation.php:1325 mod/editpost.php:120
+msgid "audio link"
+msgstr "Link do nagrania audio"
+
+#: include/conversation.php:1326 mod/editpost.php:121
+msgid "Set your location"
+msgstr "Ustaw swoją lokalizację"
+
+#: include/conversation.php:1327 mod/editpost.php:122
+msgid "set location"
+msgstr "wybierz lokalizację"
+
+#: include/conversation.php:1328 mod/editpost.php:123
+msgid "Clear browser location"
+msgstr "Wyczyść lokalizację przeglądarki"
+
+#: include/conversation.php:1329 mod/editpost.php:124
+msgid "clear location"
+msgstr "wyczyść lokalizację"
+
+#: include/conversation.php:1331 mod/editpost.php:138
+msgid "Set title"
+msgstr "Ustaw tytuł"
+
+#: include/conversation.php:1333 mod/editpost.php:140
+msgid "Categories (comma-separated list)"
+msgstr "Kategorie (lista słów oddzielonych przecinkiem)"
+
+#: include/conversation.php:1335 mod/editpost.php:126
+msgid "Permission settings"
+msgstr "Ustawienia uprawnień"
+
+#: include/conversation.php:1336 mod/editpost.php:155
+msgid "permissions"
+msgstr "zezwolenia"
+
+#: include/conversation.php:1344 mod/editpost.php:135
+msgid "Public post"
+msgstr "Publiczny post"
+
+#: include/conversation.php:1348 src/Object/Post.php:805 mod/events.php:528
+#: mod/photos.php:1492 mod/photos.php:1531 mod/photos.php:1604
+#: mod/editpost.php:146
+msgid "Preview"
+msgstr "Podgląd"
+
+#: include/conversation.php:1352 include/items.php:387 mod/suggest.php:41
+#: mod/settings.php:676 mod/settings.php:702 mod/fbrowser.php:103
+#: mod/fbrowser.php:134 mod/photos.php:248 mod/photos.php:324
+#: mod/message.php:141 mod/videos.php:147 mod/unfollow.php:117
+#: mod/dfrn_request.php:663 mod/follow.php:161 mod/contacts.php:475
+#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149
+msgid "Cancel"
+msgstr "Anuluj"
+
+#: include/conversation.php:1357
+msgid "Post to Groups"
+msgstr "Opublikuj w grupach"
+
+#: include/conversation.php:1358
+msgid "Post to Contacts"
+msgstr "Wstaw do kontaktów"
+
+#: include/conversation.php:1359
+msgid "Private post"
+msgstr "Prywatne posty"
+
+#: include/conversation.php:1364 src/Model/Profile.php:342
+#: mod/editpost.php:153
+msgid "Message"
+msgstr "Wiadomość"
+
+#: include/conversation.php:1365 mod/editpost.php:154
+msgid "Browser"
+msgstr "Przeglądarka"
+
+#: include/conversation.php:1632
+msgid "View all"
+msgstr "Pokaż wszystkie"
+
+#: include/conversation.php:1655
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: include/conversation.php:1658
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: include/conversation.php:1664
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: include/conversation.php:1667 src/Content/ContactSelector.php:125
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: include/dba.php:58
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Nie można zlokalizować serwera DNS dla bazy danych '%s'"
+
#: include/security.php:81
msgid "Welcome "
msgstr "Witaj "
@@ -957,8 +910,8 @@ msgstr[3] "%d Kontakty"
msgid "View Contacts"
msgstr "Widok kontaktów"
-#: include/text.php:1010 mod/filer.php:35 mod/editpost.php:110
-#: mod/notes.php:67
+#: include/text.php:1010 mod/notes.php:67 mod/filer.php:35
+#: mod/editpost.php:110
msgid "Save"
msgstr "Zapisz"
@@ -966,7 +919,7 @@ msgstr "Zapisz"
msgid "Follow"
msgstr "Śledzić"
-#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142
+#: include/text.php:1016 src/Content/Nav.php:142 mod/search.php:155
msgid "Search"
msgstr "Szukaj"
@@ -978,19 +931,19 @@ msgstr "@imię, !forum, #tagi, treść"
msgid "Full Text"
msgstr "Pełny tekst"
-#: include/text.php:1026 src/Content/Nav.php:146
-#: src/Content/Widget/TagCloud.php:54
+#: include/text.php:1026 src/Content/Widget/TagCloud.php:54
+#: src/Content/Nav.php:146
msgid "Tags"
msgstr "Tagi"
-#: include/text.php:1027 mod/viewcontacts.php:131 mod/contacts.php:814
-#: mod/contacts.php:875 view/theme/frio/theme.php:270 src/Content/Nav.php:147
-#: src/Content/Nav.php:212 src/Model/Profile.php:959 src/Model/Profile.php:962
+#: include/text.php:1027 src/Model/Profile.php:961 src/Model/Profile.php:964
+#: src/Content/Nav.php:147 src/Content/Nav.php:208 mod/viewcontacts.php:131
+#: mod/contacts.php:814 mod/contacts.php:875 view/theme/frio/theme.php:270
msgid "Contacts"
msgstr "Kontakty"
-#: include/text.php:1030 view/theme/vier/theme.php:254
-#: src/Content/ForumManager.php:125 src/Content/Nav.php:151
+#: include/text.php:1030 src/Content/ForumManager.php:125
+#: src/Content/Nav.php:151 view/theme/vier/theme.php:254
msgid "Forums"
msgstr "Fora"
@@ -1012,11 +965,11 @@ msgstr "napięcia"
#: include/text.php:1076
msgid "prod"
-msgstr ""
+msgstr "zaczep"
#: include/text.php:1076
msgid "prodded"
-msgstr ""
+msgstr "zaczepiać"
#: include/text.php:1077
msgid "slap"
@@ -1042,7 +995,7 @@ msgstr "odrzuć"
msgid "rebuffed"
msgstr "odrzucony"
-#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:379
+#: include/text.php:1093 src/Model/Event.php:379 mod/settings.php:943
msgid "Monday"
msgstr "Poniedziałek"
@@ -1066,7 +1019,7 @@ msgstr "Piątek"
msgid "Saturday"
msgstr "Sobota"
-#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:378
+#: include/text.php:1093 src/Model/Event.php:378 mod/settings.php:943
msgid "Sunday"
msgstr "Niedziela"
@@ -1236,451 +1189,2269 @@ msgstr "post"
msgid "Item filed"
msgstr "Element złożony"
-#: mod/allfriends.php:51
-msgid "No friends to display."
-msgstr "Brak znajomych do wyświetlenia"
+#: include/items.php:342 mod/display.php:72 mod/display.php:252
+#: mod/display.php:354 mod/admin.php:276 mod/admin.php:1868 mod/admin.php:2116
+#: mod/viewsrc.php:21 mod/notice.php:22
+msgid "Item not found."
+msgstr "Element nie znaleziony."
-#: mod/allfriends.php:90 mod/suggest.php:101 mod/match.php:105
-#: mod/dirfind.php:215 src/Content/Widget.php:37 src/Model/Profile.php:297
+#: include/items.php:382
+msgid "Do you really want to delete this item?"
+msgstr "Czy na pewno chcesz usunąć ten element?"
+
+#: include/items.php:384 mod/suggest.php:38 mod/profiles.php:636
+#: mod/profiles.php:639 mod/profiles.php:661 mod/api.php:110
+#: mod/settings.php:1105 mod/settings.php:1111 mod/settings.php:1118
+#: mod/settings.php:1122 mod/settings.php:1126 mod/settings.php:1130
+#: mod/settings.php:1134 mod/settings.php:1138 mod/settings.php:1158
+#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161
+#: mod/settings.php:1162 mod/message.php:138 mod/dfrn_request.php:653
+#: mod/follow.php:150 mod/contacts.php:472 mod/register.php:237
+msgid "Yes"
+msgstr "Tak"
+
+#: include/items.php:401 mod/dirfind.php:25 mod/repair_ostatus.php:13
+#: mod/suggest.php:60 mod/profile_photo.php:30 mod/profile_photo.php:176
+#: mod/profile_photo.php:187 mod/profile_photo.php:200 mod/manage.php:131
+#: mod/uimport.php:28 mod/invite.php:20 mod/invite.php:111 mod/network.php:32
+#: mod/profiles.php:182 mod/profiles.php:606 mod/events.php:194
+#: mod/fsuggest.php:80 mod/attach.php:38 mod/allfriends.php:21
+#: mod/viewcontacts.php:57 mod/ostatus_subscribe.php:16 mod/api.php:35
+#: mod/api.php:40 mod/settings.php:42 mod/settings.php:141
+#: mod/settings.php:665 mod/regmod.php:108 mod/group.php:26
+#: mod/delegate.php:25 mod/delegate.php:43 mod/delegate.php:54
+#: mod/photos.php:174 mod/photos.php:1051 mod/nogroup.php:28
+#: mod/message.php:59 mod/message.php:104 mod/unfollow.php:15
+#: mod/unfollow.php:57 mod/unfollow.php:90 mod/wall_attach.php:74
+#: mod/wall_attach.php:77 mod/notes.php:30 mod/crepair.php:98 mod/poke.php:150
+#: mod/notifications.php:73 mod/follow.php:17 mod/follow.php:54
+#: mod/follow.php:118 mod/cal.php:304 mod/contacts.php:386
+#: mod/wallmessage.php:16 mod/wallmessage.php:40 mod/wallmessage.php:79
+#: mod/wallmessage.php:103 mod/dfrn_confirm.php:68 mod/wall_upload.php:103
+#: mod/wall_upload.php:106 mod/register.php:53 mod/common.php:26
+#: mod/item.php:160 mod/editpost.php:18 index.php:444
+msgid "Permission denied."
+msgstr "Brak uprawnień."
+
+#: include/items.php:471
+msgid "Archives"
+msgstr "Archiwum"
+
+#: include/items.php:477 src/Content/Widget.php:312
+#: src/Content/ForumManager.php:130 src/App.php:512 src/Object/Post.php:430
+#: view/theme/vier/theme.php:259
+msgid "show more"
+msgstr "Pokaż więcej"
+
+#: src/Model/Item.php:1677
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$suczestniczy %2$s's %3$s "
+
+#: src/Model/Item.php:1682
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$snie uczestniczy %2$s's %3$s "
+
+#: src/Model/Item.php:1687
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$smogą uczestniczyć %2$s's %3$s "
+
+#: src/Model/Contact.php:657
+msgid "Drop Contact"
+msgstr "Upuść kontakt"
+
+#: src/Model/Contact.php:1060
+msgid "Organisation"
+msgstr "Organizacja"
+
+#: src/Model/Contact.php:1063
+msgid "News"
+msgstr "Aktualności"
+
+#: src/Model/Contact.php:1066
+msgid "Forum"
+msgstr "Forum"
+
+#: src/Model/Contact.php:1235 mod/dfrn_request.php:345
+msgid "Disallowed profile URL."
+msgstr "Nie dozwolony adres URL profilu."
+
+#: src/Model/Contact.php:1240 mod/friendica.php:128 mod/admin.php:353
+#: mod/admin.php:371 mod/dfrn_request.php:351
+msgid "Blocked domain"
+msgstr "Zablokowana domena"
+
+#: src/Model/Contact.php:1245
+msgid "Connect URL missing."
+msgstr "Brak adresu URL połączenia."
+
+#: src/Model/Contact.php:1254
+msgid ""
+"The contact could not be added. Please check the relevant network "
+"credentials in your Settings -> Social Networks page."
+msgstr "Nie można dodać kontaktu. Sprawdź odpowiednie poświadczenia sieciowe na stronie Ustawienia -> Sieci społecznościowe."
+
+#: src/Model/Contact.php:1301
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami"
+
+#: src/Model/Contact.php:1302 src/Model/Contact.php:1316
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Nie znaleziono żadnych kompatybilnych protokołów komunikacyjnych ani źródeł."
+
+#: src/Model/Contact.php:1314
+msgid "The profile address specified does not provide adequate information."
+msgstr "Dany adres profilu nie dostarcza odpowiednich informacji."
+
+#: src/Model/Contact.php:1319
+msgid "An author or name was not found."
+msgstr "Autor lub nazwa nie zostało znalezione."
+
+#: src/Model/Contact.php:1322
+msgid "No browser URL could be matched to this address."
+msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu"
+
+#: src/Model/Contact.php:1325
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail."
+
+#: src/Model/Contact.php:1326
+msgid "Use mailto: in front of address to force email check."
+msgstr "Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail."
+
+#: src/Model/Contact.php:1332
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Określony adres profilu należy do sieci, która została wyłączona na tej stronie."
+
+#: src/Model/Contact.php:1337
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie."
+
+#: src/Model/Contact.php:1388
+msgid "Unable to retrieve contact information."
+msgstr "Nie można otrzymać informacji kontaktowych"
+
+#: src/Model/Contact.php:1537 mod/dfrn_request.php:568
+#: mod/dfrn_confirm.php:661
+msgid "[Name Withheld]"
+msgstr "[Nazwa zastrzeżona]"
+
+#: src/Model/Contact.php:1605 src/Protocol/DFRN.php:1482
+#, php-format
+msgid "%s's birthday"
+msgstr "Urodziny %s"
+
+#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Urodziny %s"
+
+#: src/Model/Mail.php:40 src/Model/Mail.php:174
+msgid "[no subject]"
+msgstr "[bez tematu]"
+
+#: src/Model/Profile.php:97
+msgid "Requested account is not available."
+msgstr "Żądane konto jest niedostępne."
+
+#: src/Model/Profile.php:118 mod/profile.php:37
+msgid "Requested profile is not available."
+msgstr "Żądany profil jest niedostępny"
+
+#: src/Model/Profile.php:168 src/Model/Profile.php:399
+#: src/Model/Profile.php:863
+msgid "Edit profile"
+msgstr "Edytuj profil"
+
+#: src/Model/Profile.php:297 src/Content/Widget.php:37 mod/dirfind.php:215
+#: mod/suggest.php:101 mod/allfriends.php:90 mod/match.php:105
msgid "Connect"
msgstr "Połącz"
-#: mod/api.php:85 mod/api.php:107
-msgid "Authorize application connection"
-msgstr "Autoryzacja połączenia aplikacji"
+#: src/Model/Profile.php:336
+msgid "Atom feed"
+msgstr "Kanał Atom"
-#: mod/api.php:86
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:"
+#: src/Model/Profile.php:372 src/Content/Nav.php:205
+msgid "Profiles"
+msgstr "Profile"
-#: mod/api.php:95
-msgid "Please login to continue."
-msgstr "Zaloguj się aby kontynuować."
+#: src/Model/Profile.php:372
+msgid "Manage/edit profiles"
+msgstr "Zarządzaj profilami"
-#: mod/api.php:109
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Czy chcesz zezwolić tej aplikacji na dostęp do swoich postów i kontaktów i/lub tworzenie nowych postów?"
+#: src/Model/Profile.php:379 src/Model/Profile.php:401 mod/profiles.php:777
+msgid "Change profile photo"
+msgstr "Zmień zdjęcie profilowe"
-#: mod/api.php:111 mod/dfrn_request.php:653 mod/follow.php:150
-#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661
-#: mod/register.php:238 mod/settings.php:1105 mod/settings.php:1111
-#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1126
-#: mod/settings.php:1130 mod/settings.php:1134 mod/settings.php:1138
-#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
-#: mod/settings.php:1161 mod/settings.php:1162
-msgid "No"
-msgstr "Nie"
+#: src/Model/Profile.php:380 mod/profiles.php:778
+msgid "Create New Profile"
+msgstr "Utwórz nowy profil"
-#: mod/apps.php:14 index.php:273
-msgid "You must be logged in to use addons. "
-msgstr "Musisz być zalogowany, aby korzystać z dodatków."
+#: src/Model/Profile.php:389 mod/profiles.php:767
+msgid "Profile Image"
+msgstr "Zdjęcie profilowe"
-#: mod/apps.php:19
-msgid "Applications"
-msgstr "Aplikacje"
+#: src/Model/Profile.php:392 mod/profiles.php:769
+msgid "visible to everybody"
+msgstr "widoczne dla wszystkich"
-#: mod/apps.php:22
-msgid "No installed applications."
-msgstr "Brak zainstalowanych aplikacji."
+#: src/Model/Profile.php:393 mod/profiles.php:675 mod/profiles.php:770
+msgid "Edit visibility"
+msgstr "Edytuj widoczność"
-#: mod/attach.php:15
-msgid "Item not available."
-msgstr "Element niedostępny."
+#: src/Model/Profile.php:417 src/Model/Event.php:60 src/Model/Event.php:85
+#: src/Model/Event.php:421 src/Model/Event.php:900 mod/directory.php:148
+#: mod/events.php:518 mod/notifications.php:247 mod/contacts.php:660
+msgid "Location:"
+msgstr "Lokalizacja"
-#: mod/attach.php:25
-msgid "Item was not found."
-msgstr "Element nie znaleziony."
+#: src/Model/Profile.php:420 src/Model/Profile.php:749 mod/directory.php:151
+#: mod/notifications.php:253
+msgid "Gender:"
+msgstr "Płeć:"
-#: mod/common.php:91
-msgid "No contacts in common."
-msgstr "Brak wspólnych kontaktów."
+#: src/Model/Profile.php:421 src/Model/Profile.php:773 mod/directory.php:152
+msgid "Status:"
+msgstr "Status:"
-#: mod/common.php:140 mod/contacts.php:886
-msgid "Common Friends"
-msgstr "Wspólni znajomi"
+#: src/Model/Profile.php:422 src/Model/Profile.php:790 mod/directory.php:153
+msgid "Homepage:"
+msgstr "Strona główna:"
-#: mod/credits.php:18
-msgid "Credits"
-msgstr "Zaufany"
+#: src/Model/Profile.php:423 src/Model/Profile.php:810 mod/directory.php:154
+#: mod/notifications.php:249 mod/contacts.php:664
+msgid "About:"
+msgstr "O:"
-#: mod/credits.php:19
-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 to projekt społecznościowy, który nie byłby możliwy bez pomocy wielu osób. Oto lista osób, które przyczyniły się do tworzenia kodu lub tłumaczenia Friendica. Dziękuję wam wszystkim!"
+#: src/Model/Profile.php:424 mod/contacts.php:662
+msgid "XMPP:"
+msgstr "XMPP:"
-#: mod/crepair.php:87
-msgid "Contact settings applied."
-msgstr "Ustawienia kontaktu zaktualizowane."
+#: src/Model/Profile.php:520 mod/notifications.php:261 mod/contacts.php:71
+msgid "Network:"
+msgstr "Sieć:"
-#: mod/crepair.php:89
-msgid "Contact update failed."
-msgstr "Nie udało się zaktualizować kontaktu."
+#: src/Model/Profile.php:550 src/Model/Profile.php:643
+msgid "g A l F d"
+msgstr "g A I F d"
-#: mod/crepair.php:110 mod/dfrn_confirm.php:131 mod/fsuggest.php:30
-#: mod/fsuggest.php:96
-msgid "Contact not found."
-msgstr "Kontakt nie znaleziony"
+#: src/Model/Profile.php:551
+msgid "F d"
+msgstr ""
-#: mod/crepair.php:114
-msgid ""
-"WARNING: This is highly advanced and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "OSTRZEŻENIE: Jest to bardzo zaawansowane i jeśli wprowadzisz niepoprawne informacje, twoja komunikacja z tym kontaktem może przestać działać."
+#: src/Model/Profile.php:608 src/Model/Profile.php:707
+msgid "[today]"
+msgstr "[dziś]"
-#: mod/crepair.php:115
-msgid ""
-"Please use your browser 'Back' button now if you are "
-"uncertain what to do on this page."
-msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce."
+#: src/Model/Profile.php:619
+msgid "Birthday Reminders"
+msgstr "Przypomnienia o urodzinach"
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "No mirroring"
-msgstr "Bez dublowania"
+#: src/Model/Profile.php:620
+msgid "Birthdays this week:"
+msgstr "Urodziny w tym tygodniu:"
-#: mod/crepair.php:129
-msgid "Mirror as forwarded posting"
-msgstr "Przesłany lustrzany post"
+#: src/Model/Profile.php:694
+msgid "[No description]"
+msgstr "[Brak opisu]"
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "Mirror as my own posting"
-msgstr "Lustro mojego własnego komentarza"
+#: src/Model/Profile.php:721
+msgid "Event Reminders"
+msgstr "Przypominacze wydarzeń"
-#: mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr "Wróć do edytora kontaktów"
+#: src/Model/Profile.php:722
+msgid "Events this week:"
+msgstr "Wydarzenia w tym tygodniu:"
-#: mod/crepair.php:146
-msgid "Refetch contact data"
-msgstr "Odśwież dane kontaktowe"
-
-#: mod/crepair.php:148 mod/manage.php:184 mod/localtime.php:56
-#: mod/poke.php:199 mod/fsuggest.php:114 mod/message.php:265
-#: mod/message.php:432 mod/photos.php:1080 mod/photos.php:1160
-#: mod/photos.php:1445 mod/photos.php:1491 mod/photos.php:1530
-#: mod/photos.php:1603 mod/contacts.php:610 mod/events.php:530
-#: mod/install.php:251 mod/install.php:290 mod/invite.php:155
-#: mod/profiles.php:672 view/theme/duepuntozero/config.php:71
-#: view/theme/frio/config.php:113 view/theme/quattro/config.php:73
-#: view/theme/vier/config.php:119 src/Object/Post.php:796
-msgid "Submit"
-msgstr "Potwierdź"
-
-#: mod/crepair.php:149
-msgid "Remote Self"
-msgstr "Zdalny Self"
-
-#: mod/crepair.php:152
-msgid "Mirror postings from this contact"
-msgstr "Publikacje lustrzane od tego kontaktu"
-
-#: mod/crepair.php:154
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr "Oznacz ten kontakt jako remote_self, spowoduje to, że friendica odeśle nowe wpisy z tego kontaktu."
-
-#: mod/crepair.php:158 mod/admin.php:490 mod/admin.php:1781 mod/admin.php:1793
-#: mod/admin.php:1806 mod/admin.php:1822 mod/settings.php:677
-#: mod/settings.php:703
-msgid "Name"
-msgstr "Nazwa"
-
-#: mod/crepair.php:159
-msgid "Account Nickname"
-msgstr "Nazwa konta"
-
-#: mod/crepair.php:160
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Zmienna - zastępuje Imię/Pseudonim"
-
-#: mod/crepair.php:161
-msgid "Account URL"
-msgstr "URL konta"
-
-#: mod/crepair.php:162
-msgid "Friend Request URL"
-msgstr "URL żądajacy znajomości"
-
-#: mod/crepair.php:163
-msgid "Friend Confirm URL"
-msgstr "URL potwierdzający znajomość"
-
-#: mod/crepair.php:164
-msgid "Notification Endpoint URL"
-msgstr "Zgłoszenie Punktu Końcowego URL"
-
-#: mod/crepair.php:165
-msgid "Poll/Feed URL"
-msgstr "Adres Ankiety/RSS"
-
-#: mod/crepair.php:166
-msgid "New photo from this URL"
-msgstr "Nowe zdjęcie z tego adresu URL"
-
-#: mod/fbrowser.php:34 view/theme/frio/theme.php:261 src/Content/Nav.php:102
-#: src/Model/Profile.php:906
-msgid "Photos"
-msgstr "Zdjęcia"
-
-#: mod/fbrowser.php:43 mod/fbrowser.php:68 mod/photos.php:194
-#: mod/photos.php:1062 mod/photos.php:1149 mod/photos.php:1166
-#: mod/photos.php:1659 mod/photos.php:1673 src/Model/Photo.php:244
-#: src/Model/Photo.php:253
-msgid "Contact Photos"
-msgstr "Zdjęcia kontaktu"
-
-#: mod/fbrowser.php:105 mod/fbrowser.php:136 mod/profile_photo.php:250
-msgid "Upload"
-msgstr "Załaduj"
-
-#: mod/fbrowser.php:131
-msgid "Files"
-msgstr "Pliki"
-
-#: mod/fetch.php:16 mod/fetch.php:52 mod/fetch.php:65 mod/help.php:60
-#: mod/p.php:21 mod/p.php:48 mod/p.php:57 index.php:320
-msgid "Not Found"
-msgstr "Nie znaleziono"
-
-#: mod/hcard.php:18
-msgid "No profile"
-msgstr "Brak profilu"
-
-#: mod/help.php:48
-msgid "Help:"
-msgstr "Pomoc:"
-
-#: mod/help.php:54 view/theme/vier/theme.php:298 src/Content/Nav.php:134
-msgid "Help"
-msgstr "Pomoc"
-
-#: mod/help.php:63 index.php:325
-msgid "Page not found."
-msgstr "Strona nie znaleziona."
-
-#: mod/home.php:39
-#, php-format
-msgid "Welcome to %s"
-msgstr "Witamy w %s"
-
-#: mod/lockview.php:38 mod/lockview.php:46
-msgid "Remote privacy information not available."
-msgstr "Dane prywatne nie są zdalnie dostępne"
-
-#: mod/lockview.php:55
-msgid "Visible to:"
-msgstr "Widoczne dla:"
-
-#: mod/maintenance.php:24
-msgid "System down for maintenance"
-msgstr "System wyłączony w celu konserwacji"
-
-#: mod/newmember.php:11
-msgid "Welcome to Friendica"
-msgstr "Witamy na Friendica"
-
-#: mod/newmember.php:12
-msgid "New Member Checklist"
-msgstr "Lista nowych członków"
-
-#: mod/newmember.php:14
-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 "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie."
-
-#: mod/newmember.php:15
-msgid "Getting Started"
-msgstr "Pierwsze kroki"
-
-#: mod/newmember.php:17
-msgid "Friendica Walk-Through"
-msgstr "Friendica Przejdź-Przez"
-
-#: mod/newmember.php:17
-msgid ""
-"On your Quick Start page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Na stronie Szybki start - znajdź krótkie wprowadzenie do swojego profilu i kart sieciowych, stwórz nowe połączenia i znajdź kilka grup do przyłączenia się."
-
-#: mod/newmember.php:19 mod/admin.php:1906 mod/admin.php:2175
-#: mod/settings.php:123 view/theme/frio/theme.php:269 src/Content/Nav.php:206
-msgid "Settings"
-msgstr "Ustawienia"
-
-#: mod/newmember.php:21
-msgid "Go to Your Settings"
-msgstr "Idź do swoich ustawień"
-
-#: mod/newmember.php:21
-msgid ""
-"On your Settings page - change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Na stronie Ustawienia - zmień swoje początkowe hasło. Zanotuj także swój adres tożsamości. Wygląda to jak adres e-mail - i będzie przydatny w nawiązywaniu znajomości w bezpłatnej sieci społecznościowej."
-
-#: mod/newmember.php:22
-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 "Przejrzyj pozostałe ustawienia, w szczególności ustawienia prywatności. Niepublikowany wykaz katalogów jest podobny do niepublicznego numeru telefonu. Ogólnie rzecz biorąc, powinieneś opublikować swój wpis - chyba, że wszyscy twoi znajomi i potencjalni znajomi dokładnie wiedzą, jak Cię znaleźć."
-
-#: mod/newmember.php:24 mod/profperm.php:113 mod/contacts.php:671
-#: mod/contacts.php:863 view/theme/frio/theme.php:260 src/Content/Nav.php:101
-#: src/Model/Profile.php:732 src/Model/Profile.php:865
-#: src/Model/Profile.php:898
+#: src/Model/Profile.php:734 src/Model/Profile.php:867
+#: src/Model/Profile.php:900 src/Content/Nav.php:101 mod/contacts.php:671
+#: mod/contacts.php:863 mod/newmember.php:24 mod/profperm.php:113
+#: view/theme/frio/theme.php:260
msgid "Profile"
msgstr "Profil użytkownika"
-#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:691
-msgid "Upload Profile Photo"
-msgstr "Wyślij zdjęcie profilowe"
+#: src/Model/Profile.php:742 mod/settings.php:1209
+msgid "Full Name:"
+msgstr "Imię i Nazwisko:"
-#: mod/newmember.php:26
+#: src/Model/Profile.php:745
+msgid "Member since:"
+msgstr "Członek od:"
+
+#: src/Model/Profile.php:753
+msgid "j F, Y"
+msgstr "d M, R"
+
+#: src/Model/Profile.php:754
+msgid "j F"
+msgstr "d M"
+
+#: src/Model/Profile.php:762 src/Util/Temporal.php:147
+msgid "Birthday:"
+msgstr "Urodziny:"
+
+#: src/Model/Profile.php:769
+msgid "Age:"
+msgstr "Wiek:"
+
+#: src/Model/Profile.php:782
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "od %1$d %2$s"
+
+#: src/Model/Profile.php:786 mod/profiles.php:694
+msgid "Sexual Preference:"
+msgstr "Preferencje seksualne:"
+
+#: src/Model/Profile.php:794 mod/profiles.php:721
+msgid "Hometown:"
+msgstr "Miasto rodzinne:"
+
+#: src/Model/Profile.php:798 mod/notifications.php:251 mod/follow.php:174
+#: mod/contacts.php:666
+msgid "Tags:"
+msgstr "Tagi:"
+
+#: src/Model/Profile.php:802 mod/profiles.php:722
+msgid "Political Views:"
+msgstr "Poglądy polityczne:"
+
+#: src/Model/Profile.php:806
+msgid "Religion:"
+msgstr "Religia:"
+
+#: src/Model/Profile.php:814
+msgid "Hobbies/Interests:"
+msgstr "Hobby/Zainteresowania:"
+
+#: src/Model/Profile.php:818 mod/profiles.php:726
+msgid "Likes:"
+msgstr "Lubią to:"
+
+#: src/Model/Profile.php:822 mod/profiles.php:727
+msgid "Dislikes:"
+msgstr "Nie lubię tego:"
+
+#: src/Model/Profile.php:826
+msgid "Contact information and Social Networks:"
+msgstr "Informacje kontaktowe i sieci społeczne"
+
+#: src/Model/Profile.php:830
+msgid "Musical interests:"
+msgstr "Zainteresowania muzyczne:"
+
+#: src/Model/Profile.php:834
+msgid "Books, literature:"
+msgstr "Książki, literatura:"
+
+#: src/Model/Profile.php:838
+msgid "Television:"
+msgstr "Telewizja:"
+
+#: src/Model/Profile.php:842
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/taniec/kultura/rozrywka"
+
+#: src/Model/Profile.php:846
+msgid "Love/Romance:"
+msgstr "Miłość/Romans:"
+
+#: src/Model/Profile.php:850
+msgid "Work/employment:"
+msgstr "Praca/zatrudnienie:"
+
+#: src/Model/Profile.php:854
+msgid "School/education:"
+msgstr "Szkoła/edukacja:"
+
+#: src/Model/Profile.php:859
+msgid "Forums:"
+msgstr "Fora:"
+
+#: src/Model/Profile.php:868 mod/events.php:531
+msgid "Basic"
+msgstr "Podstawowy"
+
+#: src/Model/Profile.php:869 mod/events.php:532 mod/admin.php:1351
+#: mod/contacts.php:895
+msgid "Advanced"
+msgstr "Zaawansowany"
+
+#: src/Model/Profile.php:892 src/Content/Nav.php:100 mod/contacts.php:669
+#: mod/contacts.php:855 view/theme/frio/theme.php:259
+msgid "Status"
+msgstr "Status"
+
+#: src/Model/Profile.php:895 mod/unfollow.php:132 mod/follow.php:186
+#: mod/contacts.php:858
+msgid "Status Messages and Posts"
+msgstr "Status wiadomości i postów"
+
+#: src/Model/Profile.php:903 mod/contacts.php:866
+msgid "Profile Details"
+msgstr "Szczegóły profilu"
+
+#: src/Model/Profile.php:908 src/Content/Nav.php:102 mod/fbrowser.php:34
+#: view/theme/frio/theme.php:261
+msgid "Photos"
+msgstr "Zdjęcia"
+
+#: src/Model/Profile.php:911 mod/photos.php:108
+msgid "Photo Albums"
+msgstr "Albumy zdjęć"
+
+#: src/Model/Profile.php:916 src/Model/Profile.php:919 src/Content/Nav.php:103
+#: view/theme/frio/theme.php:262
+msgid "Videos"
+msgstr "Filmy"
+
+#: src/Model/Profile.php:928 src/Model/Profile.php:939 src/Content/Nav.php:104
+#: src/Content/Nav.php:169 mod/events.php:391 mod/cal.php:274
+#: view/theme/frio/theme.php:263 view/theme/frio/theme.php:267
+msgid "Events"
+msgstr "Wydarzenia"
+
+#: src/Model/Profile.php:931 src/Model/Profile.php:942 src/Content/Nav.php:169
+#: view/theme/frio/theme.php:267
+msgid "Events and Calendar"
+msgstr "Wydarzenia i kalendarz"
+
+#: src/Model/Profile.php:950 mod/notes.php:52
+msgid "Personal Notes"
+msgstr "Notatki"
+
+#: src/Model/Profile.php:953
+msgid "Only You Can See This"
+msgstr "Tylko ty możesz to zobaczyć"
+
+#: src/Model/Event.php:36 src/Model/Event.php:814 mod/localtime.php:19
+msgid "l F d, Y \\@ g:i A"
+msgstr ""
+
+#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
+#: src/Model/Event.php:882
+msgid "Starts:"
+msgstr "Rozpoczęcie:"
+
+#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420
+#: src/Model/Event.php:886
+msgid "Finishes:"
+msgstr "Zakończenie:"
+
+#: src/Model/Event.php:368
+msgid "all-day"
+msgstr "cały dzień"
+
+#: src/Model/Event.php:391
+msgid "Jun"
+msgstr "cze"
+
+#: src/Model/Event.php:394
+msgid "Sept"
+msgstr "wrz"
+
+#: src/Model/Event.php:412 mod/events.php:400 mod/cal.php:280
+msgid "today"
+msgstr "dzisiaj"
+
+#: src/Model/Event.php:413 src/Util/Temporal.php:304 mod/events.php:401
+#: mod/cal.php:281
+msgid "month"
+msgstr "miesiąc"
+
+#: src/Model/Event.php:414 src/Util/Temporal.php:305 mod/events.php:402
+#: mod/cal.php:282
+msgid "week"
+msgstr "tydzień"
+
+#: src/Model/Event.php:415 src/Util/Temporal.php:306 mod/events.php:403
+#: mod/cal.php:283
+msgid "day"
+msgstr "dzień"
+
+#: src/Model/Event.php:417
+msgid "No events to display"
+msgstr "Brak wydarzeń do wyświetlenia"
+
+#: src/Model/Event.php:543
+msgid "l, F j"
+msgstr "d, M d "
+
+#: src/Model/Event.php:566
+msgid "Edit event"
+msgstr "Edytuj wydarzenie"
+
+#: src/Model/Event.php:567
+msgid "Duplicate event"
+msgstr "Zduplikowane zdarzenie"
+
+#: src/Model/Event.php:568
+msgid "Delete event"
+msgstr "Usuń wydarzenie"
+
+#: src/Model/Event.php:815
+msgid "D g:i A"
+msgstr ""
+
+#: src/Model/Event.php:816
+msgid "g:i A"
+msgstr ""
+
+#: src/Model/Event.php:901 src/Model/Event.php:903
+msgid "Show map"
+msgstr "Pokaż mapę"
+
+#: src/Model/Event.php:902
+msgid "Hide map"
+msgstr "Ukryj mapę"
+
+#: src/Model/Group.php:44
msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty."
+"A deleted group with this name was revived. Existing item permissions "
+"may apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Skasowana grupa o tej nazwie została przywrócona. Istniejące uprawnienia do pozycji mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie jest to zamierzone, utwórz inną grupę o innej nazwie."
-#: mod/newmember.php:27
-msgid "Edit Your Profile"
-msgstr "Edytuj własny profil"
+#: src/Model/Group.php:341
+msgid "Default privacy group for new contacts"
+msgstr "Domyślne ustawienia prywatności dla nowych kontaktów"
-#: mod/newmember.php:27
-msgid ""
-"Edit your default profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Edytuj swój domyślny profil do swoich potrzeb. Przejrzyj ustawienia ukrywania listy znajomych i ukrywania profilu przed nieznanymi użytkownikami."
+#: src/Model/Group.php:374
+msgid "Everybody"
+msgstr "Wszyscy"
-#: mod/newmember.php:28
-msgid "Profile Keywords"
-msgstr "Słowa kluczowe profilu"
+#: src/Model/Group.php:394
+msgid "edit"
+msgstr "edytuj"
-#: mod/newmember.php:28
-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 "Ustaw kilka publicznych słów kluczowych dla swojego domyślnego profilu, które opisują Twoje zainteresowania. Możemy znaleźć inne osoby o podobnych zainteresowaniach i zaproponować przyjaźnie."
+#: src/Model/Group.php:413 mod/network.php:202
+msgid "add"
+msgstr "dodaj"
-#: mod/newmember.php:30
-msgid "Connecting"
-msgstr "Łączę się..."
-
-#: mod/newmember.php:36
-msgid "Importing Emails"
-msgstr "Importuję emaile..."
-
-#: mod/newmember.php:36
-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 "Wprowadź informacje dotyczące dostępu do poczty e-mail na stronie Ustawienia oprogramowania, jeśli chcesz importować i wchodzić w interakcje z przyjaciółmi lub listami adresowymi z poziomu konta e-mail INBOX"
-
-#: mod/newmember.php:39
-msgid "Go to Your Contacts Page"
-msgstr "Idź do strony z Twoimi kontaktami"
-
-#: mod/newmember.php:39
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the Add New Contact dialog."
-msgstr "Strona Kontakty jest twoją bramą do zarządzania przyjaciółmi i łączenia się z przyjaciółmi w innych sieciach. Zazwyczaj podaje się adres lub adres URL strony w oknie dialogowym Dodaj nowy kontakt ."
-
-#: mod/newmember.php:40
-msgid "Go to Your Site's Directory"
-msgstr "Idż do twojej strony"
-
-#: mod/newmember.php:40
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a Connect or Follow link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "Strona Katalog umożliwia znalezienie innych osób w tej sieci lub innych witrynach stowarzyszonych. Poszukaj łącza Połącz lub Śledź na stronie profilu. Jeśli chcesz, podaj swój własny adres tożsamości."
-
-#: mod/newmember.php:41
-msgid "Finding New People"
-msgstr "Znajdowanie nowych osób"
-
-#: mod/newmember.php:41
-msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "Na bocznym panelu strony Kontaktów znajduje się kilka narzędzi do znajdowania nowych przyjaciół. Możemy dopasować osoby według zainteresowań, wyszukiwać osoby według nazwisk i zainteresowań oraz dostarczać sugestie oparte na relacjach sieciowych. Na zupełnie nowej stronie sugestie znajomych zwykle zaczynają być wypełniane w ciągu 24 godzin"
-
-#: mod/newmember.php:43 src/Model/Group.php:414
+#: src/Model/Group.php:414 mod/newmember.php:43
msgid "Groups"
msgstr "Grupy"
-#: mod/newmember.php:45
-msgid "Group Your Contacts"
-msgstr "Grupuj Swoje kontakty"
+#: src/Model/Group.php:418
+msgid "Edit group"
+msgstr "Edytuj grupy"
-#: mod/newmember.php:45
+#: src/Model/Group.php:419
+msgid "Contacts not in any group"
+msgstr "Kontakt nie jest w żadnej grupie"
+
+#: src/Model/Group.php:420
+msgid "Create a new group"
+msgstr "Stwórz nową grupę"
+
+#: src/Model/Group.php:421 mod/group.php:103 mod/group.php:199
+msgid "Group Name: "
+msgstr "Nazwa grupy: "
+
+#: src/Model/Group.php:422
+msgid "Edit groups"
+msgstr "Edytuj grupy"
+
+#: src/Model/Photo.php:244 src/Model/Photo.php:253 mod/fbrowser.php:43
+#: mod/fbrowser.php:68 mod/photos.php:194 mod/photos.php:1062
+#: mod/photos.php:1149 mod/photos.php:1166 mod/photos.php:1659
+#: mod/photos.php:1673
+msgid "Contact Photos"
+msgstr "Zdjęcia kontaktu"
+
+#: src/Model/User.php:154
+msgid "Login failed"
+msgstr "Logowanie nieudane"
+
+#: src/Model/User.php:185
+msgid "Not enough information to authenticate"
+msgstr "Za mało informacji do uwierzytelnienia"
+
+#: src/Model/User.php:214 src/Core/Console/NewPassword.php:74 mod/cal.php:297
+msgid "User not found"
+msgstr "Użytkownik nie znaleziony"
+
+#: src/Model/User.php:335 mod/settings.php:384
+msgid "Passwords do not match. Password unchanged."
+msgstr "Hasła nie pasują do siebie. Hasło niezmienione."
+
+#: src/Model/User.php:342
+msgid "An invitation is required."
+msgstr "Wymagane zaproszenie."
+
+#: src/Model/User.php:346
+msgid "Invitation could not be verified."
+msgstr "Zaproszenie niezweryfikowane."
+
+#: src/Model/User.php:353
+msgid "Invalid OpenID url"
+msgstr "Nieprawidłowy adres url OpenID"
+
+#: src/Model/User.php:366 src/Module/Login.php:100
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 "Gdy zaprzyjaźnisz się z przyjaciółmi, uporządkuj je w prywatne grupy konwersacji na pasku bocznym na stronie Kontakty, a następnie możesz wchodzić w interakcje z każdą grupą prywatnie na stronie Sieć."
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Napotkaliśmy problem podczas logowania z podanym przez nas identyfikatorem OpenID. Sprawdź poprawną pisownię identyfikatora."
-#: mod/newmember.php:48
-msgid "Why Aren't My Posts Public?"
-msgstr "Dlaczego moje posty nie są publiczne?"
+#: src/Model/User.php:366 src/Module/Login.php:100
+msgid "The error message was:"
+msgstr "Komunikat o błędzie:"
-#: mod/newmember.php:48
+#: src/Model/User.php:372
+msgid "Please enter the required information."
+msgstr "Wprowadź wymagane informacje"
+
+#: src/Model/User.php:385
+msgid "Please use a shorter name."
+msgstr "Użyj dłuższej nazwy."
+
+#: src/Model/User.php:388
+msgid "Name too short."
+msgstr "Nazwa jest za krótka."
+
+#: src/Model/User.php:396
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Wydaje mi się, że to nie jest twoje pełne imię (pierwsze imię) i nazwisko."
+
+#: src/Model/User.php:401
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Twoja domena internetowa nie jest obsługiwana na tej stronie."
+
+#: src/Model/User.php:405
+msgid "Not a valid email address."
+msgstr "Niepoprawny adres e mail.."
+
+#: src/Model/User.php:409 src/Model/User.php:417
+msgid "Cannot use that email."
+msgstr "Nie możesz użyć tego e-maila. "
+
+#: src/Model/User.php:424
+msgid "Your nickname can only contain a-z, 0-9 and _."
+msgstr "Twój pseudonim może zawierać tylko a-z, 0-9 i _."
+
+#: src/Model/User.php:431 src/Model/User.php:487
+msgid "Nickname is already registered. Please choose another."
+msgstr "Ten login jest zajęty. Wybierz inny."
+
+#: src/Model/User.php:441
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń."
+
+#: src/Model/User.php:474 src/Model/User.php:478
+msgid "An error occurred during registration. Please try again."
+msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie."
+
+#: src/Model/User.php:498 view/theme/duepuntozero/config.php:54
+msgid "default"
+msgstr "standardowe"
+
+#: src/Model/User.php:503
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie."
+
+#: src/Model/User.php:510
+msgid "An error occurred creating your self contact. Please try again."
+msgstr "Wystąpił błąd podczas tworzenia własnego kontaktu. Proszę spróbuj ponownie."
+
+#: src/Model/User.php:515 src/Content/ContactSelector.php:169
+msgid "Friends"
+msgstr "Przyjaciele"
+
+#: src/Model/User.php:519
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 szanuje Twoją prywatność. Domyślnie Twoje wpisy będą wyświetlane tylko osobom, które dodałeś jako znajomi. Aby uzyskać więcej informacji, zobacz sekcję pomocy na powyższym łączu."
+"An error occurred creating your default contact group. Please try again."
+msgstr "Wystąpił błąd podczas tworzenia domyślnej grupy kontaktów. Proszę spróbuj ponownie."
-#: mod/newmember.php:52
-msgid "Getting Help"
-msgstr "Otrzymaj pomoc"
-
-#: mod/newmember.php:54
-msgid "Go to the Help Section"
-msgstr "Przejdź do sekcji pomocy"
-
-#: mod/newmember.php:54
-msgid ""
-"Our help pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Na naszych stronach pomocy można znaleźć szczegółowe informacje na temat innych funkcji programu i zasobów."
-
-#: mod/nogroup.php:42 mod/viewcontacts.php:112 mod/contacts.php:619
-#: mod/contacts.php:959
+#: src/Model/User.php:593
#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Obejrzyj %s's profil [%s]"
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
+"\t\t"
+msgstr "\n\t\t\tDrodzy %1$s, \n\t\t\t\tDziękujemy za rejestrację na stronie %2$s. Twoje konto czeka na zatwierdzenie przez administratora."
-#: mod/nogroup.php:43 mod/contacts.php:960
-msgid "Edit contact"
-msgstr "Edytuj kontakt"
+#: src/Model/User.php:603
+#, php-format
+msgid "Registration at %s"
+msgstr "Rejestracja w %s"
-#: mod/nogroup.php:63
-msgid "Contacts who are not members of a group"
-msgstr "Kontakty spoza członków grupy"
+#: src/Model/User.php:621
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t\t"
+msgstr "\n\t\t\tDrodzy %1$s, \n\t\t\t\tDziękujemy za rejestrację na stronie %2$s. Twoje konto zostało utworzone."
-#: mod/p.php:14
-msgid "Not Extended"
-msgstr "Nie przedłużony"
+#: src/Model/User.php:625
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t\t%1$s\n"
+"\t\t\tPassword:\t\t%5$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\tIf you ever want to delete your account, you can do so at %3$s/removeme\n"
+"\n"
+"\t\t\tThank you and welcome to %2$s."
+msgstr "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%3$s\n\t\t\tNazwa użytkownika:\t\t%1$s\n\t\t\tHasło:\t\t%5$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\"\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i\n\t\t\tbyć może w jakim kraju mieszkasz; jeśli nie chcesz być bardziej szczegółowy.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić w %3$s/Usuń konto\n\n\t\t\tDziękujemy i Zapraszamy do %2$s."
+
+#: src/Model/User.php:659 mod/admin.php:1611
+#, php-format
+msgid "Registration details for %s"
+msgstr "Szczegóły rejestracji dla %s"
+
+#: src/Content/Text/BBCode.php:416
+msgid "view full size"
+msgstr "Zobacz w pełnym wymiarze"
+
+#: src/Content/Text/BBCode.php:842 src/Content/Text/BBCode.php:1611
+#: src/Content/Text/BBCode.php:1612
+msgid "Image/photo"
+msgstr "Obrazek/zdjęcie"
+
+#: src/Content/Text/BBCode.php:980
+#, php-format
+msgid "%2$s %3$s"
+msgstr "%2$s %3$s"
+
+#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560
+msgid "$1 wrote:"
+msgstr "$1 napisał:"
+
+#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621
+msgid "Encrypted content"
+msgstr "Szyfrowana treść"
+
+#: src/Content/Text/BBCode.php:1740
+msgid "Invalid source protocol"
+msgstr "Nieprawidłowy protokół źródłowy"
+
+#: src/Content/Text/BBCode.php:1751
+msgid "Invalid link protocol"
+msgstr "Niepoprawny link protokołu"
+
+#: src/Content/Feature.php:79
+msgid "General Features"
+msgstr "Funkcje ogólne"
+
+#: src/Content/Feature.php:81
+msgid "Multiple Profiles"
+msgstr "Wiele profili"
+
+#: src/Content/Feature.php:81
+msgid "Ability to create multiple profiles"
+msgstr "Umożliwienie tworzenia wielu profili"
+
+#: src/Content/Feature.php:82
+msgid "Photo Location"
+msgstr "Lokalizacja zdjęcia"
+
+#: src/Content/Feature.php:82
+msgid ""
+"Photo metadata is normally stripped. This extracts the location (if present)"
+" prior to stripping metadata and links it to a map."
+msgstr "Metadane zdjęć są zwykle usuwane. Wyodrębnia to położenie (jeśli jest obecne) przed usunięciem metadanych i łączy je z mapą."
+
+#: src/Content/Feature.php:83
+msgid "Export Public Calendar"
+msgstr "Eksportowanie publicznego kalendarza"
+
+#: src/Content/Feature.php:83
+msgid "Ability for visitors to download the public calendar"
+msgstr "Umożliwienie pobierania kalendarza publicznego przez odwiedzających"
+
+#: src/Content/Feature.php:88
+msgid "Post Composition Features"
+msgstr "Ustawienia funkcji postów"
+
+#: src/Content/Feature.php:89
+msgid "Post Preview"
+msgstr "Podgląd posta"
+
+#: src/Content/Feature.php:89
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Zezwalaj na podgląd postów i komentarzy przed ich opublikowaniem"
+
+#: src/Content/Feature.php:90
+msgid "Auto-mention Forums"
+msgstr "Automatyczne wymienianie forów"
+
+#: src/Content/Feature.php:90
+msgid ""
+"Add/remove mention when a forum page is selected/deselected in ACL window."
+msgstr "Dodaj/usuń wzmiankę, gdy strona forum zostanie wybrana/cofnięta w oknie ACL."
+
+#: src/Content/Feature.php:95
+msgid "Network Sidebar Widgets"
+msgstr "Widgety paska bocznego sieci"
+
+#: src/Content/Feature.php:96
+msgid "Search by Date"
+msgstr "Szukanie wg daty"
+
+#: src/Content/Feature.php:96
+msgid "Ability to select posts by date ranges"
+msgstr "Wybierz wpisy według zakresów dat"
+
+#: src/Content/Feature.php:97 src/Content/Feature.php:127
+msgid "List Forums"
+msgstr "Lista forów"
+
+#: src/Content/Feature.php:97
+msgid "Enable widget to display the forums your are connected with"
+msgstr "Włącz widżet, aby wyświetlić fora, z którymi jesteś połączony"
+
+#: src/Content/Feature.php:98
+msgid "Group Filter"
+msgstr "Filtr grupowy"
+
+#: src/Content/Feature.php:98
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Włącz widżet, aby wyświetlać posty sieciowe tylko z wybranej grupy"
+
+#: src/Content/Feature.php:99
+msgid "Network Filter"
+msgstr "Filtr sieciowy"
+
+#: src/Content/Feature.php:99
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Włącz widżet, aby wyświetlać posty sieciowe tylko z wybranej sieci"
+
+#: src/Content/Feature.php:100 mod/network.php:201 mod/search.php:46
+msgid "Saved Searches"
+msgstr "Zapisywanie wyszukiwania"
+
+#: src/Content/Feature.php:100
+msgid "Save search terms for re-use"
+msgstr "Zapisz wyszukiwane hasła do ponownego użycia"
+
+#: src/Content/Feature.php:105
+msgid "Network Tabs"
+msgstr "Etykiety sieciowe"
+
+#: src/Content/Feature.php:106
+msgid "Network Personal Tab"
+msgstr "Etykieta Sieć Osobista"
+
+#: src/Content/Feature.php:106
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Włącz etykietę, by wyświetlać posty tylko z sieci, z którymi współpracujesz"
+
+#: src/Content/Feature.php:107
+msgid "Network New Tab"
+msgstr "Etykieta Nowe Posty Sieciowe"
+
+#: src/Content/Feature.php:107
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Włącz etykietę, aby wyświetlić tylko nowe posty sieciowe (z ostatnich 12 godzin)"
+
+#: src/Content/Feature.php:108
+msgid "Network Shared Links Tab"
+msgstr "Etykieta Udostępnianie Łącz Sieciowych"
+
+#: src/Content/Feature.php:108
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Włącz etykietę, aby wyświetlić tylko posty sieciowe z łączami do nich"
+
+#: src/Content/Feature.php:113
+msgid "Post/Comment Tools"
+msgstr "Narzędzia post/komentarz"
+
+#: src/Content/Feature.php:114
+msgid "Multiple Deletion"
+msgstr "Wielokrotne Usuwanie"
+
+#: src/Content/Feature.php:114
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Wybierz i usuń wiele postów/komentarzy jednocześnie"
+
+#: src/Content/Feature.php:115
+msgid "Edit Sent Posts"
+msgstr "Edytuj wysłane posty"
+
+#: src/Content/Feature.php:115
+msgid "Edit and correct posts and comments after sending"
+msgstr "Edycja i poprawianie wpisów i komentarzy po wysłaniu"
+
+#: src/Content/Feature.php:116
+msgid "Tagging"
+msgstr "Tagowanie"
+
+#: src/Content/Feature.php:116
+msgid "Ability to tag existing posts"
+msgstr "Umożliwienie oznaczania istniejących postów"
+
+#: src/Content/Feature.php:117
+msgid "Post Categories"
+msgstr "Kategorie postów"
+
+#: src/Content/Feature.php:117
+msgid "Add categories to your posts"
+msgstr "Dodaj kategorie do twoich postów"
+
+#: src/Content/Feature.php:118 src/Content/Widget.php:200
+msgid "Saved Folders"
+msgstr "Zapisane foldery"
+
+#: src/Content/Feature.php:118
+msgid "Ability to file posts under folders"
+msgstr "Umożliwienie przesyłania postów do folderów"
+
+#: src/Content/Feature.php:119
+msgid "Dislike Posts"
+msgstr "Nie lubię Postów"
+
+#: src/Content/Feature.php:119
+msgid "Ability to dislike posts/comments"
+msgstr "Możliwa niechęć do postów/komentarzy"
+
+#: src/Content/Feature.php:120
+msgid "Star Posts"
+msgstr "Oznacz posty gwiazdką"
+
+#: src/Content/Feature.php:120
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Oznacz specjalne posty gwiazdką"
+
+#: src/Content/Feature.php:121
+msgid "Mute Post Notifications"
+msgstr "Ignoruj powiadomienia pocztą"
+
+#: src/Content/Feature.php:121
+msgid "Ability to mute notifications for a thread"
+msgstr "Ignoruj powiadomienia dla wątku"
+
+#: src/Content/Feature.php:126
+msgid "Advanced Profile Settings"
+msgstr "Zaawansowane ustawienia profilu"
+
+#: src/Content/Feature.php:127
+msgid "Show visitors public community forums at the Advanced Profile Page"
+msgstr "Wyświetlaj publiczne fora społeczności na stronie profilu zaawansowanego"
+
+#: src/Content/Feature.php:128
+msgid "Tag Cloud"
+msgstr "Chmura tagów"
+
+#: src/Content/Feature.php:128
+msgid "Provide a personal tag cloud on your profile page"
+msgstr "Podaj osobistą chmurę tagów na stronie profilu"
+
+#: src/Content/Feature.php:129
+msgid "Display Membership Date"
+msgstr "Wyświetl datę członkostwa"
+
+#: src/Content/Feature.php:129
+msgid "Display membership date in profile"
+msgstr "Wyświetl datę członkostwa w profilu"
+
+#: src/Content/Widget/CalendarExport.php:61
+msgid "Export"
+msgstr "Eksport"
+
+#: src/Content/Widget/CalendarExport.php:62
+msgid "Export calendar as ical"
+msgstr "Wyeksportuj kalendarz jako ical"
+
+#: src/Content/Widget/CalendarExport.php:63
+msgid "Export calendar as csv"
+msgstr "Eksportuj kalendarz jako csv"
+
+#: src/Content/Widget.php:33
+msgid "Add New Contact"
+msgstr "Dodaj nowy kontakt"
+
+#: src/Content/Widget.php:34
+msgid "Enter address or web location"
+msgstr "Wpisz adres lub lokalizację sieciową"
+
+#: src/Content/Widget.php:35
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Przykład: bob@przykład.com, http://przykład.com/barbara"
+
+#: src/Content/Widget.php:53
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d zaproszenie dostępne"
+msgstr[1] "%d zaproszeń dostępnych"
+msgstr[2] "%d zaproszenia dostępne"
+msgstr[3] "%d zaproszenia dostępne"
+
+#: src/Content/Widget.php:59
+msgid "Find People"
+msgstr "Znajdź ludzi"
+
+#: src/Content/Widget.php:60
+msgid "Enter name or interest"
+msgstr "Wpisz nazwę lub zainteresowanie"
+
+#: src/Content/Widget.php:62
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Przykład: Jan Kowalski, Wędkarstwo"
+
+#: src/Content/Widget.php:63 mod/directory.php:209 mod/contacts.php:820
+msgid "Find"
+msgstr "Znajdź"
+
+#: src/Content/Widget.php:64 mod/suggest.php:114 view/theme/vier/theme.php:203
+msgid "Friend Suggestions"
+msgstr "Osoby, które możesz znać"
+
+#: src/Content/Widget.php:65 view/theme/vier/theme.php:202
+msgid "Similar Interests"
+msgstr "Podobne zainteresowania"
+
+#: src/Content/Widget.php:66
+msgid "Random Profile"
+msgstr "Domyślny profil"
+
+#: src/Content/Widget.php:67 view/theme/vier/theme.php:204
+msgid "Invite Friends"
+msgstr "Zaproś znajomych"
+
+#: src/Content/Widget.php:68
+msgid "View Global Directory"
+msgstr "Wyświetl globalny katalog"
+
+#: src/Content/Widget.php:159
+msgid "Networks"
+msgstr "Sieci"
+
+#: src/Content/Widget.php:162
+msgid "All Networks"
+msgstr "Wszystkie Sieci"
+
+#: src/Content/Widget.php:203 src/Content/Widget.php:243
+msgid "Everything"
+msgstr "Wszystko"
+
+#: src/Content/Widget.php:240
+msgid "Categories"
+msgstr "Kategorie"
+
+#: src/Content/Widget.php:307
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: src/Content/ContactSelector.php:55
+msgid "Frequently"
+msgstr "Często"
+
+#: src/Content/ContactSelector.php:56
+msgid "Hourly"
+msgstr "Co godzinę"
+
+#: src/Content/ContactSelector.php:57
+msgid "Twice daily"
+msgstr "Dwa razy dziennie"
+
+#: src/Content/ContactSelector.php:58
+msgid "Daily"
+msgstr "Codziennie"
+
+#: src/Content/ContactSelector.php:59
+msgid "Weekly"
+msgstr "Co tydzień"
+
+#: src/Content/ContactSelector.php:60
+msgid "Monthly"
+msgstr "Miesięczne"
+
+#: src/Content/ContactSelector.php:79 mod/dfrn_request.php:656
+msgid "Friendica"
+msgstr "Friendica"
+
+#: src/Content/ContactSelector.php:80
+msgid "OStatus"
+msgstr "OStatus"
+
+#: src/Content/ContactSelector.php:81
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
+
+#: src/Content/ContactSelector.php:82 mod/admin.php:1796 mod/admin.php:1807
+#: mod/admin.php:1820 mod/admin.php:1838
+msgid "Email"
+msgstr "E-mail"
+
+#: src/Content/ContactSelector.php:83 mod/settings.php:805
+msgid "Diaspora"
+msgstr "Diaspora"
+
+#: src/Content/ContactSelector.php:84
+msgid "Facebook"
+msgstr "Facebook"
+
+#: src/Content/ContactSelector.php:85
+msgid "Zot!"
+msgstr "Zot!"
+
+#: src/Content/ContactSelector.php:86
+msgid "LinkedIn"
+msgstr "LinkedIn"
+
+#: src/Content/ContactSelector.php:87
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
+
+#: src/Content/ContactSelector.php:88
+msgid "MySpace"
+msgstr "MySpace"
+
+#: src/Content/ContactSelector.php:89
+msgid "Google+"
+msgstr "Google+"
+
+#: src/Content/ContactSelector.php:90
+msgid "pump.io"
+msgstr "pump.io"
+
+#: src/Content/ContactSelector.php:91
+msgid "Twitter"
+msgstr "Twitter"
+
+#: src/Content/ContactSelector.php:92
+msgid "Diaspora Connector"
+msgstr "Łącze Diaspora"
+
+#: src/Content/ContactSelector.php:93
+msgid "GNU Social Connector"
+msgstr "GNU Połączenie Społecznościowe"
+
+#: src/Content/ContactSelector.php:94
+msgid "pnut"
+msgstr "orzech"
+
+#: src/Content/ContactSelector.php:95
+msgid "App.net"
+msgstr "App.net"
+
+#: src/Content/ContactSelector.php:125
+msgid "Male"
+msgstr "Mężczyzna"
+
+#: src/Content/ContactSelector.php:125
+msgid "Female"
+msgstr "Kobieta"
+
+#: src/Content/ContactSelector.php:125
+msgid "Currently Male"
+msgstr "Obecnie mężczyzna"
+
+#: src/Content/ContactSelector.php:125
+msgid "Currently Female"
+msgstr "Obecnie Kobieta"
+
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Male"
+msgstr "Głównie mężczyzna"
+
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Female"
+msgstr "Głównie kobieta"
+
+#: src/Content/ContactSelector.php:125
+msgid "Transgender"
+msgstr "Transseksualny"
+
+#: src/Content/ContactSelector.php:125
+msgid "Intersex"
+msgstr "Interseksualne"
+
+#: src/Content/ContactSelector.php:125
+msgid "Transsexual"
+msgstr "Transseksualny"
+
+#: src/Content/ContactSelector.php:125
+msgid "Hermaphrodite"
+msgstr "Hermafrodyta"
+
+#: src/Content/ContactSelector.php:125
+msgid "Neuter"
+msgstr "Rodzaj nijaki"
+
+#: src/Content/ContactSelector.php:125
+msgid "Non-specific"
+msgstr "Niespecyficzne"
+
+#: src/Content/ContactSelector.php:125
+msgid "Other"
+msgstr "Inne"
+
+#: src/Content/ContactSelector.php:147
+msgid "Males"
+msgstr "Mężczyźni"
+
+#: src/Content/ContactSelector.php:147
+msgid "Females"
+msgstr "Kobiety"
+
+#: src/Content/ContactSelector.php:147
+msgid "Gay"
+msgstr "Gej"
+
+#: src/Content/ContactSelector.php:147
+msgid "Lesbian"
+msgstr "Lesbijka"
+
+#: src/Content/ContactSelector.php:147
+msgid "No Preference"
+msgstr "Brak preferencji"
+
+#: src/Content/ContactSelector.php:147
+msgid "Bisexual"
+msgstr "Biseksualny"
+
+#: src/Content/ContactSelector.php:147
+msgid "Autosexual"
+msgstr "Niezidentyfikowany"
+
+#: src/Content/ContactSelector.php:147
+msgid "Abstinent"
+msgstr "Abstynent"
+
+#: src/Content/ContactSelector.php:147
+msgid "Virgin"
+msgstr "Dziewica"
+
+#: src/Content/ContactSelector.php:147
+msgid "Deviant"
+msgstr "Zboczeniec"
+
+#: src/Content/ContactSelector.php:147
+msgid "Fetish"
+msgstr "Fetysz"
+
+#: src/Content/ContactSelector.php:147
+msgid "Oodles"
+msgstr "Nadmiar"
+
+#: src/Content/ContactSelector.php:147
+msgid "Nonsexual"
+msgstr "Nieseksualny"
+
+#: src/Content/ContactSelector.php:169
+msgid "Single"
+msgstr "Singiel"
+
+#: src/Content/ContactSelector.php:169
+msgid "Lonely"
+msgstr "Samotny"
+
+#: src/Content/ContactSelector.php:169
+msgid "Available"
+msgstr "Dostępny"
+
+#: src/Content/ContactSelector.php:169
+msgid "Unavailable"
+msgstr "Niedostępny"
+
+#: src/Content/ContactSelector.php:169
+msgid "Has crush"
+msgstr "Ma sympatii"
+
+#: src/Content/ContactSelector.php:169
+msgid "Infatuated"
+msgstr "Zakochany"
+
+#: src/Content/ContactSelector.php:169
+msgid "Dating"
+msgstr "Randki"
+
+#: src/Content/ContactSelector.php:169
+msgid "Unfaithful"
+msgstr "Niewierny"
+
+#: src/Content/ContactSelector.php:169
+msgid "Sex Addict"
+msgstr "Uzależniony od seksu"
+
+#: src/Content/ContactSelector.php:169
+msgid "Friends/Benefits"
+msgstr "Przyjaciele/Korzyści"
+
+#: src/Content/ContactSelector.php:169
+msgid "Casual"
+msgstr "Przypadkowy"
+
+#: src/Content/ContactSelector.php:169
+msgid "Engaged"
+msgstr "Zaręczeni"
+
+#: src/Content/ContactSelector.php:169
+msgid "Married"
+msgstr "Małżeństwo"
+
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily married"
+msgstr "Fikcyjnie w związku małżeńskim"
+
+#: src/Content/ContactSelector.php:169
+msgid "Partners"
+msgstr "Partnerzy"
+
+#: src/Content/ContactSelector.php:169
+msgid "Cohabiting"
+msgstr "Konkubinat"
+
+#: src/Content/ContactSelector.php:169
+msgid "Common law"
+msgstr "Prawo zwyczajowe"
+
+#: src/Content/ContactSelector.php:169
+msgid "Happy"
+msgstr "Szczęśliwy"
+
+#: src/Content/ContactSelector.php:169
+msgid "Not looking"
+msgstr "Nie patrzę"
+
+#: src/Content/ContactSelector.php:169
+msgid "Swinger"
+msgstr "Swinger"
+
+#: src/Content/ContactSelector.php:169
+msgid "Betrayed"
+msgstr "Zdradzony"
+
+#: src/Content/ContactSelector.php:169
+msgid "Separated"
+msgstr "W separacji"
+
+#: src/Content/ContactSelector.php:169
+msgid "Unstable"
+msgstr "Niestabilny"
+
+#: src/Content/ContactSelector.php:169
+msgid "Divorced"
+msgstr "Rozwiedzeni"
+
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily divorced"
+msgstr "Fikcyjnie rozwiedziony/a"
+
+#: src/Content/ContactSelector.php:169
+msgid "Widowed"
+msgstr "Wdowiec"
+
+#: src/Content/ContactSelector.php:169
+msgid "Uncertain"
+msgstr "Nieokreślony"
+
+#: src/Content/ContactSelector.php:169
+msgid "It's complicated"
+msgstr "To skomplikowane"
+
+#: src/Content/ContactSelector.php:169
+msgid "Don't care"
+msgstr "Nie przejmuj się"
+
+#: src/Content/ContactSelector.php:169
+msgid "Ask me"
+msgstr "Zapytaj mnie "
+
+#: src/Content/OEmbed.php:253
+msgid "Embedding disabled"
+msgstr "Osadzanie wyłączone"
+
+#: src/Content/OEmbed.php:373
+msgid "Embedded content"
+msgstr "Osadzona zawartość"
+
+#: src/Content/ForumManager.php:127 view/theme/vier/theme.php:256
+msgid "External link to forum"
+msgstr "Zewnętrzny link do forum"
+
+#: src/Content/Nav.php:53
+msgid "Nothing new here"
+msgstr "Brak nowych zdarzeń"
+
+#: src/Content/Nav.php:57
+msgid "Clear notifications"
+msgstr "Wyczyść powiadomienia"
+
+#: src/Content/Nav.php:97 src/Module/Login.php:311
+#: view/theme/frio/theme.php:256
+msgid "Logout"
+msgstr "Wyloguj się"
+
+#: src/Content/Nav.php:97 view/theme/frio/theme.php:256
+msgid "End this session"
+msgstr "Zakończ sesję"
+
+#: src/Content/Nav.php:100 src/Content/Nav.php:181
+#: view/theme/frio/theme.php:259
+msgid "Your posts and conversations"
+msgstr "Twoje posty i rozmowy"
+
+#: src/Content/Nav.php:101 view/theme/frio/theme.php:260
+msgid "Your profile page"
+msgstr "Twoja strona profilowa"
+
+#: src/Content/Nav.php:102 view/theme/frio/theme.php:261
+msgid "Your photos"
+msgstr "Twoje zdjęcia"
+
+#: src/Content/Nav.php:103 view/theme/frio/theme.php:262
+msgid "Your videos"
+msgstr "Twoje filmy"
+
+#: src/Content/Nav.php:104 view/theme/frio/theme.php:263
+msgid "Your events"
+msgstr "Twoje wydarzenia"
+
+#: src/Content/Nav.php:105
+msgid "Personal notes"
+msgstr "Notatki"
+
+#: src/Content/Nav.php:105
+msgid "Your personal notes"
+msgstr "Twoje prywatne notatki"
+
+#: src/Content/Nav.php:114 src/Module/Login.php:312 mod/bookmarklet.php:23
+msgid "Login"
+msgstr "Zaloguj się"
+
+#: src/Content/Nav.php:114
+msgid "Sign in"
+msgstr "Zaloguj się"
+
+#: src/Content/Nav.php:124 src/Content/Nav.php:181
+#: src/Core/NotificationsManager.php:192
+msgid "Home"
+msgstr "Strona domowa"
+
+#: src/Content/Nav.php:124
+msgid "Home Page"
+msgstr "Strona startowa"
+
+#: src/Content/Nav.php:128 src/Module/Login.php:283 mod/register.php:279
+msgid "Register"
+msgstr "Zarejestruj"
+
+#: src/Content/Nav.php:128
+msgid "Create an account"
+msgstr "Załóż konto"
+
+#: src/Content/Nav.php:134 mod/help.php:54 view/theme/vier/theme.php:298
+msgid "Help"
+msgstr "Pomoc"
+
+#: src/Content/Nav.php:134
+msgid "Help and documentation"
+msgstr "Pomoc i dokumentacja"
+
+#: src/Content/Nav.php:138
+msgid "Apps"
+msgstr "Aplikacje"
+
+#: src/Content/Nav.php:138
+msgid "Addon applications, utilities, games"
+msgstr "Wtyczki, aplikacje, narzędzia, gry"
+
+#: src/Content/Nav.php:142
+msgid "Search site content"
+msgstr "Przeszukaj zawartość strony"
+
+#: src/Content/Nav.php:165
+msgid "Community"
+msgstr "Społeczność"
+
+#: src/Content/Nav.php:165
+msgid "Conversations on this and other servers"
+msgstr "Rozmowy na tym i innych serwerach"
+
+#: src/Content/Nav.php:172
+msgid "Directory"
+msgstr "Katalog"
+
+#: src/Content/Nav.php:172
+msgid "People directory"
+msgstr "Katalog osób"
+
+#: src/Content/Nav.php:174 mod/admin.php:179
+msgid "Information"
+msgstr "Informacje"
+
+#: src/Content/Nav.php:174
+msgid "Information about this friendica instance"
+msgstr "Informacje o tej instancji friendica"
+
+#: src/Content/Nav.php:178 src/Core/NotificationsManager.php:178
+#: mod/admin.php:758 view/theme/frio/theme.php:266
+msgid "Network"
+msgstr "Sieć"
+
+#: src/Content/Nav.php:178 view/theme/frio/theme.php:266
+msgid "Conversations from your friends"
+msgstr "Rozmowy Twoich przyjaciół"
+
+#: src/Content/Nav.php:179
+msgid "Network Reset"
+msgstr "Resetowanie sieci"
+
+#: src/Content/Nav.php:179
+msgid "Load Network page with no filters"
+msgstr "Załaduj stronę sieci bez filtrów"
+
+#: src/Content/Nav.php:185 src/Core/NotificationsManager.php:199
+msgid "Introductions"
+msgstr "Zapoznanie"
+
+#: src/Content/Nav.php:185
+msgid "Friend Requests"
+msgstr "Prośba o przyjęcie do grona znajomych"
+
+#: src/Content/Nav.php:186 mod/notifications.php:98
+msgid "Notifications"
+msgstr "Powiadomienia"
+
+#: src/Content/Nav.php:187
+msgid "See all notifications"
+msgstr "Zobacz wszystkie powiadomienia"
+
+#: src/Content/Nav.php:188 mod/settings.php:870
+msgid "Mark as seen"
+msgstr "Oznacz jako przeczytane"
+
+#: src/Content/Nav.php:188
+msgid "Mark all system notifications seen"
+msgstr "Oznacz wszystkie powiadomienia systemu jako przeczytane"
+
+#: src/Content/Nav.php:191 mod/message.php:112 view/theme/frio/theme.php:268
+msgid "Messages"
+msgstr "Wiadomości"
+
+#: src/Content/Nav.php:191 view/theme/frio/theme.php:268
+msgid "Private mail"
+msgstr "Prywatne maile"
+
+#: src/Content/Nav.php:192
+msgid "Inbox"
+msgstr "Odebrane"
+
+#: src/Content/Nav.php:193
+msgid "Outbox"
+msgstr "Wysłane"
+
+#: src/Content/Nav.php:194 mod/message.php:30
+msgid "New Message"
+msgstr "Nowa wiadomość"
+
+#: src/Content/Nav.php:197
+msgid "Manage"
+msgstr "Zarządzaj"
+
+#: src/Content/Nav.php:197
+msgid "Manage other pages"
+msgstr "Zarządzaj innymi stronami"
+
+#: src/Content/Nav.php:200 mod/settings.php:93
+msgid "Delegations"
+msgstr "Delegowanie"
+
+#: src/Content/Nav.php:200 mod/delegate.php:169
+msgid "Delegate Page Management"
+msgstr "Deleguj zarządzanie stronami"
+
+#: src/Content/Nav.php:202 mod/settings.php:123 mod/admin.php:1920
+#: mod/admin.php:2189 mod/newmember.php:19 view/theme/frio/theme.php:269
+msgid "Settings"
+msgstr "Ustawienia"
+
+#: src/Content/Nav.php:202 view/theme/frio/theme.php:269
+msgid "Account settings"
+msgstr "Ustawienia konta"
+
+#: src/Content/Nav.php:205
+msgid "Manage/Edit Profiles"
+msgstr "Zarządzaj/Edytuj profile"
+
+#: src/Content/Nav.php:208 view/theme/frio/theme.php:270
+msgid "Manage/edit friends and contacts"
+msgstr "Zarządzaj listą przyjaciół i kontaktami"
+
+#: src/Content/Nav.php:213 mod/admin.php:222
+msgid "Admin"
+msgstr "Administator"
+
+#: src/Content/Nav.php:213
+msgid "Site setup and configuration"
+msgstr "Konfiguracja i ustawienia instancji"
+
+#: src/Content/Nav.php:216
+msgid "Navigation"
+msgstr "Nawigacja"
+
+#: src/Content/Nav.php:216
+msgid "Site map"
+msgstr "Mapa strony"
+
+#: src/Worker/Delivery.php:390
+msgid "(no subject)"
+msgstr "(bez tematu)"
+
+#: src/App.php:511
+msgid "Delete this item?"
+msgstr "Usunąć ten element?"
+
+#: src/App.php:513
+msgid "show fewer"
+msgstr "Pokaż mniej"
+
+#: src/Module/Login.php:86 src/Module/Login.php:134 mod/openid.php:116
+msgid "Login failed."
+msgstr "Logowanie nieudane."
+
+#: src/Module/Login.php:282
+msgid "Create a New Account"
+msgstr "Załóż nowe konto"
+
+#: src/Module/Login.php:314 mod/lostpass.php:119
+msgid "Nickname or Email: "
+msgstr "Pseudonim lub Email:"
+
+#: src/Module/Login.php:315
+msgid "Password: "
+msgstr "Hasło:"
+
+#: src/Module/Login.php:316
+msgid "Remember me"
+msgstr "Zapamiętaj mnie"
+
+#: src/Module/Login.php:319
+msgid "Or login using OpenID: "
+msgstr "Lub zaloguj się korzystając z OpenID:"
+
+#: src/Module/Login.php:325
+msgid "Forgot your password?"
+msgstr "Zapomniałeś swojego hasła?"
+
+#: src/Module/Login.php:326 mod/lostpass.php:136
+msgid "Password Reset"
+msgstr "Zresetuj hasło"
+
+#: src/Module/Login.php:328
+msgid "Website Terms of Service"
+msgstr "Warunki korzystania z witryny"
+
+#: src/Module/Login.php:329
+msgid "terms of service"
+msgstr "warunki użytkowania"
+
+#: src/Module/Login.php:331
+msgid "Website Privacy Policy"
+msgstr "Polityka Prywatności Witryny"
+
+#: src/Module/Login.php:332
+msgid "privacy policy"
+msgstr "polityka prywatności"
+
+#: src/Module/Tos.php:48 mod/admin.php:188 mod/admin.php:302
+#: mod/register.php:288
+msgid "Terms of Service"
+msgstr "Warunki usługi"
+
+#: src/Module/Tos.php:51
+msgid "Privacy Statement"
+msgstr "Oświadczenie o prywatności"
+
+#: src/Module/Tos.php:52
+msgid ""
+"At the time of registration, and for providing communications between the "
+"user account and their contacts, the user has to provide a display name (pen"
+" name), an username (nickname) and a working email address. The names will "
+"be accessible on the profile page of the account by any visitor of the page,"
+" even if other profile details are not displayed. The email address will "
+"only be used to send the user notifications about interactions, but wont be "
+"visibly displayed. The listing of an account in the node's user directory or"
+" the global user directory is optional and can be controlled in the user "
+"settings, it is not necessary for communication."
+msgstr "W momencie rejestracji oraz w celu zapewnienia komunikacji między kontem użytkownika, a jego kontaktami, użytkownik musi podać nazwę wyświetlaną (pseudonim), nazwę użytkownika (przydomek) i działający adres e-mail. Nazwy będą dostępne na stronie profilu konta dla każdego odwiedzającego stronę, nawet jeśli inne szczegóły profilu nie zostaną wyświetlone. Adres e-mail będzie używany tylko do wysyłania powiadomień użytkownika o interakcjach, ale nie będzie wyświetlany w widoczny sposób. Lista kont w katalogu użytkownika węzła lub globalnym katalogu użytkownika jest opcjonalna i może być kontrolowana w ustawieniach użytkownika, nie jest konieczna do komunikacji."
+
+#: src/Module/Tos.php:53
+msgid ""
+"This data is required for communication and is passed on to the nodes of the"
+" communication partners. Users can enter additional private data that may be"
+" transmitted to the communication partners accounts."
+msgstr "Te dane są wymagane do komunikacji i przekazywane do węzłów partnerów komunikacyjnych. Użytkownicy mogą wprowadzać dodatkowe prywatne dane, które mogą być przesyłane na konta partnerów komunikacyjnych."
+
+#: src/Module/Tos.php:54
+#, php-format
+msgid ""
+"At any point in time a logged in user can export their account data from the"
+" account settings . If the user wants "
+"to delete their account they can do so at %1$s/removeme . The deletion of the account will "
+"be permanent."
+msgstr "W dowolnym momencie zalogowany użytkownik może wyeksportować dane swojego konta z ustawień konta . Jeśli użytkownik chce usunąć swoje konto, może to zrobić w %1$s/usuń mnie. Usunięcie konta będzie trwałe."
+
+#: src/Module/Logout.php:28
+msgid "Logged out."
+msgstr "Wyloguj"
+
+#: src/Object/Image.php:953 src/Object/Image.php:969 src/Object/Image.php:977
+#: src/Object/Image.php:1002 mod/wall_upload.php:231 mod/item.php:471
+msgid "Wall Photos"
+msgstr "Tablica zdjęć"
+
+#: src/Object/Post.php:128
+msgid "This entry was edited"
+msgstr "Ten wpis został zedytowany"
+
+#: src/Object/Post.php:149 mod/photos.php:1308
+msgid "Private Message"
+msgstr "Wiadomość prywatna"
+
+#: src/Object/Post.php:155 src/Object/Post.php:157 mod/settings.php:737
+msgid "Edit"
+msgstr "Edytuj"
+
+#: src/Object/Post.php:182
+msgid "save to folder"
+msgstr "zapisz w folderze"
+
+#: src/Object/Post.php:235
+msgid "I will attend"
+msgstr "Będę uczestniczyć"
+
+#: src/Object/Post.php:235
+msgid "I will not attend"
+msgstr "Nie będę uczestniczyć"
+
+#: src/Object/Post.php:235
+msgid "I might attend"
+msgstr "Mogę wziąć udział"
+
+#: src/Object/Post.php:263
+msgid "add star"
+msgstr "dodaj gwiazdkę"
+
+#: src/Object/Post.php:264
+msgid "remove star"
+msgstr "anuluj gwiazdkę"
+
+#: src/Object/Post.php:265
+msgid "toggle star status"
+msgstr "włącz status gwiazdy"
+
+#: src/Object/Post.php:268
+msgid "starred"
+msgstr "gwiazdką"
+
+#: src/Object/Post.php:274
+msgid "ignore thread"
+msgstr "zignoruj wątek"
+
+#: src/Object/Post.php:275
+msgid "unignore thread"
+msgstr "odignoruj wątek"
+
+#: src/Object/Post.php:276
+msgid "toggle ignore status"
+msgstr "przełącz status ignorowania"
+
+#: src/Object/Post.php:279 mod/ostatus_subscribe.php:83
+msgid "ignored"
+msgstr "Ignoruj"
+
+#: src/Object/Post.php:285
+msgid "add tag"
+msgstr "dodaj tag"
+
+#: src/Object/Post.php:296 mod/photos.php:1471
+msgid "I like this (toggle)"
+msgstr "Lubię to (zmień)"
+
+#: src/Object/Post.php:296
+msgid "like"
+msgstr "lubię to"
+
+#: src/Object/Post.php:297 mod/photos.php:1472
+msgid "I don't like this (toggle)"
+msgstr "Nie lubię tego (zmień)"
+
+#: src/Object/Post.php:297
+msgid "dislike"
+msgstr "nie lubię tego"
+
+#: src/Object/Post.php:300
+msgid "Share this"
+msgstr "Udostępnij to"
+
+#: src/Object/Post.php:300
+msgid "share"
+msgstr "udostępnij"
+
+#: src/Object/Post.php:365
+msgid "to"
+msgstr "do"
+
+#: src/Object/Post.php:366
+msgid "via"
+msgstr "przez"
+
+#: src/Object/Post.php:367
+msgid "Wall-to-Wall"
+msgstr "Wall-to-Wall"
+
+#: src/Object/Post.php:368
+msgid "via Wall-To-Wall:"
+msgstr "via Wall-To-Wall:"
+
+#: src/Object/Post.php:399 src/Object/Post.php:795 mod/photos.php:1490
+#: mod/photos.php:1529 mod/photos.php:1602
+msgid "Comment"
+msgstr "Komentarz"
+
+#: src/Object/Post.php:427
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] " %d komentarz"
+msgstr[1] " %d komentarzy"
+msgstr[2] " %d komentarzy"
+msgstr[3] " %d komentarzy"
+
+#: src/Object/Post.php:793 mod/photos.php:1488 mod/photos.php:1527
+#: mod/photos.php:1600 mod/contacts.php:953
+msgid "This is you"
+msgstr "To jesteś ty"
+
+#: src/Object/Post.php:796 mod/manage.php:184 mod/invite.php:155
+#: mod/profiles.php:672 mod/events.php:530 mod/fsuggest.php:114
+#: mod/photos.php:1080 mod/photos.php:1160 mod/photos.php:1445
+#: mod/photos.php:1491 mod/photos.php:1530 mod/photos.php:1603
+#: mod/message.php:265 mod/message.php:432 mod/localtime.php:56
+#: mod/crepair.php:148 mod/poke.php:199 mod/contacts.php:610
+#: mod/install.php:251 mod/install.php:290 view/theme/quattro/config.php:73
+#: view/theme/frio/config.php:113 view/theme/vier/config.php:119
+#: view/theme/duepuntozero/config.php:71
+msgid "Submit"
+msgstr "Potwierdź"
+
+#: src/Object/Post.php:797
+msgid "Bold"
+msgstr "Pogrubienie"
+
+#: src/Object/Post.php:798
+msgid "Italic"
+msgstr "Kursywa"
+
+#: src/Object/Post.php:799
+msgid "Underline"
+msgstr "Podkreślenie"
+
+#: src/Object/Post.php:800
+msgid "Quote"
+msgstr "Cytat"
+
+#: src/Object/Post.php:801
+msgid "Code"
+msgstr "Kod"
+
+#: src/Object/Post.php:802
+msgid "Image"
+msgstr "Obraz"
+
+#: src/Object/Post.php:803
+msgid "Link"
+msgstr "Link"
+
+#: src/Object/Post.php:804
+msgid "Video"
+msgstr "Video"
+
+#: src/Database/DBStructure.php:32
+msgid "There are no tables on MyISAM."
+msgstr "W MyISAM nie ma tabel."
+
+#: src/Database/DBStructure.php:75
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr "\n\t\t\t\tDeweloperzy friendica wydali niedawno aktualizację %s,\n\t\t\t\tale podczas próby instalacji, coś poszło nie tak.\n\t\t\t\tZostanie to naprawione wkrótce i nie mogę tego zrobić sam. Proszę skontaktować się z \n\t\t\t\tprogramistami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być nieprawidłowa."
+
+#: src/Database/DBStructure.php:80
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Komunikat o błędzie jest \n[pre]%s[/ pre]"
+
+#: src/Database/DBStructure.php:191
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr "\nWystąpił błąd %d podczas aktualizacji bazy danych:\n%s\n"
+
+#: src/Database/DBStructure.php:194
+msgid "Errors encountered performing database changes: "
+msgstr "Napotkane błędy powodujące zmiany w bazie danych:"
+
+#: src/Database/DBStructure.php:210
+msgid ": Database update"
+msgstr ": Aktualizacja bazy danych"
+
+#: src/Database/DBStructure.php:460
+#, php-format
+msgid "%s: updating %s table."
+msgstr "%s: aktualizowanie %s tabeli."
+
+#: src/Core/UserImport.php:104
+msgid "Error decoding account file"
+msgstr "Błąd podczas odczytu pliku konta"
+
+#: src/Core/UserImport.php:110
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Błąd! Brak danych wersji w pliku! To nie jest plik konta Friendica?"
+
+#: src/Core/UserImport.php:118
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Użytkownik '%s' już istnieje na tym serwerze!"
+
+#: src/Core/UserImport.php:151
+msgid "User creation error"
+msgstr "Błąd tworzenia użytkownika"
+
+#: src/Core/UserImport.php:169
+msgid "User profile creation error"
+msgstr "Błąd tworzenia profilu użytkownika"
+
+#: src/Core/UserImport.php:213
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "Nie zaimportowano %d kontaktu."
+msgstr[1] "Nie zaimportowano %d kontaktów."
+msgstr[2] "Nie zaimportowano %d kontaktów."
+msgstr[3] "%dkontakty nie zostały zaimportowane "
+
+#: src/Core/UserImport.php:278
+msgid "Done. You can now login with your username and password"
+msgstr "Gotowe. Możesz teraz zalogować się, podając swoją nazwę użytkownika i hasło."
+
+#: src/Core/Console/NewPassword.php:78 mod/settings.php:394
+msgid ""
+"The new password has been exposed in a public data dump, please choose "
+"another."
+msgstr "Nowe hasło zostało ujawnione w publicznym zrzucie danych, wybierz inne."
+
+#: src/Core/Console/NewPassword.php:82 mod/settings.php:409
+msgid "Password update failed. Please try again."
+msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie."
+
+#: src/Core/Console/NewPassword.php:85 mod/settings.php:407
+msgid "Password changed."
+msgstr "Hasło zostało zmianione."
+
+#: src/Core/Console/GlobalCommunityBlock.php:69 mod/admin.php:443
+#, php-format
+msgid "Could not find any contact entry for this URL (%s)"
+msgstr "Nie można znaleźć żadnego kontaktu dla tego adresu URL (%s)"
+
+#: src/Core/Console/GlobalCommunityBlock.php:72 mod/admin.php:441
+msgid "The contact has been blocked from the node"
+msgstr "Kontakt został zablokowany w węźle"
+
+#: src/Core/ACL.php:295
+msgid "Post to Email"
+msgstr "Prześlij e-mailem"
+
+#: src/Core/ACL.php:301
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Ukryć szczegóły twojego profilu przed nieznajomymi?"
+
+#: src/Core/ACL.php:300
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Wtyczki są wyłączone, ponieważ \"%s\" jest włączone."
+
+#: src/Core/ACL.php:307
+msgid "Visible to everybody"
+msgstr "Widoczny dla wszystkich"
+
+#: src/Core/ACL.php:308 view/theme/vier/config.php:115
+msgid "show"
+msgstr "pokaż"
+
+#: src/Core/ACL.php:309 view/theme/vier/config.php:115
+msgid "don't show"
+msgstr "nie pokazuj"
+
+#: src/Core/ACL.php:315 mod/editpost.php:134
+msgid "CC: email addresses"
+msgstr "CC: adresy e-mail"
+
+#: src/Core/ACL.php:316 mod/editpost.php:141
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Przykład: bob@example.com, mary@example.com"
+
+#: src/Core/ACL.php:318 mod/events.php:533 mod/photos.php:1098
+#: mod/photos.php:1441
+msgid "Permissions"
+msgstr "Uprawnienia"
+
+#: src/Core/ACL.php:319
+msgid "Close"
+msgstr "Zamknij"
+
+#: src/Core/NotificationsManager.php:171
+msgid "System"
+msgstr "System"
+
+#: src/Core/NotificationsManager.php:185 mod/network.php:955
+#: mod/profiles.php:687
+msgid "Personal"
+msgstr "Osobiste"
+
+#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s skomentował wpis %s"
+
+#: src/Core/NotificationsManager.php:267
+#, php-format
+msgid "%s created a new post"
+msgstr "%s dodał nowy wpis"
+
+#: src/Core/NotificationsManager.php:281
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s polubił wpis %s"
+
+#: src/Core/NotificationsManager.php:294
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s nie lubi tych %s postów"
+
+#: src/Core/NotificationsManager.php:307
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%suczestniczy %sw wydarzeniu "
+
+#: src/Core/NotificationsManager.php:320
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%snie uczestniczy %s w wydarzeniu "
+
+#: src/Core/NotificationsManager.php:333
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%smoże uczestniczyć %s w wydarzeniu"
+
+#: src/Core/NotificationsManager.php:350
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s jest teraz znajomym %s"
+
+#: src/Core/NotificationsManager.php:825
+msgid "Friend Suggestion"
+msgstr "Propozycja znajomych"
+
+#: src/Core/NotificationsManager.php:851
+msgid "Friend/Connect Request"
+msgstr "Prośba o dodanie do przyjaciół/powiązanych"
+
+#: src/Core/NotificationsManager.php:851
+msgid "New Follower"
+msgstr "Nowy obserwujący"
+
+#: src/Util/Temporal.php:81 src/Util/Temporal.php:83 mod/profiles.php:689
+msgid "Miscellaneous"
+msgstr "Różny"
+
+#: src/Util/Temporal.php:149 mod/profiles.php:712
+msgid "Age: "
+msgstr "Wiek: "
+
+#: src/Util/Temporal.php:151
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "RRRR-MM-DD lub MM-DD"
+
+#: src/Util/Temporal.php:294
+msgid "never"
+msgstr "nigdy"
+
+#: src/Util/Temporal.php:300
+msgid "less than a second ago"
+msgstr "mniej niż sekundę temu"
+
+#: src/Util/Temporal.php:303
+msgid "year"
+msgstr "rok"
+
+#: src/Util/Temporal.php:303
+msgid "years"
+msgstr "lata"
+
+#: src/Util/Temporal.php:304
+msgid "months"
+msgstr "miesiące"
+
+#: src/Util/Temporal.php:305
+msgid "weeks"
+msgstr "tygodnie"
+
+#: src/Util/Temporal.php:306
+msgid "days"
+msgstr "dni"
+
+#: src/Util/Temporal.php:307
+msgid "hour"
+msgstr "godzina"
+
+#: src/Util/Temporal.php:307
+msgid "hours"
+msgstr "godziny"
+
+#: src/Util/Temporal.php:308
+msgid "minute"
+msgstr "minuta"
+
+#: src/Util/Temporal.php:308
+msgid "minutes"
+msgstr "minuty"
+
+#: src/Util/Temporal.php:309
+msgid "second"
+msgstr "sekunda"
+
+#: src/Util/Temporal.php:309
+msgid "seconds"
+msgstr "sekundy"
+
+#: src/Util/Temporal.php:318
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s temu"
+
+#: src/Protocol/OStatus.php:1251 mod/profile.php:80
+#, php-format
+msgid "%s's timeline"
+msgstr "%s oś czasu "
+
+#: src/Protocol/OStatus.php:1252 mod/profile.php:78
+#, php-format
+msgid "%s's posts"
+msgstr "%s posty "
+
+#: src/Protocol/OStatus.php:1253 mod/profile.php:79
+#, php-format
+msgid "%s's comments"
+msgstr "%s komentarze "
+
+#: src/Protocol/OStatus.php:1799
+#, php-format
+msgid "%s is now following %s."
+msgstr "%sjest teraz następujące %s. "
+
+#: src/Protocol/OStatus.php:1800
+msgid "following"
+msgstr "następujący"
+
+#: src/Protocol/OStatus.php:1803
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%sprzestał śledzić %s. "
+
+#: src/Protocol/OStatus.php:1804
+msgid "stopped following"
+msgstr "przestał śledzić"
+
+#: src/Protocol/Diaspora.php:2680
+msgid "Sharing notification from Diaspora network"
+msgstr "Wspólne powiadomienie z sieci Diaspora"
+
+#: src/Protocol/Diaspora.php:3756
+msgid "Attachments:"
+msgstr "Załączniki:"
+
+#: mod/directory.php:42 mod/display.php:203 mod/viewcontacts.php:45
+#: mod/photos.php:932 mod/community.php:27 mod/videos.php:199
+#: mod/dfrn_request.php:607 mod/search.php:98 mod/search.php:104
+#: mod/probe.php:13 mod/webfinger.php:16
+msgid "Public access denied."
+msgstr "Publiczny dostęp zabroniony"
+
+#: mod/directory.php:202 view/theme/vier/theme.php:201
+msgid "Global Directory"
+msgstr "Globalny Katalog"
+
+#: mod/directory.php:204
+msgid "Find on this site"
+msgstr "Znajdź na tej stronie"
+
+#: mod/directory.php:206
+msgid "Results for:"
+msgstr "Wyniki dla:"
+
+#: mod/directory.php:208
+msgid "Site Directory"
+msgstr "Katalog Witryny"
+
+#: mod/directory.php:213
+msgid "No entries (some entries may be hidden)."
+msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."
+
+#: mod/dirfind.php:49
+#, php-format
+msgid "People Search - %s"
+msgstr "Szukaj osób - %s"
+
+#: mod/dirfind.php:60
+#, php-format
+msgid "Forum Search - %s"
+msgstr "Przeszukiwanie forum - %s"
+
+#: mod/dirfind.php:253 mod/match.php:125
+msgid "No matches"
+msgstr "Brak wyników"
#: mod/repair_ostatus.php:18
msgid "Resubscribing to OStatus contacts"
@@ -1698,6 +3469,18 @@ msgstr "Gotowe"
msgid "Keep this window open until done."
msgstr "Pozostaw to okno otwarte, dopóki nie będzie gotowe."
+#: mod/ping.php:292
+msgid "{0} wants to be your friend"
+msgstr "{0} chce być Twoim znajomym"
+
+#: mod/ping.php:307
+msgid "{0} sent you a message"
+msgstr "{0} wysłałem Ci wiadomość"
+
+#: mod/ping.php:322
+msgid "{0} requested registration"
+msgstr "{0} wymagana rejestracja"
+
#: mod/suggest.php:36
msgid "Do you really want to delete this suggestion?"
msgstr "Czy na pewno chcesz usunąć te sugestie ?"
@@ -1712,12 +3495,134 @@ msgstr "Brak dostępnych sugestii. Jeśli jest to nowa witryna, spróbuj ponowni
msgid "Ignore/Hide"
msgstr "Ignoruj/Ukryj"
-#: mod/suggest.php:114 view/theme/vier/theme.php:203 src/Content/Widget.php:64
-msgid "Friend Suggestions"
-msgstr "Osoby, które możesz znać"
+#: mod/display.php:313 mod/profile.php:173 mod/cal.php:142
+msgid "Access to this profile has been restricted."
+msgstr "Dostęp do tego profilu został ograniczony."
-#: mod/update_community.php:27 mod/update_display.php:27
-#: mod/update_notes.php:40 mod/update_profile.php:39 mod/update_network.php:33
+#: mod/profile_photo.php:55
+msgid "Image uploaded but image cropping failed."
+msgstr "Zdjęcie zostało przesłane, ale przycinanie obrazu nie powiodło się."
+
+#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104
+#: mod/profile_photo.php:315
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Redukcja rozmiaru obrazka [%s] nie powiodła się."
+
+#: mod/profile_photo.php:125
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Ponownie załaduj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie nie pojawi się natychmiast."
+
+#: mod/profile_photo.php:134
+msgid "Unable to process image"
+msgstr "Nie udało się przetworzyć obrazu."
+
+#: mod/profile_photo.php:153 mod/photos.php:763 mod/photos.php:766
+#: mod/photos.php:795 mod/wall_upload.php:186
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr "Obraz przekracza limit rozmiaru wynoszący %s"
+
+#: mod/profile_photo.php:162 mod/photos.php:818 mod/wall_upload.php:200
+msgid "Unable to process image."
+msgstr "Przetwarzanie obrazu nie powiodło się."
+
+#: mod/profile_photo.php:247
+msgid "Upload File:"
+msgstr "Wyślij plik:"
+
+#: mod/profile_photo.php:248
+msgid "Select a profile:"
+msgstr "Wybierz profil:"
+
+#: mod/profile_photo.php:249 mod/profiles.php:691 mod/newmember.php:26
+msgid "Upload Profile Photo"
+msgstr "Wyślij zdjęcie profilowe"
+
+#: mod/profile_photo.php:250 mod/fbrowser.php:105 mod/fbrowser.php:136
+msgid "Upload"
+msgstr "Załaduj"
+
+#: mod/profile_photo.php:253
+msgid "or"
+msgstr "lub"
+
+#: mod/profile_photo.php:253
+msgid "skip this step"
+msgstr "pomiń ten krok"
+
+#: mod/profile_photo.php:253
+msgid "select a photo from your photo albums"
+msgstr "wybierz zdjęcie z twojego albumu"
+
+#: mod/profile_photo.php:266
+msgid "Crop Image"
+msgstr "Przytnij zdjęcie"
+
+#: mod/profile_photo.php:267
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Dostosuj kadrowanie obrazu, aby uzyskać optymalny obraz."
+
+#: mod/profile_photo.php:269
+msgid "Done Editing"
+msgstr "Zakończono edycję"
+
+#: mod/profile_photo.php:305
+msgid "Image uploaded successfully."
+msgstr "Zdjęcie wczytano pomyślnie "
+
+#: mod/profile_photo.php:307 mod/photos.php:847 mod/wall_upload.php:239
+msgid "Image upload failed."
+msgstr "Przesyłanie obrazu nie powiodło się"
+
+#: mod/removeme.php:43
+msgid "User deleted their account"
+msgstr "Użytkownik usunął swoje konto"
+
+#: mod/removeme.php:44
+msgid ""
+"On your Friendica node an user deleted their account. Please ensure that "
+"their data is removed from the backups."
+msgstr "W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych."
+
+#: mod/removeme.php:45
+#, php-format
+msgid "The user id is %d"
+msgstr "Identyfikatorem użytkownika jest %d"
+
+#: mod/removeme.php:76 mod/removeme.php:79
+msgid "Remove My Account"
+msgstr "Usuń moje konto"
+
+#: mod/removeme.php:77
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć."
+
+#: mod/removeme.php:78
+msgid "Please enter your password for verification:"
+msgstr "Wprowadź hasło w celu weryfikacji."
+
+#: mod/manage.php:180
+msgid "Manage Identities and/or Pages"
+msgstr "Zarządzaj Tożsamościami i/lub Stronami."
+
+#: mod/manage.php:181
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Przełącz między różnymi tożsamościami lub stronami społeczność/grupy, które udostępniają dane Twojego konta lub które otrzymałeś uprawnienia \"zarządzaj\""
+
+#: mod/manage.php:182
+msgid "Select an identity to manage: "
+msgstr "Wybierz tożsamość do zarządzania:"
+
+#: mod/update_notes.php:40 mod/update_display.php:27
+#: mod/update_community.php:27 mod/update_network.php:33
+#: mod/update_profile.php:39
msgid "[Embedded content - reload page to view]"
msgstr "[Dodatkowa zawartość - odśwież stronę by zobaczyć]"
@@ -1762,190 +3667,116 @@ msgid ""
"select \"Export account\""
msgstr "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\""
-#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
+#: mod/invite.php:33
+msgid "Total invitation limit exceeded."
+msgstr "Przekroczono limit zaproszeń ogółem."
+
+#: mod/invite.php:55
#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s witamy %2$s"
+msgid "%s : Not a valid email address."
+msgstr "%s : Nieprawidłowy adres e-mail."
-#: mod/match.php:48
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Brak pasujących słów kluczowych. Dodaj słowa kluczowe do domyślnego profilu."
+#: mod/invite.php:87
+msgid "Please join us on Friendica"
+msgstr "Dołącz do nas na Friendica"
-#: mod/match.php:104
-msgid "is interested in:"
-msgstr "interesuje się:"
+#: mod/invite.php:96
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Przekroczono limit zaproszeń. Skontaktuj się z administratorem witryny."
-#: mod/match.php:120
-msgid "Profile Match"
-msgstr "Dopasowanie profilu"
-
-#: mod/match.php:125 mod/dirfind.php:253
-msgid "No matches"
-msgstr "Brak wyników"
-
-#: mod/notifications.php:37
-msgid "Invalid request identifier."
-msgstr "Nieprawidłowe żądanie identyfikatora."
-
-#: mod/notifications.php:46 mod/notifications.php:183
-#: mod/notifications.php:230
-msgid "Discard"
-msgstr "Odrzuć"
-
-#: mod/notifications.php:62 mod/notifications.php:182
-#: mod/notifications.php:266 mod/contacts.php:638 mod/contacts.php:828
-#: mod/contacts.php:1019
-msgid "Ignore"
-msgstr "Ignoruj"
-
-#: mod/notifications.php:98 src/Content/Nav.php:189
-msgid "Notifications"
-msgstr "Powiadomienia"
-
-#: mod/notifications.php:107
-msgid "Network Notifications"
-msgstr "Powiadomienia sieciowe"
-
-#: mod/notifications.php:113 mod/notify.php:81
-msgid "System Notifications"
-msgstr "Powiadomienia systemowe"
-
-#: mod/notifications.php:119
-msgid "Personal Notifications"
-msgstr "Prywatne powiadomienia"
-
-#: mod/notifications.php:125
-msgid "Home Notifications"
-msgstr "Powiadomienia domowe"
-
-#: mod/notifications.php:155
-msgid "Show Ignored Requests"
-msgstr "Pokaż ignorowane żądania"
-
-#: mod/notifications.php:155
-msgid "Hide Ignored Requests"
-msgstr "Ukryj zignorowane prośby"
-
-#: mod/notifications.php:167 mod/notifications.php:237
-msgid "Notification type: "
-msgstr "Typ powiadomienia:"
-
-#: mod/notifications.php:170
+#: mod/invite.php:100
#, php-format
-msgid "suggested by %s"
-msgstr "zaproponowane przez %s"
+msgid "%s : Message delivery failed."
+msgstr "%s : Nie udało się dostarczyć wiadomości."
-#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
-msgid "Hide this contact from others"
-msgstr "Ukryj ten kontakt przed innymi"
+#: mod/invite.php:104
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d wiadomość wysłana."
+msgstr[1] "%d wiadomości wysłane."
+msgstr[2] "%d wysłano ."
+msgstr[3] "%d wiadomość wysłano."
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "Post a new friend activity"
-msgstr "Opublikuj aktywność nowego znajomego"
+#: mod/invite.php:122
+msgid "You have no more invitations available"
+msgstr "Nie masz już dostępnych zaproszeń"
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "if applicable"
-msgstr "jeśli dotyczy"
-
-#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1796
-msgid "Approve"
-msgstr "Zatwierdź"
-
-#: mod/notifications.php:198
-msgid "Claims to be known to you: "
-msgstr "Twierdzi, że go znasz:"
-
-#: mod/notifications.php:199
-msgid "yes"
-msgstr "tak"
-
-#: mod/notifications.php:199
-msgid "no"
-msgstr "nie"
-
-#: mod/notifications.php:200 mod/notifications.php:205
-msgid "Shall your connection be bidirectional or not?"
-msgstr "Czy twoje połączenie ma być dwukierunkowe, czy nie?"
-
-#: mod/notifications.php:201 mod/notifications.php:206
+#: mod/invite.php:130
#, php-format
msgid ""
-"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
-"also receive updates from them in your news feed."
-msgstr "Przyjmowanie %s jako znajomego pozwala %s zasubskrybować twoje posty, a także otrzymywać od nich aktualizacje w swoim kanale wiadomości."
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Odwiedź %s listę publicznych witryn, do których możesz dołączyć. Członkowie Friendica na innych stronach mogą łączyć się ze sobą, jak również z członkami wielu innych sieci społecznościowych."
-#: mod/notifications.php:202
+#: mod/invite.php:132
#, php-format
msgid ""
-"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
-" will not receive updates from them in your news feed."
-msgstr "Zaakceptowanie %s jako subskrybenta umożliwia im subskrybowanie Twoich postów, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości."
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Aby zaakceptować to zaproszenie, odwiedź i zarejestruj się %s lub w dowolnej innej publicznej witrynie internetowej Friendica."
-#: mod/notifications.php:207
+#: mod/invite.php:133
#, php-format
msgid ""
-"Accepting %s as a sharer allows them to subscribe to your posts, but you "
-"will not receive updates from them in your news feed."
-msgstr "Akceptowanie %s jako udostępniający pozwala im subskrybować twoje posty, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości."
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi. Zobacz %s listę alternatywnych witryn Friendica, do których możesz dołączyć."
-#: mod/notifications.php:218
-msgid "Friend"
-msgstr "Znajomy"
+#: mod/invite.php:137
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Przepraszamy. System nie jest obecnie skonfigurowany do łączenia się z innymi publicznymi witrynami lub zapraszania członków."
-#: mod/notifications.php:219
-msgid "Sharer"
-msgstr "Udostępniający/a"
+#: mod/invite.php:141
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks."
+msgstr "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi."
-#: mod/notifications.php:219
-msgid "Subscriber"
-msgstr "Subskrybent"
-
-#: mod/notifications.php:247 mod/contacts.php:660 mod/events.php:518
-#: mod/directory.php:148 src/Model/Event.php:60 src/Model/Event.php:85
-#: src/Model/Event.php:421 src/Model/Event.php:900 src/Model/Profile.php:417
-msgid "Location:"
-msgstr "Lokalizacja"
-
-#: mod/notifications.php:249 mod/contacts.php:664 mod/directory.php:154
-#: src/Model/Profile.php:423 src/Model/Profile.php:808
-msgid "About:"
-msgstr "O:"
-
-#: mod/notifications.php:251 mod/contacts.php:666 mod/follow.php:174
-#: src/Model/Profile.php:796
-msgid "Tags:"
-msgstr "Tagi:"
-
-#: mod/notifications.php:253 mod/directory.php:151 src/Model/Profile.php:420
-#: src/Model/Profile.php:747
-msgid "Gender:"
-msgstr "Płeć:"
-
-#: mod/notifications.php:258 mod/contacts.php:656 mod/unfollow.php:122
-#: mod/admin.php:490 mod/admin.php:500 mod/follow.php:166
-msgid "Profile URL"
-msgstr "Adres URL profilu"
-
-#: mod/notifications.php:261 mod/contacts.php:71 src/Model/Profile.php:520
-msgid "Network:"
-msgstr "Sieć:"
-
-#: mod/notifications.php:275
-msgid "No introductions."
-msgstr "Brak dostępu."
-
-#: mod/notifications.php:316
-msgid "Show unread"
-msgstr "Pokaż nieprzeczytane"
-
-#: mod/notifications.php:316
-msgid "Show all"
-msgstr "Pokaż wszystko"
-
-#: mod/notifications.php:322
+#: mod/invite.php:140
#, php-format
-msgid "No more %s notifications."
-msgstr "Nigdy więcej %s powiadomień."
+msgid "To accept this invitation, please visit and register at %s."
+msgstr "Aby zaakceptować to zaproszenie, odwiedź stronę i zarejestruj się na stronie %s."
+
+#: mod/invite.php:147
+msgid "Send invitations"
+msgstr "Wyślij zaproszenie"
+
+#: mod/invite.php:148
+msgid "Enter email addresses, one per line:"
+msgstr "Wprowadź adresy e-mail, po jednym w wierszu:"
+
+#: mod/invite.php:149 mod/message.php:259 mod/message.php:426
+#: mod/wallmessage.php:141
+msgid "Your message:"
+msgstr "Twoja wiadomość:"
+
+#: mod/invite.php:150
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Serdecznie zapraszam do przyłączenia się do mnie i innych bliskich znajomych na stronie Friendica - i pomóż nam stworzyć lepszą sieć społecznościową."
+
+#: mod/invite.php:152
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Musisz podać ten kod zaproszenia: $invite_code"
+
+#: mod/invite.php:152
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Po rejestracji połącz się ze mną na stronie mojego profilu pod adresem:"
+
+#: mod/invite.php:154
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendi.ca"
+msgstr "Aby uzyskać więcej informacji na temat projektu Friendica i dlaczego uważamy, że jest to ważne, odwiedź http://friendi.ca"
#: mod/openid.php:29
msgid "OpenID protocol error. No ID returned."
@@ -1956,647 +3787,562 @@ msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr "Konto nie zostało znalezione, a rejestracja OpenID nie jest dozwolona na tej stronie."
-#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:134
-msgid "Login failed."
-msgstr "Logowanie nieudane."
+#: mod/hcard.php:18
+msgid "No profile"
+msgstr "Brak profilu"
-#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149
-#: mod/profiles.php:196 mod/profiles.php:618
-msgid "Profile not found."
-msgstr "Nie znaleziono profilu."
+#: mod/apps.php:14 index.php:273
+msgid "You must be logged in to use addons. "
+msgstr "Musisz być zalogowany, aby korzystać z dodatków."
-#: mod/dfrn_confirm.php:132
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Może się to zdarzyć, gdy kontakt został zgłoszony przez obie osoby i został już zatwierdzony."
+#: mod/apps.php:19
+msgid "Applications"
+msgstr "Aplikacje"
-#: mod/dfrn_confirm.php:242
-msgid "Response from remote site was not understood."
-msgstr "Odpowiedź do zdalnej strony nie została zrozumiana"
+#: mod/apps.php:22
+msgid "No installed applications."
+msgstr "Brak zainstalowanych aplikacji."
-#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr "Nieoczekiwana odpowiedź od strony zdalnej:"
-
-#: mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "Potwierdzenie zostało pomyślnie zakończone."
-
-#: mod/dfrn_confirm.php:275
-msgid "Temporary failure. Please wait and try again."
-msgstr "Tymczasowa awaria. Proszę czekać i spróbuj ponownie."
-
-#: mod/dfrn_confirm.php:278
-msgid "Introduction failed or was revoked."
-msgstr "Wprowadzenie nie powiodło się lub zostało odwołane."
-
-#: mod/dfrn_confirm.php:283
-msgid "Remote site reported: "
-msgstr "Zdalna witryna zgłoszona:"
-
-#: mod/dfrn_confirm.php:396
-msgid "Unable to set contact photo."
-msgstr "Nie można ustawić zdjęcia kontaktu."
-
-#: mod/dfrn_confirm.php:498
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Nie znaleziono użytkownika dla '%s'"
-
-#: mod/dfrn_confirm.php:508
-msgid "Our site encryption key is apparently messed up."
-msgstr "Klucz kodujący jest najwyraźniej uszkodzony."
-
-#: mod/dfrn_confirm.php:519
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Został podany pusty adres URL witryny lub nie można go odszyfrować."
-
-#: mod/dfrn_confirm.php:535
-msgid "Contact record was not found for you on our site."
-msgstr "Nie znaleziono kontaktu na naszej stronie"
-
-#: mod/dfrn_confirm.php:549
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "Publiczny klucz witryny jest niedostępny w rekordzie kontaktu dla adresu URL %s"
-
-#: mod/dfrn_confirm.php:565
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "Identyfikator dostarczony przez Twój system jest duplikatem w naszym systemie. Powinien działać, jeśli spróbujesz ponownie."
-
-#: mod/dfrn_confirm.php:576
-msgid "Unable to set your contact credentials on our system."
-msgstr "Nie można ustawić danych kontaktowych w naszym systemie."
-
-#: mod/dfrn_confirm.php:631
-msgid "Unable to update your contact profile details on our system"
-msgstr "Nie można zaktualizować danych Twojego profilu kontaktowego w naszym systemie"
-
-#: mod/dfrn_confirm.php:661 mod/dfrn_request.php:568
-#: src/Model/Contact.php:1537
-msgid "[Name Withheld]"
-msgstr "[Nazwa zastrzeżona]"
-
-#: mod/dfrn_confirm.php:694
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s dołączył/a do %2$s"
-
-#: mod/manage.php:180
-msgid "Manage Identities and/or Pages"
-msgstr "Zarządzaj Tożsamościami i/lub Stronami."
-
-#: mod/manage.php:181
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Przełącz między różnymi tożsamościami lub stronami społeczność/grupy, które udostępniają dane Twojego konta lub które otrzymałeś uprawnienia \"zarządzaj\""
-
-#: mod/manage.php:182
-msgid "Select an identity to manage: "
-msgstr "Wybierz tożsamość do zarządzania:"
-
-#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83
-#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112
-#: mod/wall_upload.php:155 mod/wall_upload.php:158
-msgid "Invalid request."
-msgstr "Nieprawidłowe żądanie."
-
-#: mod/wall_attach.php:101
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Przepraszam, może twój przesyłany plik jest większy niż pozwala konfiguracja PHP"
-
-#: mod/wall_attach.php:101
-msgid "Or - did you try to upload an empty file?"
-msgstr "Lub - czy próbowałeś załadować pusty plik?"
-
-#: mod/wall_attach.php:112
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr "Plik przekracza limit rozmiaru wynoszący %s"
-
-#: mod/wall_attach.php:136 mod/wall_attach.php:152
-msgid "File upload failed."
-msgstr "Przesyłanie pliku nie powiodło się."
-
-#: mod/dfrn_request.php:94
-msgid "This introduction has already been accepted."
-msgstr "To wprowadzenie zostało już zaakceptowane."
-
-#: mod/dfrn_request.php:112 mod/dfrn_request.php:359
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Lokalizacja profilu jest nieprawidłowa lub nie zawiera informacji o profilu."
-
-#: mod/dfrn_request.php:116 mod/dfrn_request.php:363
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik."
-
-#: mod/dfrn_request.php:119 mod/dfrn_request.php:366
-msgid "Warning: profile location has no profile photo."
-msgstr "Ostrzeżenie: położenie profilu nie zawiera zdjęcia."
-
-#: mod/dfrn_request.php:123 mod/dfrn_request.php:370
-#, 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 wymagany parametr nie został znaleziony w podanej lokacji"
-msgstr[1] "%d wymagane parametry nie zostały znalezione w podanej lokacji"
-msgstr[2] "%d wymagany parametr nie został znaleziony w podanej lokacji"
-msgstr[3] "%d wymagany parametr nie został znaleziony w podanej lokacji"
-
-#: mod/dfrn_request.php:162
-msgid "Introduction complete."
-msgstr "Wprowadzanie zakończone."
-
-#: mod/dfrn_request.php:199
-msgid "Unrecoverable protocol error."
-msgstr "Nieodwracalny błąd protokołu."
-
-#: mod/dfrn_request.php:226
-msgid "Profile unavailable."
-msgstr "Profil niedostępny."
-
-#: mod/dfrn_request.php:248
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s otrzymał dziś zbyt wiele żądań połączeń."
-
-#: mod/dfrn_request.php:249
-msgid "Spam protection measures have been invoked."
-msgstr "Wprowadzono zabezpieczenia przed spamem."
-
-#: mod/dfrn_request.php:250
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Przyjaciele namawiają do spróbowania za 24h."
-
-#: mod/dfrn_request.php:280
-msgid "Invalid locator"
-msgstr "Nieprawidłowy lokalizator"
-
-#: mod/dfrn_request.php:316
-msgid "You have already introduced yourself here."
-msgstr "Już się tu przedstawiłeś."
-
-#: mod/dfrn_request.php:319
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Wygląda na to, że już jesteście przyjaciółmi z %s"
-
-#: mod/dfrn_request.php:339
-msgid "Invalid profile URL."
-msgstr "Nieprawidłowy URL profilu."
-
-#: mod/dfrn_request.php:345 src/Model/Contact.php:1235
-msgid "Disallowed profile URL."
-msgstr "Nie dozwolony adres URL profilu."
-
-#: mod/dfrn_request.php:351 mod/admin.php:353 mod/admin.php:371
-#: mod/friendica.php:128 src/Model/Contact.php:1240
-msgid "Blocked domain"
-msgstr "Zablokowana domena"
-
-#: mod/dfrn_request.php:419 mod/contacts.php:230
-msgid "Failed to update contact record."
-msgstr "Aktualizacja rekordu kontaktu nie powiodła się."
-
-#: mod/dfrn_request.php:439
-msgid "Your introduction has been sent."
-msgstr "Twoje dane zostały wysłane."
-
-#: mod/dfrn_request.php:477
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
-msgstr "Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie."
-
-#: mod/dfrn_request.php:493
-msgid "Please login to confirm introduction."
-msgstr "Zaloguj się, aby potwierdzić wprowadzenie."
-
-#: mod/dfrn_request.php:501
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"this profile."
-msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. "
-
-#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
-msgid "Confirm"
-msgstr "Potwierdź"
-
-#: mod/dfrn_request.php:527
-msgid "Hide this contact"
-msgstr "Ukryj kontakt"
-
-#: mod/dfrn_request.php:530
-#, php-format
-msgid "Welcome home %s."
-msgstr "Welcome home %s."
-
-#: mod/dfrn_request.php:531
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s."
-
-#: mod/dfrn_request.php:607 mod/probe.php:13 mod/search.php:98
-#: mod/search.php:104 mod/viewcontacts.php:45 mod/webfinger.php:16
-#: mod/community.php:27 mod/photos.php:932 mod/videos.php:199
-#: mod/display.php:203 mod/directory.php:42
-msgid "Public access denied."
-msgstr "Publiczny dostęp zabroniony"
-
-#: mod/dfrn_request.php:642
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Wprowadź swój 'Adres tożsamości' z jednej z następujących obsługiwanych sieci komunikacyjnych:"
-
-#: mod/dfrn_request.php:645
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, follow "
-"this link to find a public Friendica site and join us today ."
-msgstr "Jeśli nie jesteś jeszcze członkiem darmowej sieci społecznościowej, kliknij ten link, aby znaleźć publiczną witrynę Friendica i dołącz do nas już dziś ."
-
-#: mod/dfrn_request.php:650
-msgid "Friend/Connection Request"
-msgstr "Przyjaciel/Prośba o połączenie"
-
-#: mod/dfrn_request.php:651
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@gnusocial.de"
-msgstr "Przykłady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"
-
-#: mod/dfrn_request.php:652 mod/follow.php:149
-msgid "Please answer the following:"
-msgstr "Proszę odpowiedzieć na następujące pytania:"
-
-#: mod/dfrn_request.php:653 mod/follow.php:150
-#, php-format
-msgid "Does %s know you?"
-msgstr "Czy %s Cię zna?"
-
-#: mod/dfrn_request.php:654 mod/follow.php:151
-msgid "Add a personal note:"
-msgstr "Dodaj osobistą notkę:"
-
-#: mod/dfrn_request.php:656 src/Content/ContactSelector.php:79
-msgid "Friendica"
-msgstr "Friendica"
-
-#: mod/dfrn_request.php:657
-msgid "GNU Social (Pleroma, Mastodon)"
-msgstr "GNU Social (Pleroma, Mastodon)"
-
-#: mod/dfrn_request.php:658
-msgid "Diaspora (Socialhome, Hubzilla)"
-msgstr "Diaspora (Socialhome, Hubzilla)"
-
-#: mod/dfrn_request.php:659
-#, php-format
-msgid ""
-" - please do not use this form. Instead, enter %s into your Diaspora search"
-" bar."
-msgstr "- proszę nie używać tego formularza. Zamiast tego wpisz %s do paska wyszukiwania Diaspory."
-
-#: mod/dfrn_request.php:660 mod/unfollow.php:113 mod/follow.php:157
-msgid "Your Identity Address:"
-msgstr "Twój adres tożsamości:"
-
-#: mod/dfrn_request.php:662 mod/unfollow.php:65 mod/follow.php:62
-msgid "Submit Request"
-msgstr "Wyślij zgłoszenie"
-
-#: mod/filer.php:34
-msgid "- select -"
-msgstr "- wybierz -"
-
-#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814
-msgid "l F d, Y \\@ g:i A"
-msgstr ""
-
-#: mod/localtime.php:33
-msgid "Time Conversion"
-msgstr "Zmiana czasu"
-
-#: mod/localtime.php:35
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica udostępnia tę usługę do udostępniania wydarzeń innym sieciom i znajomym w nieznanych strefach czasowych."
-
-#: mod/localtime.php:39
-#, php-format
-msgid "UTC time: %s"
-msgstr "Czas UTC %s"
-
-#: mod/localtime.php:42
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Obecna strefa czasowa: %s"
-
-#: mod/localtime.php:46
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Zmień strefę czasową: %s"
-
-#: mod/localtime.php:52
-msgid "Please select your timezone:"
-msgstr "Wybierz swoją strefę czasową:"
-
-#: mod/notify.php:77
-msgid "No more system notifications."
-msgstr "Nie ma więcej powiadomień systemowych."
-
-#: mod/ping.php:292
-msgid "{0} wants to be your friend"
-msgstr "{0} chce być Twoim znajomym"
-
-#: mod/ping.php:307
-msgid "{0} sent you a message"
-msgstr "{0} wysłałem Ci wiadomość"
-
-#: mod/ping.php:322
-msgid "{0} requested registration"
-msgstr "{0} wymagana rejestracja"
-
-#: 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 "Odbiorca"
-
-#: mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Wybierz, co chcesz zrobić"
-
-#: mod/poke.php:198
-msgid "Make this post private"
-msgstr "Ustaw ten post jako prywatny"
-
-#: mod/probe.php:14 mod/webfinger.php:17
-msgid "Only logged in users are permitted to perform a probing."
-msgstr "Tylko zalogowani użytkownicy mogą wykonywać sondowanie."
-
-#: mod/profperm.php:28 mod/group.php:83 index.php:443
-msgid "Permission denied"
-msgstr "Odmowa dostępu"
-
-#: mod/profperm.php:34 mod/profperm.php:65
-msgid "Invalid profile identifier."
-msgstr "Nieprawidłowa nazwa użytkownika."
-
-#: mod/profperm.php:111
-msgid "Profile Visibility Editor"
-msgstr "Ustawienia widoczności profilu"
-
-#: mod/profperm.php:115 mod/group.php:265
-msgid "Click on a contact to add or remove."
-msgstr "Kliknij na kontakt w celu dodania lub usunięcia."
-
-#: mod/profperm.php:124
-msgid "Visible To"
-msgstr "Widoczne dla"
-
-#: mod/profperm.php:140
-msgid "All Contacts (with secure profile access)"
-msgstr "Wszystkie kontakty (z bezpiecznym dostępem do profilu)"
-
-#: mod/regmod.php:68
-msgid "Account approved."
-msgstr "Konto zatwierdzone."
-
-#: mod/regmod.php:93
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Rejestracja odwołana dla %s"
-
-#: mod/regmod.php:102
-msgid "Please login."
-msgstr "Proszę się zalogować."
-
-#: mod/search.php:37 mod/network.php:194
+#: mod/network.php:194 mod/search.php:37
msgid "Remove term"
msgstr "Usuń wpis"
-#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100
-msgid "Saved Searches"
-msgstr "Zapisane wyszukiwania"
-
-#: mod/search.php:105
-msgid "Only logged in users are permitted to perform a search."
-msgstr "Tylko zalogowani użytkownicy mogą wyszukiwać."
-
-#: mod/search.php:129
-msgid "Too Many Requests"
-msgstr "Zbyt dużo próśb"
-
-#: mod/search.php:130
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr "Dla niezalogowanych użytkowników dozwolone jest tylko jedno wyszukiwanie na minutę."
-
-#: mod/search.php:228 mod/community.php:136
-msgid "No results."
-msgstr "Brak wyników."
-
-#: mod/search.php:234
+#: mod/network.php:547
#, php-format
-msgid "Items tagged with: %s"
-msgstr "Przedmioty oznaczone tagiem: %s"
+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 a network that doesn't allow "
+"non public messages."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
-#: mod/search.php:236 mod/contacts.php:819
+#: mod/network.php:550
+msgid "Messages in this group won't be send to these receivers."
+msgstr "Wiadomości z tej grupy nie będą wysyłane do tych odbiorców."
+
+#: mod/network.php:618
+msgid "No such group"
+msgstr "Nie ma takiej grupy"
+
+#: mod/network.php:639 mod/group.php:216
+msgid "Group is empty"
+msgstr "Grupa jest pusta"
+
+#: mod/network.php:643
#, php-format
-msgid "Results for: %s"
-msgstr "Wyniki dla: %s"
+msgid "Group: %s"
+msgstr "Grupa: %s"
+
+#: mod/network.php:669
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione "
+
+#: mod/network.php:672
+msgid "Invalid contact."
+msgstr "Nieprawidłowy kontakt."
+
+#: mod/network.php:936
+msgid "Commented Order"
+msgstr "Porządek według komentarzy"
+
+#: mod/network.php:939
+msgid "Sort by Comment Date"
+msgstr "Sortuj według daty komentarza"
+
+#: mod/network.php:944
+msgid "Posted Order"
+msgstr "Porządek według wpisów"
+
+#: mod/network.php:947
+msgid "Sort by Post Date"
+msgstr "Sortuj według daty postów"
+
+#: mod/network.php:958
+msgid "Posts that mention or involve you"
+msgstr "Posty, które wspominają lub angażują Ciebie"
+
+#: mod/network.php:966
+msgid "New"
+msgstr "Nowy"
+
+#: mod/network.php:969
+msgid "Activity Stream - by date"
+msgstr "Strumień aktywności - według daty"
+
+#: mod/network.php:977
+msgid "Shared Links"
+msgstr "Udostępnione łącza"
+
+#: mod/network.php:980
+msgid "Interesting Links"
+msgstr "Interesujące linki"
+
+#: mod/network.php:988
+msgid "Starred"
+msgstr "Ulubione"
+
+#: mod/network.php:991
+msgid "Favourite Posts"
+msgstr "Ulubione posty"
+
+#: mod/friendica.php:77
+msgid "This is Friendica, version"
+msgstr "To jest Friendica, wersja"
+
+#: mod/friendica.php:78
+msgid "running at web location"
+msgstr "otwierane na serwerze"
+
+#: mod/friendica.php:82
+msgid ""
+"Please visit Friendi.ca to learn more "
+"about the Friendica project."
+msgstr "Odwiedź stronę Friendi.ca aby dowiedzieć się więcej o projekcie Friendica."
+
+#: mod/friendica.php:86
+msgid "Bug reports and issues: please visit"
+msgstr "Raporty o błędach i problemy: odwiedź stronę"
+
+#: mod/friendica.php:86
+msgid "the bugtracker at github"
+msgstr "bugtracker na github"
+
+#: mod/friendica.php:89
+msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
+msgstr "Sugestie, pochwały itp. - napisz e-mail \"info\" na \"friendi - kropka - ca"
+
+#: mod/friendica.php:103
+msgid "Installed addons/apps:"
+msgstr "Zainstalowane dodatki/aplikacje:"
+
+#: mod/friendica.php:117
+msgid "No installed addons/apps"
+msgstr "Brak zainstalowanych dodatków/aplikacji"
+
+#: mod/friendica.php:122
+#, php-format
+msgid "Read about the Terms of Service of this node."
+msgstr "Przeczytaj o Warunkach świadczenia usług tego węzła."
+
+#: mod/friendica.php:127
+msgid "On this server the following remote servers are blocked."
+msgstr "Na tym serwerze następujące serwery zdalne są blokowane."
+
+#: mod/friendica.php:128 mod/admin.php:354 mod/admin.php:372
+msgid "Reason for the block"
+msgstr "Powód blokowania"
#: mod/subthread.php:113
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr "%1$skolejny %2$s %3$s "
-#: mod/tagrm.php:47
-msgid "Tag removed"
-msgstr "Tag usunięty"
+#: mod/profiles.php:39 mod/profiles.php:149 mod/profiles.php:196
+#: mod/profiles.php:618 mod/dfrn_confirm.php:74
+msgid "Profile not found."
+msgstr "Nie znaleziono profilu."
-#: mod/tagrm.php:85
-msgid "Remove Item Tag"
-msgstr "Usuń pozycję Tag"
+#: mod/profiles.php:58
+msgid "Profile deleted."
+msgstr "Konto usunięte."
-#: mod/tagrm.php:87
-msgid "Select a tag to remove: "
-msgstr "Wybierz tag do usunięcia"
+#: mod/profiles.php:74 mod/profiles.php:110
+msgid "Profile-"
+msgstr "Profil-"
-#: mod/tagrm.php:98 mod/delegate.php:177
-msgid "Remove"
-msgstr "Usuń"
+#: mod/profiles.php:93 mod/profiles.php:132
+msgid "New profile created."
+msgstr "Utworzono nowy profil."
-#: mod/uexport.php:44
-msgid "Export account"
-msgstr "Eksportuj konto"
+#: mod/profiles.php:116
+msgid "Profile unavailable to clone."
+msgstr "Nie można powileić profilu "
-#: mod/uexport.php:44
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Eksportuj informacje o swoim koncie i kontaktach. Użyj tego do utworzenia kopii zapasowej konta i/lub przeniesienia go na inny serwer."
+#: mod/profiles.php:206
+msgid "Profile Name is required."
+msgstr "Nazwa Profilu jest wymagana"
-#: mod/uexport.php:45
-msgid "Export all"
-msgstr "Eksportuj wszystko"
+#: mod/profiles.php:347
+msgid "Marital Status"
+msgstr "Stan cywilny"
-#: mod/uexport.php:45
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Wyeksportuj informacje o koncie, kontaktach i wszystkie swoje pozycje jako json. Może to być bardzo duży plik i może zająć dużo czasu. Użyj tej opcji, aby utworzyć pełną kopię zapasową swojego konta (zdjęcia nie są eksportowane)"
+#: mod/profiles.php:351
+msgid "Romantic Partner"
+msgstr "Romantyczny partner"
-#: mod/uexport.php:52 mod/settings.php:107
-msgid "Export personal data"
-msgstr "Eksportuje dane personalne"
+#: mod/profiles.php:363
+msgid "Work/Employment"
+msgstr "Praca/Zatrudnienie"
-#: mod/viewcontacts.php:87
-msgid "No contacts."
-msgstr "brak kontaktów"
+#: mod/profiles.php:366
+msgid "Religion"
+msgstr "Religia"
-#: mod/viewsrc.php:12
-msgid "Access denied."
-msgstr "Brak dostępu"
+#: mod/profiles.php:370
+msgid "Political Views"
+msgstr "Poglądy polityczne"
-#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766
-#: mod/photos.php:795 mod/profile_photo.php:153
+#: mod/profiles.php:374
+msgid "Gender"
+msgstr "Płeć"
+
+#: mod/profiles.php:378
+msgid "Sexual Preference"
+msgstr "Orientacja seksualna"
+
+#: mod/profiles.php:382
+msgid "XMPP"
+msgstr "XMPP"
+
+#: mod/profiles.php:386
+msgid "Homepage"
+msgstr "Strona Główna"
+
+#: mod/profiles.php:390 mod/profiles.php:686
+msgid "Interests"
+msgstr "Zainteresowania"
+
+#: mod/profiles.php:394 mod/admin.php:490
+msgid "Address"
+msgstr "Adres"
+
+#: mod/profiles.php:401 mod/profiles.php:682
+msgid "Location"
+msgstr "Lokalizacja"
+
+#: mod/profiles.php:486
+msgid "Profile updated."
+msgstr "Profil zaktualizowany."
+
+#: mod/profiles.php:564
+msgid " and "
+msgstr " i "
+
+#: mod/profiles.php:573
+msgid "public profile"
+msgstr "profil publiczny"
+
+#: mod/profiles.php:576
#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "Obraz przekracza limit rozmiaru wynoszący %s"
+msgid "%1$s changed %2$s to “%3$s”"
+msgstr "%1$szmienione %2$s na “%3$s”"
-#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162
-msgid "Unable to process image."
-msgstr "Przetwarzanie obrazu nie powiodło się."
-
-#: mod/wall_upload.php:231 mod/item.php:471 src/Object/Image.php:953
-#: src/Object/Image.php:969 src/Object/Image.php:977 src/Object/Image.php:1002
-msgid "Wall Photos"
-msgstr "Tablica zdjęć"
-
-#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307
-msgid "Image upload failed."
-msgstr "Przesyłanie obrazu nie powiodło się"
-
-#: mod/wallmessage.php:49 mod/wallmessage.php:112
+#: mod/profiles.php:577
#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Dzienny limit wiadomości %s został przekroczony. Wiadomość została odrzucona."
+msgid " - Visit %1$s's %2$s"
+msgstr " - Odwiedź %1$s's %2$s"
-#: mod/wallmessage.php:57 mod/message.php:73
-msgid "No recipient selected."
-msgstr "Nie wybrano odbiorcy."
-
-#: mod/wallmessage.php:60
-msgid "Unable to check your home location."
-msgstr "Nie można sprawdzić twojej lokalizacji."
-
-#: mod/wallmessage.php:63 mod/message.php:80
-msgid "Message could not be sent."
-msgstr "Wiadomość nie może zostać wysłana"
-
-#: mod/wallmessage.php:66 mod/message.php:83
-msgid "Message collection failure."
-msgstr "Błąd zbierania komunikatów."
-
-#: mod/wallmessage.php:69 mod/message.php:86
-msgid "Message sent."
-msgstr "Wysłano."
-
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Brak odbiorcy."
-
-#: mod/wallmessage.php:132 mod/message.php:250
-msgid "Send Private Message"
-msgstr "Wyślij prywatną wiadomość"
-
-#: mod/wallmessage.php:133
+#: mod/profiles.php:579
#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$sma zaktualizowany %2$s, zmiana%3$s."
+
+#: mod/profiles.php:633
+msgid "Hide contacts and friends:"
+msgstr "Ukryj kontakty i znajomych:"
+
+#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661
+#: mod/api.php:111 mod/settings.php:1105 mod/settings.php:1111
+#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1126
+#: mod/settings.php:1130 mod/settings.php:1134 mod/settings.php:1138
+#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
+#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:653
+#: mod/follow.php:150 mod/register.php:238
+msgid "No"
+msgstr "Nie"
+
+#: mod/profiles.php:638
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?"
+
+#: mod/profiles.php:658
+msgid "Show more profile fields:"
+msgstr "Pokaż więcej pól profilu:"
+
+#: mod/profiles.php:670
+msgid "Profile Actions"
+msgstr "Akcje profilowe"
+
+#: mod/profiles.php:671
+msgid "Edit Profile Details"
+msgstr "Edytuj profil."
+
+#: mod/profiles.php:673
+msgid "Change Profile Photo"
+msgstr "Zmień zdjęcie profilowe"
+
+#: mod/profiles.php:674
+msgid "View this profile"
+msgstr "Wyświetl ten profil"
+
+#: mod/profiles.php:676
+msgid "Create a new profile using these settings"
+msgstr "Stwórz nowy profil wykorzystując te ustawienia"
+
+#: mod/profiles.php:677
+msgid "Clone this profile"
+msgstr "Sklonuj ten profil"
+
+#: mod/profiles.php:678
+msgid "Delete this profile"
+msgstr "Usuń ten profil"
+
+#: mod/profiles.php:680
+msgid "Basic information"
+msgstr "Podstawowe informacje"
+
+#: mod/profiles.php:681
+msgid "Profile picture"
+msgstr "Zdjęcie profilowe"
+
+#: mod/profiles.php:683
+msgid "Preferences"
+msgstr "Preferencje"
+
+#: mod/profiles.php:684
+msgid "Status information"
+msgstr "Informacje o stanie"
+
+#: mod/profiles.php:685
+msgid "Additional information"
+msgstr "Dodatkowe informacje"
+
+#: mod/profiles.php:688
+msgid "Relation"
+msgstr "Relacje"
+
+#: mod/profiles.php:692
+msgid "Your Gender:"
+msgstr "Płeć:"
+
+#: mod/profiles.php:693
+msgid "♥ Marital Status:"
+msgstr "♥ Stan cywilny:"
+
+#: mod/profiles.php:695
+msgid "Example: fishing photography software"
+msgstr "Przykład: oprogramowanie do fotografowania ryb"
+
+#: mod/profiles.php:700
+msgid "Profile Name:"
+msgstr "Nazwa profilu:"
+
+#: mod/profiles.php:700 mod/events.php:508 mod/events.php:520
+msgid "Required"
+msgstr "Wymagany"
+
+#: mod/profiles.php:702
msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców."
+"This is your public profile. It may "
+"be visible to anybody using the internet."
+msgstr "To jest Twój publiczny profil. Może zostać wyświetlony przez każdego kto używa internetu."
-#: mod/wallmessage.php:134 mod/message.php:251 mod/message.php:421
-msgid "To:"
-msgstr "Do:"
+#: mod/profiles.php:703
+msgid "Your Full Name:"
+msgstr "Imię i Nazwisko:"
-#: mod/wallmessage.php:135 mod/message.php:255 mod/message.php:423
-msgid "Subject:"
-msgstr "Temat:"
+#: mod/profiles.php:704
+msgid "Title/Description:"
+msgstr "Tytuł/Opis :"
-#: mod/wallmessage.php:141 mod/message.php:259 mod/message.php:426
-#: mod/invite.php:149
-msgid "Your message:"
-msgstr "Twoja wiadomość:"
+#: mod/profiles.php:707
+msgid "Street Address:"
+msgstr "Ulica:"
-#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:312
-msgid "Login"
-msgstr "Login"
+#: mod/profiles.php:708
+msgid "Locality/City:"
+msgstr "Miejscowość/Miasto:"
-#: mod/bookmarklet.php:51
-msgid "The post was created"
-msgstr "Post został utworzony"
+#: mod/profiles.php:709
+msgid "Region/State:"
+msgstr "Region/Państwo:"
-#: mod/community.php:46
-msgid "Community option not available."
-msgstr "Opcja wspólnotowa jest niedostępna."
+#: mod/profiles.php:710
+msgid "Postal/Zip Code:"
+msgstr "Kod Pocztowy:"
-#: mod/community.php:63
-msgid "Not available."
-msgstr "Niedostępne."
+#: mod/profiles.php:711
+msgid "Country:"
+msgstr "Kraj:"
-#: mod/community.php:76
-msgid "Local Community"
-msgstr "Lokalna społeczność"
+#: mod/profiles.php:715
+msgid "Who: (if applicable)"
+msgstr "Kto: (jeśli dotyczy)"
-#: mod/community.php:79
-msgid "Posts from local users on this server"
-msgstr "Wpisy od lokalnych użytkowników na tym serwerze"
+#: mod/profiles.php:715
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Przykłady: cathy123, Cathy Williams, cathy@example.com"
-#: mod/community.php:87
-msgid "Global Community"
-msgstr "Globalna społeczność"
+#: mod/profiles.php:716
+msgid "Since [date]:"
+msgstr "Od [data]:"
-#: mod/community.php:90
-msgid "Posts from users of the whole federated network"
-msgstr "Wpisy od użytkowników całej sieci stowarzyszonej"
+#: mod/profiles.php:718
+msgid "Tell us about yourself..."
+msgstr "Napisz o sobie..."
-#: mod/community.php:180
+#: mod/profiles.php:719
+msgid "XMPP (Jabber) address:"
+msgstr "Adres XMPP (Jabber):"
+
+#: mod/profiles.php:719
msgid ""
-"This community stream shows all public posts received by this node. They may"
-" not reflect the opinions of this node’s users."
-msgstr "Ten strumień społeczności pokazuje wszystkie publiczne posty otrzymane przez ten węzeł. Mogą nie odzwierciedlać opinii użytkowników tego węzła."
+"The XMPP address will be propagated to your contacts so that they can follow"
+" you."
+msgstr "Adres XMPP będzie propagowany do Twoich kontaktów, aby mogli Cię śledzić."
-#: mod/editpost.php:25 mod/editpost.php:35
-msgid "Item not found"
-msgstr "Nie znaleziono elementu"
+#: mod/profiles.php:720
+msgid "Homepage URL:"
+msgstr "Adres URL strony domowej:"
-#: mod/editpost.php:42
-msgid "Edit post"
-msgstr "Edytuj post"
+#: mod/profiles.php:723
+msgid "Religious Views:"
+msgstr "Poglądy religijne:"
-#: mod/editpost.php:134 src/Core/ACL.php:315
-msgid "CC: email addresses"
-msgstr "CC: adresy e-mail"
+#: mod/profiles.php:724
+msgid "Public Keywords:"
+msgstr "Publiczne słowa kluczowe:"
-#: mod/editpost.php:141 src/Core/ACL.php:316
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Przykład: bob@example.com, mary@example.com"
+#: mod/profiles.php:724
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)"
+
+#: mod/profiles.php:725
+msgid "Private Keywords:"
+msgstr "Prywatne słowa kluczowe:"
+
+#: mod/profiles.php:725
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Używany do wyszukiwania profili, niepokazywany innym)"
+
+#: mod/profiles.php:728
+msgid "Musical interests"
+msgstr "Muzyka"
+
+#: mod/profiles.php:729
+msgid "Books, literature"
+msgstr "Literatura"
+
+#: mod/profiles.php:730
+msgid "Television"
+msgstr "Telewizja"
+
+#: mod/profiles.php:731
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/taniec/kultura/rozrywka"
+
+#: mod/profiles.php:732
+msgid "Hobbies/Interests"
+msgstr "Zainteresowania"
+
+#: mod/profiles.php:733
+msgid "Love/romance"
+msgstr "Miłość/romans"
+
+#: mod/profiles.php:734
+msgid "Work/employment"
+msgstr "Praca/zatrudnienie"
+
+#: mod/profiles.php:735
+msgid "School/education"
+msgstr "Szkoła/edukacja"
+
+#: mod/profiles.php:736
+msgid "Contact information and Social Networks"
+msgstr "Dane kontaktowe i Sieci społecznościowe"
+
+#: mod/profiles.php:776
+msgid "Edit/Manage Profiles"
+msgstr "Edycja/Zarządzanie profilami"
+
+#: mod/events.php:105 mod/events.php:107
+msgid "Event can not end before it has started."
+msgstr "Wydarzenie nie może się zakończyć przed jego rozpoczęciem."
+
+#: mod/events.php:114 mod/events.php:116
+msgid "Event title and start time are required."
+msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia."
+
+#: mod/events.php:392 mod/cal.php:275
+msgid "View"
+msgstr "Widok"
+
+#: mod/events.php:393
+msgid "Create New Event"
+msgstr "Stwórz nowe wydarzenie"
+
+#: mod/events.php:394 mod/cal.php:276
+msgid "Previous"
+msgstr "Poprzedni"
+
+#: mod/events.php:395 mod/cal.php:277 mod/install.php:209
+msgid "Next"
+msgstr "Następny"
+
+#: mod/events.php:404 mod/cal.php:284
+msgid "list"
+msgstr "lista"
+
+#: mod/events.php:506
+msgid "Event details"
+msgstr "Szczegóły wydarzenia"
+
+#: mod/events.php:507
+msgid "Starting date and Title are required."
+msgstr "Data rozpoczęcia i tytuł są wymagane."
+
+#: mod/events.php:508 mod/events.php:509
+msgid "Event Starts:"
+msgstr "Rozpoczęcie wydarzenia:"
+
+#: mod/events.php:510 mod/events.php:526
+msgid "Finish date/time is not known or not relevant"
+msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna"
+
+#: mod/events.php:512 mod/events.php:513
+msgid "Event Finishes:"
+msgstr "Zakończenie wydarzenia:"
+
+#: mod/events.php:514 mod/events.php:527
+msgid "Adjust for viewer timezone"
+msgstr "Dopasuj dla strefy czasowej widza"
+
+#: mod/events.php:516
+msgid "Description:"
+msgstr "Opis:"
+
+#: mod/events.php:520 mod/events.php:522
+msgid "Title:"
+msgstr "Tytuł:"
+
+#: mod/events.php:523 mod/events.php:524
+msgid "Share this event"
+msgstr "Udostępnij te wydarzenie"
+
+#: mod/events.php:552
+msgid "Failed to remove event"
+msgstr "Nie udało się usunąć wydarzenia"
+
+#: mod/events.php:554
+msgid "Event removed"
+msgstr "Wydarzenie zostało usunięte"
+
+#: mod/notify.php:77
+msgid "No more system notifications."
+msgstr "Nie ma więcej powiadomień systemowych."
+
+#: mod/notify.php:81 mod/notifications.php:113
+msgid "System Notifications"
+msgstr "Powiadomienia systemowe"
+
+#: mod/fsuggest.php:30 mod/fsuggest.php:96 mod/crepair.php:110
+#: mod/dfrn_confirm.php:131
+msgid "Contact not found."
+msgstr "Kontakt nie znaleziony"
#: mod/fsuggest.php:72
msgid "Friend suggestion sent."
@@ -2611,6 +4357,959 @@ msgstr "Proponuję znajomych"
msgid "Suggest a friend for %s"
msgstr "Zaproponuj znajomych dla %s"
+#: mod/attach.php:15
+msgid "Item not available."
+msgstr "Element niedostępny."
+
+#: mod/attach.php:25
+msgid "Item was not found."
+msgstr "Element nie znaleziony."
+
+#: mod/allfriends.php:51
+msgid "No friends to display."
+msgstr "Brak znajomych do wyświetlenia"
+
+#: mod/viewcontacts.php:87
+msgid "No contacts."
+msgstr "brak kontaktów"
+
+#: mod/viewcontacts.php:112 mod/nogroup.php:42 mod/contacts.php:619
+#: mod/contacts.php:959
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Obejrzyj %s's profil [%s]"
+
+#: mod/ostatus_subscribe.php:21
+msgid "Subscribing to OStatus contacts"
+msgstr "Subskrybowanie kontaktów OStatus"
+
+#: mod/ostatus_subscribe.php:33
+msgid "No contact provided."
+msgstr "Brak kontaktu."
+
+#: mod/ostatus_subscribe.php:40
+msgid "Couldn't fetch information for contact."
+msgstr "Nie można pobrać informacji o kontakcie."
+
+#: mod/ostatus_subscribe.php:50
+msgid "Couldn't fetch friends for contact."
+msgstr "Nie można pobrać znajomych do kontaktu."
+
+#: mod/ostatus_subscribe.php:78
+msgid "success"
+msgstr "powodzenie"
+
+#: mod/ostatus_subscribe.php:80
+msgid "failed"
+msgstr "nie powiodło się"
+
+#: mod/api.php:85 mod/api.php:107
+msgid "Authorize application connection"
+msgstr "Autoryzacja połączenia aplikacji"
+
+#: mod/api.php:86
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:"
+
+#: mod/api.php:95
+msgid "Please login to continue."
+msgstr "Zaloguj się aby kontynuować."
+
+#: mod/api.php:109
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Czy chcesz zezwolić tej aplikacji na dostęp do swoich postów i kontaktów i/lub tworzenie nowych postów?"
+
+#: mod/settings.php:50 mod/photos.php:126
+msgid "everybody"
+msgstr "wszyscy"
+
+#: mod/settings.php:55
+msgid "Account"
+msgstr "Konto"
+
+#: mod/settings.php:64 mod/admin.php:187
+msgid "Additional features"
+msgstr "Dodatkowe funkcje"
+
+#: mod/settings.php:72
+msgid "Display"
+msgstr "Wyświetlanie"
+
+#: mod/settings.php:79 mod/settings.php:842
+msgid "Social Networks"
+msgstr "Portale społecznościowe"
+
+#: mod/settings.php:86 mod/admin.php:185 mod/admin.php:1918 mod/admin.php:1978
+msgid "Addons"
+msgstr "Dodatki"
+
+#: mod/settings.php:100
+msgid "Connected apps"
+msgstr "Powiązane aplikacje"
+
+#: mod/settings.php:107 mod/uexport.php:52
+msgid "Export personal data"
+msgstr "Eksportuje dane personalne"
+
+#: mod/settings.php:114
+msgid "Remove account"
+msgstr "Usuń konto"
+
+#: mod/settings.php:168
+msgid "Missing some important data!"
+msgstr "Brakuje ważnych danych!"
+
+#: mod/settings.php:170 mod/settings.php:701 mod/contacts.php:826
+msgid "Update"
+msgstr "Zaktualizuj"
+
+#: mod/settings.php:279
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się."
+
+#: mod/settings.php:284
+msgid "Email settings updated."
+msgstr "Zaktualizowano ustawienia email."
+
+#: mod/settings.php:300
+msgid "Features updated"
+msgstr "Funkcje zaktualizowane"
+
+#: mod/settings.php:372
+msgid "Relocate message has been send to your contacts"
+msgstr "Przeniesienie wiadomości zostało wysłane do Twoich kontaktów"
+
+#: mod/settings.php:389
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Puste hasła są niedozwolone. Hasło niezmienione."
+
+#: mod/settings.php:400
+msgid "Wrong password."
+msgstr "Złe hasło."
+
+#: mod/settings.php:496
+msgid " Please use a shorter name."
+msgstr "Proszę użyć krótszej nazwy."
+
+#: mod/settings.php:499
+msgid " Name too short."
+msgstr "Za krótka nazwa."
+
+#: mod/settings.php:507
+msgid "Wrong Password"
+msgstr "Złe hasło"
+
+#: mod/settings.php:512
+msgid "Invalid email."
+msgstr "Niepoprawny e-mail."
+
+#: mod/settings.php:519
+msgid "Cannot change to that email."
+msgstr "Nie można zmienić tego e-maila."
+
+#: mod/settings.php:572
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr "Prywatne forum nie ma uprawnień do prywatności. Użyj domyślnej grupy prywatnej."
+
+#: mod/settings.php:575
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr "Prywatne forum nie ma uprawnień do prywatności ani domyślnej grupy prywatności."
+
+#: mod/settings.php:615
+msgid "Settings updated."
+msgstr "Zaktualizowano ustawienia."
+
+#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
+msgid "Add application"
+msgstr "Dodaj aplikację"
+
+#: mod/settings.php:675 mod/settings.php:784 mod/settings.php:872
+#: mod/settings.php:961 mod/settings.php:1194 mod/admin.php:307
+#: mod/admin.php:1346 mod/admin.php:1979 mod/admin.php:2232 mod/admin.php:2306
+#: mod/admin.php:2453 mod/delegate.php:168
+msgid "Save Settings"
+msgstr "Zapisz ustawienia"
+
+#: mod/settings.php:677 mod/settings.php:703 mod/admin.php:490
+#: mod/admin.php:1796 mod/admin.php:1807 mod/admin.php:1820 mod/admin.php:1836
+#: mod/crepair.php:158
+msgid "Name"
+msgstr "Nazwa"
+
+#: mod/settings.php:678 mod/settings.php:704
+msgid "Consumer Key"
+msgstr "Klucz klienta"
+
+#: mod/settings.php:679 mod/settings.php:705
+msgid "Consumer Secret"
+msgstr "Tajny klucz klienta"
+
+#: mod/settings.php:680 mod/settings.php:706
+msgid "Redirect"
+msgstr "Przekierowanie"
+
+#: mod/settings.php:681 mod/settings.php:707
+msgid "Icon url"
+msgstr "Adres Url ikony"
+
+#: mod/settings.php:692
+msgid "You can't edit this application."
+msgstr "Nie możesz edytować tej aplikacji."
+
+#: mod/settings.php:735
+msgid "Connected Apps"
+msgstr "Powiązane aplikacje"
+
+#: mod/settings.php:739
+msgid "Client key starts with"
+msgstr "Klucz klienta zaczyna się od"
+
+#: mod/settings.php:740
+msgid "No name"
+msgstr "Bez nazwy"
+
+#: mod/settings.php:741
+msgid "Remove authorization"
+msgstr "Odwołaj upoważnienie"
+
+#: mod/settings.php:752
+msgid "No Addon settings configured"
+msgstr "Brak skonfigurowanych ustawień Dodatków"
+
+#: mod/settings.php:761
+msgid "Addon Settings"
+msgstr "Ustawienia Dodatków"
+
+#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443
+msgid "Off"
+msgstr "Wyłącz"
+
+#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443
+msgid "On"
+msgstr "Włącz"
+
+#: mod/settings.php:782
+msgid "Additional Features"
+msgstr "Dodatkowe funkcje"
+
+#: mod/settings.php:805 mod/settings.php:806
+msgid "enabled"
+msgstr "włączony"
+
+#: mod/settings.php:805 mod/settings.php:806
+msgid "disabled"
+msgstr "wyłączony"
+
+#: mod/settings.php:805 mod/settings.php:806
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr "Wbudowane wsparcie dla %s łączność jest %s"
+
+#: mod/settings.php:806
+msgid "GNU Social (OStatus)"
+msgstr "GNU Społeczny (OStatus)"
+
+#: mod/settings.php:837
+msgid "Email access is disabled on this site."
+msgstr "Dostęp do e-maila nie jest w pełni sprawny na tej stronie"
+
+#: mod/settings.php:847
+msgid "General Social Media Settings"
+msgstr "Ogólne ustawienia mediów społecznościowych"
+
+#: mod/settings.php:848
+msgid "Disable Content Warning"
+msgstr "Wyłącz ostrzeżenie o treści"
+
+#: mod/settings.php:848
+msgid ""
+"Users on networks like Mastodon or Pleroma are able to set a content warning"
+" field which collapse their post by default. This disables the automatic "
+"collapsing and sets the content warning as the post title. Doesn't affect "
+"any other content filtering you eventually set up."
+msgstr "Użytkownicy w sieciach takich jak Mastodon lub Pleroma mogą ustawić pole ostrzeżenia o treści, które domyślnie zwijać będzie swój wpis. Powoduje wyłączenie automatycznego zwijania i ustawia ostrzeżenie o treści jako tytuł postu. Nie ma wpływu na żadne inne filtrowanie treści, które ostatecznie utworzyłeś."
+
+#: mod/settings.php:849
+msgid "Disable intelligent shortening"
+msgstr "Wyłącz inteligentne skracanie"
+
+#: mod/settings.php:849
+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 "Zwykle system próbuje znaleźć najlepszy link do dodania do skróconych postów. Jeśli ta opcja jest włączona, każdy skrócony wpis zawsze wskazuje oryginalny post znajomej osoby."
+
+#: mod/settings.php:850
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+msgstr "Automatycznie podążaj za wszystkimi obserwatorami/rzecznikami GNU Społeczności (OStatus)"
+
+#: mod/settings.php:850
+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 "Jeśli otrzymasz wiadomość od nieznanego użytkownika OStatus, ta opcja decyduje, co zrobić. Jeśli zostanie zaznaczone, dla każdego nieznanego użytkownika zostanie utworzony nowy kontakt."
+
+#: mod/settings.php:851
+msgid "Default group for OStatus contacts"
+msgstr "Domyślna grupa dla kontaktów OStatus"
+
+#: mod/settings.php:852
+msgid "Your legacy GNU Social account"
+msgstr "Twoje starsze konto społecznościowe GNU"
+
+#: mod/settings.php:852
+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 "Jeśli podasz swoją starą nazwę konta GNU Social/Statusnet tutaj (w formacie user@domain.tld), twoje kontakty zostaną dodane automatycznie. Pole zostanie opróżnione po zakończeniu."
+
+#: mod/settings.php:855
+msgid "Repair OStatus subscriptions"
+msgstr "Napraw subskrypcje OStatus"
+
+#: mod/settings.php:859
+msgid "Email/Mailbox Setup"
+msgstr "Ustawienia emaila/skrzynki mailowej"
+
+#: mod/settings.php:860
+msgid ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
+msgstr "Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową."
+
+#: mod/settings.php:861
+msgid "Last successful email check:"
+msgstr "Ostatni sprawdzony e-mail:"
+
+#: mod/settings.php:863
+msgid "IMAP server name:"
+msgstr "Nazwa serwera IMAP:"
+
+#: mod/settings.php:864
+msgid "IMAP port:"
+msgstr "Port IMAP:"
+
+#: mod/settings.php:865
+msgid "Security:"
+msgstr "Ochrona:"
+
+#: mod/settings.php:865 mod/settings.php:870
+msgid "None"
+msgstr "Brak"
+
+#: mod/settings.php:866
+msgid "Email login name:"
+msgstr "Nazwa logowania e-mail:"
+
+#: mod/settings.php:867
+msgid "Email password:"
+msgstr "E-mail hasło:"
+
+#: mod/settings.php:868
+msgid "Reply-to address:"
+msgstr "Adres zwrotny:"
+
+#: mod/settings.php:869
+msgid "Send public posts to all email contacts:"
+msgstr "Wyślij publiczny post do wszystkich kontaktów e-mail"
+
+#: mod/settings.php:870
+msgid "Action after import:"
+msgstr "Akcja po zaimportowaniu:"
+
+#: mod/settings.php:870
+msgid "Move to folder"
+msgstr "Przenieś do folderu"
+
+#: mod/settings.php:871
+msgid "Move to folder:"
+msgstr "Przenieś do folderu:"
+
+#: mod/settings.php:905 mod/admin.php:1236
+msgid "No special theme for mobile devices"
+msgstr "Brak specialnego motywu dla urządzeń mobilnych"
+
+#: mod/settings.php:914
+#, php-format
+msgid "%s - (Unsupported)"
+msgstr "%s - (Nieobsługiwane)"
+
+#: mod/settings.php:916
+#, php-format
+msgid "%s - (Experimental)"
+msgstr "%s- (Eksperymentalne)"
+
+#: mod/settings.php:959
+msgid "Display Settings"
+msgstr "Wyświetl ustawienia"
+
+#: mod/settings.php:965 mod/settings.php:989
+msgid "Display Theme:"
+msgstr "Wyświetl motyw:"
+
+#: mod/settings.php:966
+msgid "Mobile Theme:"
+msgstr "Motyw dla urządzeń mobilnych:"
+
+#: mod/settings.php:967
+msgid "Suppress warning of insecure networks"
+msgstr "Ukryj ostrzeżenie przed niebezpiecznymi sieciami"
+
+#: mod/settings.php:967
+msgid ""
+"Should the system suppress the warning that the current group contains "
+"members of networks that can't receive non public postings."
+msgstr "System powinien pominąć ostrzeżenie, że bieżąca grupa zawiera członków sieci, którzy nie mogą otrzymywać komentarzy niepublicznych"
+
+#: mod/settings.php:968
+msgid "Update browser every xx seconds"
+msgstr "Odświeżaj stronę co xx sekund"
+
+#: mod/settings.php:968
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
+msgstr "Minimum 10 sekund. Wprowadź -1, aby go wyłączyć."
+
+#: mod/settings.php:969
+msgid "Number of items to display per page:"
+msgstr "Liczba elementów do wyświetlenia na stronie:"
+
+#: mod/settings.php:969 mod/settings.php:970
+msgid "Maximum of 100 items"
+msgstr "Maksymalnie 100 elementów"
+
+#: mod/settings.php:970
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr "Liczba elementów do wyświetlenia na stronie podczas przeglądania z urządzenia mobilnego:"
+
+#: mod/settings.php:971
+msgid "Don't show emoticons"
+msgstr "Nie pokazuj emotikonek"
+
+#: mod/settings.php:972
+msgid "Calendar"
+msgstr "Kalendarz"
+
+#: mod/settings.php:973
+msgid "Beginning of week:"
+msgstr "Początek tygodnia:"
+
+#: mod/settings.php:974
+msgid "Don't show notices"
+msgstr "Nie pokazuj powiadomień"
+
+#: mod/settings.php:975
+msgid "Infinite scroll"
+msgstr "Nieskończone przewijanie"
+
+#: mod/settings.php:976
+msgid "Automatic updates only at the top of the network page"
+msgstr "Automatyczne aktualizacje tylko u góry strony sieci"
+
+#: mod/settings.php:976
+msgid ""
+"When disabled, the network page is updated all the time, which could be "
+"confusing while reading."
+msgstr "Po wyłączeniu strona sieciowa jest cały czas aktualizowana, co może być mylące podczas czytania."
+
+#: mod/settings.php:977
+msgid "Bandwith Saver Mode"
+msgstr "Tryb oszczędzania przepustowości"
+
+#: mod/settings.php:977
+msgid ""
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
+msgstr "Po włączeniu wbudowana zawartość nie jest wyświetlana w automatycznych aktualizacjach, wyświetlają się tylko przy przeładowaniu strony."
+
+#: mod/settings.php:978
+msgid "Smart Threading"
+msgstr "Inteligentne gwintowanie"
+
+#: mod/settings.php:978
+msgid ""
+"When enabled, suppress extraneous thread indentation while keeping it where "
+"it matters. Only works if threading is available and enabled."
+msgstr "Włączenie tej opcji powoduje pomijanie wcięcia nitek zewnętrznych, zachowując je w dowolnym miejscu. Działa tylko wtedy, gdy wątki są dostępne i włączone."
+
+#: mod/settings.php:980
+msgid "General Theme Settings"
+msgstr "Ogólne ustawienia motywu"
+
+#: mod/settings.php:981
+msgid "Custom Theme Settings"
+msgstr "Niestandardowe ustawienia motywów"
+
+#: mod/settings.php:982
+msgid "Content Settings"
+msgstr "Ustawienia zawartości"
+
+#: mod/settings.php:983 view/theme/quattro/config.php:75
+#: view/theme/frio/config.php:115 view/theme/vier/config.php:121
+#: view/theme/duepuntozero/config.php:73
+msgid "Theme settings"
+msgstr "Ustawienia motywu"
+
+#: mod/settings.php:1002
+msgid "Unable to find your profile. Please contact your admin."
+msgstr "Nie można znaleźć Twojego profilu. Skontaktuj się z administratorem."
+
+#: mod/settings.php:1044
+msgid "Account Types"
+msgstr "Rodzaje kont"
+
+#: mod/settings.php:1045
+msgid "Personal Page Subtypes"
+msgstr "Podtypy osobistych stron"
+
+#: mod/settings.php:1046
+msgid "Community Forum Subtypes"
+msgstr "Podtypy społeczności forum"
+
+#: mod/settings.php:1053 mod/admin.php:1746
+msgid "Personal Page"
+msgstr "Strona osobista"
+
+#: mod/settings.php:1054
+msgid "Account for a personal profile."
+msgstr "Konto dla profilu osobistego."
+
+#: mod/settings.php:1057 mod/admin.php:1747
+msgid "Organisation Page"
+msgstr "Strona Organizacji"
+
+#: mod/settings.php:1058
+msgid ""
+"Account for an organisation that automatically approves contact requests as "
+"\"Followers\"."
+msgstr "Konto dla organizacji, która automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"."
+
+#: mod/settings.php:1061 mod/admin.php:1748
+msgid "News Page"
+msgstr "Strona Wiadomości"
+
+#: mod/settings.php:1062
+msgid ""
+"Account for a news reflector that automatically approves contact requests as"
+" \"Followers\"."
+msgstr "Konto dla reflektora wiadomości, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"."
+
+#: mod/settings.php:1065 mod/admin.php:1749
+msgid "Community Forum"
+msgstr "Forum społecznościowe"
+
+#: mod/settings.php:1066
+msgid "Account for community discussions."
+msgstr "Konto do dyskusji w społeczności."
+
+#: mod/settings.php:1069 mod/admin.php:1739
+msgid "Normal Account Page"
+msgstr "Normalna strona konta"
+
+#: mod/settings.php:1070
+msgid ""
+"Account for a regular personal profile that requires manual approval of "
+"\"Friends\" and \"Followers\"."
+msgstr "Konto dla zwykłego profilu osobistego, który wymaga ręcznej zgody \"Przyjaciół\" i \"Obserwatorów\"."
+
+#: mod/settings.php:1073 mod/admin.php:1740
+msgid "Soapbox Page"
+msgstr "Strona Soapbox"
+
+#: mod/settings.php:1074
+msgid ""
+"Account for a public profile that automatically approves contact requests as"
+" \"Followers\"."
+msgstr "Konto dla profilu publicznego, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"."
+
+#: mod/settings.php:1077 mod/admin.php:1741
+msgid "Public Forum"
+msgstr "Forum publiczne"
+
+#: mod/settings.php:1078
+msgid "Automatically approves all contact requests."
+msgstr "Automatycznie zatwierdza wszystkie prośby o kontakt."
+
+#: mod/settings.php:1081 mod/admin.php:1742
+msgid "Automatic Friend Page"
+msgstr "Automatyczna strona znajomego"
+
+#: mod/settings.php:1082
+msgid ""
+"Account for a popular profile that automatically approves contact requests "
+"as \"Friends\"."
+msgstr "Konto popularnego profilu, które automatycznie zatwierdza prośby o kontakt jako \"Przyjaciele\"."
+
+#: mod/settings.php:1085
+msgid "Private Forum [Experimental]"
+msgstr "Prywatne Forum [Eksperymentalne]"
+
+#: mod/settings.php:1086
+msgid "Requires manual approval of contact requests."
+msgstr "Wymaga ręcznego zatwierdzania żądań kontaktów."
+
+#: mod/settings.php:1097
+msgid "OpenID:"
+msgstr "OpenID:"
+
+#: mod/settings.php:1097
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Opcjonalnie) Pozwól zalogować się na to konto przy pomocy OpenID."
+
+#: mod/settings.php:1105
+msgid "Publish your default profile in your local site directory?"
+msgstr "Opublikować Twój domyślny profil w Twoim lokalnym katalogu stron?"
+
+#: mod/settings.php:1105
+#, php-format
+msgid ""
+"Your profile will be published in the global friendica directories (e.g. %s ). Your profile will be visible in public."
+msgstr "Twój profil zostanie opublikowany w globalnych katalogach friendica (np.%s ). Twój profil będzie widoczny publicznie."
+
+#: mod/settings.php:1111
+msgid "Publish your default profile in the global social directory?"
+msgstr "Opublikować Twój domyślny profil w globalnym, społecznościowym katalogu?"
+
+#: mod/settings.php:1111
+#, php-format
+msgid ""
+"Your profile will be published in this node's local "
+"directory . Your profile details may be publicly visible depending on the"
+" system settings."
+msgstr "Twój profil zostanie opublikowany w lokalnym katalogu tego węzła . Dane Twojego profilu mogą być publicznie widoczne w zależności od ustawień systemu."
+
+#: mod/settings.php:1118
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Ukryć listę znajomych przed odwiedzającymi Twój profil?"
+
+#: mod/settings.php:1118
+msgid ""
+"Your contact list won't be shown in your default profile page. You can "
+"decide to show your contact list separately for each additional profile you "
+"create"
+msgstr "Twoja lista kontaktów nie będzie wyświetlana na domyślnej stronie profilu. Możesz zdecydować o wyświetleniu listy kontaktów osobno dla każdego tworzonego dodatkowego profilu."
+
+#: mod/settings.php:1122
+msgid "Hide your profile details from anonymous viewers?"
+msgstr "Ukryć dane Twojego profilu przed anonimowymi widzami?"
+
+#: mod/settings.php:1122
+msgid ""
+"Anonymous visitors will only see your profile picture, your display name and"
+" the nickname you are using on your profile page. Disables posting public "
+"messages to Diaspora and other networks."
+msgstr "Anonimowi użytkownicy zobaczą tylko Twoje zdjęcie profilowe, Twoją wyświetlaną nazwę i pseudonim, którego używasz na stronie profilu. Wyłącza wysyłanie publicznych wiadomości do Diaspory i innych sieci."
+
+#: mod/settings.php:1126
+msgid "Allow friends to post to your profile page?"
+msgstr "Zezwalać znajomym na publikowanie postów na stronie Twojego profilu?"
+
+#: mod/settings.php:1126
+msgid ""
+"Your contacts may write posts on your profile wall. These posts will be "
+"distributed to your contacts"
+msgstr "Twoi znajomi mogą pisać posty na stronie Twojego profilu. Posty zostaną przesłane do Twoich kontaktów."
+
+#: mod/settings.php:1130
+msgid "Allow friends to tag your posts?"
+msgstr "Zezwolić na oznaczanie Twoich postów przez znajomych?"
+
+#: mod/settings.php:1130
+msgid "Your contacts can add additional tags to your posts."
+msgstr "Twoje kontakty mogą dodawać do tagów dodatkowe posty."
+
+#: mod/settings.php:1134
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Zezwolić na zaproponowanie Cię jako potencjalnego przyjaciela dla nowych członków?"
+
+#: mod/settings.php:1134
+msgid ""
+"If you like, Friendica may suggest new members to add you as a contact."
+msgstr "Jeśli chcesz, Friendica może zaproponować nowym członkom dodanie Cię jako kontakt."
+
+#: mod/settings.php:1138
+msgid "Permit unknown people to send you private mail?"
+msgstr "Zezwolić nieznanym osobom na wysyłanie prywatnych wiadomości?"
+
+#: mod/settings.php:1138
+msgid ""
+"Friendica network users may send you private messages even if they are not "
+"in your contact list."
+msgstr "Użytkownicy sieci w serwisie Friendica mogą wysyłać prywatne wiadomości, nawet jeśli nie znajdują się one na liście kontaktów."
+
+#: mod/settings.php:1142
+msgid "Profile is not published ."
+msgstr "Profil nie jest opublikowany "
+
+#: mod/settings.php:1148
+#, php-format
+msgid "Your Identity Address is '%s' or '%s'."
+msgstr "Twój adres tożsamości to '%s' lub '%s'."
+
+#: mod/settings.php:1155
+msgid "Automatically expire posts after this many days:"
+msgstr "Posty wygasną automatycznie po następującej liczbie dni:"
+
+#: mod/settings.php:1155
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte."
+
+#: mod/settings.php:1156
+msgid "Advanced expiration settings"
+msgstr "Zaawansowane ustawienia wygasania"
+
+#: mod/settings.php:1157
+msgid "Advanced Expiration"
+msgstr "Zaawansowane wygasanie"
+
+#: mod/settings.php:1158
+msgid "Expire posts:"
+msgstr "Wygasające posty:"
+
+#: mod/settings.php:1159
+msgid "Expire personal notes:"
+msgstr "Wygasanie osobistych notatek:"
+
+#: mod/settings.php:1160
+msgid "Expire starred posts:"
+msgstr "Wygasaj posty oznaczone gwiazdką:"
+
+#: mod/settings.php:1161
+msgid "Expire photos:"
+msgstr "Wygasanie zdjęć:"
+
+#: mod/settings.php:1162
+msgid "Only expire posts by others:"
+msgstr "Wygaszaj tylko te posty, które zostały napisane przez inne osoby:"
+
+#: mod/settings.php:1192
+msgid "Account Settings"
+msgstr "Ustawienia konta"
+
+#: mod/settings.php:1200
+msgid "Password Settings"
+msgstr "Ustawienia hasła"
+
+#: mod/settings.php:1201 mod/register.php:273
+msgid "New Password:"
+msgstr "Nowe hasło:"
+
+#: mod/settings.php:1202 mod/register.php:274
+msgid "Confirm:"
+msgstr "Potwierdź:"
+
+#: mod/settings.php:1202
+msgid "Leave password fields blank unless changing"
+msgstr "Pozostaw pole hasła puste, chyba że chcesz je zmienić."
+
+#: mod/settings.php:1203
+msgid "Current Password:"
+msgstr "Aktualne hasło:"
+
+#: mod/settings.php:1203 mod/settings.php:1204
+msgid "Your current password to confirm the changes"
+msgstr "Wpisz aktualne hasło, aby potwierdzić zmiany"
+
+#: mod/settings.php:1204
+msgid "Password:"
+msgstr "Hasło:"
+
+#: mod/settings.php:1208
+msgid "Basic Settings"
+msgstr "Ustawienia podstawowe"
+
+#: mod/settings.php:1210
+msgid "Email Address:"
+msgstr "Adres email:"
+
+#: mod/settings.php:1211
+msgid "Your Timezone:"
+msgstr "Twoja strefa czasowa:"
+
+#: mod/settings.php:1212
+msgid "Your Language:"
+msgstr "Twój język:"
+
+#: mod/settings.php:1212
+msgid ""
+"Set the language we use to show you friendica interface and to send you "
+"emails"
+msgstr "Wybierz język, którego używasz, aby pokazać interfejs użytkownika friendica i do wysłania Ci e-maili"
+
+#: mod/settings.php:1213
+msgid "Default Post Location:"
+msgstr "Domyślna lokalizacja wiadomości:"
+
+#: mod/settings.php:1214
+msgid "Use Browser Location:"
+msgstr "Użyj lokalizacji przeglądarki:"
+
+#: mod/settings.php:1217
+msgid "Security and Privacy Settings"
+msgstr "Ustawienia bezpieczeństwa i prywatności"
+
+#: mod/settings.php:1219
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maksymalna dzienna liczba zaproszeń do grona przyjaciół:"
+
+#: mod/settings.php:1219 mod/settings.php:1248
+msgid "(to prevent spam abuse)"
+msgstr "(aby zapobiec spamowaniu)"
+
+#: mod/settings.php:1220
+msgid "Default Post Permissions"
+msgstr "Domyślne prawa dostępu wiadomości"
+
+#: mod/settings.php:1221
+msgid "(click to open/close)"
+msgstr "(kliknij by otworzyć/zamknąć)"
+
+#: mod/settings.php:1229 mod/photos.php:1106 mod/photos.php:1449
+msgid "Show to Groups"
+msgstr "Pokaż Grupy"
+
+#: mod/settings.php:1230 mod/photos.php:1107 mod/photos.php:1450
+msgid "Show to Contacts"
+msgstr "Pokaż kontakty"
+
+#: mod/settings.php:1231
+msgid "Default Private Post"
+msgstr "Domyślny Prywatny Wpis"
+
+#: mod/settings.php:1232
+msgid "Default Public Post"
+msgstr "Domyślny Publiczny Post"
+
+#: mod/settings.php:1236
+msgid "Default Permissions for New Posts"
+msgstr "Uprawnienia domyślne dla nowych postów"
+
+#: mod/settings.php:1248
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maksymalna liczba prywatnych wiadomości dziennie od nieznanych osób:"
+
+#: mod/settings.php:1251
+msgid "Notification Settings"
+msgstr "Ustawienia powiadomień"
+
+#: mod/settings.php:1252
+msgid "By default post a status message when:"
+msgstr "Publikuj domyślnie komunikat o stanie, gdy:"
+
+#: mod/settings.php:1253
+msgid "accepting a friend request"
+msgstr "przyjęto prośbę o dodanie do znajomych"
+
+#: mod/settings.php:1254
+msgid "joining a forum/community"
+msgstr "dołączono do forum/społeczności"
+
+#: mod/settings.php:1255
+msgid "making an interesting profile change"
+msgstr "dokonano interesującej zmiany profilu"
+
+#: mod/settings.php:1256
+msgid "Send a notification email when:"
+msgstr "Wyślij powiadmonienia na email, kiedy:"
+
+#: mod/settings.php:1257
+msgid "You receive an introduction"
+msgstr "Otrzymałeś zaproszenie"
+
+#: mod/settings.php:1258
+msgid "Your introductions are confirmed"
+msgstr "Twoje zaproszenie jest potwierdzone"
+
+#: mod/settings.php:1259
+msgid "Someone writes on your profile wall"
+msgstr "Ktoś pisze na twoim profilu"
+
+#: mod/settings.php:1260
+msgid "Someone writes a followup comment"
+msgstr "Ktoś pisze komentarz nawiązujący."
+
+#: mod/settings.php:1261
+msgid "You receive a private message"
+msgstr "Otrzymałeś prywatną wiadomość"
+
+#: mod/settings.php:1262
+msgid "You receive a friend suggestion"
+msgstr "Otrzymałeś propozycję od znajomych"
+
+#: mod/settings.php:1263
+msgid "You are tagged in a post"
+msgstr "Jesteś oznaczony tagiem w poście"
+
+#: mod/settings.php:1264
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Jesteś zaczepiony/zaczepiona/itp. w poście"
+
+#: mod/settings.php:1266
+msgid "Activate desktop notifications"
+msgstr "Aktywuj powiadomienia na pulpicie"
+
+#: mod/settings.php:1266
+msgid "Show desktop popup on new notifications"
+msgstr "Pokaż wyskakujące okienko dla nowych powiadomień"
+
+#: mod/settings.php:1268
+msgid "Text-only notification emails"
+msgstr "E-maile z powiadomieniami tekstowymi"
+
+#: mod/settings.php:1270
+msgid "Send text only notification emails, without the html part"
+msgstr "Wysyłaj tylko e-maile z powiadomieniami tekstowymi, bez części html"
+
+#: mod/settings.php:1272
+msgid "Show detailled notifications"
+msgstr "Pokaż szczegółowe powiadomienia"
+
+#: mod/settings.php:1274
+msgid ""
+"Per default, notifications are condensed to a single notification per item. "
+"When enabled every notification is displayed."
+msgstr "Domyślne powiadomienia są skondensowane z jednym powiadomieniem dla każdego przedmiotu. Po włączeniu wyświetlane jest każde powiadomienie."
+
+#: mod/settings.php:1276
+msgid "Advanced Account/Page Type Settings"
+msgstr "Zaawansowane ustawienia konta/rodzaju strony"
+
+#: mod/settings.php:1277
+msgid "Change the behaviour of this account for special situations"
+msgstr "Zmień zachowanie tego konta w sytuacjach specjalnych"
+
+#: mod/settings.php:1280
+msgid "Relocate"
+msgstr "Przeniesienie"
+
+#: mod/settings.php:1281
+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 "Jeśli ten profil został przeniesiony z innego serwera, a niektóre z Twoich kontaktów nie otrzymają aktualizacji, spróbuj nacisnąć ten przycisk."
+
+#: mod/settings.php:1282
+msgid "Resend relocate message to contacts"
+msgstr "Wyślij ponownie przenieść wiadomości do kontaktów"
+
+#: mod/regmod.php:68
+msgid "Account approved."
+msgstr "Konto zatwierdzone."
+
+#: mod/regmod.php:93
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Rejestracja odwołana dla %s"
+
+#: mod/regmod.php:102
+msgid "Please login."
+msgstr "Proszę się zalogować."
+
#: mod/group.php:36
msgid "Group created."
msgstr "Grupa utworzona."
@@ -2627,6 +5326,10 @@ msgstr "Nie znaleziono grupy"
msgid "Group name changed."
msgstr "Nazwa grupy zmieniona"
+#: mod/group.php:83 mod/profperm.php:28 index.php:443
+msgid "Permission denied"
+msgstr "Odmowa dostępu"
+
#: mod/group.php:97
msgid "Save Group"
msgstr "Zapisz grupę"
@@ -2635,10 +5338,6 @@ msgstr "Zapisz grupę"
msgid "Create a group of contacts/friends."
msgstr "Stwórz grupę znajomych."
-#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
-msgid "Group Name: "
-msgstr "Nazwa grupy: "
-
#: mod/group.php:127
msgid "Group removed."
msgstr "Grupa usunięta."
@@ -2667,10 +5366,6 @@ msgstr "Członkowie"
msgid "All Contacts"
msgstr "Wszystkie kontakty"
-#: mod/group.php:216 mod/network.php:639
-msgid "Group is empty"
-msgstr "Grupa jest pusta"
-
#: mod/group.php:229
msgid "Remove Contact"
msgstr "Usuń Kontakt"
@@ -2679,1428 +5374,18 @@ msgstr "Usuń Kontakt"
msgid "Add Contact"
msgstr "Dodaj Kontakt"
-#: mod/message.php:30 src/Content/Nav.php:198
-msgid "New Message"
-msgstr "Nowa wiadomość"
+#: mod/group.php:265 mod/profperm.php:115
+msgid "Click on a contact to add or remove."
+msgstr "Kliknij na kontakt w celu dodania lub usunięcia."
-#: mod/message.php:77
-msgid "Unable to locate contact information."
-msgstr "Nie można znaleźć informacji kontaktowych."
-
-#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:195
-msgid "Messages"
-msgstr "Wiadomości"
-
-#: mod/message.php:136
-msgid "Do you really want to delete this message?"
-msgstr "Czy na pewno chcesz usunąć tę wiadomość?"
-
-#: mod/message.php:156
-msgid "Message deleted."
-msgstr "Wiadomość usunięta."
-
-#: mod/message.php:185
-msgid "Conversation removed."
-msgstr "Rozmowa usunięta."
-
-#: mod/message.php:291
-msgid "No messages."
-msgstr "Brak wiadomości."
-
-#: mod/message.php:330
-msgid "Message not available."
-msgstr "Wiadomość nie jest dostępna."
-
-#: mod/message.php:397
-msgid "Delete message"
-msgstr "Usuń wiadomość"
-
-#: mod/message.php:399 mod/message.php:500
-msgid "D, d M Y - g:i A"
-msgstr "D, d M R - g:m AM/PM"
-
-#: mod/message.php:414 mod/message.php:497
-msgid "Delete conversation"
-msgstr "Usuń rozmowę"
-
-#: mod/message.php:416
-msgid ""
-"No secure communications available. You may be able to "
-"respond from the sender's profile page."
-msgstr "Brak bezpiecznej komunikacji. Możesz odpowiedzieć na stronie profilu nadawcy."
-
-#: mod/message.php:420
-msgid "Send Reply"
-msgstr "Odpowiedz"
-
-#: mod/message.php:471
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Nieznany nadawca - %s"
-
-#: mod/message.php:473
-#, php-format
-msgid "You and %s"
-msgstr "Ty i %s"
-
-#: mod/message.php:475
-#, php-format
-msgid "%s and You"
-msgstr "%s i ty"
-
-#: mod/message.php:503
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] " %d wiadomość"
-msgstr[1] " %d wiadomości"
-msgstr[2] " %d wiadomości"
-msgstr[3] " %d wiadomości"
-
-#: mod/notes.php:52 src/Model/Profile.php:948
-msgid "Personal Notes"
-msgstr "Notatki"
-
-#: mod/photos.php:108 src/Model/Profile.php:909
-msgid "Photo Albums"
-msgstr "Albumy zdjęć"
-
-#: mod/photos.php:109 mod/photos.php:1713
-msgid "Recent Photos"
-msgstr "Ostatnio dodane zdjęcia"
-
-#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
-msgid "Upload New Photos"
-msgstr "Wyślij nowe zdjęcie"
-
-#: mod/photos.php:126 mod/settings.php:50
-msgid "everybody"
-msgstr "wszyscy"
-
-#: mod/photos.php:184
-msgid "Contact information unavailable"
-msgstr "Informacje kontaktowe są niedostępne."
-
-#: mod/photos.php:204
-msgid "Album not found."
-msgstr "Album nie znaleziony"
-
-#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
-msgid "Delete Album"
-msgstr "Usuń album"
-
-#: mod/photos.php:243
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?"
-
-#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
-msgid "Delete Photo"
-msgstr "Usuń zdjęcie"
-
-#: mod/photos.php:319
-msgid "Do you really want to delete this photo?"
-msgstr "Czy na pewno chcesz usunąć to zdjęcie ?"
-
-#: mod/photos.php:667
-msgid "a photo"
-msgstr "zdjęcie"
-
-#: mod/photos.php:667
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$szostał oznaczony tagiem %2$s przez %3$s"
-
-#: mod/photos.php:769
-msgid "Image upload didn't complete, please try again"
-msgstr "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie"
-
-#: mod/photos.php:772
-msgid "Image file is missing"
-msgstr "Brak pliku obrazu"
-
-#: mod/photos.php:777
-msgid ""
-"Server can't accept new file upload at this time, please contact your "
-"administrator"
-msgstr "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem"
-
-#: mod/photos.php:803
-msgid "Image file is empty."
-msgstr "Plik obrazka jest pusty."
-
-#: mod/photos.php:940
-msgid "No photos selected"
-msgstr "Nie zaznaczono zdjęć"
-
-#: mod/photos.php:1036 mod/videos.php:309
-msgid "Access to this item is restricted."
-msgstr "Dostęp do tego obiektu jest ograniczony."
-
-#: mod/photos.php:1090
-msgid "Upload Photos"
-msgstr "Prześlij zdjęcia"
-
-#: mod/photos.php:1094 mod/photos.php:1156
-msgid "New album name: "
-msgstr "Nazwa nowego albumu:"
-
-#: mod/photos.php:1095
-msgid "or existing album name: "
-msgstr "lub istniejąca nazwa albumu:"
-
-#: mod/photos.php:1096
-msgid "Do not show a status post for this upload"
-msgstr "Nie pokazuj statusu postów dla tego wysłania"
-
-#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533
-#: src/Core/ACL.php:318
-msgid "Permissions"
-msgstr "Uprawnienia"
-
-#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1229
-msgid "Show to Groups"
-msgstr "Pokaż Grupy"
-
-#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1230
-msgid "Show to Contacts"
-msgstr "Pokaż kontakty"
-
-#: mod/photos.php:1167
-msgid "Edit Album"
-msgstr "Edytuj album"
-
-#: mod/photos.php:1172
-msgid "Show Newest First"
-msgstr "Najpierw pokaż najnowsze"
-
-#: mod/photos.php:1174
-msgid "Show Oldest First"
-msgstr "Najpierw pokaż najstarsze"
-
-#: mod/photos.php:1195 mod/photos.php:1698
-msgid "View Photo"
-msgstr "Zobacz zdjęcie"
-
-#: mod/photos.php:1236
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony."
-
-#: mod/photos.php:1238
-msgid "Photo not available"
-msgstr "Zdjęcie niedostępne"
-
-#: mod/photos.php:1301
-msgid "View photo"
-msgstr "Zobacz zdjęcie"
-
-#: mod/photos.php:1301
-msgid "Edit photo"
-msgstr "Edytuj zdjęcie"
-
-#: mod/photos.php:1302
-msgid "Use as profile photo"
-msgstr "Ustaw jako zdjęcie profilowe"
-
-#: mod/photos.php:1308 src/Object/Post.php:149
-msgid "Private Message"
-msgstr "Wiadomość prywatna"
-
-#: mod/photos.php:1327
-msgid "View Full Size"
-msgstr "Zobacz w pełnym rozmiarze"
-
-#: mod/photos.php:1414
-msgid "Tags: "
-msgstr "Tagi:"
-
-#: mod/photos.php:1417
-msgid "[Remove any tag]"
-msgstr "[Usunąć znacznik]"
-
-#: mod/photos.php:1432
-msgid "New album name"
-msgstr "Nazwa nowego albumu"
-
-#: mod/photos.php:1433
-msgid "Caption"
-msgstr "Zawartość"
-
-#: mod/photos.php:1434
-msgid "Add a Tag"
-msgstr "Dodaj tag"
-
-#: mod/photos.php:1434
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-
-#: mod/photos.php:1435
-msgid "Do not rotate"
-msgstr "Nie obracaj"
-
-#: mod/photos.php:1436
-msgid "Rotate CW (right)"
-msgstr "Obróć CW (w prawo)"
-
-#: mod/photos.php:1437
-msgid "Rotate CCW (left)"
-msgstr "Obróć CCW (w lewo)"
-
-#: mod/photos.php:1471 src/Object/Post.php:296
-msgid "I like this (toggle)"
-msgstr "Lubię to (zmień)"
-
-#: mod/photos.php:1472 src/Object/Post.php:297
-msgid "I don't like this (toggle)"
-msgstr "Nie lubię tego (zmień)"
-
-#: mod/photos.php:1488 mod/photos.php:1527 mod/photos.php:1600
-#: mod/contacts.php:953 src/Object/Post.php:793
-msgid "This is you"
-msgstr "To jesteś ty"
-
-#: mod/photos.php:1490 mod/photos.php:1529 mod/photos.php:1602
-#: src/Object/Post.php:399 src/Object/Post.php:795
-msgid "Comment"
-msgstr "Komentarz"
-
-#: mod/photos.php:1634
-msgid "Map"
-msgstr "Mapa"
-
-#: mod/photos.php:1704 mod/videos.php:387
-msgid "View Album"
-msgstr "Zobacz album"
-
-#: mod/profile.php:37 src/Model/Profile.php:118
-msgid "Requested profile is not available."
-msgstr "Żądany profil jest niedostępny"
-
-#: mod/profile.php:78 src/Protocol/OStatus.php:1252
-#, php-format
-msgid "%s's posts"
-msgstr "%s posty "
-
-#: mod/profile.php:79 src/Protocol/OStatus.php:1253
-#, php-format
-msgid "%s's comments"
-msgstr "%s komentarze "
-
-#: mod/profile.php:80 src/Protocol/OStatus.php:1251
-#, php-format
-msgid "%s's timeline"
-msgstr "%s oś czasu "
-
-#: mod/profile.php:173 mod/cal.php:142 mod/display.php:313
-msgid "Access to this profile has been restricted."
-msgstr "Dostęp do tego profilu został ograniczony."
-
-#: mod/profile.php:194
-msgid "Tips for New Members"
-msgstr "Wskazówki dla nowych użytkowników"
-
-#: mod/videos.php:139
-msgid "Do you really want to delete this video?"
-msgstr "Czy na pewno chcesz usunąć ten film wideo?"
-
-#: mod/videos.php:144
-msgid "Delete Video"
-msgstr "Usuń wideo"
-
-#: mod/videos.php:207
-msgid "No videos selected"
-msgstr "Nie zaznaczono filmów"
-
-#: mod/videos.php:396
-msgid "Recent Videos"
-msgstr "Ostatnio dodane filmy"
-
-#: mod/videos.php:398
-msgid "Upload New Videos"
-msgstr "Wstaw nowe filmy"
-
-#: mod/cal.php:274 mod/events.php:391 view/theme/frio/theme.php:263
-#: view/theme/frio/theme.php:267 src/Content/Nav.php:104
-#: src/Content/Nav.php:169 src/Model/Profile.php:926 src/Model/Profile.php:937
-msgid "Events"
-msgstr "Wydarzenia"
-
-#: mod/cal.php:275 mod/events.php:392
-msgid "View"
-msgstr "Widok"
-
-#: mod/cal.php:276 mod/events.php:394
-msgid "Previous"
-msgstr "Poprzedni"
-
-#: mod/cal.php:277 mod/events.php:395 mod/install.php:209
-msgid "Next"
-msgstr "Następny"
-
-#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
-msgid "today"
-msgstr "dzisiaj"
-
-#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
-#: src/Model/Event.php:413
-msgid "month"
-msgstr "miesiąc"
-
-#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
-#: src/Model/Event.php:414
-msgid "week"
-msgstr "tydzień"
-
-#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
-#: src/Model/Event.php:415
-msgid "day"
-msgstr "dzień"
-
-#: mod/cal.php:284 mod/events.php:404
-msgid "list"
-msgstr "lista"
-
-#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214
-msgid "User not found"
-msgstr "Użytkownik nie znaleziony"
-
-#: mod/cal.php:313
-msgid "This calendar format is not supported"
-msgstr "Ten format kalendarza nie jest obsługiwany"
-
-#: mod/cal.php:315
-msgid "No exportable data found"
-msgstr "Nie znaleziono danych do eksportu"
-
-#: mod/cal.php:332
-msgid "calendar"
-msgstr "kalendarz"
-
-#: mod/contacts.php:157
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: mod/contacts.php:184 mod/contacts.php:400
-msgid "Could not access contact record."
-msgstr "Nie można uzyskać dostępu do rejestru kontaktów."
-
-#: mod/contacts.php:194
-msgid "Could not locate selected profile."
-msgstr "Nie można znaleźć wybranego profilu."
-
-#: mod/contacts.php:228
-msgid "Contact updated."
-msgstr "Kontakt zaktualizowany"
-
-#: mod/contacts.php:421
-msgid "Contact has been blocked"
-msgstr "Kontakt został zablokowany"
-
-#: mod/contacts.php:421
-msgid "Contact has been unblocked"
-msgstr "Kontakt został odblokowany"
-
-#: mod/contacts.php:432
-msgid "Contact has been ignored"
-msgstr "Kontakt jest ignorowany"
-
-#: mod/contacts.php:432
-msgid "Contact has been unignored"
-msgstr "Kontakt nie jest ignorowany"
-
-#: mod/contacts.php:443
-msgid "Contact has been archived"
-msgstr "Kontakt został zarchiwizowany"
-
-#: mod/contacts.php:443
-msgid "Contact has been unarchived"
-msgstr "Kontakt został przywrócony"
-
-#: mod/contacts.php:467
-msgid "Drop contact"
-msgstr "Usuń kontakt"
-
-#: mod/contacts.php:470 mod/contacts.php:823
-msgid "Do you really want to delete this contact?"
-msgstr "Czy na pewno chcesz usunąć ten kontakt?"
-
-#: mod/contacts.php:488
-msgid "Contact has been removed."
-msgstr "Kontakt został usunięty."
-
-#: mod/contacts.php:519
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Jesteś już znajomym z %s"
-
-#: mod/contacts.php:523
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Współdzielisz z %s"
-
-#: mod/contacts.php:527
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s współdzieli z tobą"
-
-#: mod/contacts.php:547
-msgid "Private communications are not available for this contact."
-msgstr "Prywatna rozmowa jest niemożliwa dla tego kontaktu"
-
-#: mod/contacts.php:549
-msgid "Never"
-msgstr "Nigdy"
-
-#: mod/contacts.php:552
-msgid "(Update was successful)"
-msgstr "(Aktualizacja przebiegła pomyślnie)"
-
-#: mod/contacts.php:552
-msgid "(Update was not successful)"
-msgstr "(Aktualizacja nie powiodła się)"
-
-#: mod/contacts.php:554 mod/contacts.php:992
-msgid "Suggest friends"
-msgstr "Osoby, które możesz znać"
-
-#: mod/contacts.php:558
-#, php-format
-msgid "Network type: %s"
-msgstr "Typ sieci: %s"
-
-#: mod/contacts.php:563
-msgid "Communications lost with this contact!"
-msgstr "Utracono komunikację z tym kontaktem!"
-
-#: mod/contacts.php:569
-msgid "Fetch further information for feeds"
-msgstr "Pobierz dalsze informacje dla kanałów"
-
-#: mod/contacts.php:571
-msgid ""
-"Fetch information like preview pictures, title and teaser from the feed "
-"item. You can activate this if the feed doesn't contain much text. Keywords "
-"are taken from the meta header in the feed item and are posted as hash tags."
-msgstr "Pobieranie informacji, takich jak zdjęcia podglądu, tytuł i zwiastun z elementu kanału. Możesz to aktywować, jeśli plik danych nie zawiera dużo tekstu. Słowa kluczowe są pobierane z nagłówka meta w elemencie kanału i są publikowane jako znaczniki haszowania."
-
-#: mod/contacts.php:572 mod/admin.php:1272 mod/admin.php:1435
-#: mod/admin.php:1445
-msgid "Disabled"
-msgstr "Wyłączony"
-
-#: mod/contacts.php:573
-msgid "Fetch information"
-msgstr "Pobierz informacje"
-
-#: mod/contacts.php:574
-msgid "Fetch keywords"
-msgstr "Pobierz słowa kluczowe"
-
-#: mod/contacts.php:575
-msgid "Fetch information and keywords"
-msgstr "Pobierz informacje i słowa kluczowe"
-
-#: mod/contacts.php:599 mod/unfollow.php:100
-msgid "Disconnect/Unfollow"
-msgstr "Rozłącz/Nie obserwuj"
-
-#: mod/contacts.php:608
-msgid "Contact"
-msgstr "Kontakt"
-
-#: mod/contacts.php:611
-msgid "Profile Visibility"
-msgstr "Widoczność profilu"
-
-#: mod/contacts.php:612
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Wybierz profil, który chcesz bezpiecznie wyświetlić %s"
-
-#: mod/contacts.php:613
-msgid "Contact Information / Notes"
-msgstr "Informacje kontaktowe/Notatki"
-
-#: mod/contacts.php:614
-msgid "Their personal note"
-msgstr "Ich osobista uwaga"
-
-#: mod/contacts.php:616
-msgid "Edit contact notes"
-msgstr "Edytuj notatki kontaktu"
-
-#: mod/contacts.php:620
-msgid "Block/Unblock contact"
-msgstr "Zablokuj/odblokuj kontakt"
-
-#: mod/contacts.php:621
-msgid "Ignore contact"
-msgstr "Ignoruj kontakt"
-
-#: mod/contacts.php:622
-msgid "Repair URL settings"
-msgstr "Napraw ustawienia adresu"
-
-#: mod/contacts.php:623
-msgid "View conversations"
-msgstr "Wyświetl rozmowy"
-
-#: mod/contacts.php:628
-msgid "Last update:"
-msgstr "Ostatnia aktualizacja:"
-
-#: mod/contacts.php:630
-msgid "Update public posts"
-msgstr "Zaktualizuj publiczne posty"
-
-#: mod/contacts.php:632 mod/contacts.php:1002
-msgid "Update now"
-msgstr "Aktualizuj teraz"
-
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:485 mod/admin.php:1800
-msgid "Unblock"
-msgstr "Odblokuj"
-
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:484 mod/admin.php:1799
-msgid "Block"
-msgstr "Zablokuj"
-
-#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
-msgid "Unignore"
-msgstr "Odblokuj"
-
-#: mod/contacts.php:642
-msgid "Currently blocked"
-msgstr "Obecnie zablokowany"
-
-#: mod/contacts.php:643
-msgid "Currently ignored"
-msgstr "Obecnie zignorowany"
-
-#: mod/contacts.php:644
-msgid "Currently archived"
-msgstr "Obecnie zarchiwizowany"
-
-#: mod/contacts.php:645
-msgid "Awaiting connection acknowledge"
-msgstr "Oczekiwanie na potwierdzenie połączenia"
-
-#: mod/contacts.php:646
-msgid ""
-"Replies/likes to your public posts may still be visible"
-msgstr "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne"
-
-#: mod/contacts.php:647
-msgid "Notification for new posts"
-msgstr "Powiadomienie o nowych postach"
-
-#: mod/contacts.php:647
-msgid "Send a notification of every new post of this contact"
-msgstr "Wyślij powiadomienie o każdym nowym poście tego kontaktu"
-
-#: mod/contacts.php:650
-msgid "Blacklisted keywords"
-msgstr "Słowa kluczowe na czarnej liście"
-
-#: mod/contacts.php:650
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr "Rozdzielana przecinkami lista słów kluczowych, które nie powinny zostać przekonwertowane na hashtagi, gdy wybrana jest opcja 'Pobierz informacje i słowa kluczowe'"
-
-#: mod/contacts.php:662 src/Model/Profile.php:424
-msgid "XMPP:"
-msgstr "XMPP:"
-
-#: mod/contacts.php:667
-msgid "Actions"
-msgstr "Akcja"
-
-#: mod/contacts.php:669 mod/contacts.php:855 view/theme/frio/theme.php:259
-#: src/Content/Nav.php:100 src/Model/Profile.php:890
-msgid "Status"
-msgstr "Status"
-
-#: mod/contacts.php:670
-msgid "Contact Settings"
-msgstr "Ustawienia kontaktów"
-
-#: mod/contacts.php:711
-msgid "Suggestions"
-msgstr "Sugestie"
-
-#: mod/contacts.php:714
-msgid "Suggest potential friends"
-msgstr "Sugerowani znajomi"
-
-#: mod/contacts.php:722
-msgid "Show all contacts"
-msgstr "Pokaż wszystkie kontakty"
-
-#: mod/contacts.php:727
-msgid "Unblocked"
-msgstr "Odblokowany"
-
-#: mod/contacts.php:730
-msgid "Only show unblocked contacts"
-msgstr "Pokaż tylko odblokowane kontakty"
-
-#: mod/contacts.php:735
-msgid "Blocked"
-msgstr "Zablokowany"
-
-#: mod/contacts.php:738
-msgid "Only show blocked contacts"
-msgstr "Pokaż tylko zablokowane kontakty"
-
-#: mod/contacts.php:743
-msgid "Ignored"
-msgstr "Zignorowany"
-
-#: mod/contacts.php:746
-msgid "Only show ignored contacts"
-msgstr "Pokaż tylko ignorowane kontakty"
-
-#: mod/contacts.php:751
-msgid "Archived"
-msgstr "Zarchiwizowane"
-
-#: mod/contacts.php:754
-msgid "Only show archived contacts"
-msgstr "Pokaż tylko zarchiwizowane kontakty"
-
-#: mod/contacts.php:759
-msgid "Hidden"
-msgstr "Ukryty"
-
-#: mod/contacts.php:762
-msgid "Only show hidden contacts"
-msgstr "Pokaż tylko ukryte kontakty"
-
-#: mod/contacts.php:818
-msgid "Search your contacts"
-msgstr "Wyszukaj w kontaktach"
-
-#: mod/contacts.php:820 mod/directory.php:209 src/Content/Widget.php:63
-msgid "Find"
-msgstr "Znajdź"
-
-#: mod/contacts.php:826 mod/settings.php:170 mod/settings.php:701
-msgid "Update"
-msgstr "Zaktualizuj"
-
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Archive"
-msgstr "Archiwum"
-
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Unarchive"
-msgstr "Przywróć z archiwum"
-
-#: mod/contacts.php:832
-msgid "Batch Actions"
-msgstr "Akcje wsadowe"
-
-#: mod/contacts.php:858 mod/unfollow.php:132 mod/follow.php:186
-#: src/Model/Profile.php:893
-msgid "Status Messages and Posts"
-msgstr "Status wiadomości i postów"
-
-#: mod/contacts.php:866 src/Model/Profile.php:901
-msgid "Profile Details"
-msgstr "Szczegóły profilu"
-
-#: mod/contacts.php:878
-msgid "View all contacts"
-msgstr "Zobacz wszystkie kontakty"
-
-#: mod/contacts.php:889
-msgid "View all common friends"
-msgstr "Zobacz wszystkich popularnych znajomych"
-
-#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1351
-#: src/Model/Profile.php:867
-msgid "Advanced"
-msgstr "Zaawansowany"
-
-#: mod/contacts.php:898
-msgid "Advanced Contact Settings"
-msgstr "Zaawansowane ustawienia kontaktów"
-
-#: mod/contacts.php:930
-msgid "Mutual Friendship"
-msgstr "Wzajemna przyjaźń"
-
-#: mod/contacts.php:934
-msgid "is a fan of yours"
-msgstr "jest twoim fanem"
-
-#: mod/contacts.php:938
-msgid "you are a fan of"
-msgstr "jesteś fanem"
-
-#: mod/contacts.php:1013
-msgid "Toggle Blocked status"
-msgstr "Przełącz na Zablokowany"
-
-#: mod/contacts.php:1021
-msgid "Toggle Ignored status"
-msgstr "Przełącz ignorowany status"
-
-#: mod/contacts.php:1029
-msgid "Toggle Archive status"
-msgstr "Przełącz status archiwum"
-
-#: mod/contacts.php:1037
-msgid "Delete contact"
-msgstr "Usuń kontakt"
-
-#: mod/delegate.php:37
-msgid "Parent user not found."
-msgstr "Nie znaleziono użytkownika nadrzędnego."
-
-#: mod/delegate.php:144
-msgid "No parent user"
-msgstr "Brak nadrzędnego użytkownika"
-
-#: mod/delegate.php:159
-msgid "Parent Password:"
-msgstr "Hasło nadrzędne:"
-
-#: mod/delegate.php:159
-msgid ""
-"Please enter the password of the parent account to legitimize your request."
-msgstr "Wprowadź hasło konta nadrzędnego, aby legalizować swoje żądanie."
-
-#: mod/delegate.php:164
-msgid "Parent User"
-msgstr "Użytkownik nadrzędny"
-
-#: mod/delegate.php:167
-msgid ""
-"Parent users have total control about this account, including the account "
-"settings. Please double check whom you give this access."
-msgstr "Użytkownicy nadrzędni mają pełną kontrolę nad tym kontem, w tym także ustawienia konta. Sprawdź dokładnie, komu przyznasz ten dostęp."
-
-#: mod/delegate.php:168 mod/admin.php:307 mod/admin.php:1346
-#: mod/admin.php:1965 mod/admin.php:2218 mod/admin.php:2292 mod/admin.php:2439
-#: mod/settings.php:675 mod/settings.php:784 mod/settings.php:872
-#: mod/settings.php:961 mod/settings.php:1194
-msgid "Save Settings"
-msgstr "Zapisz ustawienia"
-
-#: mod/delegate.php:169 src/Content/Nav.php:204
-msgid "Delegate Page Management"
-msgstr "Deleguj zarządzanie stronami"
-
-#: mod/delegate.php:170
-msgid "Delegates"
-msgstr "Oddeleguj"
-
-#: mod/delegate.php:172
-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 "Delegaci mogą zarządzać wszystkimi aspektami tego konta/strony, z wyjątkiem podstawowych ustawień konta. Nie przekazuj swojego konta osobistego nikomu, komu nie ufasz całkowicie."
-
-#: mod/delegate.php:173
-msgid "Existing Page Delegates"
-msgstr "Obecni delegaci stron"
-
-#: mod/delegate.php:175
-msgid "Potential Delegates"
-msgstr "Potencjalni delegaci"
-
-#: mod/delegate.php:178
-msgid "Add"
-msgstr "Dodaj"
-
-#: mod/delegate.php:179
-msgid "No entries."
-msgstr "Brak wpisów."
-
-#: mod/events.php:105 mod/events.php:107
-msgid "Event can not end before it has started."
-msgstr "Wydarzenie nie może się zakończyć przed jego rozpoczęciem."
-
-#: mod/events.php:114 mod/events.php:116
-msgid "Event title and start time are required."
-msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia."
-
-#: mod/events.php:393
-msgid "Create New Event"
-msgstr "Stwórz nowe wydarzenie"
-
-#: mod/events.php:506
-msgid "Event details"
-msgstr "Szczegóły wydarzenia"
-
-#: mod/events.php:507
-msgid "Starting date and Title are required."
-msgstr "Data rozpoczęcia i tytuł są wymagane."
-
-#: mod/events.php:508 mod/events.php:509
-msgid "Event Starts:"
-msgstr "Rozpoczęcie wydarzenia:"
-
-#: mod/events.php:508 mod/events.php:520 mod/profiles.php:700
-msgid "Required"
-msgstr "Wymagany"
-
-#: mod/events.php:510 mod/events.php:526
-msgid "Finish date/time is not known or not relevant"
-msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna"
-
-#: mod/events.php:512 mod/events.php:513
-msgid "Event Finishes:"
-msgstr "Zakończenie wydarzenia:"
-
-#: mod/events.php:514 mod/events.php:527
-msgid "Adjust for viewer timezone"
-msgstr "Dopasuj dla strefy czasowej widza"
-
-#: mod/events.php:516
-msgid "Description:"
-msgstr "Opis:"
-
-#: mod/events.php:520 mod/events.php:522
-msgid "Title:"
-msgstr "Tytuł:"
-
-#: mod/events.php:523 mod/events.php:524
-msgid "Share this event"
-msgstr "Udostępnij te wydarzenie"
-
-#: mod/events.php:531 src/Model/Profile.php:866
-msgid "Basic"
-msgstr "Podstawowy"
-
-#: mod/events.php:552
-msgid "Failed to remove event"
-msgstr "Nie udało się usunąć wydarzenia"
-
-#: mod/events.php:554
-msgid "Event removed"
-msgstr "Wydarzenie zostało usunięte"
-
-#: mod/feedtest.php:20
-msgid "You must be logged in to use this module"
-msgstr "Musisz być zalogowany, aby korzystać z tego modułu"
-
-#: mod/feedtest.php:48
-msgid "Source URL"
-msgstr "Źródłowy adres URL"
-
-#: mod/install.php:114
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica Serwer Komunikacyjny - Instalacja"
-
-#: mod/install.php:120
-msgid "Could not connect to database."
-msgstr "Nie można nawiązać połączenia z bazą danych"
-
-#: mod/install.php:124
-msgid "Could not create table."
-msgstr "Nie mogę stworzyć tabeli."
-
-#: mod/install.php:130
-msgid "Your Friendica site database has been installed."
-msgstr "Twoja baza danych witryny Friendica została zainstalowana."
-
-#: mod/install.php:135
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql."
-
-#: mod/install.php:136 mod/install.php:208 mod/install.php:558
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Proszę przejrzeć plik \"INSTALL.txt\"."
-
-#: mod/install.php:148
-msgid "Database already in use."
-msgstr "Baza danych jest już w użyciu."
-
-#: mod/install.php:205
-msgid "System check"
-msgstr "Sprawdzanie systemu"
-
-#: mod/install.php:210
-msgid "Check again"
-msgstr "Sprawdź ponownie"
-
-#: mod/install.php:230
-msgid "Database connection"
-msgstr "Połączenie z bazą danych"
-
-#: mod/install.php:231
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych."
-
-#: mod/install.php:232
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ."
-
-#: mod/install.php:233
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją."
-
-#: mod/install.php:237
-msgid "Database Server Name"
-msgstr "Nazwa serwera bazy danych"
-
-#: mod/install.php:238
-msgid "Database Login Name"
-msgstr "Nazwa użytkownika bazy danych"
-
-#: mod/install.php:239
-msgid "Database Login Password"
-msgstr "Hasło logowania do bazy danych"
-
-#: mod/install.php:239
-msgid "For security reasons the password must not be empty"
-msgstr "Ze względów bezpieczeństwa hasło nie może być puste"
-
-#: mod/install.php:240
-msgid "Database Name"
-msgstr "Nazwa bazy danych"
-
-#: mod/install.php:241 mod/install.php:281
-msgid "Site administrator email address"
-msgstr "Adres e-mail administratora strony"
-
-#: mod/install.php:241 mod/install.php:281
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Adres e-mail konta musi pasować do tego, aby móc korzystać z panelu administracyjnego."
-
-#: mod/install.php:245 mod/install.php:284
-msgid "Please select a default timezone for your website"
-msgstr "Proszę wybrać domyślną strefę czasową dla swojej strony"
-
-#: mod/install.php:271
-msgid "Site settings"
-msgstr "Ustawienia strony"
-
-#: mod/install.php:285
-msgid "System Language:"
-msgstr "Język systemu:"
-
-#: mod/install.php:285
-msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
-msgstr "Ustaw domyślny język dla interfejsu instalacyjnego Friendica i wysyłaj e-maile."
-
-#: mod/install.php:325
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Nie można znaleźć wersji PHP komendy w serwerze PATH"
-
-#: mod/install.php:326
-msgid ""
-"If you don't have a command line version of PHP installed on your server, "
-"you will not be able to run the background processing. See 'Setup the worker' "
-msgstr "Jeśli nie masz zainstalowanej na serwerze wersji PHP z wiersza poleceń, nie będziesz mógł uruchomić przetwarzania w tle. Zobacz 'Konfiguracja pracownika' "
-
-#: mod/install.php:330
-msgid "PHP executable path"
-msgstr "Ścieżka wykonywalna PHP"
-
-#: mod/install.php:330
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Wprowadź pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole puste, aby kontynuować instalację."
-
-#: mod/install.php:335
-msgid "Command line PHP"
-msgstr "Linia komend PHP"
-
-#: mod/install.php:344
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "Plik wykonywalny PHP nie jest php cli binarny (może być wersją cgi-fgci)"
-
-#: mod/install.php:345
-msgid "Found PHP version: "
-msgstr "Znaleziono wersje PHP:"
-
-#: mod/install.php:347
-msgid "PHP cli binary"
-msgstr "PHP cli binarny"
-
-#: mod/install.php:358
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"."
-
-#: mod/install.php:359
-msgid "This is required for message delivery to work."
-msgstr "Jest wymagane, aby dostarczanie wiadomości działało."
-
-#: mod/install.php:361
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
-
-#: mod/install.php:384
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować kluczy szyfrujących"
-
-#: mod/install.php:385
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"."
-
-#: mod/install.php:387
-msgid "Generate encryption keys"
-msgstr "Generuj klucz kodowania"
-
-#: mod/install.php:394
-msgid "libCurl PHP module"
-msgstr "Moduł libCurl PHP"
-
-#: mod/install.php:395
-msgid "GD graphics PHP module"
-msgstr "Moduł PHP-GD"
-
-#: mod/install.php:396
-msgid "OpenSSL PHP module"
-msgstr "Moduł PHP OpenSSL"
-
-#: mod/install.php:397
-msgid "PDO or MySQLi PHP module"
-msgstr "Moduł PDO lub MySQLi PHP"
-
-#: mod/install.php:398
-msgid "mb_string PHP module"
-msgstr "Moduł mb_string PHP"
-
-#: mod/install.php:399
-msgid "XML PHP module"
-msgstr "Moduł XML PHP"
-
-#: mod/install.php:400
-msgid "iconv PHP module"
-msgstr "Moduł PHP iconv"
-
-#: mod/install.php:401
-msgid "POSIX PHP module"
-msgstr "Moduł POSIX PHP"
-
-#: mod/install.php:405 mod/install.php:407
-msgid "Apache mod_rewrite module"
-msgstr "Moduł Apache mod_rewrite"
-
-#: mod/install.php:405
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany."
-
-#: mod/install.php:413
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany."
-
-#: mod/install.php:417
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany."
-
-#: mod/install.php:421
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany."
-
-#: mod/install.php:425
-msgid "Error: PDO or MySQLi PHP module required but not installed."
-msgstr "Błąd: Wymagany moduł PDO lub MySQLi PHP, ale nie zainstalowany."
-
-#: mod/install.php:429
-msgid "Error: The MySQL driver for PDO is not installed."
-msgstr "Błąd: Sterownik MySQL dla PDO nie jest zainstalowany."
-
-#: mod/install.php:433
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany"
-
-#: mod/install.php:437
-msgid "Error: iconv PHP module required but not installed."
-msgstr "Błąd: wymagany moduł PHP iconv, ale nie zainstalowany."
-
-#: mod/install.php:441
-msgid "Error: POSIX PHP module required but not installed."
-msgstr "Błąd: wymagany moduł POSIX PHP, ale nie zainstalowany."
-
-#: mod/install.php:451
-msgid "Error, XML PHP module required but not installed."
-msgstr "Błąd, wymagany moduł XML PHP, ale nie zainstalowany."
-
-#: mod/install.php:463
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\" i nie jest w stanie tego zrobić."
-
-#: mod/install.php:464
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "Jest to najczęściej ustawienie uprawnień, ponieważ serwer sieciowy może nie być w stanie zapisywać plików w folderze - nawet jeśli możesz."
-
-#: mod/install.php:465
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "Pod koniec tej procedury podamy Ci tekst do zapisania w pliku o nazwie .htconfig.php w twoim górnym folderze Friendica."
-
-#: mod/install.php:466
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Alternatywnie można pominąć tę procedurę i wykonać ręczną instalację. Proszę zobaczyć plik 'INSTALL.txt' z instrukcjami."
-
-#: mod/install.php:469
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php jest zapisywalny"
-
-#: mod/install.php:479
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica używa silnika szablonów Smarty3 do renderowania swoich widoków. Smarty3 kompiluje szablony do PHP, aby przyspieszyć renderowanie."
-
-#: mod/install.php:480
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Aby przechowywać te skompilowane szablony, serwer WWW musi mieć dostęp do zapisu do katalogu view/smarty3/ w folderze najwyższego poziomu Friendica."
-
-#: mod/install.php:481
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Upewnij się, że użytkownik, na którym działa serwer WWW (np. www-data), ma prawo do zapisu do tego folderu."
-
-#: mod/install.php:482
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Uwaga: jako środek bezpieczeństwa, powinieneś dać serwerowi dostęp do zapisu view/smarty3/ jedynie - nie do plików szablonów (.tpl), które zawiera."
-
-#: mod/install.php:485
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 jest zapisywalny"
-
-#: mod/install.php:501
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "Nie działa URL w .htaccess popraw. Sprawdź konfigurację serwera."
-
-#: mod/install.php:503
-msgid "Url rewrite is working"
-msgstr "Działający adres URL"
-
-#: mod/install.php:522
-msgid "ImageMagick PHP extension is not installed"
-msgstr "Rozszerzenie PHP ImageMagick nie jest zainstalowane"
-
-#: mod/install.php:524
-msgid "ImageMagick PHP extension is installed"
-msgstr "Rozszerzenie PHP ImageMagick jest zainstalowane"
-
-#: mod/install.php:526
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagick obsługuje GIF"
-
-#: mod/install.php:533
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera."
-
-#: mod/install.php:556
-msgid "What next "
-msgstr "Co dalej "
-
-#: mod/install.php:557
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"worker."
-msgstr "WAŻNE: Będziesz musiał [ręcznie] ustawić zaplanowane zadanie dla pracownika."
-
-#: mod/install.php:560
-#, php-format
-msgid ""
-"Go to your new Friendica node registration page "
-"and register as new user. Remember to use the same email you have entered as"
-" administrator email. This will allow you to enter the site admin panel."
-msgstr "Przejdź do strony rejestracji nowego węzła Friendica i zarejestruj się jako nowy użytkownik. Pamiętaj, aby użyć adresu e-mail wprowadzonego jako e-mail administratora. To pozwoli Ci wejść do panelu administratora witryny."
-
-#: mod/item.php:114
-msgid "Unable to locate original post."
-msgstr "Nie można zlokalizować oryginalnej wiadomości."
-
-#: mod/item.php:274
-msgid "Empty post discarded."
-msgstr "Pusty wpis został odrzucony."
-
-#: mod/item.php:799
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica"
-
-#: mod/item.php:801
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Możesz odwiedzić ich online pod adresem %s"
-
-#: mod/item.php:802
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości."
-
-#: mod/item.php:806
-#, php-format
-msgid "%s posted an update."
-msgstr "%s zaktualizował wpis."
-
-#: mod/oexchange.php:30
-msgid "Post successful."
-msgstr "Post dodany pomyślnie"
-
-#: mod/ostatus_subscribe.php:21
-msgid "Subscribing to OStatus contacts"
-msgstr "Subskrybowanie kontaktów OStatus"
-
-#: mod/ostatus_subscribe.php:33
-msgid "No contact provided."
-msgstr "Brak kontaktu."
-
-#: mod/ostatus_subscribe.php:40
-msgid "Couldn't fetch information for contact."
-msgstr "Nie można pobrać informacji o kontakcie."
-
-#: mod/ostatus_subscribe.php:50
-msgid "Couldn't fetch friends for contact."
-msgstr "Nie można pobrać znajomych do kontaktu."
-
-#: mod/ostatus_subscribe.php:78
-msgid "success"
-msgstr "powodzenie"
-
-#: mod/ostatus_subscribe.php:80
-msgid "failed"
-msgstr "nie powiodło się"
-
-#: mod/ostatus_subscribe.php:83 src/Object/Post.php:279
-msgid "ignored"
-msgstr "Ignoruj"
-
-#: mod/profile_photo.php:55
-msgid "Image uploaded but image cropping failed."
-msgstr "Zdjęcie zostało przesłane, ale przycinanie obrazu nie powiodło się."
-
-#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104
-#: mod/profile_photo.php:315
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Redukcja rozmiaru obrazka [%s] nie powiodła się."
-
-#: mod/profile_photo.php:125
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Ponownie załaduj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie nie pojawi się natychmiast."
-
-#: mod/profile_photo.php:134
-msgid "Unable to process image"
-msgstr "Nie udało się przetworzyć obrazu."
-
-#: mod/profile_photo.php:247
-msgid "Upload File:"
-msgstr "Wyślij plik:"
-
-#: mod/profile_photo.php:248
-msgid "Select a profile:"
-msgstr "Wybierz profil:"
-
-#: mod/profile_photo.php:253
-msgid "or"
-msgstr "lub"
-
-#: mod/profile_photo.php:253
-msgid "skip this step"
-msgstr "pomiń ten krok"
-
-#: mod/profile_photo.php:253
-msgid "select a photo from your photo albums"
-msgstr "wybierz zdjęcie z twojego albumu"
-
-#: mod/profile_photo.php:266
-msgid "Crop Image"
-msgstr "Przytnij zdjęcie"
-
-#: mod/profile_photo.php:267
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Dostosuj kadrowanie obrazu, aby uzyskać optymalny obraz."
-
-#: mod/profile_photo.php:269
-msgid "Done Editing"
-msgstr "Zakończono edycję"
-
-#: mod/profile_photo.php:305
-msgid "Image uploaded successfully."
-msgstr "Zdjęcie wczytano pomyślnie "
-
-#: mod/unfollow.php:34
-msgid "Contact wasn't found or can't be unfollowed."
-msgstr "Kontakt nie został znaleziony lub nie można go pominąć."
-
-#: mod/unfollow.php:47
-msgid "Contact unfollowed"
-msgstr "Skontaktuj się z obserwowanym"
-
-#: mod/unfollow.php:73
-msgid "You aren't a friend of this contact."
-msgstr "Nie jesteś przyjacielem tego kontaktu."
-
-#: mod/unfollow.php:79
-msgid "Unfollowing is currently not supported by your network."
-msgstr "Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć."
+#: mod/fbrowser.php:131
+msgid "Files"
+msgstr "Pliki"
#: mod/admin.php:106
msgid "Theme settings updated."
msgstr "Zaktualizowano ustawienia motywów."
-#: mod/admin.php:179 src/Content/Nav.php:174
-msgid "Information"
-msgstr "Informacje"
-
#: mod/admin.php:180
msgid "Overview"
msgstr "Przegląd"
@@ -4117,27 +5402,14 @@ msgstr "Konfiguracja"
msgid "Site"
msgstr "Strona"
-#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1788 mod/admin.php:1804
+#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1802 mod/admin.php:1818
msgid "Users"
msgstr "Użytkownicy"
-#: mod/admin.php:185 mod/admin.php:1904 mod/admin.php:1964 mod/settings.php:86
-msgid "Addons"
-msgstr "Dodatki"
-
-#: mod/admin.php:186 mod/admin.php:2173 mod/admin.php:2217
+#: mod/admin.php:186 mod/admin.php:2187 mod/admin.php:2231
msgid "Themes"
msgstr "Wygląd"
-#: mod/admin.php:187 mod/settings.php:64
-msgid "Additional features"
-msgstr "Dodatkowe funkcje"
-
-#: mod/admin.php:188 mod/admin.php:302 mod/register.php:288
-#: src/Module/Tos.php:48
-msgid "Terms of Service"
-msgstr "Warunki usługi"
-
#: mod/admin.php:189
msgid "Database"
msgstr "Baza danych"
@@ -4166,11 +5438,11 @@ msgstr "Lista zablokowanych serwerów"
msgid "Delete Item"
msgstr "Usuń przedmiot"
-#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2291
+#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2305
msgid "Logs"
msgstr "Logi"
-#: mod/admin.php:198 mod/admin.php:2358
+#: mod/admin.php:198 mod/admin.php:2372
msgid "View Logs"
msgstr "Zobacz rejestry"
@@ -4190,10 +5462,6 @@ msgstr "adres sondy"
msgid "check webfinger"
msgstr "sprawdź webfinger"
-#: mod/admin.php:222 src/Content/Nav.php:217
-msgid "Admin"
-msgstr "Administator"
-
#: mod/admin.php:223
msgid "Addon Features"
msgstr "Funkcje dodatkowe"
@@ -4204,8 +5472,8 @@ msgstr "Rejestracje użytkownika czekają na potwierdzenie."
#: mod/admin.php:301 mod/admin.php:361 mod/admin.php:478 mod/admin.php:520
#: mod/admin.php:717 mod/admin.php:752 mod/admin.php:848 mod/admin.php:1344
-#: mod/admin.php:1787 mod/admin.php:1903 mod/admin.php:1963 mod/admin.php:2172
-#: mod/admin.php:2216 mod/admin.php:2290 mod/admin.php:2357
+#: mod/admin.php:1801 mod/admin.php:1917 mod/admin.php:1977 mod/admin.php:2186
+#: mod/admin.php:2230 mod/admin.php:2304 mod/admin.php:2371
msgid "Administration"
msgstr "Administracja"
@@ -4244,10 +5512,6 @@ msgstr "Wprowadź tutaj Warunki świadczenia usług dla swojego węzła. Możesz
msgid "The blocked domain"
msgstr "Zablokowana domena"
-#: mod/admin.php:354 mod/admin.php:372 mod/friendica.php:128
-msgid "Reason for the block"
-msgstr "Powód blokowania"
-
#: mod/admin.php:354 mod/admin.php:367
msgid "The reason why you blocked this domain."
msgstr "Powód zablokowania tej domeny."
@@ -4321,15 +5585,6 @@ msgstr "Serwer dodany do listy zablokowanych."
msgid "Site blocklist updated."
msgstr "Zaktualizowano listę bloków witryny."
-#: mod/admin.php:441 src/Core/Console/GlobalCommunityBlock.php:72
-msgid "The contact has been blocked from the node"
-msgstr "Kontakt został zablokowany w węźle"
-
-#: mod/admin.php:443 src/Core/Console/GlobalCommunityBlock.php:69
-#, php-format
-msgid "Could not find any contact entry for this URL (%s)"
-msgstr "Nie można znaleźć żadnego kontaktu dla tego adresu URL (%s)"
-
#: mod/admin.php:450
#, php-format
msgid "%s contact unblocked"
@@ -4353,7 +5608,7 @@ msgstr "Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu
msgid "Block Remote Contact"
msgstr "Zablokuj kontakt zdalny"
-#: mod/admin.php:482 mod/admin.php:1790
+#: mod/admin.php:482 mod/admin.php:1804
msgid "select all"
msgstr "Zaznacz wszystko"
@@ -4361,6 +5616,16 @@ msgstr "Zaznacz wszystko"
msgid "select none"
msgstr "wybierz brak"
+#: mod/admin.php:484 mod/admin.php:1813 mod/contacts.php:637
+#: mod/contacts.php:827 mod/contacts.php:1011
+msgid "Block"
+msgstr "Zablokuj"
+
+#: mod/admin.php:485 mod/admin.php:1814 mod/contacts.php:637
+#: mod/contacts.php:827 mod/contacts.php:1011
+msgid "Unblock"
+msgstr "Odblokuj"
+
#: mod/admin.php:486
msgid "No remote contact is blocked from this node."
msgstr "Z tego węzła nie jest blokowany kontakt zdalny."
@@ -4377,9 +5642,10 @@ msgstr "Zablokuj nowy kontakt zdalny"
msgid "Photo"
msgstr "Zdjęcie"
-#: mod/admin.php:490 mod/profiles.php:394
-msgid "Address"
-msgstr "Adres"
+#: mod/admin.php:490 mod/admin.php:500 mod/unfollow.php:122
+#: mod/notifications.php:258 mod/follow.php:166 mod/contacts.php:656
+msgid "Profile URL"
+msgstr "Adres URL profilu"
#: mod/admin.php:498
#, php-format
@@ -4459,11 +5725,6 @@ msgstr "Nazwa odbiorcy"
msgid "Recipient Profile"
msgstr "Profil odbiorcy"
-#: mod/admin.php:758 view/theme/frio/theme.php:266
-#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:178
-msgid "Network"
-msgstr "Sieć"
-
#: mod/admin.php:759
msgid "Created"
msgstr "Utwórz"
@@ -4515,19 +5776,19 @@ msgid ""
" check your crontab settings."
msgstr "Ostatnie wykonanie robota było w %s UTC. To jest starsze niż jedna godzina. Sprawdź ustawienia crontab."
-#: mod/admin.php:816 mod/admin.php:1739
+#: mod/admin.php:816
msgid "Normal Account"
msgstr "Konto normalne"
-#: mod/admin.php:817 mod/admin.php:1740
+#: mod/admin.php:817
msgid "Automatic Follower Account"
msgstr "Automatyczne konto obserwatora"
-#: mod/admin.php:818 mod/admin.php:1741
+#: mod/admin.php:818
msgid "Public Forum Account"
msgstr "Publiczne konto na forum"
-#: mod/admin.php:819 mod/admin.php:1742
+#: mod/admin.php:819
msgid "Automatic Friend Account"
msgstr "Automatyczny przyjaciel konta"
@@ -4571,10 +5832,6 @@ msgstr "Nie można zanalizować podstawowego adresu URL. Musi mieć co najmniej
msgid "Site settings updated."
msgstr "Ustawienia strony zaktualizowane"
-#: mod/admin.php:1236 mod/settings.php:905
-msgid "No special theme for mobile devices"
-msgstr "Brak specialnego motywu dla urządzeń mobilnych"
-
#: mod/admin.php:1265
msgid "No community page"
msgstr "Brak strony społeczności"
@@ -4591,6 +5848,11 @@ msgstr "Publikacje wpisy ze sfederowanej sieci"
msgid "Public postings from local users and the federated network"
msgstr "Publikacje publiczne od użytkowników lokalnych i sieci federacyjnej"
+#: mod/admin.php:1272 mod/admin.php:1435 mod/admin.php:1445
+#: mod/contacts.php:572
+msgid "Disabled"
+msgstr "Wyłączony"
+
#: mod/admin.php:1274
msgid "Users, Global Contacts"
msgstr "Użytkownicy, kontakty globalne"
@@ -4621,7 +5883,7 @@ msgstr "Tryb wielu użytkowników"
#: mod/admin.php:1310
msgid "Closed"
-msgstr "Zamknięta"
+msgstr "Zamknięte"
#: mod/admin.php:1311
msgid "Requires approval"
@@ -4629,7 +5891,7 @@ msgstr "Wymagane zatwierdzenie."
#: mod/admin.php:1312
msgid "Open"
-msgstr "Otwarte"
+msgstr "Otwarta"
#: mod/admin.php:1316
msgid "No SSL policy, links will track page SSL state"
@@ -4665,11 +5927,11 @@ msgstr "Rejestracja"
#: mod/admin.php:1349
msgid "File upload"
-msgstr "Plik załadowano"
+msgstr "Przesyłanie plików"
#: mod/admin.php:1350
msgid "Policies"
-msgstr "zasady"
+msgstr "Zasady"
#: mod/admin.php:1352
msgid "Auto Discovered Contact Directory"
@@ -4816,17 +6078,17 @@ msgstr "Maksymalna długość obrazu"
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
-msgstr "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu."
+msgstr "Maksymalna długość w pikselach dłuższego boku przesyłanego obrazu. Wartością domyślną jest -1, co oznacza brak ograniczeń."
#: mod/admin.php:1375
msgid "JPEG image quality"
-msgstr "jakość obrazu JPEG"
+msgstr "Jakość obrazu JPEG"
#: mod/admin.php:1375
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
-msgstr "Wczytywanie JPEGS będzie zapisane z tymi ustawieniami jakości [0-100] . Domyslnie jest ustawione 100 co oznacza brak strat jakości . "
+msgstr "Przesłane pliki JPEG zostaną zapisane w tym ustawieniu jakości [0-100]. Domyślna wartość to 100, która jest pełną jakością."
#: mod/admin.php:1377
msgid "Register policy"
@@ -4871,7 +6133,7 @@ msgstr "Dozwolone domeny przyjaciół"
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Lista domen separowana przecinkami które mogą zaprzyjaźnić się z tą stroną . Wildcards są akceptowane . Pozostaw puste by zezwolić każdej domenie na zapryjaźnienie. "
+msgstr "Rozdzielana przecinkami lista domen, które mogą nawiązywać przyjaźnie z tą witryną. Symbole wieloznaczne są akceptowane. Pozostaw puste by zezwolić każdej domenie na zaprzyjaźnienie."
#: mod/admin.php:1382
msgid "Allowed email domains"
@@ -5116,7 +6378,7 @@ msgstr "Maksymalne obciążenie średnie"
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
-msgstr "Maksymalne obciążenie systemu przed dostawą i odpytywaniem jest odroczone - domyślnie 50."
+msgstr "Maksymalne obciążenie systemu przed dostawą i odpytywaniem jest odłożone - domyślnie 50."
#: mod/admin.php:1410
msgid "Maximum Load Average (Frontend)"
@@ -5536,11 +6798,6 @@ msgid ""
"\t\t\tThank you and welcome to %4$s."
msgstr "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%1$s\n\t\t\tNazwa użytkownika:%2$s\n\t\t\tHasło:%3$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\"\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i\n\t\t\tbyć może w jakim kraju mieszkasz; jeśli nie chcesz być bardziej szczegółowy.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić w %1$s/Usuń konto\n\n\t\t\tDziękujemy i Zapraszamy do%4$s"
-#: mod/admin.php:1611 src/Model/User.php:663
-#, php-format
-msgid "Registration details for %s"
-msgstr "Szczegóły rejestracji dla %s"
-
#: mod/admin.php:1621
#, php-format
msgid "%s user blocked/unblocked"
@@ -5574,134 +6831,137 @@ msgstr "Użytkownik '%s' odblokowany"
msgid "User '%s' blocked"
msgstr "Użytkownik '%s' zablokowany"
-#: mod/admin.php:1781 mod/admin.php:1793 mod/admin.php:1806 mod/admin.php:1824
-#: src/Content/ContactSelector.php:82
-msgid "Email"
-msgstr "E-mail"
+#: mod/admin.php:1743
+msgid "Private Forum"
+msgstr "Prywatne forum"
-#: mod/admin.php:1781 mod/admin.php:1806
+#: mod/admin.php:1796 mod/admin.php:1820
msgid "Register date"
msgstr "Data rejestracji"
-#: mod/admin.php:1781 mod/admin.php:1806
+#: mod/admin.php:1796 mod/admin.php:1820
msgid "Last login"
msgstr "Ostatnie logowanie"
-#: mod/admin.php:1781 mod/admin.php:1806
+#: mod/admin.php:1796 mod/admin.php:1820
msgid "Last item"
msgstr "Ostatni element"
-#: mod/admin.php:1781 mod/settings.php:55
-msgid "Account"
-msgstr "Konto"
+#: mod/admin.php:1796
+msgid "Type"
+msgstr "Typu"
-#: mod/admin.php:1789
+#: mod/admin.php:1803
msgid "Add User"
msgstr "Dodaj użytkownika"
-#: mod/admin.php:1791
+#: mod/admin.php:1805
msgid "User registrations waiting for confirm"
-msgstr "zarejestrowany użytkownik czeka na potwierdzenie"
+msgstr "Zarejestrowani użytkownicy czekający na potwierdzenie"
-#: mod/admin.php:1792
+#: mod/admin.php:1806
msgid "User waiting for permanent deletion"
msgstr "Użytkownik czekający na trwałe usunięcie"
-#: mod/admin.php:1793
+#: mod/admin.php:1807
msgid "Request date"
msgstr "Data prośby"
-#: mod/admin.php:1794
+#: mod/admin.php:1808
msgid "No registrations."
-msgstr "brak rejestracji"
+msgstr "Brak rejestracji."
-#: mod/admin.php:1795
+#: mod/admin.php:1809
msgid "Note from the user"
msgstr "Uwaga od użytkownika"
-#: mod/admin.php:1797
+#: mod/admin.php:1810 mod/notifications.php:179 mod/notifications.php:264
+msgid "Approve"
+msgstr "Zatwierdź"
+
+#: mod/admin.php:1811
msgid "Deny"
msgstr "Odmów"
-#: mod/admin.php:1801
+#: mod/admin.php:1815
msgid "Site admin"
msgstr "Administracja stroną"
-#: mod/admin.php:1802
+#: mod/admin.php:1816
msgid "Account expired"
msgstr "Konto wygasło."
-#: mod/admin.php:1805
+#: mod/admin.php:1819
msgid "New User"
msgstr "Nowy użytkownik"
-#: mod/admin.php:1806
+#: mod/admin.php:1820
msgid "Deleted since"
msgstr "Skasowany od"
-#: mod/admin.php:1811
+#: mod/admin.php:1825
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"
-#: mod/admin.php:1812
+#: mod/admin.php:1826
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Użytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"
-#: mod/admin.php:1822
+#: mod/admin.php:1836
msgid "Name of the new user."
msgstr "Nazwa nowego użytkownika."
-#: mod/admin.php:1823
+#: mod/admin.php:1837
msgid "Nickname"
msgstr "Pseudonim"
-#: mod/admin.php:1823
+#: mod/admin.php:1837
msgid "Nickname of the new user."
msgstr "Pseudonim nowego użytkownika."
-#: mod/admin.php:1824
+#: mod/admin.php:1838
msgid "Email address of the new user."
msgstr "Adres email nowego użytkownika."
-#: mod/admin.php:1866
+#: mod/admin.php:1880
#, php-format
msgid "Addon %s disabled."
msgstr "Dodatek %s wyłączony."
-#: mod/admin.php:1870
+#: mod/admin.php:1884
#, php-format
msgid "Addon %s enabled."
msgstr "Dodatek %s włączony."
-#: mod/admin.php:1880 mod/admin.php:2129
+#: mod/admin.php:1894 mod/admin.php:2143
msgid "Disable"
msgstr "Wyłącz"
-#: mod/admin.php:1883 mod/admin.php:2132
+#: mod/admin.php:1897 mod/admin.php:2146
msgid "Enable"
msgstr "Zezwól"
-#: mod/admin.php:1905 mod/admin.php:2174
+#: mod/admin.php:1919 mod/admin.php:2188
msgid "Toggle"
msgstr "Włącz"
-#: mod/admin.php:1913 mod/admin.php:2183
+#: mod/admin.php:1927 mod/admin.php:2197
msgid "Author: "
msgstr "Autor: "
-#: mod/admin.php:1914 mod/admin.php:2184
+#: mod/admin.php:1928 mod/admin.php:2198
msgid "Maintainer: "
msgstr "Opiekun:"
-#: mod/admin.php:1966
+#: mod/admin.php:1980
msgid "Reload active addons"
msgstr "Załaduj ponownie aktywne dodatki"
-#: mod/admin.php:1971
+#: mod/admin.php:1985
#, php-format
msgid ""
"There are currently no addons available on your node. You can find the "
@@ -5709,70 +6969,70 @@ msgid ""
" the open addon registry at %2$s"
msgstr "W twoim węźle nie ma obecnie żadnych dodatków. Możesz znaleźć oficjalne repozytorium dodatków na %1$s i możesz znaleźć inne interesujące dodatki w otwartym rejestrze dodatków na %2$s"
-#: mod/admin.php:2091
+#: mod/admin.php:2105
msgid "No themes found."
msgstr "Nie znaleziono motywów."
-#: mod/admin.php:2165
+#: mod/admin.php:2179
msgid "Screenshot"
msgstr "Zrzut ekranu"
-#: mod/admin.php:2219
+#: mod/admin.php:2233
msgid "Reload active themes"
msgstr "Przeładuj aktywne motywy"
-#: mod/admin.php:2224
+#: mod/admin.php:2238
#, php-format
msgid "No themes found on the system. They should be placed in %1$s"
msgstr "Nie znaleziono motywów w systemie. Powinny zostać umieszczone %1$s"
-#: mod/admin.php:2225
+#: mod/admin.php:2239
msgid "[Experimental]"
msgstr "[Eksperymentalne]"
-#: mod/admin.php:2226
+#: mod/admin.php:2240
msgid "[Unsupported]"
msgstr "[Niewspieralne]"
-#: mod/admin.php:2250
+#: mod/admin.php:2264
msgid "Log settings updated."
msgstr "Zaktualizowano ustawienia logów."
-#: mod/admin.php:2282
+#: mod/admin.php:2296
msgid "PHP log currently enabled."
msgstr "Dziennik PHP jest obecnie włączony."
-#: mod/admin.php:2284
+#: mod/admin.php:2298
msgid "PHP log currently disabled."
msgstr "Dziennik PHP jest obecnie wyłączony."
-#: mod/admin.php:2293
+#: mod/admin.php:2307
msgid "Clear"
msgstr "Wyczyść"
-#: mod/admin.php:2297
+#: mod/admin.php:2311
msgid "Enable Debugging"
msgstr "Włącz debugowanie"
-#: mod/admin.php:2298
+#: mod/admin.php:2312
msgid "Log file"
msgstr "Plik logów"
-#: mod/admin.php:2298
+#: mod/admin.php:2312
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr "Musi być zapisywalny przez serwer sieciowy. W stosunku do katalogu najwyższego poziomu Friendica."
-#: mod/admin.php:2299
+#: mod/admin.php:2313
msgid "Log level"
msgstr "Poziom logów"
-#: mod/admin.php:2301
+#: mod/admin.php:2315
msgid "PHP logging"
msgstr "Logowanie w PHP"
-#: mod/admin.php:2302
+#: mod/admin.php:2316
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 "
@@ -5781,146 +7041,924 @@ msgid ""
"'display_errors' is to enable these options, set to '0' to disable them."
msgstr "Aby włączyć rejestrowanie błędów i ostrzeżeń PHP, możesz dodać następujące dane do pliku .htconfig.php instalacji. Nazwa pliku ustawiona w linii 'error_log' odnosi się do katalogu najwyższego poziomu friendiki i musi być zapisywalna przez serwer WWW. Opcja '1' dla 'log_errors' i 'display_errors' polega na włączeniu tych opcji, ustawieniu na '0', aby je wyłączyć."
-#: mod/admin.php:2333
+#: mod/admin.php:2347
#, php-format
msgid ""
"Error trying to open %1$s log file.\\r\\n Check to see "
"if file %1$s exist and is readable."
msgstr "Błąd podczas próby otwarcia %1$s pliku dziennika. \\r\\n Sprawdź, czy plik %1$s istnieje i czy można go odczytać."
-#: mod/admin.php:2337
+#: mod/admin.php:2351
#, php-format
msgid ""
"Couldn't open %1$s log file.\\r\\n Check to see if file"
" %1$s is readable."
msgstr "Nie można otworzyć %1$s pliku dziennika. \\r\\n Sprawdź, czy plik %1$s jest czytelny."
-#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775
-msgid "Off"
-msgstr "Wyłącz"
-
-#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775
-msgid "On"
-msgstr "Włącz"
-
-#: mod/admin.php:2429
+#: mod/admin.php:2443
#, php-format
msgid "Lock feature %s"
msgstr "Funkcja blokady %s"
-#: mod/admin.php:2437
+#: mod/admin.php:2451
msgid "Manage Additional Features"
-msgstr "Zarządzaj dodatkowymi funkcjami"
+msgstr "Zarządzanie dodatkowymi funkcjami"
-#: mod/babel.php:22
-msgid "Source input"
-msgstr "Źródło wejściowe"
+#: mod/delegate.php:37
+msgid "Parent user not found."
+msgstr "Nie znaleziono użytkownika nadrzędnego."
-#: mod/babel.php:28
-msgid "BBCode::convert (raw HTML)"
-msgstr "BBCode:: konwersjia (raw HTML)"
+#: mod/delegate.php:144
+msgid "No parent user"
+msgstr "Brak nadrzędnego użytkownika"
-#: mod/babel.php:33
-msgid "BBCode::convert"
-msgstr "BBCode::przekształć"
+#: mod/delegate.php:159
+msgid "Parent Password:"
+msgstr "Hasło nadrzędne:"
-#: mod/babel.php:39
-msgid "BBCode::convert => HTML::toBBCode"
-msgstr "BBCode::przekształć => HTML::toBBCode"
+#: mod/delegate.php:159
+msgid ""
+"Please enter the password of the parent account to legitimize your request."
+msgstr "Wprowadź hasło konta nadrzędnego, aby legalizować swoje żądanie."
-#: mod/babel.php:45
-msgid "BBCode::toMarkdown"
-msgstr "BBCode::toMarkdown"
+#: mod/delegate.php:164
+msgid "Parent User"
+msgstr "Użytkownik nadrzędny"
-#: mod/babel.php:51
-msgid "BBCode::toMarkdown => Markdown::convert"
-msgstr "BBCode::toMarkdown => Markdown::przekształć"
+#: mod/delegate.php:167
+msgid ""
+"Parent users have total control about this account, including the account "
+"settings. Please double check whom you give this access."
+msgstr "Użytkownicy nadrzędni mają pełną kontrolę nad tym kontem, w tym także ustawienia konta. Sprawdź dokładnie, komu przyznasz ten dostęp."
-#: mod/babel.php:57
-msgid "BBCode::toMarkdown => Markdown::toBBCode"
-msgstr "BBCode::toMarkdown => Markdown::toBBCode"
+#: mod/delegate.php:170
+msgid "Delegates"
+msgstr "Oddeleguj"
-#: mod/babel.php:63
-msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
-msgstr "BBCode::toMarkdown => Markdown::przekształć => HTML::toBBCode"
+#: mod/delegate.php:172
+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 "Delegaci mogą zarządzać wszystkimi aspektami tego konta/strony, z wyjątkiem podstawowych ustawień konta. Nie przekazuj swojego konta osobistego nikomu, komu nie ufasz całkowicie."
-#: mod/babel.php:70
-msgid "Source input \\x28Diaspora format\\x29"
-msgstr "Źródło wejściowe \\x28Diaspora format\\x29"
+#: mod/delegate.php:173
+msgid "Existing Page Delegates"
+msgstr "Obecni delegaci stron"
-#: mod/babel.php:76
-msgid "Markdown::toBBCode"
-msgstr "Markdown::toBBCode"
+#: mod/delegate.php:175
+msgid "Potential Delegates"
+msgstr "Potencjalni delegaci"
-#: mod/babel.php:83
-msgid "Raw HTML input"
-msgstr "Surowe wejście HTML"
+#: mod/delegate.php:177 mod/tagrm.php:98
+msgid "Remove"
+msgstr "Usuń"
-#: mod/babel.php:88
-msgid "HTML Input"
-msgstr "Wejście HTML"
+#: mod/delegate.php:178
+msgid "Add"
+msgstr "Dodaj"
-#: mod/babel.php:94
-msgid "HTML::toBBCode"
-msgstr "HTML::toBBCode"
+#: mod/delegate.php:179
+msgid "No entries."
+msgstr "Brak wpisów."
-#: mod/babel.php:100
-msgid "HTML::toPlaintext"
-msgstr "HTML::toPlaintext"
+#: mod/photos.php:109 mod/photos.php:1713
+msgid "Recent Photos"
+msgstr "Ostatnio dodane zdjęcia"
-#: mod/babel.php:108
-msgid "Source text"
-msgstr "Tekst źródłowy"
+#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
+msgid "Upload New Photos"
+msgstr "Wyślij nowe zdjęcie"
-#: mod/babel.php:109
-msgid "BBCode"
-msgstr "BBCode"
+#: mod/photos.php:184
+msgid "Contact information unavailable"
+msgstr "Informacje kontaktowe są niedostępne."
-#: mod/babel.php:110
-msgid "Markdown"
-msgstr "Markdown"
+#: mod/photos.php:204
+msgid "Album not found."
+msgstr "Album nie znaleziony"
-#: mod/babel.php:111
-msgid "HTML"
-msgstr "HTML"
+#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
+msgid "Delete Album"
+msgstr "Usuń album"
-#: mod/directory.php:152 src/Model/Profile.php:421 src/Model/Profile.php:771
-msgid "Status:"
-msgstr "Status:"
+#: mod/photos.php:243
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?"
-#: mod/directory.php:153 src/Model/Profile.php:422 src/Model/Profile.php:788
-msgid "Homepage:"
-msgstr "Strona główna:"
+#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
+msgid "Delete Photo"
+msgstr "Usuń zdjęcie"
-#: mod/directory.php:202 view/theme/vier/theme.php:201
-msgid "Global Directory"
-msgstr "Globalny Katalog"
+#: mod/photos.php:319
+msgid "Do you really want to delete this photo?"
+msgstr "Czy na pewno chcesz usunąć to zdjęcie ?"
-#: mod/directory.php:204
-msgid "Find on this site"
-msgstr "Znajdź na tej stronie"
+#: mod/photos.php:667
+msgid "a photo"
+msgstr "zdjęcie"
-#: mod/directory.php:206
-msgid "Results for:"
-msgstr "Wyniki dla:"
-
-#: mod/directory.php:208
-msgid "Site Directory"
-msgstr "Katalog Witryny"
-
-#: mod/directory.php:213
-msgid "No entries (some entries may be hidden)."
-msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."
-
-#: mod/dirfind.php:49
+#: mod/photos.php:667
#, php-format
-msgid "People Search - %s"
-msgstr "Szukaj osób - %s"
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$szostał oznaczony tagiem %2$s przez %3$s"
-#: mod/dirfind.php:60
+#: mod/photos.php:769
+msgid "Image upload didn't complete, please try again"
+msgstr "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie"
+
+#: mod/photos.php:772
+msgid "Image file is missing"
+msgstr "Brak pliku obrazu"
+
+#: mod/photos.php:777
+msgid ""
+"Server can't accept new file upload at this time, please contact your "
+"administrator"
+msgstr "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem"
+
+#: mod/photos.php:803
+msgid "Image file is empty."
+msgstr "Plik obrazka jest pusty."
+
+#: mod/photos.php:940
+msgid "No photos selected"
+msgstr "Nie zaznaczono zdjęć"
+
+#: mod/photos.php:1036 mod/videos.php:309
+msgid "Access to this item is restricted."
+msgstr "Dostęp do tego obiektu jest ograniczony."
+
+#: mod/photos.php:1090
+msgid "Upload Photos"
+msgstr "Prześlij zdjęcia"
+
+#: mod/photos.php:1094 mod/photos.php:1156
+msgid "New album name: "
+msgstr "Nazwa nowego albumu:"
+
+#: mod/photos.php:1095
+msgid "or existing album name: "
+msgstr "lub istniejąca nazwa albumu:"
+
+#: mod/photos.php:1096
+msgid "Do not show a status post for this upload"
+msgstr "Nie pokazuj statusu postów dla tego wysłania"
+
+#: mod/photos.php:1167
+msgid "Edit Album"
+msgstr "Edytuj album"
+
+#: mod/photos.php:1172
+msgid "Show Newest First"
+msgstr "Najpierw pokaż najnowsze"
+
+#: mod/photos.php:1174
+msgid "Show Oldest First"
+msgstr "Najpierw pokaż najstarsze"
+
+#: mod/photos.php:1195 mod/photos.php:1698
+msgid "View Photo"
+msgstr "Zobacz zdjęcie"
+
+#: mod/photos.php:1236
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony."
+
+#: mod/photos.php:1238
+msgid "Photo not available"
+msgstr "Zdjęcie niedostępne"
+
+#: mod/photos.php:1301
+msgid "View photo"
+msgstr "Zobacz zdjęcie"
+
+#: mod/photos.php:1301
+msgid "Edit photo"
+msgstr "Edytuj zdjęcie"
+
+#: mod/photos.php:1302
+msgid "Use as profile photo"
+msgstr "Ustaw jako zdjęcie profilowe"
+
+#: mod/photos.php:1327
+msgid "View Full Size"
+msgstr "Zobacz w pełnym rozmiarze"
+
+#: mod/photos.php:1414
+msgid "Tags: "
+msgstr "Tagi:"
+
+#: mod/photos.php:1417
+msgid "[Remove any tag]"
+msgstr "[Usunąć znacznik]"
+
+#: mod/photos.php:1432
+msgid "New album name"
+msgstr "Nazwa nowego albumu"
+
+#: mod/photos.php:1433
+msgid "Caption"
+msgstr "Zawartość"
+
+#: mod/photos.php:1434
+msgid "Add a Tag"
+msgstr "Dodaj tag"
+
+#: mod/photos.php:1434
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+
+#: mod/photos.php:1435
+msgid "Do not rotate"
+msgstr "Nie obracaj"
+
+#: mod/photos.php:1436
+msgid "Rotate CW (right)"
+msgstr "Obróć CW (w prawo)"
+
+#: mod/photos.php:1437
+msgid "Rotate CCW (left)"
+msgstr "Obróć CCW (w lewo)"
+
+#: mod/photos.php:1634
+msgid "Map"
+msgstr "Mapa"
+
+#: mod/photos.php:1704 mod/videos.php:387
+msgid "View Album"
+msgstr "Zobacz album"
+
+#: mod/nogroup.php:43 mod/contacts.php:960
+msgid "Edit contact"
+msgstr "Edytuj kontakt"
+
+#: mod/nogroup.php:63
+msgid "Contacts who are not members of a group"
+msgstr "Kontakty spoza członków grupy"
+
+#: mod/community.php:46
+msgid "Community option not available."
+msgstr "Opcja wspólnotowa jest niedostępna."
+
+#: mod/community.php:63
+msgid "Not available."
+msgstr "Niedostępne."
+
+#: mod/community.php:76
+msgid "Local Community"
+msgstr "Lokalna społeczność"
+
+#: mod/community.php:79
+msgid "Posts from local users on this server"
+msgstr "Wpisy od lokalnych użytkowników na tym serwerze"
+
+#: mod/community.php:87
+msgid "Global Community"
+msgstr "Globalna społeczność"
+
+#: mod/community.php:90
+msgid "Posts from users of the whole federated network"
+msgstr "Wpisy od użytkowników całej sieci stowarzyszonej"
+
+#: mod/community.php:136 mod/search.php:228
+msgid "No results."
+msgstr "Brak wyników."
+
+#: mod/community.php:180
+msgid ""
+"This community stream shows all public posts received by this node. They may"
+" not reflect the opinions of this node’s users."
+msgstr "Ten strumień społeczności pokazuje wszystkie publiczne posty otrzymane przez ten węzeł. Mogą nie odzwierciedlać opinii użytkowników tego węzła."
+
+#: mod/message.php:73 mod/wallmessage.php:57
+msgid "No recipient selected."
+msgstr "Nie wybrano odbiorcy."
+
+#: mod/message.php:77
+msgid "Unable to locate contact information."
+msgstr "Nie można znaleźć informacji kontaktowych."
+
+#: mod/message.php:80 mod/wallmessage.php:63
+msgid "Message could not be sent."
+msgstr "Wiadomość nie może zostać wysłana"
+
+#: mod/message.php:83 mod/wallmessage.php:66
+msgid "Message collection failure."
+msgstr "Błąd zbierania komunikatów."
+
+#: mod/message.php:86 mod/wallmessage.php:69
+msgid "Message sent."
+msgstr "Wysłano."
+
+#: mod/message.php:136
+msgid "Do you really want to delete this message?"
+msgstr "Czy na pewno chcesz usunąć tę wiadomość?"
+
+#: mod/message.php:156
+msgid "Message deleted."
+msgstr "Wiadomość usunięta."
+
+#: mod/message.php:185
+msgid "Conversation removed."
+msgstr "Rozmowa usunięta."
+
+#: mod/message.php:250 mod/wallmessage.php:132
+msgid "Send Private Message"
+msgstr "Wyślij prywatną wiadomość"
+
+#: mod/message.php:251 mod/message.php:421 mod/wallmessage.php:134
+msgid "To:"
+msgstr "Do:"
+
+#: mod/message.php:255 mod/message.php:423 mod/wallmessage.php:135
+msgid "Subject:"
+msgstr "Temat:"
+
+#: mod/message.php:291
+msgid "No messages."
+msgstr "Brak wiadomości."
+
+#: mod/message.php:330
+msgid "Message not available."
+msgstr "Wiadomość nie jest dostępna."
+
+#: mod/message.php:397
+msgid "Delete message"
+msgstr "Usuń wiadomość"
+
+#: mod/message.php:399 mod/message.php:500
+msgid "D, d M Y - g:i A"
+msgstr "D, d M R - g:m AM/PM"
+
+#: mod/message.php:414 mod/message.php:497
+msgid "Delete conversation"
+msgstr "Usuń rozmowę"
+
+#: mod/message.php:416
+msgid ""
+"No secure communications available. You may be able to "
+"respond from the sender's profile page."
+msgstr "Brak bezpiecznej komunikacji. Możesz odpowiedzieć na stronie profilu nadawcy."
+
+#: mod/message.php:420
+msgid "Send Reply"
+msgstr "Odpowiedz"
+
+#: mod/message.php:471
#, php-format
-msgid "Forum Search - %s"
-msgstr "Przeszukiwanie forum - %s"
+msgid "Unknown sender - %s"
+msgstr "Nieznany nadawca - %s"
+
+#: mod/message.php:473
+#, php-format
+msgid "You and %s"
+msgstr "Ty i %s"
+
+#: mod/message.php:475
+#, php-format
+msgid "%s and You"
+msgstr "%s i ty"
+
+#: mod/message.php:503
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] " %d wiadomość"
+msgstr[1] " %d wiadomości"
+msgstr[2] " %d wiadomości"
+msgstr[3] " %d wiadomości"
+
+#: mod/videos.php:139
+msgid "Do you really want to delete this video?"
+msgstr "Czy na pewno chcesz usunąć ten film wideo?"
+
+#: mod/videos.php:144
+msgid "Delete Video"
+msgstr "Usuń wideo"
+
+#: mod/videos.php:207
+msgid "No videos selected"
+msgstr "Nie zaznaczono filmów"
+
+#: mod/videos.php:396
+msgid "Recent Videos"
+msgstr "Ostatnio dodane filmy"
+
+#: mod/videos.php:398
+msgid "Upload New Videos"
+msgstr "Wstaw nowe filmy"
+
+#: mod/credits.php:18
+msgid "Credits"
+msgstr "Zaufany"
+
+#: mod/credits.php:19
+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 to projekt społecznościowy, który nie byłby możliwy bez pomocy wielu osób. Oto lista osób, które przyczyniły się do tworzenia kodu lub tłumaczenia Friendica. Dziękuję wam wszystkim!"
+
+#: mod/unfollow.php:34
+msgid "Contact wasn't found or can't be unfollowed."
+msgstr "Kontakt nie został znaleziony lub nie można go pominąć."
+
+#: mod/unfollow.php:47
+msgid "Contact unfollowed"
+msgstr "Skontaktuj się z obserwowanym"
+
+#: mod/unfollow.php:65 mod/dfrn_request.php:662 mod/follow.php:62
+msgid "Submit Request"
+msgstr "Wyślij zgłoszenie"
+
+#: mod/unfollow.php:73
+msgid "You aren't a friend of this contact."
+msgstr "Nie jesteś przyjacielem tego kontaktu."
+
+#: mod/unfollow.php:79
+msgid "Unfollowing is currently not supported by your network."
+msgstr "Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć."
+
+#: mod/unfollow.php:100 mod/contacts.php:599
+msgid "Disconnect/Unfollow"
+msgstr "Rozłącz/Nie obserwuj"
+
+#: mod/unfollow.php:113 mod/dfrn_request.php:660 mod/follow.php:157
+msgid "Your Identity Address:"
+msgstr "Twój adres tożsamości:"
+
+#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83
+#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112
+#: mod/wall_upload.php:155 mod/wall_upload.php:158
+msgid "Invalid request."
+msgstr "Nieprawidłowe żądanie."
+
+#: mod/wall_attach.php:101
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Przepraszam, może twój przesyłany plik jest większy niż pozwala konfiguracja PHP"
+
+#: mod/wall_attach.php:101
+msgid "Or - did you try to upload an empty file?"
+msgstr "Lub - czy próbowałeś załadować pusty plik?"
+
+#: mod/wall_attach.php:112
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "Plik przekracza limit rozmiaru wynoszący %s"
+
+#: mod/wall_attach.php:136 mod/wall_attach.php:152
+msgid "File upload failed."
+msgstr "Przesyłanie pliku nie powiodło się."
+
+#: mod/profile.php:194
+msgid "Tips for New Members"
+msgstr "Wskazówki dla nowych użytkowników"
+
+#: mod/localtime.php:33
+msgid "Time Conversion"
+msgstr "Zmiana czasu"
+
+#: mod/localtime.php:35
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica udostępnia tę usługę do udostępniania wydarzeń innym sieciom i znajomym w nieznanych strefach czasowych."
+
+#: mod/localtime.php:39
+#, php-format
+msgid "UTC time: %s"
+msgstr "Czas UTC %s"
+
+#: mod/localtime.php:42
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Obecna strefa czasowa: %s"
+
+#: mod/localtime.php:46
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Zmień strefę czasową: %s"
+
+#: mod/localtime.php:52
+msgid "Please select your timezone:"
+msgstr "Wybierz swoją strefę czasową:"
+
+#: mod/dfrn_request.php:94
+msgid "This introduction has already been accepted."
+msgstr "To wprowadzenie zostało już zaakceptowane."
+
+#: mod/dfrn_request.php:112 mod/dfrn_request.php:359
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Lokalizacja profilu jest nieprawidłowa lub nie zawiera informacji o profilu."
+
+#: mod/dfrn_request.php:116 mod/dfrn_request.php:363
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik."
+
+#: mod/dfrn_request.php:119 mod/dfrn_request.php:366
+msgid "Warning: profile location has no profile photo."
+msgstr "Ostrzeżenie: położenie profilu nie zawiera zdjęcia."
+
+#: mod/dfrn_request.php:123 mod/dfrn_request.php:370
+#, 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 wymagany parametr nie został znaleziony w podanej lokacji"
+msgstr[1] "%d wymagane parametry nie zostały znalezione w podanej lokacji"
+msgstr[2] "%d wymagany parametr nie został znaleziony w podanej lokacji"
+msgstr[3] "%d wymagany parametr nie został znaleziony w podanej lokacji"
+
+#: mod/dfrn_request.php:162
+msgid "Introduction complete."
+msgstr "Wprowadzanie zakończone."
+
+#: mod/dfrn_request.php:199
+msgid "Unrecoverable protocol error."
+msgstr "Nieodwracalny błąd protokołu."
+
+#: mod/dfrn_request.php:226
+msgid "Profile unavailable."
+msgstr "Profil niedostępny."
+
+#: mod/dfrn_request.php:248
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s otrzymał dziś zbyt wiele żądań połączeń."
+
+#: mod/dfrn_request.php:249
+msgid "Spam protection measures have been invoked."
+msgstr "Wprowadzono zabezpieczenia przed spamem."
+
+#: mod/dfrn_request.php:250
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Przyjaciele namawiają do spróbowania za 24h."
+
+#: mod/dfrn_request.php:280
+msgid "Invalid locator"
+msgstr "Nieprawidłowy lokalizator"
+
+#: mod/dfrn_request.php:316
+msgid "You have already introduced yourself here."
+msgstr "Już się tu przedstawiłeś."
+
+#: mod/dfrn_request.php:319
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Wygląda na to, że już jesteście przyjaciółmi z %s"
+
+#: mod/dfrn_request.php:339
+msgid "Invalid profile URL."
+msgstr "Nieprawidłowy URL profilu."
+
+#: mod/dfrn_request.php:419 mod/contacts.php:230
+msgid "Failed to update contact record."
+msgstr "Aktualizacja rekordu kontaktu nie powiodła się."
+
+#: mod/dfrn_request.php:439
+msgid "Your introduction has been sent."
+msgstr "Twoje dane zostały wysłane."
+
+#: mod/dfrn_request.php:477
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
+msgstr "Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie."
+
+#: mod/dfrn_request.php:493
+msgid "Please login to confirm introduction."
+msgstr "Zaloguj się, aby potwierdzić wprowadzenie."
+
+#: mod/dfrn_request.php:501
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"this profile."
+msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. "
+
+#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
+msgid "Confirm"
+msgstr "Potwierdź"
+
+#: mod/dfrn_request.php:527
+msgid "Hide this contact"
+msgstr "Ukryj kontakt"
+
+#: mod/dfrn_request.php:530
+#, php-format
+msgid "Welcome home %s."
+msgstr "Welcome home %s."
+
+#: mod/dfrn_request.php:531
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s."
+
+#: mod/dfrn_request.php:642
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Wprowadź swój 'Adres tożsamości' z jednej z następujących obsługiwanych sieci komunikacyjnych:"
+
+#: mod/dfrn_request.php:645
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, follow "
+"this link to find a public Friendica site and join us today ."
+msgstr "Jeśli nie jesteś jeszcze członkiem darmowej sieci społecznościowej, kliknij ten link, aby znaleźć publiczną witrynę Friendica i dołącz do nas już dziś ."
+
+#: mod/dfrn_request.php:650
+msgid "Friend/Connection Request"
+msgstr "Przyjaciel/Prośba o połączenie"
+
+#: mod/dfrn_request.php:651
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@gnusocial.de"
+msgstr "Przykłady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"
+
+#: mod/dfrn_request.php:652 mod/follow.php:149
+msgid "Please answer the following:"
+msgstr "Proszę odpowiedzieć na następujące pytania:"
+
+#: mod/dfrn_request.php:653 mod/follow.php:150
+#, php-format
+msgid "Does %s know you?"
+msgstr "Czy %s Cię zna?"
+
+#: mod/dfrn_request.php:654 mod/follow.php:151
+msgid "Add a personal note:"
+msgstr "Dodaj osobistą notkę:"
+
+#: mod/dfrn_request.php:657
+msgid "GNU Social (Pleroma, Mastodon)"
+msgstr "GNU Social (Pleroma, Mastodon)"
+
+#: mod/dfrn_request.php:658
+msgid "Diaspora (Socialhome, Hubzilla)"
+msgstr "Diaspora (Socialhome, Hubzilla)"
+
+#: mod/dfrn_request.php:659
+#, php-format
+msgid ""
+" - please do not use this form. Instead, enter %s into your Diaspora search"
+" bar."
+msgstr "- proszę nie używać tego formularza. Zamiast tego wpisz %s do paska wyszukiwania Diaspory."
+
+#: mod/crepair.php:87
+msgid "Contact settings applied."
+msgstr "Ustawienia kontaktu zaktualizowane."
+
+#: mod/crepair.php:89
+msgid "Contact update failed."
+msgstr "Nie udało się zaktualizować kontaktu."
+
+#: mod/crepair.php:114
+msgid ""
+"WARNING: This is highly advanced and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "OSTRZEŻENIE: Jest to bardzo zaawansowane i jeśli wprowadzisz niepoprawne informacje, twoja komunikacja z tym kontaktem może przestać działać."
+
+#: mod/crepair.php:115
+msgid ""
+"Please use your browser 'Back' button now if you are "
+"uncertain what to do on this page."
+msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce."
+
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "No mirroring"
+msgstr "Bez dublowania"
+
+#: mod/crepair.php:129
+msgid "Mirror as forwarded posting"
+msgstr "Przesłany lustrzany post"
+
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "Mirror as my own posting"
+msgstr "Lustro mojego własnego komentarza"
+
+#: mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr "Wróć do edytora kontaktów"
+
+#: mod/crepair.php:146
+msgid "Refetch contact data"
+msgstr "Odśwież dane kontaktowe"
+
+#: mod/crepair.php:149
+msgid "Remote Self"
+msgstr "Zdalny Self"
+
+#: mod/crepair.php:152
+msgid "Mirror postings from this contact"
+msgstr "Publikacje lustrzane od tego kontaktu"
+
+#: mod/crepair.php:154
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Oznacz ten kontakt jako remote_self, spowoduje to, że friendica odeśle nowe wpisy z tego kontaktu."
+
+#: mod/crepair.php:159
+msgid "Account Nickname"
+msgstr "Nazwa konta"
+
+#: mod/crepair.php:160
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Zmienna - zastępuje Imię/Pseudonim"
+
+#: mod/crepair.php:161
+msgid "Account URL"
+msgstr "URL konta"
+
+#: mod/crepair.php:162
+msgid "Friend Request URL"
+msgstr "URL żądajacy znajomości"
+
+#: mod/crepair.php:163
+msgid "Friend Confirm URL"
+msgstr "URL potwierdzający znajomość"
+
+#: mod/crepair.php:164
+msgid "Notification Endpoint URL"
+msgstr "Zgłoszenie Punktu Końcowego URL"
+
+#: mod/crepair.php:165
+msgid "Poll/Feed URL"
+msgstr "Adres Ankiety/RSS"
+
+#: mod/crepair.php:166
+msgid "New photo from this URL"
+msgstr "Nowe zdjęcie z tego adresu URL"
+
+#: mod/home.php:39
+#, php-format
+msgid "Welcome to %s"
+msgstr "Witamy w %s"
+
+#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s witamy %2$s"
+
+#: mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Zaczepić"
+
+#: mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr ""
+
+#: mod/poke.php:194
+msgid "Recipient"
+msgstr "Odbiorca"
+
+#: mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Wybierz, co chcesz zrobić"
+
+#: mod/poke.php:198
+msgid "Make this post private"
+msgstr "Ustaw ten post jako prywatny"
+
+#: mod/oexchange.php:30
+msgid "Post successful."
+msgstr "Post dodany pomyślnie"
+
+#: mod/viewsrc.php:12
+msgid "Access denied."
+msgstr "Brak dostępu"
+
+#: mod/notifications.php:37
+msgid "Invalid request identifier."
+msgstr "Nieprawidłowe żądanie identyfikatora."
+
+#: mod/notifications.php:46 mod/notifications.php:183
+#: mod/notifications.php:230
+msgid "Discard"
+msgstr "Odrzuć"
+
+#: mod/notifications.php:62 mod/notifications.php:182
+#: mod/notifications.php:266 mod/contacts.php:638 mod/contacts.php:828
+#: mod/contacts.php:1019
+msgid "Ignore"
+msgstr "Ignoruj"
+
+#: mod/notifications.php:107
+msgid "Network Notifications"
+msgstr "Powiadomienia sieciowe"
+
+#: mod/notifications.php:119
+msgid "Personal Notifications"
+msgstr "Prywatne powiadomienia"
+
+#: mod/notifications.php:125
+msgid "Home Notifications"
+msgstr "Powiadomienia domowe"
+
+#: mod/notifications.php:155
+msgid "Show Ignored Requests"
+msgstr "Pokaż ignorowane żądania"
+
+#: mod/notifications.php:155
+msgid "Hide Ignored Requests"
+msgstr "Ukryj zignorowane prośby"
+
+#: mod/notifications.php:167 mod/notifications.php:237
+msgid "Notification type: "
+msgstr "Typ powiadomienia:"
+
+#: mod/notifications.php:170
+#, php-format
+msgid "suggested by %s"
+msgstr "zaproponowane przez %s"
+
+#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
+msgid "Hide this contact from others"
+msgstr "Ukryj ten kontakt przed innymi"
+
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "Post a new friend activity"
+msgstr "Opublikuj aktywność nowego znajomego"
+
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "if applicable"
+msgstr "jeśli dotyczy"
+
+#: mod/notifications.php:198
+msgid "Claims to be known to you: "
+msgstr "Twierdzi, że go znasz:"
+
+#: mod/notifications.php:199
+msgid "yes"
+msgstr "tak"
+
+#: mod/notifications.php:199
+msgid "no"
+msgstr "nie"
+
+#: mod/notifications.php:200 mod/notifications.php:205
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Czy twoje połączenie ma być dwukierunkowe, czy nie?"
+
+#: mod/notifications.php:201 mod/notifications.php:206
+#, php-format
+msgid ""
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
+msgstr "Przyjmowanie %s jako znajomego pozwala %s zasubskrybować twoje posty, a także otrzymywać od nich aktualizacje w swoim kanale wiadomości."
+
+#: mod/notifications.php:202
+#, php-format
+msgid ""
+"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
+" will not receive updates from them in your news feed."
+msgstr "Zaakceptowanie %s jako subskrybenta umożliwia im subskrybowanie Twoich postów, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości."
+
+#: mod/notifications.php:207
+#, php-format
+msgid ""
+"Accepting %s as a sharer allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
+msgstr "Akceptowanie %s jako udostępniający pozwala im subskrybować twoje posty, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości."
+
+#: mod/notifications.php:218
+msgid "Friend"
+msgstr "Znajomy"
+
+#: mod/notifications.php:219
+msgid "Sharer"
+msgstr "Udostępniający/a"
+
+#: mod/notifications.php:219
+msgid "Subscriber"
+msgstr "Subskrybent"
+
+#: mod/notifications.php:275
+msgid "No introductions."
+msgstr "Brak dostępu."
+
+#: mod/notifications.php:316
+msgid "Show unread"
+msgstr "Pokaż nieprzeczytane"
+
+#: mod/notifications.php:316
+msgid "Show all"
+msgstr "Pokaż wszystko"
+
+#: mod/notifications.php:322
+#, php-format
+msgid "No more %s notifications."
+msgstr "Nigdy więcej %s powiadomień."
+
+#: mod/p.php:14
+msgid "Not Extended"
+msgstr "Nie przedłużony"
+
+#: mod/p.php:21 mod/p.php:48 mod/p.php:57 mod/fetch.php:16 mod/fetch.php:52
+#: mod/fetch.php:65 mod/help.php:60 index.php:320
+msgid "Not Found"
+msgstr "Nie znaleziono"
#: mod/follow.php:45
msgid "The contact could not be added."
@@ -5942,154 +7980,368 @@ msgstr "Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany."
msgid "The network type couldn't be detected. Contact can't be added."
msgstr "Nie można wykryć typu sieci. Kontakt nie może zostać dodany."
-#: mod/friendica.php:77
-msgid "This is Friendica, version"
-msgstr "To jest Friendica, wersja"
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
+msgstr "Ten format kalendarza nie jest obsługiwany"
-#: mod/friendica.php:78
-msgid "running at web location"
-msgstr "otwierane na serwerze"
+#: mod/cal.php:315
+msgid "No exportable data found"
+msgstr "Nie znaleziono danych do eksportu"
-#: mod/friendica.php:82
+#: mod/cal.php:332
+msgid "calendar"
+msgstr "kalendarz"
+
+#: mod/contacts.php:157
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: mod/contacts.php:184 mod/contacts.php:400
+msgid "Could not access contact record."
+msgstr "Nie można uzyskać dostępu do rejestru kontaktów."
+
+#: mod/contacts.php:194
+msgid "Could not locate selected profile."
+msgstr "Nie można znaleźć wybranego profilu."
+
+#: mod/contacts.php:228
+msgid "Contact updated."
+msgstr "Kontakt zaktualizowany"
+
+#: mod/contacts.php:421
+msgid "Contact has been blocked"
+msgstr "Kontakt został zablokowany"
+
+#: mod/contacts.php:421
+msgid "Contact has been unblocked"
+msgstr "Kontakt został odblokowany"
+
+#: mod/contacts.php:432
+msgid "Contact has been ignored"
+msgstr "Kontakt jest ignorowany"
+
+#: mod/contacts.php:432
+msgid "Contact has been unignored"
+msgstr "Kontakt nie jest ignorowany"
+
+#: mod/contacts.php:443
+msgid "Contact has been archived"
+msgstr "Kontakt został zarchiwizowany"
+
+#: mod/contacts.php:443
+msgid "Contact has been unarchived"
+msgstr "Kontakt został przywrócony"
+
+#: mod/contacts.php:467
+msgid "Drop contact"
+msgstr "Usuń kontakt"
+
+#: mod/contacts.php:470 mod/contacts.php:823
+msgid "Do you really want to delete this contact?"
+msgstr "Czy na pewno chcesz usunąć ten kontakt?"
+
+#: mod/contacts.php:488
+msgid "Contact has been removed."
+msgstr "Kontakt został usunięty."
+
+#: mod/contacts.php:519
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Jesteś już znajomym z %s"
+
+#: mod/contacts.php:523
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Współdzielisz z %s"
+
+#: mod/contacts.php:527
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s współdzieli z tobą"
+
+#: mod/contacts.php:547
+msgid "Private communications are not available for this contact."
+msgstr "Prywatna rozmowa jest niemożliwa dla tego kontaktu"
+
+#: mod/contacts.php:549
+msgid "Never"
+msgstr "Nigdy"
+
+#: mod/contacts.php:552
+msgid "(Update was successful)"
+msgstr "(Aktualizacja przebiegła pomyślnie)"
+
+#: mod/contacts.php:552
+msgid "(Update was not successful)"
+msgstr "(Aktualizacja nie powiodła się)"
+
+#: mod/contacts.php:554 mod/contacts.php:992
+msgid "Suggest friends"
+msgstr "Osoby, które możesz znać"
+
+#: mod/contacts.php:558
+#, php-format
+msgid "Network type: %s"
+msgstr "Typ sieci: %s"
+
+#: mod/contacts.php:563
+msgid "Communications lost with this contact!"
+msgstr "Utracono komunikację z tym kontaktem!"
+
+#: mod/contacts.php:569
+msgid "Fetch further information for feeds"
+msgstr "Pobierz dalsze informacje dla kanałów"
+
+#: mod/contacts.php:571
msgid ""
-"Please visit Friendi.ca to learn more "
-"about the Friendica project."
-msgstr "Odwiedź stronę Friendi.ca aby dowiedzieć się więcej o projekcie Friendica."
+"Fetch information like preview pictures, title and teaser from the feed "
+"item. You can activate this if the feed doesn't contain much text. Keywords "
+"are taken from the meta header in the feed item and are posted as hash tags."
+msgstr "Pobieranie informacji, takich jak zdjęcia podglądu, tytuł i zwiastun z elementu kanału. Możesz to aktywować, jeśli plik danych nie zawiera dużo tekstu. Słowa kluczowe są pobierane z nagłówka meta w elemencie kanału i są publikowane jako znaczniki haszowania."
-#: mod/friendica.php:86
-msgid "Bug reports and issues: please visit"
-msgstr "Raporty o błędach i problemy: odwiedź stronę"
+#: mod/contacts.php:573
+msgid "Fetch information"
+msgstr "Pobierz informacje"
-#: mod/friendica.php:86
-msgid "the bugtracker at github"
-msgstr "bugtracker na github"
+#: mod/contacts.php:574
+msgid "Fetch keywords"
+msgstr "Pobierz słowa kluczowe"
-#: mod/friendica.php:89
-msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
-msgstr "Sugestie, pochwały itp. - napisz e-mail \"info\" na \"friendi - kropka - ca"
+#: mod/contacts.php:575
+msgid "Fetch information and keywords"
+msgstr "Pobierz informacje i słowa kluczowe"
-#: mod/friendica.php:103
-msgid "Installed addons/apps:"
-msgstr "Zainstalowane dodatki/aplikacje:"
+#: mod/contacts.php:608
+msgid "Contact"
+msgstr "Kontakt"
-#: mod/friendica.php:117
-msgid "No installed addons/apps"
-msgstr "Brak zainstalowanych dodatków/aplikacji"
+#: mod/contacts.php:611
+msgid "Profile Visibility"
+msgstr "Widoczność profilu"
-#: mod/friendica.php:122
-#, php-format
-msgid "Read about the Terms of Service of this node."
-msgstr "Przeczytaj o Warunkach świadczenia usług tego węzła."
-
-#: mod/friendica.php:127
-msgid "On this server the following remote servers are blocked."
-msgstr "Na tym serwerze następujące serwery zdalne są blokowane."
-
-#: mod/invite.php:33
-msgid "Total invitation limit exceeded."
-msgstr "Przekroczono limit zaproszeń ogółem."
-
-#: mod/invite.php:55
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Nieprawidłowy adres e-mail."
-
-#: mod/invite.php:87
-msgid "Please join us on Friendica"
-msgstr "Dołącz do nas na Friendica"
-
-#: mod/invite.php:96
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Przekroczono limit zaproszeń. Skontaktuj się z administratorem witryny."
-
-#: mod/invite.php:100
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Nie udało się dostarczyć wiadomości."
-
-#: mod/invite.php:104
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d wiadomość wysłana."
-msgstr[1] "%d wiadomości wysłane."
-msgstr[2] "%d wysłano ."
-msgstr[3] "%d wiadomość wysłano."
-
-#: mod/invite.php:122
-msgid "You have no more invitations available"
-msgstr "Nie masz już dostępnych zaproszeń"
-
-#: mod/invite.php:130
+#: mod/contacts.php:612
#, php-format
msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Odwiedź %s listę publicznych witryn, do których możesz dołączyć. Członkowie Friendica na innych stronach mogą łączyć się ze sobą, jak również z członkami wielu innych sieci społecznościowych."
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Wybierz profil, który chcesz bezpiecznie wyświetlić %s"
-#: mod/invite.php:132
+#: mod/contacts.php:613
+msgid "Contact Information / Notes"
+msgstr "Informacje kontaktowe/Notatki"
+
+#: mod/contacts.php:614
+msgid "Their personal note"
+msgstr "Ich osobista uwaga"
+
+#: mod/contacts.php:616
+msgid "Edit contact notes"
+msgstr "Edytuj notatki kontaktu"
+
+#: mod/contacts.php:620
+msgid "Block/Unblock contact"
+msgstr "Zablokuj/odblokuj kontakt"
+
+#: mod/contacts.php:621
+msgid "Ignore contact"
+msgstr "Ignoruj kontakt"
+
+#: mod/contacts.php:622
+msgid "Repair URL settings"
+msgstr "Napraw ustawienia adresu"
+
+#: mod/contacts.php:623
+msgid "View conversations"
+msgstr "Wyświetl rozmowy"
+
+#: mod/contacts.php:628
+msgid "Last update:"
+msgstr "Ostatnia aktualizacja:"
+
+#: mod/contacts.php:630
+msgid "Update public posts"
+msgstr "Zaktualizuj publiczne posty"
+
+#: mod/contacts.php:632 mod/contacts.php:1002
+msgid "Update now"
+msgstr "Aktualizuj teraz"
+
+#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
+msgid "Unignore"
+msgstr "Odblokuj"
+
+#: mod/contacts.php:642
+msgid "Currently blocked"
+msgstr "Obecnie zablokowany"
+
+#: mod/contacts.php:643
+msgid "Currently ignored"
+msgstr "Obecnie zignorowany"
+
+#: mod/contacts.php:644
+msgid "Currently archived"
+msgstr "Obecnie zarchiwizowany"
+
+#: mod/contacts.php:645
+msgid "Awaiting connection acknowledge"
+msgstr "Oczekiwanie na potwierdzenie połączenia"
+
+#: mod/contacts.php:646
+msgid ""
+"Replies/likes to your public posts may still be visible"
+msgstr "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne"
+
+#: mod/contacts.php:647
+msgid "Notification for new posts"
+msgstr "Powiadomienie o nowych postach"
+
+#: mod/contacts.php:647
+msgid "Send a notification of every new post of this contact"
+msgstr "Wyślij powiadomienie o każdym nowym poście tego kontaktu"
+
+#: mod/contacts.php:650
+msgid "Blacklisted keywords"
+msgstr "Słowa kluczowe na czarnej liście"
+
+#: mod/contacts.php:650
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Rozdzielana przecinkami lista słów kluczowych, które nie powinny zostać przekonwertowane na hashtagi, gdy wybrana jest opcja 'Pobierz informacje i słowa kluczowe'"
+
+#: mod/contacts.php:667
+msgid "Actions"
+msgstr "Akcja"
+
+#: mod/contacts.php:670
+msgid "Contact Settings"
+msgstr "Ustawienia kontaktów"
+
+#: mod/contacts.php:711
+msgid "Suggestions"
+msgstr "Sugestie"
+
+#: mod/contacts.php:714
+msgid "Suggest potential friends"
+msgstr "Sugerowani znajomi"
+
+#: mod/contacts.php:722
+msgid "Show all contacts"
+msgstr "Pokaż wszystkie kontakty"
+
+#: mod/contacts.php:727
+msgid "Unblocked"
+msgstr "Odblokowany"
+
+#: mod/contacts.php:730
+msgid "Only show unblocked contacts"
+msgstr "Pokaż tylko odblokowane kontakty"
+
+#: mod/contacts.php:735
+msgid "Blocked"
+msgstr "Zablokowany"
+
+#: mod/contacts.php:738
+msgid "Only show blocked contacts"
+msgstr "Pokaż tylko zablokowane kontakty"
+
+#: mod/contacts.php:743
+msgid "Ignored"
+msgstr "Zignorowany"
+
+#: mod/contacts.php:746
+msgid "Only show ignored contacts"
+msgstr "Pokaż tylko ignorowane kontakty"
+
+#: mod/contacts.php:751
+msgid "Archived"
+msgstr "Zarchiwizowane"
+
+#: mod/contacts.php:754
+msgid "Only show archived contacts"
+msgstr "Pokaż tylko zarchiwizowane kontakty"
+
+#: mod/contacts.php:759
+msgid "Hidden"
+msgstr "Ukryty"
+
+#: mod/contacts.php:762
+msgid "Only show hidden contacts"
+msgstr "Pokaż tylko ukryte kontakty"
+
+#: mod/contacts.php:818
+msgid "Search your contacts"
+msgstr "Wyszukaj w kontaktach"
+
+#: mod/contacts.php:819 mod/search.php:236
#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Aby zaakceptować to zaproszenie, odwiedź i zarejestruj się %s lub w dowolnej innej publicznej witrynie internetowej Friendica."
+msgid "Results for: %s"
+msgstr "Wyniki dla: %s"
-#: mod/invite.php:133
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi. Zobacz %s listę alternatywnych witryn Friendica, do których możesz dołączyć."
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Archive"
+msgstr "Archiwum"
-#: mod/invite.php:137
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Przepraszamy. System nie jest obecnie skonfigurowany do łączenia się z innymi publicznymi witrynami lub zapraszania członków."
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Unarchive"
+msgstr "Przywróć z archiwum"
-#: mod/invite.php:141
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks."
-msgstr "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi."
+#: mod/contacts.php:832
+msgid "Batch Actions"
+msgstr "Akcje wsadowe"
-#: mod/invite.php:140
-#, php-format
-msgid "To accept this invitation, please visit and register at %s."
-msgstr "Aby zaakceptować to zaproszenie, odwiedź stronę i zarejestruj się na stronie %s."
+#: mod/contacts.php:878
+msgid "View all contacts"
+msgstr "Zobacz wszystkie kontakty"
-#: mod/invite.php:147
-msgid "Send invitations"
-msgstr "Wyślij zaproszenie"
+#: mod/contacts.php:886 mod/common.php:140
+msgid "Common Friends"
+msgstr "Wspólni znajomi"
-#: mod/invite.php:148
-msgid "Enter email addresses, one per line:"
-msgstr "Wprowadź adresy e-mail, po jednym w wierszu:"
+#: mod/contacts.php:889
+msgid "View all common friends"
+msgstr "Zobacz wszystkich popularnych znajomych"
-#: mod/invite.php:150
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Serdecznie zapraszam do przyłączenia się do mnie i innych bliskich znajomych na stronie Friendica - i pomóż nam stworzyć lepszą sieć społecznościową."
+#: mod/contacts.php:898
+msgid "Advanced Contact Settings"
+msgstr "Zaawansowane ustawienia kontaktów"
-#: mod/invite.php:152
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Musisz podać ten kod zaproszenia: $invite_code"
+#: mod/contacts.php:930
+msgid "Mutual Friendship"
+msgstr "Wzajemna przyjaźń"
-#: mod/invite.php:152
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Po rejestracji połącz się ze mną na stronie mojego profilu pod adresem:"
+#: mod/contacts.php:934
+msgid "is a fan of yours"
+msgstr "jest twoim fanem"
-#: mod/invite.php:154
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendi.ca"
-msgstr "Aby uzyskać więcej informacji na temat projektu Friendica i dlaczego uważamy, że jest to ważne, odwiedź http://friendi.ca"
+#: mod/contacts.php:938
+msgid "you are a fan of"
+msgstr "jesteś fanem"
+
+#: mod/contacts.php:1013
+msgid "Toggle Blocked status"
+msgstr "Przełącz na Zablokowany"
+
+#: mod/contacts.php:1021
+msgid "Toggle Ignored status"
+msgstr "Przełącz ignorowany status"
+
+#: mod/contacts.php:1029
+msgid "Toggle Archive status"
+msgstr "Przełącz status archiwum"
+
+#: mod/contacts.php:1037
+msgid "Delete contact"
+msgstr "Usuń kontakt"
+
+#: mod/bookmarklet.php:51
+msgid "The post was created"
+msgstr "Post został utworzony"
#: mod/lostpass.php:27
msgid "No valid account found."
@@ -6157,18 +8409,10 @@ msgid ""
"your email for further instructions."
msgstr "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji."
-#: mod/lostpass.php:119 src/Module/Login.php:314
-msgid "Nickname or Email: "
-msgstr "Pseudonim lub Email:"
-
#: mod/lostpass.php:120
msgid "Reset"
msgstr "Zresetuj"
-#: mod/lostpass.php:136 src/Module/Login.php:326
-msgid "Password Reset"
-msgstr "Zresetuj hasło"
-
#: mod/lostpass.php:137
msgid "Your password has been reset as requested."
msgstr "Twoje hasło zostało zresetowane zgodnie z żądaniem."
@@ -6221,435 +8465,784 @@ msgstr "\n\t\t\tDane logowania są następujące:\n\n\t\t\tLokalizacja witryny:\
msgid "Your password has been changed at %s"
msgstr "Twoje hasło zostało zmienione na %s"
-#: mod/network.php:202 src/Model/Group.php:413
-msgid "add"
-msgstr "dodaj"
+#: mod/install.php:114
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica Serwer Komunikacyjny - Instalacja"
-#: mod/network.php:547
+#: mod/install.php:120
+msgid "Could not connect to database."
+msgstr "Nie można nawiązać połączenia z bazą danych"
+
+#: mod/install.php:124
+msgid "Could not create table."
+msgstr "Nie mogę stworzyć tabeli."
+
+#: mod/install.php:130
+msgid "Your Friendica site database has been installed."
+msgstr "Twoja baza danych witryny Friendica została zainstalowana."
+
+#: mod/install.php:135
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql."
+
+#: mod/install.php:136 mod/install.php:208 mod/install.php:558
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Proszę przejrzeć plik \"INSTALL.txt\"."
+
+#: mod/install.php:148
+msgid "Database already in use."
+msgstr "Baza danych jest już w użyciu."
+
+#: mod/install.php:205
+msgid "System check"
+msgstr "Sprawdzanie systemu"
+
+#: mod/install.php:210
+msgid "Check again"
+msgstr "Sprawdź ponownie"
+
+#: mod/install.php:230
+msgid "Database connection"
+msgstr "Połączenie z bazą danych"
+
+#: mod/install.php:231
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych."
+
+#: mod/install.php:232
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ."
+
+#: mod/install.php:233
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją."
+
+#: mod/install.php:237
+msgid "Database Server Name"
+msgstr "Nazwa serwera bazy danych"
+
+#: mod/install.php:238
+msgid "Database Login Name"
+msgstr "Nazwa użytkownika bazy danych"
+
+#: mod/install.php:239
+msgid "Database Login Password"
+msgstr "Hasło logowania do bazy danych"
+
+#: mod/install.php:239
+msgid "For security reasons the password must not be empty"
+msgstr "Ze względów bezpieczeństwa hasło nie może być puste"
+
+#: mod/install.php:240
+msgid "Database Name"
+msgstr "Nazwa bazy danych"
+
+#: mod/install.php:241 mod/install.php:281
+msgid "Site administrator email address"
+msgstr "Adres e-mail administratora strony"
+
+#: mod/install.php:241 mod/install.php:281
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Adres e-mail konta musi pasować do tego, aby móc korzystać z panelu administracyjnego."
+
+#: mod/install.php:245 mod/install.php:284
+msgid "Please select a default timezone for your website"
+msgstr "Proszę wybrać domyślną strefę czasową dla swojej strony"
+
+#: mod/install.php:271
+msgid "Site settings"
+msgstr "Ustawienia strony"
+
+#: mod/install.php:285
+msgid "System Language:"
+msgstr "Język systemu:"
+
+#: mod/install.php:285
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr "Ustaw domyślny język dla interfejsu instalacyjnego Friendica i wysyłaj e-maile."
+
+#: mod/install.php:325
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Nie można znaleźć wersji PHP komendy w serwerze PATH"
+
+#: mod/install.php:326
+msgid ""
+"If you don't have a command line version of PHP installed on your server, "
+"you will not be able to run the background processing. See 'Setup the worker' "
+msgstr "Jeśli nie masz zainstalowanej na serwerze wersji PHP z wiersza poleceń, nie będziesz mógł uruchomić przetwarzania w tle. Zobacz 'Konfiguracja pracownika' "
+
+#: mod/install.php:330
+msgid "PHP executable path"
+msgstr "Ścieżka wykonywalna PHP"
+
+#: mod/install.php:330
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Wprowadź pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole puste, aby kontynuować instalację."
+
+#: mod/install.php:335
+msgid "Command line PHP"
+msgstr "Linia komend PHP"
+
+#: mod/install.php:344
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "Plik wykonywalny PHP nie jest php cli binarny (może być wersją cgi-fgci)"
+
+#: mod/install.php:345
+msgid "Found PHP version: "
+msgstr "Znaleziono wersje PHP:"
+
+#: mod/install.php:347
+msgid "PHP cli binary"
+msgstr "PHP cli binarny"
+
+#: mod/install.php:358
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"."
+
+#: mod/install.php:359
+msgid "This is required for message delivery to work."
+msgstr "Jest wymagane, aby dostarczanie wiadomości działało."
+
+#: mod/install.php:361
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
+
+#: mod/install.php:384
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować kluczy szyfrujących"
+
+#: mod/install.php:385
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"."
+
+#: mod/install.php:387
+msgid "Generate encryption keys"
+msgstr "Generuj klucz kodowania"
+
+#: mod/install.php:394
+msgid "libCurl PHP module"
+msgstr "Moduł libCurl PHP"
+
+#: mod/install.php:395
+msgid "GD graphics PHP module"
+msgstr "Moduł PHP-GD"
+
+#: mod/install.php:396
+msgid "OpenSSL PHP module"
+msgstr "Moduł PHP OpenSSL"
+
+#: mod/install.php:397
+msgid "PDO or MySQLi PHP module"
+msgstr "Moduł PDO lub MySQLi PHP"
+
+#: mod/install.php:398
+msgid "mb_string PHP module"
+msgstr "Moduł mb_string PHP"
+
+#: mod/install.php:399
+msgid "XML PHP module"
+msgstr "Moduł XML PHP"
+
+#: mod/install.php:400
+msgid "iconv PHP module"
+msgstr "Moduł PHP iconv"
+
+#: mod/install.php:401
+msgid "POSIX PHP module"
+msgstr "Moduł POSIX PHP"
+
+#: mod/install.php:405 mod/install.php:407
+msgid "Apache mod_rewrite module"
+msgstr "Moduł Apache mod_rewrite"
+
+#: mod/install.php:405
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany."
+
+#: mod/install.php:413
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany."
+
+#: mod/install.php:417
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany."
+
+#: mod/install.php:421
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany."
+
+#: mod/install.php:425
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr "Błąd: Wymagany moduł PDO lub MySQLi PHP, ale nie zainstalowany."
+
+#: mod/install.php:429
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr "Błąd: Sterownik MySQL dla PDO nie jest zainstalowany."
+
+#: mod/install.php:433
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany"
+
+#: mod/install.php:437
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Błąd: wymagany moduł PHP iconv, ale nie zainstalowany."
+
+#: mod/install.php:441
+msgid "Error: POSIX PHP module required but not installed."
+msgstr "Błąd: wymagany moduł POSIX PHP, ale nie zainstalowany."
+
+#: mod/install.php:451
+msgid "Error, XML PHP module required but not installed."
+msgstr "Błąd, wymagany moduł XML PHP, ale nie zainstalowany."
+
+#: mod/install.php:463
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\" i nie jest w stanie tego zrobić."
+
+#: mod/install.php:464
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "Jest to najczęściej ustawienie uprawnień, ponieważ serwer sieciowy może nie być w stanie zapisywać plików w folderze - nawet jeśli możesz."
+
+#: mod/install.php:465
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "Pod koniec tej procedury podamy Ci tekst do zapisania w pliku o nazwie .htconfig.php w twoim górnym folderze Friendica."
+
+#: mod/install.php:466
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Alternatywnie można pominąć tę procedurę i wykonać ręczną instalację. Proszę zobaczyć plik 'INSTALL.txt' z instrukcjami."
+
+#: mod/install.php:469
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php jest zapisywalny"
+
+#: mod/install.php:479
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica używa silnika szablonów Smarty3 do renderowania swoich widoków. Smarty3 kompiluje szablony do PHP, aby przyspieszyć renderowanie."
+
+#: mod/install.php:480
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Aby przechowywać te skompilowane szablony, serwer WWW musi mieć dostęp do zapisu do katalogu view/smarty3/ w folderze najwyższego poziomu Friendica."
+
+#: mod/install.php:481
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Upewnij się, że użytkownik, na którym działa serwer WWW (np. www-data), ma prawo do zapisu do tego folderu."
+
+#: mod/install.php:482
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Uwaga: jako środek bezpieczeństwa, powinieneś dać serwerowi dostęp do zapisu view/smarty3/ jedynie - nie do plików szablonów (.tpl), które zawiera."
+
+#: mod/install.php:485
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 jest zapisywalny"
+
+#: mod/install.php:501
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "Nie działa URL w .htaccess popraw. Sprawdź konfigurację serwera."
+
+#: mod/install.php:503
+msgid "Url rewrite is working"
+msgstr "Działający adres URL"
+
+#: mod/install.php:522
+msgid "ImageMagick PHP extension is not installed"
+msgstr "Rozszerzenie PHP ImageMagick nie jest zainstalowane"
+
+#: mod/install.php:524
+msgid "ImageMagick PHP extension is installed"
+msgstr "Rozszerzenie PHP ImageMagick jest zainstalowane"
+
+#: mod/install.php:526
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick obsługuje GIF"
+
+#: mod/install.php:533
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera."
+
+#: mod/install.php:556
+msgid "What next "
+msgstr "Co dalej "
+
+#: mod/install.php:557
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"worker."
+msgstr "WAŻNE: Będziesz musiał [ręcznie] ustawić zaplanowane zadanie dla pracownika."
+
+#: mod/install.php:560
#, php-format
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 a network that doesn't allow "
-"non public messages."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+"Go to your new Friendica node registration page "
+"and register as new user. Remember to use the same email you have entered as"
+" administrator email. This will allow you to enter the site admin panel."
+msgstr "Przejdź do strony rejestracji nowego węzła Friendica i zarejestruj się jako nowy użytkownik. Pamiętaj, aby użyć adresu e-mail wprowadzonego jako e-mail administratora. To pozwoli Ci wejść do panelu administratora witryny."
-#: mod/network.php:550
-msgid "Messages in this group won't be send to these receivers."
-msgstr "Wiadomości z tej grupy nie będą wysyłane do tych odbiorców."
+#: mod/babel.php:23
+msgid "Source input"
+msgstr "Źródło wejściowe"
-#: mod/network.php:618
-msgid "No such group"
-msgstr "Nie ma takiej grupy"
+#: mod/babel.php:29
+msgid "BBCode::toPlaintext"
+msgstr "BBCode::na prosty tekst"
-#: mod/network.php:643
+#: mod/babel.php:35
+msgid "BBCode::convert (raw HTML)"
+msgstr "BBCode:: konwersjia (raw HTML)"
+
+#: mod/babel.php:40
+msgid "BBCode::convert"
+msgstr "BBCode::przekształć"
+
+#: mod/babel.php:46
+msgid "BBCode::convert => HTML::toBBCode"
+msgstr "BBCode::przekształć => HTML::toBBCode"
+
+#: mod/babel.php:52
+msgid "BBCode::toMarkdown"
+msgstr "BBCode::toMarkdown"
+
+#: mod/babel.php:58
+msgid "BBCode::toMarkdown => Markdown::convert"
+msgstr "BBCode::toMarkdown => Markdown::przekształć"
+
+#: mod/babel.php:64
+msgid "BBCode::toMarkdown => Markdown::toBBCode"
+msgstr "BBCode::toMarkdown => Markdown::toBBCode"
+
+#: mod/babel.php:70
+msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
+msgstr "BBCode::toMarkdown => Markdown::przekształć => HTML::toBBCode"
+
+#: mod/babel.php:77
+msgid "Source input \\x28Diaspora format\\x29"
+msgstr "Źródło wejściowe \\x28Diaspora format\\x29"
+
+#: mod/babel.php:83
+msgid "Markdown::toBBCode"
+msgstr "Markdown::toBBCode"
+
+#: mod/babel.php:90
+msgid "Raw HTML input"
+msgstr "Surowe wejście HTML"
+
+#: mod/babel.php:95
+msgid "HTML Input"
+msgstr "Wejście HTML"
+
+#: mod/babel.php:101
+msgid "HTML::toBBCode"
+msgstr "HTML::toBBCode"
+
+#: mod/babel.php:107
+msgid "HTML::toPlaintext"
+msgstr "HTML::toPlaintext"
+
+#: mod/babel.php:115
+msgid "Source text"
+msgstr "Tekst źródłowy"
+
+#: mod/babel.php:116
+msgid "BBCode"
+msgstr "BBCode"
+
+#: mod/babel.php:117
+msgid "Markdown"
+msgstr "Markdown"
+
+#: mod/babel.php:118
+msgid "HTML"
+msgstr "HTML"
+
+#: mod/lockview.php:38 mod/lockview.php:46
+msgid "Remote privacy information not available."
+msgstr "Dane prywatne nie są zdalnie dostępne"
+
+#: mod/lockview.php:55
+msgid "Visible to:"
+msgstr "Widoczne dla:"
+
+#: mod/wallmessage.php:49 mod/wallmessage.php:112
#, php-format
-msgid "Group: %s"
-msgstr "Grupa: %s"
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Dzienny limit wiadomości %s został przekroczony. Wiadomość została odrzucona."
-#: mod/network.php:669
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione "
+#: mod/wallmessage.php:60
+msgid "Unable to check your home location."
+msgstr "Nie można sprawdzić twojej lokalizacji."
-#: mod/network.php:672
-msgid "Invalid contact."
-msgstr "Nieprawidłowy kontakt."
+#: mod/wallmessage.php:86 mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Brak odbiorcy."
-#: mod/network.php:936
-msgid "Commented Order"
-msgstr "Porządek według komentarzy"
-
-#: mod/network.php:939
-msgid "Sort by Comment Date"
-msgstr "Sortuj według daty komentarza"
-
-#: mod/network.php:944
-msgid "Posted Order"
-msgstr "Porządek według wpisów"
-
-#: mod/network.php:947
-msgid "Sort by Post Date"
-msgstr "Sortuj według daty postów"
-
-#: mod/network.php:955 mod/profiles.php:687
-#: src/Core/NotificationsManager.php:185
-msgid "Personal"
-msgstr "Osobiste"
-
-#: mod/network.php:958
-msgid "Posts that mention or involve you"
-msgstr "Posty, które wspominają lub angażują Ciebie"
-
-#: mod/network.php:966
-msgid "New"
-msgstr "Nowy"
-
-#: mod/network.php:969
-msgid "Activity Stream - by date"
-msgstr "Strumień aktywności - według daty"
-
-#: mod/network.php:977
-msgid "Shared Links"
-msgstr "Udostępnione łącza"
-
-#: mod/network.php:980
-msgid "Interesting Links"
-msgstr "Interesujące linki"
-
-#: mod/network.php:988
-msgid "Starred"
-msgstr "Ulubione"
-
-#: mod/network.php:991
-msgid "Favourite Posts"
-msgstr "Ulubione posty"
-
-#: mod/profiles.php:58
-msgid "Profile deleted."
-msgstr "Konto usunięte."
-
-#: mod/profiles.php:74 mod/profiles.php:110
-msgid "Profile-"
-msgstr "Profil-"
-
-#: mod/profiles.php:93 mod/profiles.php:132
-msgid "New profile created."
-msgstr "Utworzono nowy profil."
-
-#: mod/profiles.php:116
-msgid "Profile unavailable to clone."
-msgstr "Nie można powileić profilu "
-
-#: mod/profiles.php:206
-msgid "Profile Name is required."
-msgstr "Nazwa Profilu jest wymagana"
-
-#: mod/profiles.php:347
-msgid "Marital Status"
-msgstr "Stan cywilny"
-
-#: mod/profiles.php:351
-msgid "Romantic Partner"
-msgstr "Romantyczny partner"
-
-#: mod/profiles.php:363
-msgid "Work/Employment"
-msgstr "Praca/Zatrudnienie"
-
-#: mod/profiles.php:366
-msgid "Religion"
-msgstr "Religia"
-
-#: mod/profiles.php:370
-msgid "Political Views"
-msgstr "Poglądy polityczne"
-
-#: mod/profiles.php:374
-msgid "Gender"
-msgstr "Płeć"
-
-#: mod/profiles.php:378
-msgid "Sexual Preference"
-msgstr "Orientacja seksualna"
-
-#: mod/profiles.php:382
-msgid "XMPP"
-msgstr "XMPP"
-
-#: mod/profiles.php:386
-msgid "Homepage"
-msgstr "Strona Główna"
-
-#: mod/profiles.php:390 mod/profiles.php:686
-msgid "Interests"
-msgstr "Zainteresowania"
-
-#: mod/profiles.php:401 mod/profiles.php:682
-msgid "Location"
-msgstr "Lokalizacja"
-
-#: mod/profiles.php:486
-msgid "Profile updated."
-msgstr "Profil zaktualizowany."
-
-#: mod/profiles.php:564
-msgid " and "
-msgstr " i "
-
-#: mod/profiles.php:573
-msgid "public profile"
-msgstr "profil publiczny"
-
-#: mod/profiles.php:576
+#: mod/wallmessage.php:133
#, php-format
-msgid "%1$s changed %2$s to “%3$s”"
-msgstr "%1$szmienione %2$s na “%3$s”"
-
-#: mod/profiles.php:577
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Odwiedź %1$s's %2$s"
-
-#: mod/profiles.php:579
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$sma zaktualizowany %2$s, zmiana%3$s."
-
-#: mod/profiles.php:633
-msgid "Hide contacts and friends:"
-msgstr "Ukryj kontakty i znajomych:"
-
-#: mod/profiles.php:638
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?"
-
-#: mod/profiles.php:658
-msgid "Show more profile fields:"
-msgstr "Pokaż więcej pól profilu:"
-
-#: mod/profiles.php:670
-msgid "Profile Actions"
-msgstr "Akcje profilowe"
-
-#: mod/profiles.php:671
-msgid "Edit Profile Details"
-msgstr "Edytuj profil."
-
-#: mod/profiles.php:673
-msgid "Change Profile Photo"
-msgstr "Zmień zdjęcie profilowe"
-
-#: mod/profiles.php:674
-msgid "View this profile"
-msgstr "Wyświetl ten profil"
-
-#: mod/profiles.php:675 mod/profiles.php:770 src/Model/Profile.php:393
-msgid "Edit visibility"
-msgstr "Edytuj widoczność"
-
-#: mod/profiles.php:676
-msgid "Create a new profile using these settings"
-msgstr "Stwórz nowy profil wykorzystując te ustawienia"
-
-#: mod/profiles.php:677
-msgid "Clone this profile"
-msgstr "Sklonuj ten profil"
-
-#: mod/profiles.php:678
-msgid "Delete this profile"
-msgstr "Usuń ten profil"
-
-#: mod/profiles.php:680
-msgid "Basic information"
-msgstr "Podstawowe informacje"
-
-#: mod/profiles.php:681
-msgid "Profile picture"
-msgstr "Zdjęcie profilowe"
-
-#: mod/profiles.php:683
-msgid "Preferences"
-msgstr "Preferencje"
-
-#: mod/profiles.php:684
-msgid "Status information"
-msgstr "Informacje o stanie"
-
-#: mod/profiles.php:685
-msgid "Additional information"
-msgstr "Dodatkowe informacje"
-
-#: mod/profiles.php:688
-msgid "Relation"
-msgstr "Relacje"
-
-#: mod/profiles.php:689 src/Util/Temporal.php:81 src/Util/Temporal.php:83
-msgid "Miscellaneous"
-msgstr "Różny"
-
-#: mod/profiles.php:692
-msgid "Your Gender:"
-msgstr "Płeć:"
-
-#: mod/profiles.php:693
-msgid "♥ Marital Status:"
-msgstr "♥ Stan cywilny:"
-
-#: mod/profiles.php:694 src/Model/Profile.php:784
-msgid "Sexual Preference:"
-msgstr "Preferencje seksualne:"
-
-#: mod/profiles.php:695
-msgid "Example: fishing photography software"
-msgstr "Przykład: oprogramowanie do fotografowania ryb"
-
-#: mod/profiles.php:700
-msgid "Profile Name:"
-msgstr "Nazwa profilu:"
-
-#: mod/profiles.php:702
msgid ""
-"This is your public profile. It may "
-"be visible to anybody using the internet."
-msgstr "To jest Twój publiczny profil. Może zostać wyświetlony przez każdego kto używa internetu."
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców."
-#: mod/profiles.php:703
-msgid "Your Full Name:"
-msgstr "Imię i Nazwisko:"
+#: mod/match.php:48
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Brak pasujących słów kluczowych. Dodaj słowa kluczowe do domyślnego profilu."
-#: mod/profiles.php:704
-msgid "Title/Description:"
-msgstr "Tytuł/Opis :"
+#: mod/match.php:104
+msgid "is interested in:"
+msgstr "interesuje się:"
-#: mod/profiles.php:707
-msgid "Street Address:"
-msgstr "Ulica:"
+#: mod/match.php:120
+msgid "Profile Match"
+msgstr "Dopasowanie profilu"
-#: mod/profiles.php:708
-msgid "Locality/City:"
-msgstr "Miejscowość/Miasto:"
+#: mod/maintenance.php:24
+msgid "System down for maintenance"
+msgstr "System wyłączony w celu konserwacji"
-#: mod/profiles.php:709
-msgid "Region/State:"
-msgstr "Region/Państwo:"
+#: mod/tagrm.php:47
+msgid "Tag removed"
+msgstr "Tag usunięty"
-#: mod/profiles.php:710
-msgid "Postal/Zip Code:"
-msgstr "Kod Pocztowy:"
+#: mod/tagrm.php:85
+msgid "Remove Item Tag"
+msgstr "Usuń pozycję Tag"
-#: mod/profiles.php:711
-msgid "Country:"
-msgstr "Kraj:"
+#: mod/tagrm.php:87
+msgid "Select a tag to remove: "
+msgstr "Wybierz tag do usunięcia"
-#: mod/profiles.php:712 src/Util/Temporal.php:149
-msgid "Age: "
-msgstr "Wiek: "
+#: mod/feedtest.php:20
+msgid "You must be logged in to use this module"
+msgstr "Musisz być zalogowany, aby korzystać z tego modułu"
-#: mod/profiles.php:715
-msgid "Who: (if applicable)"
-msgstr "Kto: (jeśli dotyczy)"
+#: mod/feedtest.php:48
+msgid "Source URL"
+msgstr "Źródłowy adres URL"
-#: mod/profiles.php:715
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Przykłady: cathy123, Cathy Williams, cathy@example.com"
+#: mod/search.php:105
+msgid "Only logged in users are permitted to perform a search."
+msgstr "Tylko zalogowani użytkownicy mogą wyszukiwać."
-#: mod/profiles.php:716
-msgid "Since [date]:"
-msgstr "Od [data]:"
+#: mod/search.php:129
+msgid "Too Many Requests"
+msgstr "Zbyt dużo próśb"
-#: mod/profiles.php:718
-msgid "Tell us about yourself..."
-msgstr "Napisz o sobie..."
+#: mod/search.php:130
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr "Dla niezalogowanych użytkowników dozwolone jest tylko jedno wyszukiwanie na minutę."
-#: mod/profiles.php:719
-msgid "XMPP (Jabber) address:"
-msgstr "Adres XMPP (Jabber):"
+#: mod/search.php:234
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Przedmioty oznaczone tagiem: %s"
-#: mod/profiles.php:719
+#: mod/uexport.php:44
+msgid "Export account"
+msgstr "Eksportuj konto"
+
+#: mod/uexport.php:44
msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow"
-" you."
-msgstr "Adres XMPP będzie propagowany do Twoich kontaktów, aby mogli Cię śledzić."
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Eksportuj informacje o swoim koncie i kontaktach. Użyj tego do utworzenia kopii zapasowej konta i/lub przeniesienia go na inny serwer."
-#: mod/profiles.php:720
-msgid "Homepage URL:"
-msgstr "Adres URL strony domowej:"
+#: mod/uexport.php:45
+msgid "Export all"
+msgstr "Eksportuj wszystko"
-#: mod/profiles.php:721 src/Model/Profile.php:792
-msgid "Hometown:"
-msgstr "Miasto rodzinne:"
+#: mod/uexport.php:45
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Wyeksportuj informacje o koncie, kontaktach i wszystkie swoje pozycje jako json. Może to być bardzo duży plik i może zająć dużo czasu. Użyj tej opcji, aby utworzyć pełną kopię zapasową swojego konta (zdjęcia nie są eksportowane)"
-#: mod/profiles.php:722 src/Model/Profile.php:800
-msgid "Political Views:"
-msgstr "Poglądy polityczne:"
+#: mod/newmember.php:11
+msgid "Welcome to Friendica"
+msgstr "Witamy na Friendica"
-#: mod/profiles.php:723
-msgid "Religious Views:"
-msgstr "Poglądy religijne:"
+#: mod/newmember.php:12
+msgid "New Member Checklist"
+msgstr "Lista nowych członków"
-#: mod/profiles.php:724
-msgid "Public Keywords:"
-msgstr "Publiczne słowa kluczowe:"
+#: mod/newmember.php:14
+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 "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie."
-#: mod/profiles.php:724
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)"
+#: mod/newmember.php:15
+msgid "Getting Started"
+msgstr "Pierwsze kroki"
-#: mod/profiles.php:725
-msgid "Private Keywords:"
-msgstr "Prywatne słowa kluczowe:"
+#: mod/newmember.php:17
+msgid "Friendica Walk-Through"
+msgstr "Friendica Przejdź-Przez"
-#: mod/profiles.php:725
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Używany do wyszukiwania profili, niepokazywany innym)"
+#: mod/newmember.php:17
+msgid ""
+"On your Quick Start page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Na stronie Szybki start - znajdź krótkie wprowadzenie do swojego profilu i kart sieciowych, stwórz nowe połączenia i znajdź kilka grup do przyłączenia się."
-#: mod/profiles.php:726 src/Model/Profile.php:816
-msgid "Likes:"
-msgstr "Lubią to:"
+#: mod/newmember.php:21
+msgid "Go to Your Settings"
+msgstr "Idź do swoich ustawień"
-#: mod/profiles.php:727 src/Model/Profile.php:820
-msgid "Dislikes:"
-msgstr "Nie lubię tego:"
+#: mod/newmember.php:21
+msgid ""
+"On your Settings page - change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Na stronie Ustawienia - zmień swoje początkowe hasło. Zanotuj także swój adres tożsamości. Wygląda to jak adres e-mail - i będzie przydatny w nawiązywaniu znajomości w bezpłatnej sieci społecznościowej."
-#: mod/profiles.php:728
-msgid "Musical interests"
-msgstr "Muzyka"
+#: mod/newmember.php:22
+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 "Przejrzyj pozostałe ustawienia, w szczególności ustawienia prywatności. Niepublikowany wykaz katalogów jest podobny do niepublicznego numeru telefonu. Ogólnie rzecz biorąc, powinieneś opublikować swój wpis - chyba, że wszyscy twoi znajomi i potencjalni znajomi dokładnie wiedzą, jak Cię znaleźć."
-#: mod/profiles.php:729
-msgid "Books, literature"
-msgstr "Literatura"
+#: mod/newmember.php:26
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty."
-#: mod/profiles.php:730
-msgid "Television"
-msgstr "Telewizja"
+#: mod/newmember.php:27
+msgid "Edit Your Profile"
+msgstr "Edytuj własny profil"
-#: mod/profiles.php:731
-msgid "Film/dance/culture/entertainment"
-msgstr "Film/taniec/kultura/rozrywka"
+#: mod/newmember.php:27
+msgid ""
+"Edit your default profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Edytuj swój domyślny profil do swoich potrzeb. Przejrzyj ustawienia ukrywania listy znajomych i ukrywania profilu przed nieznanymi użytkownikami."
-#: mod/profiles.php:732
-msgid "Hobbies/Interests"
-msgstr "Zainteresowania"
+#: mod/newmember.php:28
+msgid "Profile Keywords"
+msgstr "Słowa kluczowe profilu"
-#: mod/profiles.php:733
-msgid "Love/romance"
-msgstr "Miłość/romans"
+#: mod/newmember.php:28
+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 "Ustaw kilka publicznych słów kluczowych dla swojego domyślnego profilu, które opisują Twoje zainteresowania. Możemy znaleźć inne osoby o podobnych zainteresowaniach i zaproponować przyjaźnie."
-#: mod/profiles.php:734
-msgid "Work/employment"
-msgstr "Praca/zatrudnienie"
+#: mod/newmember.php:30
+msgid "Connecting"
+msgstr "Łączę się..."
-#: mod/profiles.php:735
-msgid "School/education"
-msgstr "Szkoła/edukacja"
+#: mod/newmember.php:36
+msgid "Importing Emails"
+msgstr "Importuję emaile..."
-#: mod/profiles.php:736
-msgid "Contact information and Social Networks"
-msgstr "Dane kontaktowe i Sieci społecznościowe"
+#: mod/newmember.php:36
+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 "Wprowadź informacje dotyczące dostępu do poczty e-mail na stronie Ustawienia oprogramowania, jeśli chcesz importować i wchodzić w interakcje z przyjaciółmi lub listami adresowymi z poziomu konta e-mail INBOX"
-#: mod/profiles.php:767 src/Model/Profile.php:389
-msgid "Profile Image"
-msgstr "Zdjęcie profilowe"
+#: mod/newmember.php:39
+msgid "Go to Your Contacts Page"
+msgstr "Idź do strony z Twoimi kontaktami"
-#: mod/profiles.php:769 src/Model/Profile.php:392
-msgid "visible to everybody"
-msgstr "widoczne dla wszystkich"
+#: mod/newmember.php:39
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the Add New Contact dialog."
+msgstr "Strona Kontakty jest twoją bramą do zarządzania przyjaciółmi i łączenia się z przyjaciółmi w innych sieciach. Zazwyczaj podaje się adres lub adres URL strony w oknie dialogowym Dodaj nowy kontakt ."
-#: mod/profiles.php:776
-msgid "Edit/Manage Profiles"
-msgstr "Edycja/Zarządzanie profilami"
+#: mod/newmember.php:40
+msgid "Go to Your Site's Directory"
+msgstr "Idż do twojej strony"
-#: mod/profiles.php:777 src/Model/Profile.php:379 src/Model/Profile.php:401
-msgid "Change profile photo"
-msgstr "Zmień zdjęcie profilowe"
+#: mod/newmember.php:40
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a Connect or Follow link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "Strona Katalog umożliwia znalezienie innych osób w tej sieci lub innych witrynach stowarzyszonych. Poszukaj łącza Połącz lub Śledź na stronie profilu. Jeśli chcesz, podaj swój własny adres tożsamości."
-#: mod/profiles.php:778 src/Model/Profile.php:380
-msgid "Create New Profile"
-msgstr "Utwórz nowy profil"
+#: mod/newmember.php:41
+msgid "Finding New People"
+msgstr "Znajdowanie nowych osób"
+
+#: mod/newmember.php:41
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "Na bocznym panelu strony Kontaktów znajduje się kilka narzędzi do znajdowania nowych przyjaciół. Możemy dopasować osoby według zainteresowań, wyszukiwać osoby według nazwisk i zainteresowań oraz dostarczać sugestie oparte na relacjach sieciowych. Na zupełnie nowej stronie sugestie znajomych zwykle zaczynają być wypełniane w ciągu 24 godzin"
+
+#: mod/newmember.php:45
+msgid "Group Your Contacts"
+msgstr "Grupuj Swoje kontakty"
+
+#: mod/newmember.php:45
+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 "Gdy zaprzyjaźnisz się z przyjaciółmi, uporządkuj je w prywatne grupy konwersacji na pasku bocznym na stronie Kontakty, a następnie możesz wchodzić w interakcje z każdą grupą prywatnie na stronie Sieć."
+
+#: mod/newmember.php:48
+msgid "Why Aren't My Posts Public?"
+msgstr "Dlaczego moje posty nie są publiczne?"
+
+#: mod/newmember.php:48
+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 szanuje Twoją prywatność. Domyślnie Twoje wpisy będą wyświetlane tylko osobom, które dodałeś jako znajomi. Aby uzyskać więcej informacji, zobacz sekcję pomocy na powyższym łączu."
+
+#: mod/newmember.php:52
+msgid "Getting Help"
+msgstr "Otrzymaj pomoc"
+
+#: mod/newmember.php:54
+msgid "Go to the Help Section"
+msgstr "Przejdź do sekcji pomocy"
+
+#: mod/newmember.php:54
+msgid ""
+"Our help pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Na naszych stronach pomocy można znaleźć szczegółowe informacje na temat innych funkcji programu i zasobów."
+
+#: mod/dfrn_confirm.php:132
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Może się to zdarzyć, gdy kontakt został zgłoszony przez obie osoby i został już zatwierdzony."
+
+#: mod/dfrn_confirm.php:242
+msgid "Response from remote site was not understood."
+msgstr "Odpowiedź do zdalnej strony nie została zrozumiana"
+
+#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "Nieoczekiwana odpowiedź od strony zdalnej:"
+
+#: mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "Potwierdzenie zostało pomyślnie zakończone."
+
+#: mod/dfrn_confirm.php:275
+msgid "Temporary failure. Please wait and try again."
+msgstr "Tymczasowa awaria. Proszę czekać i spróbuj ponownie."
+
+#: mod/dfrn_confirm.php:278
+msgid "Introduction failed or was revoked."
+msgstr "Wprowadzenie nie powiodło się lub zostało odwołane."
+
+#: mod/dfrn_confirm.php:283
+msgid "Remote site reported: "
+msgstr "Zdalna witryna zgłoszona:"
+
+#: mod/dfrn_confirm.php:396
+msgid "Unable to set contact photo."
+msgstr "Nie można ustawić zdjęcia kontaktu."
+
+#: mod/dfrn_confirm.php:498
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Nie znaleziono użytkownika dla '%s'"
+
+#: mod/dfrn_confirm.php:508
+msgid "Our site encryption key is apparently messed up."
+msgstr "Klucz kodujący jest najwyraźniej uszkodzony."
+
+#: mod/dfrn_confirm.php:519
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Został podany pusty adres URL witryny lub nie można go odszyfrować."
+
+#: mod/dfrn_confirm.php:535
+msgid "Contact record was not found for you on our site."
+msgstr "Nie znaleziono kontaktu na naszej stronie"
+
+#: mod/dfrn_confirm.php:549
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "Publiczny klucz witryny jest niedostępny w rekordzie kontaktu dla adresu URL %s"
+
+#: mod/dfrn_confirm.php:565
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "Identyfikator dostarczony przez Twój system jest duplikatem w naszym systemie. Powinien działać, jeśli spróbujesz ponownie."
+
+#: mod/dfrn_confirm.php:576
+msgid "Unable to set your contact credentials on our system."
+msgstr "Nie można ustawić danych kontaktowych w naszym systemie."
+
+#: mod/dfrn_confirm.php:631
+msgid "Unable to update your contact profile details on our system"
+msgstr "Nie można zaktualizować danych Twojego profilu kontaktowego w naszym systemie"
+
+#: mod/dfrn_confirm.php:694
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s dołączył/a do %2$s"
+
+#: mod/filer.php:34
+msgid "- select -"
+msgstr "- wybierz -"
#: mod/register.php:99
msgid ""
@@ -6721,18 +9314,10 @@ msgid ""
"be an existing address.)"
msgstr "Twój adres e-mail: (Informacje początkowe zostaną wysłane tam, więc musi to być istniejący adres)."
-#: mod/register.php:273 mod/settings.php:1201
-msgid "New Password:"
-msgstr "Nowe hasło:"
-
#: mod/register.php:273
msgid "Leave empty for an auto generated password."
msgstr "Pozostaw puste dla wygenerowanego automatycznie hasła."
-#: mod/register.php:274 mod/settings.php:1202
-msgid "Confirm:"
-msgstr "Potwierdź:"
-
#: mod/register.php:275
#, php-format
msgid ""
@@ -6744,923 +9329,104 @@ msgstr "Wybierz pseudonim profilu. Nazwa musi zaczynać się od znaku tekstowego
msgid "Choose a nickname: "
msgstr "Wybierz pseudonim:"
-#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283
-msgid "Register"
-msgstr "Zarejestruj"
-
#: mod/register.php:286
msgid "Import your profile to this friendica instance"
msgstr "Zaimportuj swój profil do tej instancji friendica"
-#: mod/removeme.php:43
-msgid "User deleted their account"
-msgstr "Użytkownik usunął swoje konto"
+#: mod/common.php:91
+msgid "No contacts in common."
+msgstr "Brak wspólnych kontaktów."
-#: mod/removeme.php:44
-msgid ""
-"On your Friendica node an user deleted their account. Please ensure that "
-"their data is removed from the backups."
-msgstr "W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych."
+#: mod/probe.php:14 mod/webfinger.php:17
+msgid "Only logged in users are permitted to perform a probing."
+msgstr "Tylko zalogowani użytkownicy mogą wykonywać sondowanie."
-#: mod/removeme.php:45
-#, php-format
-msgid "The user id is %d"
-msgstr "Identyfikatorem użytkownika jest %d"
+#: mod/help.php:48
+msgid "Help:"
+msgstr "Pomoc:"
-#: mod/removeme.php:76 mod/removeme.php:79
-msgid "Remove My Account"
-msgstr "Usuń moje konto"
+#: mod/help.php:63 index.php:325
+msgid "Page not found."
+msgstr "Strona nie znaleziona."
-#: mod/removeme.php:77
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć."
+#: mod/profperm.php:34 mod/profperm.php:65
+msgid "Invalid profile identifier."
+msgstr "Nieprawidłowa nazwa użytkownika."
-#: mod/removeme.php:78
-msgid "Please enter your password for verification:"
-msgstr "Wprowadź hasło w celu weryfikacji."
+#: mod/profperm.php:111
+msgid "Profile Visibility Editor"
+msgstr "Ustawienia widoczności profilu"
-#: mod/settings.php:72
-msgid "Display"
-msgstr "Wyświetlanie"
+#: mod/profperm.php:124
+msgid "Visible To"
+msgstr "Widoczne dla"
-#: mod/settings.php:79 mod/settings.php:842
-msgid "Social Networks"
-msgstr "Portale społecznościowe"
+#: mod/profperm.php:140
+msgid "All Contacts (with secure profile access)"
+msgstr "Wszystkie kontakty (z bezpiecznym dostępem do profilu)"
-#: mod/settings.php:93 src/Content/Nav.php:204
-msgid "Delegations"
-msgstr "Delegowanie"
+#: mod/item.php:114
+msgid "Unable to locate original post."
+msgstr "Nie można zlokalizować oryginalnej wiadomości."
-#: mod/settings.php:100
-msgid "Connected apps"
-msgstr "Powiązane aplikacje"
+#: mod/item.php:274
+msgid "Empty post discarded."
+msgstr "Pusty wpis został odrzucony."
-#: mod/settings.php:114
-msgid "Remove account"
-msgstr "Usuń konto"
-
-#: mod/settings.php:168
-msgid "Missing some important data!"
-msgstr "Brakuje ważnych danych!"
-
-#: mod/settings.php:279
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się."
-
-#: mod/settings.php:284
-msgid "Email settings updated."
-msgstr "Zaktualizowano ustawienia email."
-
-#: mod/settings.php:300
-msgid "Features updated"
-msgstr "Funkcje zaktualizowane"
-
-#: mod/settings.php:372
-msgid "Relocate message has been send to your contacts"
-msgstr "Przeniesienie wiadomości zostało wysłane do Twoich kontaktów"
-
-#: mod/settings.php:384 src/Model/User.php:339
-msgid "Passwords do not match. Password unchanged."
-msgstr "Hasła nie pasują do siebie. Hasło niezmienione."
-
-#: mod/settings.php:389
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Puste hasła są niedozwolone. Hasło niezmienione."
-
-#: mod/settings.php:394 src/Core/Console/NewPassword.php:87
-msgid ""
-"The new password has been exposed in a public data dump, please choose "
-"another."
-msgstr "Nowe hasło zostało ujawnione w publicznym zrzucie danych, wybierz inne."
-
-#: mod/settings.php:400
-msgid "Wrong password."
-msgstr "Złe hasło."
-
-#: mod/settings.php:407 src/Core/Console/NewPassword.php:94
-msgid "Password changed."
-msgstr "Hasło zostało zmianione."
-
-#: mod/settings.php:409 src/Core/Console/NewPassword.php:91
-msgid "Password update failed. Please try again."
-msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie."
-
-#: mod/settings.php:496
-msgid " Please use a shorter name."
-msgstr "Proszę użyć krótszej nazwy."
-
-#: mod/settings.php:499
-msgid " Name too short."
-msgstr "Za krótka nazwa."
-
-#: mod/settings.php:507
-msgid "Wrong Password"
-msgstr "Złe hasło"
-
-#: mod/settings.php:512
-msgid "Invalid email."
-msgstr "Niepoprawny e-mail."
-
-#: mod/settings.php:519
-msgid "Cannot change to that email."
-msgstr "Nie można zmienić tego e-maila."
-
-#: mod/settings.php:572
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr "Prywatne forum nie ma uprawnień do prywatności. Użyj domyślnej grupy prywatnej."
-
-#: mod/settings.php:575
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr "Prywatne forum nie ma uprawnień do prywatności ani domyślnej grupy prywatności."
-
-#: mod/settings.php:615
-msgid "Settings updated."
-msgstr "Zaktualizowano ustawienia."
-
-#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
-msgid "Add application"
-msgstr "Dodaj aplikację"
-
-#: mod/settings.php:678 mod/settings.php:704
-msgid "Consumer Key"
-msgstr "Klucz klienta"
-
-#: mod/settings.php:679 mod/settings.php:705
-msgid "Consumer Secret"
-msgstr "Tajny klucz klienta"
-
-#: mod/settings.php:680 mod/settings.php:706
-msgid "Redirect"
-msgstr "Przekierowanie"
-
-#: mod/settings.php:681 mod/settings.php:707
-msgid "Icon url"
-msgstr "Adres Url ikony"
-
-#: mod/settings.php:692
-msgid "You can't edit this application."
-msgstr "Nie możesz edytować tej aplikacji."
-
-#: mod/settings.php:735
-msgid "Connected Apps"
-msgstr "Powiązane aplikacje"
-
-#: mod/settings.php:737 src/Object/Post.php:155 src/Object/Post.php:157
-msgid "Edit"
-msgstr "Edytuj"
-
-#: mod/settings.php:739
-msgid "Client key starts with"
-msgstr "Klucz klienta zaczyna się od"
-
-#: mod/settings.php:740
-msgid "No name"
-msgstr "Bez nazwy"
-
-#: mod/settings.php:741
-msgid "Remove authorization"
-msgstr "Odwołaj upoważnienie"
-
-#: mod/settings.php:752
-msgid "No Addon settings configured"
-msgstr "Brak skonfigurowanych ustawień Dodatków"
-
-#: mod/settings.php:761
-msgid "Addon Settings"
-msgstr "Ustawienia Dodatków"
-
-#: mod/settings.php:782
-msgid "Additional Features"
-msgstr "Dodatkowe funkcje"
-
-#: mod/settings.php:805 src/Content/ContactSelector.php:83
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: mod/settings.php:805 mod/settings.php:806
-msgid "enabled"
-msgstr "włączony"
-
-#: mod/settings.php:805 mod/settings.php:806
-msgid "disabled"
-msgstr "wyłączony"
-
-#: mod/settings.php:805 mod/settings.php:806
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Wbudowane wsparcie dla %s łączność jest %s"
-
-#: mod/settings.php:806
-msgid "GNU Social (OStatus)"
-msgstr "GNU Społeczny (OStatus)"
-
-#: mod/settings.php:837
-msgid "Email access is disabled on this site."
-msgstr "Dostęp do e-maila nie jest w pełni sprawny na tej stronie"
-
-#: mod/settings.php:847
-msgid "General Social Media Settings"
-msgstr "Ogólne ustawienia mediów społecznościowych"
-
-#: mod/settings.php:848
-msgid "Disable Content Warning"
-msgstr "Wyłącz ostrzeżenie o treści"
-
-#: mod/settings.php:848
-msgid ""
-"Users on networks like Mastodon or Pleroma are able to set a content warning"
-" field which collapse their post by default. This disables the automatic "
-"collapsing and sets the content warning as the post title. Doesn't affect "
-"any other content filtering you eventually set up."
-msgstr "Użytkownicy w sieciach takich jak Mastodon lub Pleroma mogą ustawić pole ostrzeżenia o treści, które domyślnie zwijać będzie swój wpis. Powoduje wyłączenie automatycznego zwijania i ustawia ostrzeżenie o treści jako tytuł postu. Nie ma wpływu na żadne inne filtrowanie treści, które ostatecznie utworzyłeś."
-
-#: mod/settings.php:849
-msgid "Disable intelligent shortening"
-msgstr "Wyłącz inteligentne skracanie"
-
-#: mod/settings.php:849
-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 "Zwykle system próbuje znaleźć najlepszy link do dodania do skróconych postów. Jeśli ta opcja jest włączona, każdy skrócony wpis zawsze wskazuje oryginalny post znajomej osoby."
-
-#: mod/settings.php:850
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
-msgstr "Automatycznie podążaj za wszystkimi obserwatorami/rzecznikami GNU Społeczności (OStatus)"
-
-#: mod/settings.php:850
-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 "Jeśli otrzymasz wiadomość od nieznanego użytkownika OStatus, ta opcja decyduje, co zrobić. Jeśli zostanie zaznaczone, dla każdego nieznanego użytkownika zostanie utworzony nowy kontakt."
-
-#: mod/settings.php:851
-msgid "Default group for OStatus contacts"
-msgstr "Domyślna grupa dla kontaktów OStatus"
-
-#: mod/settings.php:852
-msgid "Your legacy GNU Social account"
-msgstr "Twoje starsze konto społecznościowe GNU"
-
-#: mod/settings.php:852
-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 "Jeśli podasz swoją starą nazwę konta GNU Social/Statusnet tutaj (w formacie user@domain.tld), twoje kontakty zostaną dodane automatycznie. Pole zostanie opróżnione po zakończeniu."
-
-#: mod/settings.php:855
-msgid "Repair OStatus subscriptions"
-msgstr "Napraw subskrypcje OStatus"
-
-#: mod/settings.php:859
-msgid "Email/Mailbox Setup"
-msgstr "Ustawienia emaila/skrzynki mailowej"
-
-#: mod/settings.php:860
-msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr "Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową."
-
-#: mod/settings.php:861
-msgid "Last successful email check:"
-msgstr "Ostatni sprawdzony e-mail:"
-
-#: mod/settings.php:863
-msgid "IMAP server name:"
-msgstr "Nazwa serwera IMAP:"
-
-#: mod/settings.php:864
-msgid "IMAP port:"
-msgstr "Port IMAP:"
-
-#: mod/settings.php:865
-msgid "Security:"
-msgstr "Ochrona:"
-
-#: mod/settings.php:865 mod/settings.php:870
-msgid "None"
-msgstr "Brak"
-
-#: mod/settings.php:866
-msgid "Email login name:"
-msgstr "Nazwa logowania e-mail:"
-
-#: mod/settings.php:867
-msgid "Email password:"
-msgstr "E-mail hasło:"
-
-#: mod/settings.php:868
-msgid "Reply-to address:"
-msgstr "Adres zwrotny:"
-
-#: mod/settings.php:869
-msgid "Send public posts to all email contacts:"
-msgstr "Wyślij publiczny post do wszystkich kontaktów e-mail"
-
-#: mod/settings.php:870
-msgid "Action after import:"
-msgstr "Akcja po zaimportowaniu:"
-
-#: mod/settings.php:870 src/Content/Nav.php:191
-msgid "Mark as seen"
-msgstr "Oznacz jako przeczytane"
-
-#: mod/settings.php:870
-msgid "Move to folder"
-msgstr "Przenieś do folderu"
-
-#: mod/settings.php:871
-msgid "Move to folder:"
-msgstr "Przenieś do folderu:"
-
-#: mod/settings.php:914
-#, php-format
-msgid "%s - (Unsupported)"
-msgstr "%s - (Nieobsługiwane)"
-
-#: mod/settings.php:916
-#, php-format
-msgid "%s - (Experimental)"
-msgstr "%s- (Eksperymentalne)"
-
-#: mod/settings.php:959
-msgid "Display Settings"
-msgstr "Wyświetl ustawienia"
-
-#: mod/settings.php:965 mod/settings.php:989
-msgid "Display Theme:"
-msgstr "Wyświetl motyw:"
-
-#: mod/settings.php:966
-msgid "Mobile Theme:"
-msgstr "Motyw dla urządzeń mobilnych:"
-
-#: mod/settings.php:967
-msgid "Suppress warning of insecure networks"
-msgstr "Ukryj ostrzeżenie przed niebezpiecznymi sieciami"
-
-#: mod/settings.php:967
-msgid ""
-"Should the system suppress the warning that the current group contains "
-"members of networks that can't receive non public postings."
-msgstr "System powinien pominąć ostrzeżenie, że bieżąca grupa zawiera członków sieci, którzy nie mogą otrzymywać komentarzy niepublicznych"
-
-#: mod/settings.php:968
-msgid "Update browser every xx seconds"
-msgstr "Odświeżaj stronę co xx sekund"
-
-#: mod/settings.php:968
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
-msgstr "Minimum 10 sekund. Wprowadź -1, aby go wyłączyć."
-
-#: mod/settings.php:969
-msgid "Number of items to display per page:"
-msgstr "Liczba elementów do wyświetlenia na stronie:"
-
-#: mod/settings.php:969 mod/settings.php:970
-msgid "Maximum of 100 items"
-msgstr "Maksymalnie 100 elementów"
-
-#: mod/settings.php:970
-msgid "Number of items to display per page when viewed from mobile device:"
-msgstr "Liczba elementów do wyświetlenia na stronie podczas przeglądania z urządzenia mobilnego:"
-
-#: mod/settings.php:971
-msgid "Don't show emoticons"
-msgstr "Nie pokazuj emotikonek"
-
-#: mod/settings.php:972
-msgid "Calendar"
-msgstr "Kalendarz"
-
-#: mod/settings.php:973
-msgid "Beginning of week:"
-msgstr "Początek tygodnia:"
-
-#: mod/settings.php:974
-msgid "Don't show notices"
-msgstr "Nie pokazuj powiadomień"
-
-#: mod/settings.php:975
-msgid "Infinite scroll"
-msgstr "Nieskończone przewijanie"
-
-#: mod/settings.php:976
-msgid "Automatic updates only at the top of the network page"
-msgstr "Automatyczne aktualizacje tylko u góry strony sieci"
-
-#: mod/settings.php:976
-msgid ""
-"When disabled, the network page is updated all the time, which could be "
-"confusing while reading."
-msgstr "Po wyłączeniu strona sieciowa jest cały czas aktualizowana, co może być mylące podczas czytania."
-
-#: mod/settings.php:977
-msgid "Bandwith Saver Mode"
-msgstr "Tryb oszczędzania przepustowości"
-
-#: mod/settings.php:977
-msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
-msgstr "Po włączeniu wbudowana zawartość nie jest wyświetlana w automatycznych aktualizacjach, wyświetlają się tylko przy przeładowaniu strony."
-
-#: mod/settings.php:978
-msgid "Smart Threading"
-msgstr "Inteligentne gwintowanie"
-
-#: mod/settings.php:978
-msgid ""
-"When enabled, suppress extraneous thread indentation while keeping it where "
-"it matters. Only works if threading is available and enabled."
-msgstr "Włączenie tej opcji powoduje pomijanie wcięcia nitek zewnętrznych, zachowując je w dowolnym miejscu. Działa tylko wtedy, gdy wątki są dostępne i włączone."
-
-#: mod/settings.php:980
-msgid "General Theme Settings"
-msgstr "Ogólne ustawienia motywu"
-
-#: mod/settings.php:981
-msgid "Custom Theme Settings"
-msgstr "Niestandardowe ustawienia motywów"
-
-#: mod/settings.php:982
-msgid "Content Settings"
-msgstr "Ustawienia zawartości"
-
-#: mod/settings.php:983 view/theme/duepuntozero/config.php:73
-#: view/theme/frio/config.php:115 view/theme/quattro/config.php:75
-#: view/theme/vier/config.php:121
-msgid "Theme settings"
-msgstr "Ustawienia motywu"
-
-#: mod/settings.php:1002
-msgid "Unable to find your profile. Please contact your admin."
-msgstr "Nie można znaleźć Twojego profilu. Skontaktuj się z administratorem."
-
-#: mod/settings.php:1044
-msgid "Account Types"
-msgstr "Rodzaje kont"
-
-#: mod/settings.php:1045
-msgid "Personal Page Subtypes"
-msgstr "Podtypy osobistych stron"
-
-#: mod/settings.php:1046
-msgid "Community Forum Subtypes"
-msgstr "Podtypy społeczności forum"
-
-#: mod/settings.php:1053
-msgid "Personal Page"
-msgstr "Strona osobista"
-
-#: mod/settings.php:1054
-msgid "Account for a personal profile."
-msgstr "Konto dla profilu osobistego."
-
-#: mod/settings.php:1057
-msgid "Organisation Page"
-msgstr "Strona Organizacji"
-
-#: mod/settings.php:1058
-msgid ""
-"Account for an organisation that automatically approves contact requests as "
-"\"Followers\"."
-msgstr "Konto dla organizacji, która automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"."
-
-#: mod/settings.php:1061
-msgid "News Page"
-msgstr "Strona Wiadomości"
-
-#: mod/settings.php:1062
-msgid ""
-"Account for a news reflector that automatically approves contact requests as"
-" \"Followers\"."
-msgstr "Konto dla reflektora wiadomości, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"."
-
-#: mod/settings.php:1065
-msgid "Community Forum"
-msgstr "Forum społecznościowe"
-
-#: mod/settings.php:1066
-msgid "Account for community discussions."
-msgstr "Konto do dyskusji w społeczności."
-
-#: mod/settings.php:1069
-msgid "Normal Account Page"
-msgstr "Normalna strona konta"
-
-#: mod/settings.php:1070
-msgid ""
-"Account for a regular personal profile that requires manual approval of "
-"\"Friends\" and \"Followers\"."
-msgstr "Konto dla zwykłego profilu osobistego, który wymaga ręcznej zgody \"Przyjaciół\" i \"Obserwatorów\"."
-
-#: mod/settings.php:1073
-msgid "Soapbox Page"
-msgstr "Strona Soapbox"
-
-#: mod/settings.php:1074
-msgid ""
-"Account for a public profile that automatically approves contact requests as"
-" \"Followers\"."
-msgstr "Konto dla profilu publicznego, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"."
-
-#: mod/settings.php:1077
-msgid "Public Forum"
-msgstr "Forum publiczne"
-
-#: mod/settings.php:1078
-msgid "Automatically approves all contact requests."
-msgstr "Automatycznie zatwierdza wszystkie prośby o kontakt."
-
-#: mod/settings.php:1081
-msgid "Automatic Friend Page"
-msgstr "Automatyczna strona znajomego"
-
-#: mod/settings.php:1082
-msgid ""
-"Account for a popular profile that automatically approves contact requests "
-"as \"Friends\"."
-msgstr "Konto popularnego profilu, które automatycznie zatwierdza prośby o kontakt jako \"Przyjaciele\"."
-
-#: mod/settings.php:1085
-msgid "Private Forum [Experimental]"
-msgstr "Prywatne Forum [Eksperymentalne]"
-
-#: mod/settings.php:1086
-msgid "Requires manual approval of contact requests."
-msgstr "Wymaga ręcznego zatwierdzania żądań kontaktów."
-
-#: mod/settings.php:1097
-msgid "OpenID:"
-msgstr "OpenID:"
-
-#: mod/settings.php:1097
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Opcjonalnie) Pozwól zalogować się na to konto przy pomocy OpenID."
-
-#: mod/settings.php:1105
-msgid "Publish your default profile in your local site directory?"
-msgstr "Opublikować Twój domyślny profil w Twoim lokalnym katalogu stron?"
-
-#: mod/settings.php:1105
+#: mod/item.php:799
#, php-format
msgid ""
-"Your profile will be published in the global friendica directories (e.g. %s ). Your profile will be visible in public."
-msgstr "Twój profil zostanie opublikowany w globalnych katalogach friendica (np.%s ). Twój profil będzie widoczny publicznie."
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica"
-#: mod/settings.php:1111
-msgid "Publish your default profile in the global social directory?"
-msgstr "Opublikować Twój domyślny profil w globalnym, społecznościowym katalogu?"
-
-#: mod/settings.php:1111
+#: mod/item.php:801
#, php-format
+msgid "You may visit them online at %s"
+msgstr "Możesz odwiedzić ich online pod adresem %s"
+
+#: mod/item.php:802
msgid ""
-"Your profile will be published in this node's local "
-"directory . Your profile details may be publicly visible depending on the"
-" system settings."
-msgstr "Twój profil zostanie opublikowany w lokalnym katalogu tego węzła . Dane Twojego profilu mogą być publicznie widoczne w zależności od ustawień systemu."
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości."
-#: mod/settings.php:1118
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Ukryć listę znajomych przed odwiedzającymi Twój profil?"
-
-#: mod/settings.php:1118
-msgid ""
-"Your contact list won't be shown in your default profile page. You can "
-"decide to show your contact list separately for each additional profile you "
-"create"
-msgstr "Twoja lista kontaktów nie będzie wyświetlana na domyślnej stronie profilu. Możesz zdecydować o wyświetleniu listy kontaktów osobno dla każdego tworzonego dodatkowego profilu."
-
-#: mod/settings.php:1122
-msgid "Hide your profile details from anonymous viewers?"
-msgstr "Ukryć dane Twojego profilu przed anonimowymi widzami?"
-
-#: mod/settings.php:1122
-msgid ""
-"Anonymous visitors will only see your profile picture, your display name and"
-" the nickname you are using on your profile page. Disables posting public "
-"messages to Diaspora and other networks."
-msgstr "Anonimowi użytkownicy zobaczą tylko Twoje zdjęcie profilowe, Twoją wyświetlaną nazwę i pseudonim, którego używasz na stronie profilu. Wyłącza wysyłanie publicznych wiadomości do Diaspory i innych sieci."
-
-#: mod/settings.php:1126
-msgid "Allow friends to post to your profile page?"
-msgstr "Zezwalać znajomym na publikowanie postów na stronie Twojego profilu?"
-
-#: mod/settings.php:1126
-msgid ""
-"Your contacts may write posts on your profile wall. These posts will be "
-"distributed to your contacts"
-msgstr "Twoi znajomi mogą pisać posty na stronie Twojego profilu. Posty zostaną przesłane do Twoich kontaktów."
-
-#: mod/settings.php:1130
-msgid "Allow friends to tag your posts?"
-msgstr "Zezwolić na oznaczanie Twoich postów przez znajomych?"
-
-#: mod/settings.php:1130
-msgid "Your contacts can add additional tags to your posts."
-msgstr "Twoje kontakty mogą dodawać do tagów dodatkowe posty."
-
-#: mod/settings.php:1134
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Pozwól zasugerować Cię jako potencjalnego przyjaciela dla nowych członków?"
-
-#: mod/settings.php:1134
-msgid ""
-"If you like, Friendica may suggest new members to add you as a contact."
-msgstr "Jeśli chcesz, Friendica może zaproponować nowym członkom dodanie Cię jako kontakt."
-
-#: mod/settings.php:1138
-msgid "Permit unknown people to send you private mail?"
-msgstr "Zezwolić nieznanym osobom na wysyłanie prywatnych wiadomości?"
-
-#: mod/settings.php:1138
-msgid ""
-"Friendica network users may send you private messages even if they are not "
-"in your contact list."
-msgstr "Użytkownicy sieci w serwisie Friendica mogą wysyłać prywatne wiadomości, nawet jeśli nie znajdują się one na liście kontaktów."
-
-#: mod/settings.php:1142
-msgid "Profile is not published ."
-msgstr "Profil nie jest opublikowany "
-
-#: mod/settings.php:1148
+#: mod/item.php:806
#, php-format
-msgid "Your Identity Address is '%s' or '%s'."
-msgstr "Twój adres tożsamości to '%s' lub '%s'."
+msgid "%s posted an update."
+msgstr "%s zaktualizował wpis."
-#: mod/settings.php:1155
-msgid "Automatically expire posts after this many days:"
-msgstr "Posty wygasną automatycznie po następującej liczbie dni:"
+#: mod/editpost.php:25 mod/editpost.php:35
+msgid "Item not found"
+msgstr "Nie znaleziono elementu"
-#: mod/settings.php:1155
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte."
+#: mod/editpost.php:42
+msgid "Edit post"
+msgstr "Edytuj post"
-#: mod/settings.php:1156
-msgid "Advanced expiration settings"
-msgstr "Zaawansowane ustawienia wygasania"
+#: view/theme/quattro/config.php:76
+msgid "Alignment"
+msgstr "Wyrównanie"
-#: mod/settings.php:1157
-msgid "Advanced Expiration"
-msgstr "Zaawansowane wygasanie"
+#: view/theme/quattro/config.php:76
+msgid "Left"
+msgstr "Lewo"
-#: mod/settings.php:1158
-msgid "Expire posts:"
-msgstr "Wygasające posty:"
+#: view/theme/quattro/config.php:76
+msgid "Center"
+msgstr "Środek"
-#: mod/settings.php:1159
-msgid "Expire personal notes:"
-msgstr "Wygasanie osobistych notatek:"
+#: view/theme/quattro/config.php:77
+msgid "Color scheme"
+msgstr "Zestaw kolorów"
-#: mod/settings.php:1160
-msgid "Expire starred posts:"
-msgstr "Wygasaj posty oznaczone gwiazdką:"
+#: view/theme/quattro/config.php:78
+msgid "Posts font size"
+msgstr "Rozmiar czcionki postów"
-#: mod/settings.php:1161
-msgid "Expire photos:"
-msgstr "Wygasanie zdjęć:"
-
-#: mod/settings.php:1162
-msgid "Only expire posts by others:"
-msgstr "Wygaszaj tylko te posty, które zostały napisane przez inne osoby:"
-
-#: mod/settings.php:1192
-msgid "Account Settings"
-msgstr "Ustawienia konta"
-
-#: mod/settings.php:1200
-msgid "Password Settings"
-msgstr "Ustawienia hasła"
-
-#: mod/settings.php:1202
-msgid "Leave password fields blank unless changing"
-msgstr "Pozostaw pola hasła puste, chyba że chcesz je zmienić."
-
-#: mod/settings.php:1203
-msgid "Current Password:"
-msgstr "Aktualne hasło:"
-
-#: mod/settings.php:1203 mod/settings.php:1204
-msgid "Your current password to confirm the changes"
-msgstr "Twoje aktualne hasło, potwierdź zmiany"
-
-#: mod/settings.php:1204
-msgid "Password:"
-msgstr "Hasło:"
-
-#: mod/settings.php:1208
-msgid "Basic Settings"
-msgstr "Ustawienia podstawowe"
-
-#: mod/settings.php:1209 src/Model/Profile.php:740
-msgid "Full Name:"
-msgstr "Imię i Nazwisko:"
-
-#: mod/settings.php:1210
-msgid "Email Address:"
-msgstr "Adres email:"
-
-#: mod/settings.php:1211
-msgid "Your Timezone:"
-msgstr "Twoja strefa czasowa:"
-
-#: mod/settings.php:1212
-msgid "Your Language:"
-msgstr "Twój język:"
-
-#: mod/settings.php:1212
-msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
-msgstr "Ustaw język, którego używasz, aby pokazać interfejs użytkownika friendica i do wysłania Ci e-maili"
-
-#: mod/settings.php:1213
-msgid "Default Post Location:"
-msgstr "Standardowa lokalizacja wiadomości:"
-
-#: mod/settings.php:1214
-msgid "Use Browser Location:"
-msgstr "Użyj położenia przeglądarki:"
-
-#: mod/settings.php:1217
-msgid "Security and Privacy Settings"
-msgstr "Ustawienia bezpieczeństwa i prywatności"
-
-#: mod/settings.php:1219
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maksymalna dzienna liczba zaproszeń do grona przyjaciół:"
-
-#: mod/settings.php:1219 mod/settings.php:1248
-msgid "(to prevent spam abuse)"
-msgstr "(aby zapobiec spamowaniu)"
-
-#: mod/settings.php:1220
-msgid "Default Post Permissions"
-msgstr "Domyślne prawa dostępu wiadomości"
-
-#: mod/settings.php:1221
-msgid "(click to open/close)"
-msgstr "(kliknij by otworzyć/zamknąć)"
-
-#: mod/settings.php:1231
-msgid "Default Private Post"
-msgstr "Domyślny Prywatny Wpis"
-
-#: mod/settings.php:1232
-msgid "Default Public Post"
-msgstr "Domyślny Publiczny Post"
-
-#: mod/settings.php:1236
-msgid "Default Permissions for New Posts"
-msgstr "Uprawnienia domyślne dla nowych postów"
-
-#: mod/settings.php:1248
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maksymalna liczba prywatnych wiadomości dziennie od nieznanych osób:"
-
-#: mod/settings.php:1251
-msgid "Notification Settings"
-msgstr "Ustawienia powiadomień"
-
-#: mod/settings.php:1252
-msgid "By default post a status message when:"
-msgstr "Domyślnie publikuj komunikat o stanie, gdy:"
-
-#: mod/settings.php:1253
-msgid "accepting a friend request"
-msgstr "przyjęto prośbę o dodanie do znajomych"
-
-#: mod/settings.php:1254
-msgid "joining a forum/community"
-msgstr "dołączono do forum/społeczności"
-
-#: mod/settings.php:1255
-msgid "making an interesting profile change"
-msgstr "dokonano interesującej zmiany profilu"
-
-#: mod/settings.php:1256
-msgid "Send a notification email when:"
-msgstr "Wyślij powiadmonienia na email, kiedy:"
-
-#: mod/settings.php:1257
-msgid "You receive an introduction"
-msgstr "Otrzymałeś zaproszenie"
-
-#: mod/settings.php:1258
-msgid "Your introductions are confirmed"
-msgstr "Twoje zaproszenie jest potwierdzone"
-
-#: mod/settings.php:1259
-msgid "Someone writes on your profile wall"
-msgstr "Ktoś pisze na twoim profilu"
-
-#: mod/settings.php:1260
-msgid "Someone writes a followup comment"
-msgstr "Ktoś pisze komentarz nawiązujący."
-
-#: mod/settings.php:1261
-msgid "You receive a private message"
-msgstr "Otrzymałeś prywatną wiadomość"
-
-#: mod/settings.php:1262
-msgid "You receive a friend suggestion"
-msgstr "Otrzymałeś propozycję od znajomych"
-
-#: mod/settings.php:1263
-msgid "You are tagged in a post"
-msgstr "Jesteś oznaczony tagiem w poście"
-
-#: mod/settings.php:1264
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Jesteś zaczepiony/zaczepiona/itp. w poście"
-
-#: mod/settings.php:1266
-msgid "Activate desktop notifications"
-msgstr "Aktywuj powiadomienia na pulpicie"
-
-#: mod/settings.php:1266
-msgid "Show desktop popup on new notifications"
-msgstr "Pokaż wyskakujące okienko dla nowych powiadomień"
-
-#: mod/settings.php:1268
-msgid "Text-only notification emails"
-msgstr "E-maile z powiadomieniami tekstowymi"
-
-#: mod/settings.php:1270
-msgid "Send text only notification emails, without the html part"
-msgstr "Wysyłaj tylko e-maile z powiadomieniami tekstowymi, bez części html"
-
-#: mod/settings.php:1272
-msgid "Show detailled notifications"
-msgstr "Pokaż szczegółowe powiadomienia"
-
-#: mod/settings.php:1274
-msgid ""
-"Per default, notifications are condensed to a single notification per item. "
-"When enabled every notification is displayed."
-msgstr "Domyślne powiadomienia są skondensowane z jednym powiadomieniem dla każdego przedmiotu. Po włączeniu wyświetlane jest każde powiadomienie."
-
-#: mod/settings.php:1276
-msgid "Advanced Account/Page Type Settings"
-msgstr "Zaawansowane ustawienia konta/rodzaju strony"
-
-#: mod/settings.php:1277
-msgid "Change the behaviour of this account for special situations"
-msgstr "Zmień zachowanie tego konta w sytuacjach specjalnych"
-
-#: mod/settings.php:1280
-msgid "Relocate"
-msgstr "Przeniesienie"
-
-#: mod/settings.php:1281
-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 "Jeśli ten profil został przeniesiony z innego serwera, a niektóre z Twoich kontaktów nie otrzymają aktualizacji, spróbuj nacisnąć ten przycisk."
-
-#: mod/settings.php:1282
-msgid "Resend relocate message to contacts"
-msgstr "Wyślij ponownie przenieść wiadomości do kontaktów"
-
-#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502
-msgid "default"
-msgstr "standardowe"
-
-#: view/theme/duepuntozero/config.php:55
-msgid "greenzero"
-msgstr "greenzero"
-
-#: view/theme/duepuntozero/config.php:56
-msgid "purplezero"
-msgstr "purplezero"
-
-#: view/theme/duepuntozero/config.php:57
-msgid "easterbunny"
-msgstr "Zajączek wielkanocny"
-
-#: view/theme/duepuntozero/config.php:58
-msgid "darkzero"
-msgstr "darkzero"
-
-#: view/theme/duepuntozero/config.php:59
-msgid "comix"
-msgstr "comix"
-
-#: view/theme/duepuntozero/config.php:60
-msgid "slackr"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:74
-msgid "Variations"
-msgstr "Zmiana"
+#: view/theme/quattro/config.php:79
+msgid "Textareas font size"
+msgstr "Rozmiar czcionki Textareas"
#: view/theme/frio/php/Image.php:25
msgid "Repeat the image"
@@ -7754,98 +9520,10 @@ msgstr "Gość"
msgid "Visitor"
msgstr "Odwiedzający"
-#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
-#: src/Module/Login.php:311
-msgid "Logout"
-msgstr "Wyloguj się"
-
-#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
-msgid "End this session"
-msgstr "Zakończ sesję"
-
-#: view/theme/frio/theme.php:259 src/Content/Nav.php:100
-#: src/Content/Nav.php:181
-msgid "Your posts and conversations"
-msgstr "Twoje posty i rozmowy"
-
-#: view/theme/frio/theme.php:260 src/Content/Nav.php:101
-msgid "Your profile page"
-msgstr "Twoja strona profilowa"
-
-#: view/theme/frio/theme.php:261 src/Content/Nav.php:102
-msgid "Your photos"
-msgstr "Twoje zdjęcia"
-
-#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
-#: src/Model/Profile.php:914 src/Model/Profile.php:917
-msgid "Videos"
-msgstr "Filmy"
-
-#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
-msgid "Your videos"
-msgstr "Twoje filmy"
-
-#: view/theme/frio/theme.php:263 src/Content/Nav.php:104
-msgid "Your events"
-msgstr "Twoje wydarzenia"
-
-#: view/theme/frio/theme.php:266 src/Content/Nav.php:178
-msgid "Conversations from your friends"
-msgstr "Rozmowy Twoich przyjaciół"
-
-#: view/theme/frio/theme.php:267 src/Content/Nav.php:169
-#: src/Model/Profile.php:929 src/Model/Profile.php:940
-msgid "Events and Calendar"
-msgstr "Wydarzenia i kalendarz"
-
-#: view/theme/frio/theme.php:268 src/Content/Nav.php:195
-msgid "Private mail"
-msgstr "Prywatne maile"
-
-#: view/theme/frio/theme.php:269 src/Content/Nav.php:206
-msgid "Account settings"
-msgstr "Ustawienia konta"
-
-#: view/theme/frio/theme.php:270 src/Content/Nav.php:212
-msgid "Manage/edit friends and contacts"
-msgstr "Zarządzaj listą przyjaciół i kontaktami"
-
-#: view/theme/quattro/config.php:76
-msgid "Alignment"
-msgstr "Wyrównanie"
-
-#: view/theme/quattro/config.php:76
-msgid "Left"
-msgstr "Lewo"
-
-#: view/theme/quattro/config.php:76
-msgid "Center"
-msgstr "Środek"
-
-#: view/theme/quattro/config.php:77
-msgid "Color scheme"
-msgstr "Zestaw kolorów"
-
-#: view/theme/quattro/config.php:78
-msgid "Posts font size"
-msgstr "Rozmiar czcionki postów"
-
-#: view/theme/quattro/config.php:79
-msgid "Textareas font size"
-msgstr "Rozmiar czcionki Textareas"
-
#: view/theme/vier/config.php:75
msgid "Comma separated list of helper forums"
msgstr "Lista pomocników oddzielona przecinkami"
-#: view/theme/vier/config.php:115 src/Core/ACL.php:309
-msgid "don't show"
-msgstr "nie pokazuj"
-
-#: view/theme/vier/config.php:115 src/Core/ACL.php:308
-msgid "show"
-msgstr "pokaż"
-
#: view/theme/vier/config.php:122
msgid "Set style"
msgstr "Ustaw styl"
@@ -7878,1713 +9556,37 @@ msgstr "Ostatni użytkownicy"
msgid "Local Directory"
msgstr "Katalog lokalny"
-#: view/theme/vier/theme.php:202 src/Content/Widget.php:65
-msgid "Similar Interests"
-msgstr "Podobne zainteresowania"
-
-#: view/theme/vier/theme.php:204 src/Content/Widget.php:67
-msgid "Invite Friends"
-msgstr "Zaproś znajomych"
-
-#: view/theme/vier/theme.php:256 src/Content/ForumManager.php:127
-msgid "External link to forum"
-msgstr "Zewnętrzny link do forum"
-
#: view/theme/vier/theme.php:292
msgid "Quick Start"
msgstr "Szybki start"
-#: src/Core/UserImport.php:104
-msgid "Error decoding account file"
-msgstr "Błąd podczas odczytu pliku konta"
+#: view/theme/duepuntozero/config.php:55
+msgid "greenzero"
+msgstr "greenzero"
-#: src/Core/UserImport.php:110
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Błąd! Brak danych wersji w pliku! To nie jest plik konta Friendica?"
+#: view/theme/duepuntozero/config.php:56
+msgid "purplezero"
+msgstr "purplezero"
-#: src/Core/UserImport.php:118
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Użytkownik '%s' już istnieje na tym serwerze!"
+#: view/theme/duepuntozero/config.php:57
+msgid "easterbunny"
+msgstr "Zajączek wielkanocny"
-#: src/Core/UserImport.php:151
-msgid "User creation error"
-msgstr "Błąd tworzenia użytkownika"
+#: view/theme/duepuntozero/config.php:58
+msgid "darkzero"
+msgstr "darkzero"
-#: src/Core/UserImport.php:169
-msgid "User profile creation error"
-msgstr "Błąd tworzenia profilu użytkownika"
+#: view/theme/duepuntozero/config.php:59
+msgid "comix"
+msgstr "comix"
-#: src/Core/UserImport.php:213
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "Nie zaimportowano %d kontaktu."
-msgstr[1] "Nie zaimportowano %d kontaktów."
-msgstr[2] "Nie zaimportowano %d kontaktów."
-msgstr[3] "%dkontakty nie zostały zaimportowane "
-
-#: src/Core/UserImport.php:278
-msgid "Done. You can now login with your username and password"
-msgstr "Gotowe. Możesz teraz zalogować się, podając swoją nazwę użytkownika i hasło."
-
-#: src/Core/ACL.php:295
-msgid "Post to Email"
-msgstr "Prześlij e-mailem"
-
-#: src/Core/ACL.php:301
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Ukryć szczegóły twojego profilu przed nieznajomymi?"
-
-#: src/Core/ACL.php:300
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Wtyczki są wyłączone, ponieważ \"%s\" jest włączone."
-
-#: src/Core/ACL.php:307
-msgid "Visible to everybody"
-msgstr "Widoczny dla wszystkich"
-
-#: src/Core/ACL.php:319
-msgid "Close"
-msgstr "Zamknij"
-
-#: src/Core/Console/NewPassword.php:78
-msgid "Enter new password: "
-msgstr "Wprowadź nowe hasło:"
-
-#: src/Core/Console/NewPassword.php:83 src/Model/User.php:262
-msgid "Password can't be empty"
-msgstr "Hasło nie może być puste"
-
-#: src/Core/NotificationsManager.php:171
-msgid "System"
-msgstr "System"
-
-#: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124
-#: src/Content/Nav.php:181
-msgid "Home"
-msgstr "Strona domowa"
-
-#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:186
-msgid "Introductions"
-msgstr "Wstępy"
-
-#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s skomentował wpis %s"
-
-#: src/Core/NotificationsManager.php:267
-#, php-format
-msgid "%s created a new post"
-msgstr "%s dodał nowy wpis"
-
-#: src/Core/NotificationsManager.php:281
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s polubił wpis %s"
-
-#: src/Core/NotificationsManager.php:294
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s nie lubi tych %s postów"
-
-#: src/Core/NotificationsManager.php:307
-#, php-format
-msgid "%s is attending %s's event"
-msgstr "%suczestniczy %sw wydarzeniu "
-
-#: src/Core/NotificationsManager.php:320
-#, php-format
-msgid "%s is not attending %s's event"
-msgstr "%snie uczestniczy %s w wydarzeniu "
-
-#: src/Core/NotificationsManager.php:333
-#, php-format
-msgid "%s may attend %s's event"
-msgstr "%smoże uczestniczyć %s w wydarzeniu"
-
-#: src/Core/NotificationsManager.php:350
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s jest teraz znajomym %s"
-
-#: src/Core/NotificationsManager.php:825
-msgid "Friend Suggestion"
-msgstr "Propozycja znajomych"
-
-#: src/Core/NotificationsManager.php:851
-msgid "Friend/Connect Request"
-msgstr "Prośba o dodanie do przyjaciół/powiązanych"
-
-#: src/Core/NotificationsManager.php:851
-msgid "New Follower"
-msgstr "Nowy obserwujący"
-
-#: src/Util/Temporal.php:147 src/Model/Profile.php:760
-msgid "Birthday:"
-msgstr "Urodziny:"
-
-#: src/Util/Temporal.php:151
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "RRRR-MM-DD lub MM-DD"
-
-#: src/Util/Temporal.php:294
-msgid "never"
-msgstr "nigdy"
-
-#: src/Util/Temporal.php:300
-msgid "less than a second ago"
-msgstr "mniej niż sekundę temu"
-
-#: src/Util/Temporal.php:303
-msgid "year"
-msgstr "rok"
-
-#: src/Util/Temporal.php:303
-msgid "years"
-msgstr "lata"
-
-#: src/Util/Temporal.php:304
-msgid "months"
-msgstr "miesiące"
-
-#: src/Util/Temporal.php:305
-msgid "weeks"
-msgstr "tygodnie"
-
-#: src/Util/Temporal.php:306
-msgid "days"
-msgstr "dni"
-
-#: src/Util/Temporal.php:307
-msgid "hour"
-msgstr "godzina"
-
-#: src/Util/Temporal.php:307
-msgid "hours"
-msgstr "godziny"
-
-#: src/Util/Temporal.php:308
-msgid "minute"
-msgstr "minuta"
-
-#: src/Util/Temporal.php:308
-msgid "minutes"
-msgstr "minuty"
-
-#: src/Util/Temporal.php:309
-msgid "second"
-msgstr "sekunda"
-
-#: src/Util/Temporal.php:309
-msgid "seconds"
-msgstr "sekundy"
-
-#: src/Util/Temporal.php:318
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s temu"
-
-#: src/Content/Text/BBCode.php:555
-msgid "view full size"
-msgstr "Zobacz w pełnym wymiarze"
-
-#: src/Content/Text/BBCode.php:981 src/Content/Text/BBCode.php:1750
-#: src/Content/Text/BBCode.php:1751
-msgid "Image/photo"
-msgstr "Obrazek/zdjęcie"
-
-#: src/Content/Text/BBCode.php:1119
-#, php-format
-msgid "%2$s %3$s"
-msgstr "%2$s %3$s"
-
-#: src/Content/Text/BBCode.php:1677 src/Content/Text/BBCode.php:1699
-msgid "$1 wrote:"
-msgstr "$1 napisał:"
-
-#: src/Content/Text/BBCode.php:1759 src/Content/Text/BBCode.php:1760
-msgid "Encrypted content"
-msgstr "Szyfrowana treść"
-
-#: src/Content/Text/BBCode.php:1879
-msgid "Invalid source protocol"
-msgstr "Nieprawidłowy protokół źródłowy"
-
-#: src/Content/Text/BBCode.php:1890
-msgid "Invalid link protocol"
-msgstr "Niepoprawny link protokołu"
-
-#: src/Content/Nav.php:53
-msgid "Nothing new here"
-msgstr "Brak nowych zdarzeń"
-
-#: src/Content/Nav.php:57
-msgid "Clear notifications"
-msgstr "Wyczyść powiadomienia"
-
-#: src/Content/Nav.php:105
-msgid "Personal notes"
-msgstr "Notatki"
-
-#: src/Content/Nav.php:105
-msgid "Your personal notes"
-msgstr "Twoje prywatne notatki"
-
-#: src/Content/Nav.php:114
-msgid "Sign in"
-msgstr "Zaloguj się"
-
-#: src/Content/Nav.php:124
-msgid "Home Page"
-msgstr "Strona startowa"
-
-#: src/Content/Nav.php:128
-msgid "Create an account"
-msgstr "Załóż konto"
-
-#: src/Content/Nav.php:134
-msgid "Help and documentation"
-msgstr "Pomoc i dokumentacja"
-
-#: src/Content/Nav.php:138
-msgid "Apps"
-msgstr "Aplikacje"
-
-#: src/Content/Nav.php:138
-msgid "Addon applications, utilities, games"
-msgstr "Wtyczki, aplikacje, narzędzia, gry"
-
-#: src/Content/Nav.php:142
-msgid "Search site content"
-msgstr "Przeszukaj zawartość strony"
-
-#: src/Content/Nav.php:165
-msgid "Community"
-msgstr "Społeczność"
-
-#: src/Content/Nav.php:165
-msgid "Conversations on this and other servers"
-msgstr "Rozmowy na tym i innych serwerach"
-
-#: src/Content/Nav.php:172
-msgid "Directory"
-msgstr "Katalog"
-
-#: src/Content/Nav.php:172
-msgid "People directory"
-msgstr "Katalog osób"
-
-#: src/Content/Nav.php:174
-msgid "Information about this friendica instance"
-msgstr "Informacje o tej instancji friendica"
-
-#: src/Content/Nav.php:179
-msgid "Network Reset"
-msgstr "Resetowanie sieci"
-
-#: src/Content/Nav.php:179
-msgid "Load Network page with no filters"
-msgstr "Załaduj stronę sieci bez filtrów"
-
-#: src/Content/Nav.php:186
-msgid "Friend Requests"
-msgstr "Prośba o przyjęcie do grona znajomych"
-
-#: src/Content/Nav.php:190
-msgid "See all notifications"
-msgstr "Zobacz wszystkie powiadomienia"
-
-#: src/Content/Nav.php:191
-msgid "Mark all system notifications seen"
-msgstr "Oznacz wszystkie powiadomienia systemu jako przeczytane"
-
-#: src/Content/Nav.php:196
-msgid "Inbox"
-msgstr "Odebrane"
-
-#: src/Content/Nav.php:197
-msgid "Outbox"
-msgstr "Wysłane"
-
-#: src/Content/Nav.php:201
-msgid "Manage"
-msgstr "Zarządzaj"
-
-#: src/Content/Nav.php:201
-msgid "Manage other pages"
-msgstr "Zarządzaj innymi stronami"
-
-#: src/Content/Nav.php:209 src/Model/Profile.php:372
-msgid "Profiles"
-msgstr "Profile"
-
-#: src/Content/Nav.php:209
-msgid "Manage/Edit Profiles"
-msgstr "Zarządzaj/Edytuj profile"
-
-#: src/Content/Nav.php:217
-msgid "Site setup and configuration"
-msgstr "Konfiguracja i ustawienia instancji"
-
-#: src/Content/Nav.php:220
-msgid "Navigation"
-msgstr "Nawigacja"
-
-#: src/Content/Nav.php:220
-msgid "Site map"
-msgstr "Mapa strony"
-
-#: src/Content/Feature.php:79
-msgid "General Features"
-msgstr "Funkcje ogólne"
-
-#: src/Content/Feature.php:81
-msgid "Multiple Profiles"
-msgstr "Wiele profili"
-
-#: src/Content/Feature.php:81
-msgid "Ability to create multiple profiles"
-msgstr "Możliwość tworzenia wielu profili"
-
-#: src/Content/Feature.php:82
-msgid "Photo Location"
-msgstr "Lokalizacja zdjęcia"
-
-#: src/Content/Feature.php:82
-msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present)"
-" prior to stripping metadata and links it to a map."
-msgstr "Metadane zdjęć są zwykle usuwane. Wyodrębnia to położenie (jeśli jest obecne) przed usunięciem metadanych i łączy je z mapą."
-
-#: src/Content/Feature.php:83
-msgid "Export Public Calendar"
-msgstr "Eksportuj kalendarz publiczny"
-
-#: src/Content/Feature.php:83
-msgid "Ability for visitors to download the public calendar"
-msgstr "Możliwość pobierania kalendarza publicznego przez odwiedzających"
-
-#: src/Content/Feature.php:88
-msgid "Post Composition Features"
-msgstr "Ustawienia funkcji postów"
-
-#: src/Content/Feature.php:89
-msgid "Post Preview"
-msgstr "Podgląd posta"
-
-#: src/Content/Feature.php:89
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Zezwalaj na podgląd postów i komentarzy przed ich opublikowaniem"
-
-#: src/Content/Feature.php:90
-msgid "Auto-mention Forums"
-msgstr "Automatyczne wymienianie forów"
-
-#: src/Content/Feature.php:90
-msgid ""
-"Add/remove mention when a forum page is selected/deselected in ACL window."
-msgstr "Dodaj/usuń wzmiankę, gdy strona forum zostanie wybrana/cofnięta w oknie ACL."
-
-#: src/Content/Feature.php:95
-msgid "Network Sidebar Widgets"
-msgstr "Widgety paska bocznego sieci"
-
-#: src/Content/Feature.php:96
-msgid "Search by Date"
-msgstr "Szukanie wg daty"
-
-#: src/Content/Feature.php:96
-msgid "Ability to select posts by date ranges"
-msgstr "Wybierz wpisy według zakresów dat"
-
-#: src/Content/Feature.php:97 src/Content/Feature.php:127
-msgid "List Forums"
-msgstr "Lista forów"
-
-#: src/Content/Feature.php:97
-msgid "Enable widget to display the forums your are connected with"
-msgstr "Włącz widżet, aby wyświetlić fora, z którymi jesteś połączony"
-
-#: src/Content/Feature.php:98
-msgid "Group Filter"
-msgstr "Filtr grupowy"
-
-#: src/Content/Feature.php:98
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Włącz widżet, aby wyświetlać posty sieciowe tylko z wybranej grupy"
-
-#: src/Content/Feature.php:99
-msgid "Network Filter"
-msgstr "Filtr sieciowy"
-
-#: src/Content/Feature.php:99
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Włącz widżet, aby wyświetlać posty sieciowe tylko z wybranej sieci"
-
-#: src/Content/Feature.php:100
-msgid "Save search terms for re-use"
-msgstr "Zapisz wyszukiwane hasła do ponownego użycia"
-
-#: src/Content/Feature.php:105
-msgid "Network Tabs"
-msgstr "Etykiety sieciowe"
-
-#: src/Content/Feature.php:106
-msgid "Network Personal Tab"
-msgstr "Etykieta Sieć Osobista"
-
-#: src/Content/Feature.php:106
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Włącz etykietę, by wyświetlać posty tylko z sieci, z którymi współpracujesz"
-
-#: src/Content/Feature.php:107
-msgid "Network New Tab"
-msgstr "Etykieta Nowe Posty Sieciowe"
-
-#: src/Content/Feature.php:107
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Włącz etykietę, aby wyświetlić tylko nowe posty sieciowe (z ostatnich 12 godzin)"
-
-#: src/Content/Feature.php:108
-msgid "Network Shared Links Tab"
-msgstr "Etykieta Udostępnianie Łącz Sieciowych"
-
-#: src/Content/Feature.php:108
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Włącz etykietę, aby wyświetlić tylko posty sieciowe z łączami do nich"
-
-#: src/Content/Feature.php:113
-msgid "Post/Comment Tools"
-msgstr "Narzędzia post/komentarz"
-
-#: src/Content/Feature.php:114
-msgid "Multiple Deletion"
-msgstr "Wielokrotne Usuwanie"
-
-#: src/Content/Feature.php:114
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Wybierz i usuń wiele postów/komentarzy jednocześnie"
-
-#: src/Content/Feature.php:115
-msgid "Edit Sent Posts"
-msgstr "Edytuj wysłane posty"
-
-#: src/Content/Feature.php:115
-msgid "Edit and correct posts and comments after sending"
-msgstr "Edycja i poprawianie wpisów i komentarzy po wysłaniu"
-
-#: src/Content/Feature.php:116
-msgid "Tagging"
-msgstr "Tagowanie"
-
-#: src/Content/Feature.php:116
-msgid "Ability to tag existing posts"
-msgstr "Możliwość oznaczania istniejących postów"
-
-#: src/Content/Feature.php:117
-msgid "Post Categories"
-msgstr "Kategorie postów"
-
-#: src/Content/Feature.php:117
-msgid "Add categories to your posts"
-msgstr "Dodaj kategorie do twoich postów"
-
-#: src/Content/Feature.php:118 src/Content/Widget.php:200
-msgid "Saved Folders"
-msgstr "Zapisane foldery"
-
-#: src/Content/Feature.php:118
-msgid "Ability to file posts under folders"
-msgstr "Możliwość przesyłania postów do folderów"
-
-#: src/Content/Feature.php:119
-msgid "Dislike Posts"
-msgstr "Nie lubię Postów"
-
-#: src/Content/Feature.php:119
-msgid "Ability to dislike posts/comments"
-msgstr "Możliwa niechęć do postów/komentarzy"
-
-#: src/Content/Feature.php:120
-msgid "Star Posts"
-msgstr "Oznacz posty gwiazdką"
-
-#: src/Content/Feature.php:120
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Oznacz specjalne posty gwiazdką"
-
-#: src/Content/Feature.php:121
-msgid "Mute Post Notifications"
-msgstr "Ignoruj powiadomienia pocztą"
-
-#: src/Content/Feature.php:121
-msgid "Ability to mute notifications for a thread"
-msgstr "Ignoruj powiadomienia dla wątku"
-
-#: src/Content/Feature.php:126
-msgid "Advanced Profile Settings"
-msgstr "Zaawansowane ustawienia profilu"
-
-#: src/Content/Feature.php:127
-msgid "Show visitors public community forums at the Advanced Profile Page"
-msgstr "Wyświetlaj publiczne fora społeczności na stronie profilu zaawansowanego"
-
-#: src/Content/Feature.php:128
-msgid "Tag Cloud"
-msgstr "Chmura tagów"
-
-#: src/Content/Feature.php:128
-msgid "Provide a personal tag cloud on your profile page"
-msgstr "Podaj osobistą chmurę tagów na stronie profilu"
-
-#: src/Content/Feature.php:129
-msgid "Display Membership Date"
-msgstr "Wyświetl datę członkostwa"
-
-#: src/Content/Feature.php:129
-msgid "Display membership date in profile"
-msgstr "Wyświetl datę członkostwa w profilu"
-
-#: src/Content/OEmbed.php:253
-msgid "Embedding disabled"
-msgstr "Osadzanie wyłączone"
-
-#: src/Content/OEmbed.php:373
-msgid "Embedded content"
-msgstr "Osadzona zawartość"
-
-#: src/Content/Widget/CalendarExport.php:61
-msgid "Export"
-msgstr "Eksport"
-
-#: src/Content/Widget/CalendarExport.php:62
-msgid "Export calendar as ical"
-msgstr "Wyeksportuj kalendarz jako ical"
-
-#: src/Content/Widget/CalendarExport.php:63
-msgid "Export calendar as csv"
-msgstr "Eksportuj kalendarz jako csv"
-
-#: src/Content/Widget.php:33
-msgid "Add New Contact"
-msgstr "Dodaj nowy kontakt"
-
-#: src/Content/Widget.php:34
-msgid "Enter address or web location"
-msgstr "Wpisz adres lub lokalizację sieciową"
-
-#: src/Content/Widget.php:35
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Przykład: bob@przykład.com, http://przykład.com/barbara"
-
-#: src/Content/Widget.php:53
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d zaproszenie dostępne"
-msgstr[1] "%d zaproszeń dostępnych"
-msgstr[2] "%d zaproszenia dostępne"
-msgstr[3] "%d zaproszenia dostępne"
-
-#: src/Content/Widget.php:59
-msgid "Find People"
-msgstr "Znajdź ludzi"
-
-#: src/Content/Widget.php:60
-msgid "Enter name or interest"
-msgstr "Wpisz nazwę lub zainteresowanie"
-
-#: src/Content/Widget.php:62
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Przykład: Jan Kowalski, Wędkarstwo"
-
-#: src/Content/Widget.php:66
-msgid "Random Profile"
-msgstr "Domyślny profil"
-
-#: src/Content/Widget.php:68
-msgid "View Global Directory"
-msgstr "Wyświetl globalny katalog"
-
-#: src/Content/Widget.php:159
-msgid "Networks"
-msgstr "Sieci"
-
-#: src/Content/Widget.php:162
-msgid "All Networks"
-msgstr "Wszystkie Sieci"
-
-#: src/Content/Widget.php:203 src/Content/Widget.php:243
-msgid "Everything"
-msgstr "Wszystko"
-
-#: src/Content/Widget.php:240
-msgid "Categories"
-msgstr "Kategorie"
-
-#: src/Content/Widget.php:307
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: src/Content/ContactSelector.php:55
-msgid "Frequently"
-msgstr "Często"
-
-#: src/Content/ContactSelector.php:56
-msgid "Hourly"
-msgstr "Co godzinę"
-
-#: src/Content/ContactSelector.php:57
-msgid "Twice daily"
-msgstr "Dwa razy dziennie"
-
-#: src/Content/ContactSelector.php:58
-msgid "Daily"
-msgstr "Codziennie"
-
-#: src/Content/ContactSelector.php:59
-msgid "Weekly"
-msgstr "Co tydzień"
-
-#: src/Content/ContactSelector.php:60
-msgid "Monthly"
-msgstr "Miesięczne"
-
-#: src/Content/ContactSelector.php:80
-msgid "OStatus"
-msgstr "OStatus"
-
-#: src/Content/ContactSelector.php:81
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
-
-#: src/Content/ContactSelector.php:84
-msgid "Facebook"
-msgstr "Facebook"
-
-#: src/Content/ContactSelector.php:85
-msgid "Zot!"
-msgstr "Zot!"
-
-#: src/Content/ContactSelector.php:86
-msgid "LinkedIn"
-msgstr "LinkedIn"
-
-#: src/Content/ContactSelector.php:87
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
-
-#: src/Content/ContactSelector.php:88
-msgid "MySpace"
-msgstr "MySpace"
-
-#: src/Content/ContactSelector.php:89
-msgid "Google+"
-msgstr "Google+"
-
-#: src/Content/ContactSelector.php:90
-msgid "pump.io"
-msgstr "pump.io"
-
-#: src/Content/ContactSelector.php:91
-msgid "Twitter"
-msgstr "Twitter"
-
-#: src/Content/ContactSelector.php:92
-msgid "Diaspora Connector"
-msgstr "Łącze Diaspora"
-
-#: src/Content/ContactSelector.php:93
-msgid "GNU Social Connector"
-msgstr "GNU Połączenie Społecznościowe"
-
-#: src/Content/ContactSelector.php:94
-msgid "pnut"
-msgstr "orzech"
-
-#: src/Content/ContactSelector.php:95
-msgid "App.net"
-msgstr "App.net"
-
-#: src/Content/ContactSelector.php:125
-msgid "Male"
-msgstr "Mężczyzna"
-
-#: src/Content/ContactSelector.php:125
-msgid "Female"
-msgstr "Kobieta"
-
-#: src/Content/ContactSelector.php:125
-msgid "Currently Male"
-msgstr "Obecnie mężczyzna"
-
-#: src/Content/ContactSelector.php:125
-msgid "Currently Female"
-msgstr "Obecnie Kobieta"
-
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Male"
-msgstr "Głównie mężczyzna"
-
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Female"
-msgstr "Głównie kobieta"
-
-#: src/Content/ContactSelector.php:125
-msgid "Transgender"
-msgstr "Transseksualny"
-
-#: src/Content/ContactSelector.php:125
-msgid "Intersex"
-msgstr "Interseksualne"
-
-#: src/Content/ContactSelector.php:125
-msgid "Transsexual"
-msgstr "Transseksualny"
-
-#: src/Content/ContactSelector.php:125
-msgid "Hermaphrodite"
-msgstr "Hermafrodyta"
-
-#: src/Content/ContactSelector.php:125
-msgid "Neuter"
-msgstr "Rodzaj nijaki"
-
-#: src/Content/ContactSelector.php:125
-msgid "Non-specific"
-msgstr "Niespecyficzne"
-
-#: src/Content/ContactSelector.php:125
-msgid "Other"
-msgstr "Inne"
-
-#: src/Content/ContactSelector.php:147
-msgid "Males"
-msgstr "Mężczyźni"
-
-#: src/Content/ContactSelector.php:147
-msgid "Females"
-msgstr "Kobiety"
-
-#: src/Content/ContactSelector.php:147
-msgid "Gay"
-msgstr "Gej"
-
-#: src/Content/ContactSelector.php:147
-msgid "Lesbian"
-msgstr "Lesbijka"
-
-#: src/Content/ContactSelector.php:147
-msgid "No Preference"
-msgstr "Brak preferencji"
-
-#: src/Content/ContactSelector.php:147
-msgid "Bisexual"
-msgstr "Biseksualny"
-
-#: src/Content/ContactSelector.php:147
-msgid "Autosexual"
-msgstr "Niezidentyfikowany"
-
-#: src/Content/ContactSelector.php:147
-msgid "Abstinent"
-msgstr "Abstynent"
-
-#: src/Content/ContactSelector.php:147
-msgid "Virgin"
-msgstr "Dziewica"
-
-#: src/Content/ContactSelector.php:147
-msgid "Deviant"
-msgstr "Zboczeniec"
-
-#: src/Content/ContactSelector.php:147
-msgid "Fetish"
-msgstr "Fetysz"
-
-#: src/Content/ContactSelector.php:147
-msgid "Oodles"
-msgstr "Nadmiar"
-
-#: src/Content/ContactSelector.php:147
-msgid "Nonsexual"
-msgstr "Nieseksualny"
-
-#: src/Content/ContactSelector.php:169
-msgid "Single"
-msgstr "Singiel"
-
-#: src/Content/ContactSelector.php:169
-msgid "Lonely"
-msgstr "Samotny"
-
-#: src/Content/ContactSelector.php:169
-msgid "Available"
-msgstr "Dostępny"
-
-#: src/Content/ContactSelector.php:169
-msgid "Unavailable"
-msgstr "Niedostępny"
-
-#: src/Content/ContactSelector.php:169
-msgid "Has crush"
-msgstr "Ma sympatii"
-
-#: src/Content/ContactSelector.php:169
-msgid "Infatuated"
-msgstr "Zakochany"
-
-#: src/Content/ContactSelector.php:169
-msgid "Dating"
-msgstr "Randki"
-
-#: src/Content/ContactSelector.php:169
-msgid "Unfaithful"
-msgstr "Niewierny"
-
-#: src/Content/ContactSelector.php:169
-msgid "Sex Addict"
-msgstr "Uzależniony od seksu"
-
-#: src/Content/ContactSelector.php:169 src/Model/User.php:519
-msgid "Friends"
-msgstr "Przyjaciele"
-
-#: src/Content/ContactSelector.php:169
-msgid "Friends/Benefits"
-msgstr "Przyjaciele/Korzyści"
-
-#: src/Content/ContactSelector.php:169
-msgid "Casual"
-msgstr "Przypadkowy"
-
-#: src/Content/ContactSelector.php:169
-msgid "Engaged"
-msgstr "Zaręczeni"
-
-#: src/Content/ContactSelector.php:169
-msgid "Married"
-msgstr "Małżeństwo"
-
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily married"
-msgstr "Fikcyjnie w związku małżeńskim"
-
-#: src/Content/ContactSelector.php:169
-msgid "Partners"
-msgstr "Partnerzy"
-
-#: src/Content/ContactSelector.php:169
-msgid "Cohabiting"
-msgstr "Konkubinat"
-
-#: src/Content/ContactSelector.php:169
-msgid "Common law"
-msgstr "Prawo zwyczajowe"
-
-#: src/Content/ContactSelector.php:169
-msgid "Happy"
-msgstr "Szczęśliwy"
-
-#: src/Content/ContactSelector.php:169
-msgid "Not looking"
-msgstr "Nie patrzę"
-
-#: src/Content/ContactSelector.php:169
-msgid "Swinger"
-msgstr "Swinger"
-
-#: src/Content/ContactSelector.php:169
-msgid "Betrayed"
-msgstr "Zdradzony"
-
-#: src/Content/ContactSelector.php:169
-msgid "Separated"
-msgstr "W separacji"
-
-#: src/Content/ContactSelector.php:169
-msgid "Unstable"
-msgstr "Niestabilny"
-
-#: src/Content/ContactSelector.php:169
-msgid "Divorced"
-msgstr "Rozwiedzeni"
-
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily divorced"
-msgstr "Fikcyjnie rozwiedziony/a"
-
-#: src/Content/ContactSelector.php:169
-msgid "Widowed"
-msgstr "Wdowiec"
-
-#: src/Content/ContactSelector.php:169
-msgid "Uncertain"
-msgstr "Nieokreślony"
-
-#: src/Content/ContactSelector.php:169
-msgid "It's complicated"
-msgstr "To skomplikowane"
-
-#: src/Content/ContactSelector.php:169
-msgid "Don't care"
-msgstr "Nie przejmuj się"
-
-#: src/Content/ContactSelector.php:169
-msgid "Ask me"
-msgstr "Zapytaj mnie "
-
-#: src/Database/DBStructure.php:32
-msgid "There are no tables on MyISAM."
-msgstr "W MyISAM nie ma tabel."
-
-#: src/Database/DBStructure.php:75
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr "\n\t\t\t\tDeweloperzy friendica wydali niedawno aktualizację %s,\n\t\t\t\tale podczas próby instalacji, coś poszło nie tak.\n\t\t\t\tZostanie to naprawione wkrótce i nie mogę tego zrobić sam. Proszę skontaktować się z \n\t\t\t\tprogramistami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być nieprawidłowa."
-
-#: src/Database/DBStructure.php:80
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Komunikat o błędzie jest \n[pre]%s[/ pre]"
-
-#: src/Database/DBStructure.php:191
-#, php-format
-msgid ""
-"\n"
-"Error %d occurred during database update:\n"
-"%s\n"
-msgstr "\nWystąpił błąd %d podczas aktualizacji bazy danych:\n%s\n"
-
-#: src/Database/DBStructure.php:194
-msgid "Errors encountered performing database changes: "
-msgstr "Napotkane błędy powodujące zmiany w bazie danych:"
-
-#: src/Database/DBStructure.php:210
-msgid ": Database update"
-msgstr ": Aktualizacja bazy danych"
-
-#: src/Database/DBStructure.php:460
-#, php-format
-msgid "%s: updating %s table."
-msgstr "%s: aktualizowanie %s tabeli."
-
-#: src/Model/Mail.php:40 src/Model/Mail.php:174
-msgid "[no subject]"
-msgstr "[bez tematu]"
-
-#: src/Model/Item.php:1676
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$suczestniczy %2$s's %3$s "
-
-#: src/Model/Item.php:1681
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$snie uczestniczy %2$s's %3$s "
-
-#: src/Model/Item.php:1686
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$smogą uczestniczyć %2$s's %3$s "
-
-#: src/Model/Contact.php:657
-msgid "Drop Contact"
-msgstr "Upuść kontakt"
-
-#: src/Model/Contact.php:1060
-msgid "Organisation"
-msgstr "Organizacja"
-
-#: src/Model/Contact.php:1063
-msgid "News"
-msgstr "Aktualności"
-
-#: src/Model/Contact.php:1066
-msgid "Forum"
-msgstr "Forum"
-
-#: src/Model/Contact.php:1245
-msgid "Connect URL missing."
-msgstr "Brak adresu URL połączenia."
-
-#: src/Model/Contact.php:1254
-msgid ""
-"The contact could not be added. Please check the relevant network "
-"credentials in your Settings -> Social Networks page."
-msgstr "Nie można dodać kontaktu. Sprawdź odpowiednie poświadczenia sieciowe na stronie Ustawienia -> Sieci społecznościowe."
-
-#: src/Model/Contact.php:1301
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami"
-
-#: src/Model/Contact.php:1302 src/Model/Contact.php:1316
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Nie znaleziono żadnych kompatybilnych protokołów komunikacyjnych ani źródeł."
-
-#: src/Model/Contact.php:1314
-msgid "The profile address specified does not provide adequate information."
-msgstr "Dany adres profilu nie dostarcza odpowiednich informacji."
-
-#: src/Model/Contact.php:1319
-msgid "An author or name was not found."
-msgstr "Autor lub nazwa nie zostało znalezione."
-
-#: src/Model/Contact.php:1322
-msgid "No browser URL could be matched to this address."
-msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu"
-
-#: src/Model/Contact.php:1325
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail."
-
-#: src/Model/Contact.php:1326
-msgid "Use mailto: in front of address to force email check."
-msgstr "Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail."
-
-#: src/Model/Contact.php:1332
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Określony adres profilu należy do sieci, która została wyłączona na tej stronie."
-
-#: src/Model/Contact.php:1337
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie."
-
-#: src/Model/Contact.php:1388
-msgid "Unable to retrieve contact information."
-msgstr "Nie można otrzymać informacji kontaktowych"
-
-#: src/Model/Contact.php:1605
-#, php-format
-msgid "%s's birthday"
-msgstr "Urodziny %s"
-
-#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Urodziny %s"
-
-#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
-#: src/Model/Event.php:882
-msgid "Starts:"
-msgstr "Rozpoczęcie:"
-
-#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420
-#: src/Model/Event.php:886
-msgid "Finishes:"
-msgstr "Zakończenie:"
-
-#: src/Model/Event.php:368
-msgid "all-day"
-msgstr "cały dzień"
-
-#: src/Model/Event.php:391
-msgid "Jun"
-msgstr "cze"
-
-#: src/Model/Event.php:394
-msgid "Sept"
-msgstr "wrz"
-
-#: src/Model/Event.php:417
-msgid "No events to display"
-msgstr "Brak wydarzeń do wyświetlenia"
-
-#: src/Model/Event.php:543
-msgid "l, F j"
-msgstr "d, M d "
-
-#: src/Model/Event.php:566
-msgid "Edit event"
-msgstr "Edytuj wydarzenie"
-
-#: src/Model/Event.php:567
-msgid "Duplicate event"
-msgstr "Zduplikowane zdarzenie"
-
-#: src/Model/Event.php:568
-msgid "Delete event"
-msgstr "Usuń wydarzenie"
-
-#: src/Model/Event.php:815
-msgid "D g:i A"
+#: view/theme/duepuntozero/config.php:60
+msgid "slackr"
msgstr ""
-#: src/Model/Event.php:816
-msgid "g:i A"
-msgstr ""
-
-#: src/Model/Event.php:901 src/Model/Event.php:903
-msgid "Show map"
-msgstr "Pokaż mapę"
-
-#: src/Model/Event.php:902
-msgid "Hide map"
-msgstr "Ukryj mapę"
-
-#: src/Model/Group.php:44
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"may apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Skasowana grupa o tej nazwie została przywrócona. Istniejące uprawnienia do pozycji mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie jest to zamierzone, utwórz inną grupę o innej nazwie."
-
-#: src/Model/Group.php:341
-msgid "Default privacy group for new contacts"
-msgstr "Domyślne ustawienia prywatności dla nowych kontaktów"
-
-#: src/Model/Group.php:374
-msgid "Everybody"
-msgstr "Wszyscy"
-
-#: src/Model/Group.php:394
-msgid "edit"
-msgstr "edytuj"
-
-#: src/Model/Group.php:418
-msgid "Edit group"
-msgstr "Edytuj grupy"
-
-#: src/Model/Group.php:419
-msgid "Contacts not in any group"
-msgstr "Kontakt nie jest w żadnej grupie"
-
-#: src/Model/Group.php:420
-msgid "Create a new group"
-msgstr "Stwórz nową grupę"
-
-#: src/Model/Group.php:422
-msgid "Edit groups"
-msgstr "Edytuj grupy"
-
-#: src/Model/Profile.php:97
-msgid "Requested account is not available."
-msgstr "Żądane konto jest niedostępne."
-
-#: src/Model/Profile.php:168 src/Model/Profile.php:399
-#: src/Model/Profile.php:861
-msgid "Edit profile"
-msgstr "Edytuj profil"
-
-#: src/Model/Profile.php:336
-msgid "Atom feed"
-msgstr "Kanał Atom"
-
-#: src/Model/Profile.php:372
-msgid "Manage/edit profiles"
-msgstr "Zarządzaj profilami"
-
-#: src/Model/Profile.php:550 src/Model/Profile.php:643
-msgid "g A l F d"
-msgstr "g A I F d"
-
-#: src/Model/Profile.php:551
-msgid "F d"
-msgstr ""
-
-#: src/Model/Profile.php:608 src/Model/Profile.php:705
-msgid "[today]"
-msgstr "[dziś]"
-
-#: src/Model/Profile.php:619
-msgid "Birthday Reminders"
-msgstr "Przypomnienia o urodzinach"
-
-#: src/Model/Profile.php:620
-msgid "Birthdays this week:"
-msgstr "Urodziny w tym tygodniu:"
-
-#: src/Model/Profile.php:692
-msgid "[No description]"
-msgstr "[Brak opisu]"
-
-#: src/Model/Profile.php:719
-msgid "Event Reminders"
-msgstr "Przypominacze wydarzeń"
-
-#: src/Model/Profile.php:720
-msgid "Events this week:"
-msgstr "Wydarzenia w tym tygodniu:"
-
-#: src/Model/Profile.php:743
-msgid "Member since:"
-msgstr "Członek od:"
-
-#: src/Model/Profile.php:751
-msgid "j F, Y"
-msgstr "d M, R"
-
-#: src/Model/Profile.php:752
-msgid "j F"
-msgstr "d M"
-
-#: src/Model/Profile.php:767
-msgid "Age:"
-msgstr "Wiek:"
-
-#: src/Model/Profile.php:780
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "od %1$d %2$s"
-
-#: src/Model/Profile.php:804
-msgid "Religion:"
-msgstr "Religia:"
-
-#: src/Model/Profile.php:812
-msgid "Hobbies/Interests:"
-msgstr "Hobby/Zainteresowania:"
-
-#: src/Model/Profile.php:824
-msgid "Contact information and Social Networks:"
-msgstr "Informacje kontaktowe i sieci społeczne"
-
-#: src/Model/Profile.php:828
-msgid "Musical interests:"
-msgstr "Zainteresowania muzyczne:"
-
-#: src/Model/Profile.php:832
-msgid "Books, literature:"
-msgstr "Książki, literatura:"
-
-#: src/Model/Profile.php:836
-msgid "Television:"
-msgstr "Telewizja:"
-
-#: src/Model/Profile.php:840
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/taniec/kultura/rozrywka"
-
-#: src/Model/Profile.php:844
-msgid "Love/Romance:"
-msgstr "Miłość/Romans:"
-
-#: src/Model/Profile.php:848
-msgid "Work/employment:"
-msgstr "Praca/zatrudnienie:"
-
-#: src/Model/Profile.php:852
-msgid "School/education:"
-msgstr "Szkoła/edukacja:"
-
-#: src/Model/Profile.php:857
-msgid "Forums:"
-msgstr "Fora:"
-
-#: src/Model/Profile.php:951
-msgid "Only You Can See This"
-msgstr "Tylko ty możesz to zobaczyć"
-
-#: src/Model/User.php:154
-msgid "Login failed"
-msgstr "Logowanie nieudane"
-
-#: src/Model/User.php:185
-msgid "Not enough information to authenticate"
-msgstr "Za mało informacji do uwierzytelnienia"
-
-#: src/Model/User.php:346
-msgid "An invitation is required."
-msgstr "Wymagane zaproszenie."
-
-#: src/Model/User.php:350
-msgid "Invitation could not be verified."
-msgstr "Zaproszenie niezweryfikowane."
-
-#: src/Model/User.php:357
-msgid "Invalid OpenID url"
-msgstr "Nieprawidłowy adres url OpenID"
-
-#: src/Model/User.php:370 src/Module/Login.php:100
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Napotkaliśmy problem podczas logowania z podanym przez nas identyfikatorem OpenID. Sprawdź poprawną pisownię identyfikatora."
-
-#: src/Model/User.php:370 src/Module/Login.php:100
-msgid "The error message was:"
-msgstr "Komunikat o błędzie:"
-
-#: src/Model/User.php:376
-msgid "Please enter the required information."
-msgstr "Wprowadź wymagane informacje"
-
-#: src/Model/User.php:389
-msgid "Please use a shorter name."
-msgstr "Użyj dłuższej nazwy."
-
-#: src/Model/User.php:392
-msgid "Name too short."
-msgstr "Nazwa jest za krótka."
-
-#: src/Model/User.php:400
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Wydaje mi się, że to nie jest twoje pełne imię (pierwsze imię) i nazwisko."
-
-#: src/Model/User.php:405
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Twoja domena internetowa nie jest obsługiwana na tej stronie."
-
-#: src/Model/User.php:409
-msgid "Not a valid email address."
-msgstr "Niepoprawny adres e mail.."
-
-#: src/Model/User.php:413 src/Model/User.php:421
-msgid "Cannot use that email."
-msgstr "Nie możesz użyć tego e-maila. "
-
-#: src/Model/User.php:428
-msgid "Your nickname can only contain a-z, 0-9 and _."
-msgstr "Twój pseudonim może zawierać tylko a-z, 0-9 i _."
-
-#: src/Model/User.php:435 src/Model/User.php:491
-msgid "Nickname is already registered. Please choose another."
-msgstr "Ten login jest zajęty. Wybierz inny."
-
-#: src/Model/User.php:445
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń."
-
-#: src/Model/User.php:478 src/Model/User.php:482
-msgid "An error occurred during registration. Please try again."
-msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie."
-
-#: src/Model/User.php:507
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie."
-
-#: src/Model/User.php:514
-msgid "An error occurred creating your self contact. Please try again."
-msgstr "Wystąpił błąd podczas tworzenia własnego kontaktu. Proszę spróbuj ponownie."
-
-#: src/Model/User.php:523
-msgid ""
-"An error occurred creating your default contact group. Please try again."
-msgstr "Wystąpił błąd podczas tworzenia domyślnej grupy kontaktów. Proszę spróbuj ponownie."
-
-#: src/Model/User.php:597
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
-"\t\t"
-msgstr "\n\t\t\tDrodzy %1$s, \n\t\t\t\tDziękujemy za rejestrację na stronie %2$s. Twoje konto czeka na zatwierdzenie przez administratora."
-
-#: src/Model/User.php:607
-#, php-format
-msgid "Registration at %s"
-msgstr "Rejestracja w %s"
-
-#: src/Model/User.php:625
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t\t"
-msgstr "\n\t\t\tDrodzy %1$s, \n\t\t\t\tDziękujemy za rejestrację na stronie %2$s. Twoje konto zostało utworzone."
-
-#: src/Model/User.php:629
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t\t%1$s\n"
-"\t\t\tPassword:\t\t%5$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\tIf you ever want to delete your account, you can do so at %3$s/removeme\n"
-"\n"
-"\t\t\tThank you and welcome to %2$s."
-msgstr "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%3$s\n\t\t\tNazwa użytkownika:\t\t%1$s\n\t\t\tHasło:\t\t%5$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\"\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i\n\t\t\tbyć może w jakim kraju mieszkasz; jeśli nie chcesz być bardziej szczegółowy.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić w %3$s/Usuń konto\n\n\t\t\tDziękujemy i Zapraszamy do %2$s."
-
-#: src/Protocol/OStatus.php:1799
-#, php-format
-msgid "%s is now following %s."
-msgstr "%sjest teraz następujące %s. "
-
-#: src/Protocol/OStatus.php:1800
-msgid "following"
-msgstr "następujący"
-
-#: src/Protocol/OStatus.php:1803
-#, php-format
-msgid "%s stopped following %s."
-msgstr "%sprzestał śledzić %s. "
-
-#: src/Protocol/OStatus.php:1804
-msgid "stopped following"
-msgstr "przestał śledzić"
-
-#: src/Protocol/DFRN.php:1482
-#, php-format
-msgid "%s\\'s birthday"
-msgstr "%s\\'s urodziny"
-
-#: src/Protocol/Diaspora.php:2680
-msgid "Sharing notification from Diaspora network"
-msgstr "Wspólne powiadomienie z sieci Diaspora"
-
-#: src/Protocol/Diaspora.php:3756
-msgid "Attachments:"
-msgstr "Załączniki:"
-
-#: src/Worker/Delivery.php:390
-msgid "(no subject)"
-msgstr "(bez tematu)"
-
-#: src/Module/Login.php:282
-msgid "Create a New Account"
-msgstr "Załóż nowe konto"
-
-#: src/Module/Login.php:315
-msgid "Password: "
-msgstr "Hasło:"
-
-#: src/Module/Login.php:316
-msgid "Remember me"
-msgstr "Zapamiętaj mnie"
-
-#: src/Module/Login.php:319
-msgid "Or login using OpenID: "
-msgstr "Lub zaloguj się korzystając z OpenID:"
-
-#: src/Module/Login.php:325
-msgid "Forgot your password?"
-msgstr "Zapomniałeś swojego hasła?"
-
-#: src/Module/Login.php:328
-msgid "Website Terms of Service"
-msgstr "Warunki korzystania z witryny"
-
-#: src/Module/Login.php:329
-msgid "terms of service"
-msgstr "warunki użytkowania"
-
-#: src/Module/Login.php:331
-msgid "Website Privacy Policy"
-msgstr "Polityka Prywatności Witryny"
-
-#: src/Module/Login.php:332
-msgid "privacy policy"
-msgstr "polityka prywatności"
-
-#: src/Module/Logout.php:28
-msgid "Logged out."
-msgstr "Wyloguj"
-
-#: src/Module/Tos.php:51
-msgid "Privacy Statement"
-msgstr "Oświadczenie o prywatności"
-
-#: src/Module/Tos.php:52
-msgid ""
-"At the time of registration, and for providing communications between the "
-"user account and their contacts, the user has to provide a display name (pen"
-" name), an username (nickname) and a working email address. The names will "
-"be accessible on the profile page of the account by any visitor of the page,"
-" even if other profile details are not displayed. The email address will "
-"only be used to send the user notifications about interactions, but wont be "
-"visibly displayed. The listing of an account in the node's user directory or"
-" the global user directory is optional and can be controlled in the user "
-"settings, it is not necessary for communication."
-msgstr "W momencie rejestracji oraz w celu zapewnienia komunikacji między kontem użytkownika, a jego kontaktami, użytkownik musi podać nazwę wyświetlaną (pseudonim), nazwę użytkownika (przydomek) i działający adres e-mail. Nazwy będą dostępne na stronie profilu konta dla każdego odwiedzającego stronę, nawet jeśli inne szczegóły profilu nie zostaną wyświetlone. Adres e-mail będzie używany tylko do wysyłania powiadomień użytkownika o interakcjach, ale nie będzie wyświetlany w widoczny sposób. Lista kont w katalogu użytkownika węzła lub globalnym katalogu użytkownika jest opcjonalna i może być kontrolowana w ustawieniach użytkownika, nie jest konieczna do komunikacji."
-
-#: src/Module/Tos.php:53
-msgid ""
-"This data is required for communication and is passed on to the nodes of the"
-" communication partners. Users can enter additional private data that may be"
-" transmitted to the communication partners accounts."
-msgstr "Te dane są wymagane do komunikacji i przekazywane do węzłów partnerów komunikacyjnych. Użytkownicy mogą wprowadzać dodatkowe prywatne dane, które mogą być przesyłane na konta partnerów komunikacyjnych."
-
-#: src/Module/Tos.php:54
-#, php-format
-msgid ""
-"At any point in time a logged in user can export their account data from the"
-" account settings . If the user wants "
-"to delete their account they can do so at %1$s/removeme . The deletion of the account will "
-"be permanent."
-msgstr "W dowolnym momencie zalogowany użytkownik może wyeksportować dane swojego konta z ustawień konta . Jeśli użytkownik chce usunąć swoje konto, może to zrobić w %1$s/usuń mnie. Usunięcie konta będzie trwałe."
-
-#: src/Object/Post.php:128
-msgid "This entry was edited"
-msgstr "Ten wpis został zedytowany"
-
-#: src/Object/Post.php:182
-msgid "save to folder"
-msgstr "zapisz w folderze"
-
-#: src/Object/Post.php:235
-msgid "I will attend"
-msgstr "Będę uczestniczyć"
-
-#: src/Object/Post.php:235
-msgid "I will not attend"
-msgstr "Nie będę uczestniczyć"
-
-#: src/Object/Post.php:235
-msgid "I might attend"
-msgstr "Mogę wziąć udział"
-
-#: src/Object/Post.php:263
-msgid "add star"
-msgstr "dodaj gwiazdkę"
-
-#: src/Object/Post.php:264
-msgid "remove star"
-msgstr "anuluj gwiazdkę"
-
-#: src/Object/Post.php:265
-msgid "toggle star status"
-msgstr "włącz status gwiazdy"
-
-#: src/Object/Post.php:268
-msgid "starred"
-msgstr "gwiazdką"
-
-#: src/Object/Post.php:274
-msgid "ignore thread"
-msgstr "zignoruj wątek"
-
-#: src/Object/Post.php:275
-msgid "unignore thread"
-msgstr "odignoruj wątek"
-
-#: src/Object/Post.php:276
-msgid "toggle ignore status"
-msgstr "przełącz status ignorowania"
-
-#: src/Object/Post.php:285
-msgid "add tag"
-msgstr "dodaj tag"
-
-#: src/Object/Post.php:296
-msgid "like"
-msgstr "lubię to"
-
-#: src/Object/Post.php:297
-msgid "dislike"
-msgstr "nie lubię tego"
-
-#: src/Object/Post.php:300
-msgid "Share this"
-msgstr "Udostępnij to"
-
-#: src/Object/Post.php:300
-msgid "share"
-msgstr "udostępnij"
-
-#: src/Object/Post.php:365
-msgid "to"
-msgstr "do"
-
-#: src/Object/Post.php:366
-msgid "via"
-msgstr "przez"
-
-#: src/Object/Post.php:367
-msgid "Wall-to-Wall"
-msgstr "Wall-to-Wall"
-
-#: src/Object/Post.php:368
-msgid "via Wall-To-Wall:"
-msgstr "via Wall-To-Wall:"
-
-#: src/Object/Post.php:427
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] " %d komentarz"
-msgstr[1] " %d komentarzy"
-msgstr[2] " %d komentarzy"
-msgstr[3] " %d komentarzy"
-
-#: src/Object/Post.php:797
-msgid "Bold"
-msgstr "Pogrubienie"
-
-#: src/Object/Post.php:798
-msgid "Italic"
-msgstr "Kursywa"
-
-#: src/Object/Post.php:799
-msgid "Underline"
-msgstr "Podkreślenie"
-
-#: src/Object/Post.php:800
-msgid "Quote"
-msgstr "Cytat"
-
-#: src/Object/Post.php:801
-msgid "Code"
-msgstr "Kod"
-
-#: src/Object/Post.php:802
-msgid "Image"
-msgstr "Obraz"
-
-#: src/Object/Post.php:803
-msgid "Link"
-msgstr "Link"
-
-#: src/Object/Post.php:804
-msgid "Video"
-msgstr "Video"
-
-#: src/App.php:511
-msgid "Delete this item?"
-msgstr "Usunąć ten element?"
-
-#: src/App.php:513
-msgid "show fewer"
-msgstr "Pokaż mniej"
-
-#: boot.php:795
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Aktualizacja %s nie powiodła się. Zobacz dziennik błędów."
+#: view/theme/duepuntozero/config.php:74
+msgid "Variations"
+msgstr "Zmiana"
#: index.php:472
msgid "toggle mobile"
diff --git a/view/lang/pl/strings.php b/view/lang/pl/strings.php
index 726e3e22b..222effaab 100644
--- a/view/lang/pl/strings.php
+++ b/view/lang/pl/strings.php
@@ -5,13 +5,7 @@ function string_plural_select_pl($n){
return ($n==1 ? 0 : ($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14) ? 1 : $n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14) ? 2 : 3);;
}}
;
-$a->strings["Item not found."] = "Element nie znaleziony.";
-$a->strings["Do you really want to delete this item?"] = "Czy na pewno chcesz usunąć ten element?";
-$a->strings["Yes"] = "Tak";
-$a->strings["Cancel"] = "Anuluj";
-$a->strings["Permission denied."] = "Brak uprawnień.";
-$a->strings["Archives"] = "Archiwum";
-$a->strings["show more"] = "Pokaż więcej";
+$a->strings["Update %s failed. See error logs."] = "Aktualizacja %s nie powiodła się. Zobacz dziennik błędów.";
$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [
0 => "",
1 => "",
@@ -26,6 +20,65 @@ $a->strings["Weekly posting limit of %d post reached. The post was rejected."] =
];
$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Miesięczny limit %d wysyłania postów. Post został odrzucony.";
$a->strings["Profile Photos"] = "Zdjęcie profilowe";
+$a->strings["Friendica Notification"] = "Powiadomienia Friendica";
+$a->strings["Thank You,"] = "Dziękuję,";
+$a->strings["%s Administrator"] = "%s Administrator";
+$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s,%2\$sAdministrator";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Powiadomienie] Nowa wiadomość otrzymana od %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$swysłał ci nową prywatną wiadomość na %2\$s ";
+$a->strings["a private message"] = "prywatna wiadomość";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s wysyła ci %2\$s";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s skomentował [url=%2\$s]a %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$sskomentował [url=%2\$s]%3\$s %4\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s skomentował [url=%2\$s] twój %3\$s[/ url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Powiadomienie] Komentarz do rozmowy #%1\$d przez %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s skomentował rozmowę którą śledzisz";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Powiadomienie] %s napisał na twoim profilu";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$sopublikowano na ścianie profilu w %2\$s ";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s wysłano do [url =%2\$s]twojej strony[/url] ";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Powiadomienie] %s dodał Cię";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s oznaczono Cię tagiem %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]oznaczył Cię[/url]. ";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Powiadomienie] %s udostępnił nowy wpis";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$sudostępnił nowy wpis na %2\$s ";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s[url=%2\$s]udostępnił wpis[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica: Powiadomienie] %1\$s zaczepia Cię";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s zaczepił Cię %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s[url=%2\$s] zaczepił Cię[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Powiadomienie] %s otagował Twój post";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$soznaczyłeś swój wpis na %2\$s ";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$soznacz [url=%2\$s]twój post[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Powiadomienie] Zapoznanie wstępne";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Otrzymałeś wstęp od '%1\$s' z %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Zostałeś [url=%1\$s] przyjęty [/ url] z %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Możesz odwiedzić ich profil na stronie %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie.";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Powiadomienie] Nowa osoba dzieli się z tobą";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$sdzieli się z tobą w %2\$s ";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Powiadomienie] Masz nowego obserwatora";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "Masz nowego obserwatora na %2\$s : %1\$s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica: Powiadomienie] Otrzymano sugestię znajomego";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Otrzymałeś od znajomego sugestię '%1\$s' na %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Otrzymałeś [url=%1\$s] sugestię znajomego [/url] dla %2\$s od %3\$s.";
+$a->strings["Name:"] = "Imię:";
+$a->strings["Photo:"] = "Zdjęcie:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Odwiedź stronę %s, aby zatwierdzić lub odrzucić sugestię.";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica: Powiadomienie] Połączenie zostało zaakceptowane";
+$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' zaakceptował Twoją prośbę o połączenie na %2\$s";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$szaakceptował twoje [url=%1\$s] żądanie połączenia [/url]. ";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Jesteście teraz przyjaciółmi i możesz wymieniać aktualizacje statusu, zdjęcia i e-maile bez ograniczeń.";
+$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Odwiedź stronę %s jeśli chcesz wprowadzić zmiany w tym związku.";
+$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' zdecydował się zaakceptować Cię jako fana, który ogranicza niektóre formy komunikacji - takie jak prywatne wiadomości i niektóre interakcje w profilu. Jeśli jest to strona celebrytów lub społeczności, ustawienia te zostały zastosowane automatycznie.";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' możesz zdecydować o przedłużeniu tego w dwukierunkowy lub bardziej ścisłą relację w przyszłości. ";
+$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Odwiedź stronę %s, jeśli chcesz wprowadzić zmiany w tej relacji.";
+$a->strings["[Friendica System Notify]"] = "[Powiadomienie Systemu Friendica]";
+$a->strings["registration request"] = "prośba o rejestrację";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Otrzymałeś wniosek rejestracyjny od '%1\$s' na %2\$s";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Otrzymałeś [url=%1\$s] żądanie rejestracji [/url] od %2\$s.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Pełna nazwa:\t%1\$s \\Lokalizacja nSite:\t%2\$s\\ nNazwa Użytkownika: \t%3\$s(%4\$s)";
+$a->strings["Please visit %s to approve or reject the request."] = "Odwiedź stronę %s, aby zatwierdzić lub odrzucić wniosek.";
$a->strings["event"] = "wydarzenie";
$a->strings["status"] = "status";
$a->strings["photo"] = "zdjęcie";
@@ -115,6 +168,7 @@ $a->strings["Permission settings"] = "Ustawienia uprawnień";
$a->strings["permissions"] = "zezwolenia";
$a->strings["Public post"] = "Publiczny post";
$a->strings["Preview"] = "Podgląd";
+$a->strings["Cancel"] = "Anuluj";
$a->strings["Post to Groups"] = "Opublikuj w grupach";
$a->strings["Post to Contacts"] = "Wstaw do kontaktów";
$a->strings["Private post"] = "Prywatne posty";
@@ -146,65 +200,6 @@ $a->strings["Undecided"] = [
3 => "",
];
$a->strings["Cannot locate DNS info for database server '%s'"] = "Nie można zlokalizować serwera DNS dla bazy danych '%s'";
-$a->strings["Friendica Notification"] = "Powiadomienia Friendica";
-$a->strings["Thank You,"] = "Dziękuję,";
-$a->strings["%s Administrator"] = "%s Administrator";
-$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s,%2\$sAdministrator";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Powiadomienie] Nowa wiadomość otrzymana od %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$swysłał ci nową prywatną wiadomość na %2\$s ";
-$a->strings["a private message"] = "prywatna wiadomość";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s wysyła ci %2\$s";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s skomentował [url=%2\$s]a %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$sskomentował [url=%2\$s]%3\$s %4\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s skomentował [url=%2\$s] twój %3\$s[/ url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Powiadomienie] Komentarz do rozmowy #%1\$d przez %2\$s";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s skomentował rozmowę którą śledzisz";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Powiadomienie] %s napisał na twoim profilu";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$sopublikowano na ścianie profilu w %2\$s ";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s wysłano do [url =%2\$s]twojej ściany[/url] ";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Powiadomienie] %s dodał Cię";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s oznaczono Cię tagiem %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]oznaczył Cię[/url]. ";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Powiadomienie] %s udostępnił nowy wpis";
-$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$sudostępnił nowy wpis na %2\$s ";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s[url=%2\$s]udostępnił wpis[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica: Powiadomienie] %1\$s zaczepia Cię";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s zaczepił Cię %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s[url=%2\$s] zaczepił Cię[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Powiadomienie] %s otagował Twój post";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$soznaczyłeś swój wpis na %2\$s ";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$soznacz [url=%2\$s]twój post[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Powiadomienie] Zapoznanie wstępne";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Otrzymałeś wstęp od '%1\$s' z %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Otrzymałeś [url=%1\$s] wprowadzenie [/ url] z %2\$s.";
-$a->strings["You may visit their profile at %s"] = "Możesz odwiedzić ich profil na stronie %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie.";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Powiadomienie] Nowa osoba dzieli się z tobą";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$sdzieli się z tobą w %2\$s ";
-$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Powiadomienie] Masz nowego obserwatora";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "Masz nowego obserwatora na %2\$s : %1\$s";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica: Powiadomienie] Otrzymano sugestię znajomego";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Otrzymałeś od znajomego sugestię '%1\$s' na %2\$s";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Otrzymałeś [url=%1\$s] sugestię znajomego [/url] dla %2\$s od %3\$s.";
-$a->strings["Name:"] = "Imię:";
-$a->strings["Photo:"] = "Zdjęcie:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Odwiedź stronę %s, aby zatwierdzić lub odrzucić sugestię.";
-$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica: Powiadomienie] Połączenie zostało zaakceptowane";
-$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' zaakceptował Twoją prośbę o połączenie na %2\$s";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$szaakceptował twoje [url=%1\$s] żądanie połączenia [/url]. ";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Jesteście teraz przyjaciółmi i możesz wymieniać aktualizacje statusu, zdjęcia i e-maile bez ograniczeń.";
-$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Odwiedź stronę %s jeśli chcesz wprowadzić zmiany w tym związku.";
-$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' zdecydował się zaakceptować Cię jako fana, który ogranicza niektóre formy komunikacji - takie jak prywatne wiadomości i niektóre interakcje w profilu. Jeśli jest to strona celebrytów lub społeczności, ustawienia te zostały zastosowane automatycznie.";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' możesz zdecydować o przedłużeniu tego w dwukierunkowy lub bardziej ścisłą relację w przyszłości. ";
-$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Odwiedź stronę %s, jeśli chcesz wprowadzić zmiany w tej relacji.";
-$a->strings["[Friendica System Notify]"] = "[Powiadomienie Systemu Friendica]";
-$a->strings["registration request"] = "prośba o rejestrację";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Otrzymałeś wniosek rejestracyjny od '%1\$s' na %2\$s";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Otrzymałeś [url=%1\$s] żądanie rejestracji [/url] od %2\$s.";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Pełna nazwa:\t%1\$s \\Lokalizacja nSite:\t%2\$s\\ nNazwa Użytkownika: \t%3\$s(%4\$s)";
-$a->strings["Please visit %s to approve or reject the request."] = "Odwiedź stronę %s, aby zatwierdzić lub odrzucić wniosek.";
$a->strings["Welcome "] = "Witaj ";
$a->strings["Please upload a profile photo."] = "Proszę dodać zdjęcie profilowe.";
$a->strings["Welcome back "] = "Witaj ponownie ";
@@ -237,8 +232,8 @@ $a->strings["poke"] = "zaczep";
$a->strings["poked"] = "zaczepił Cię";
$a->strings["ping"] = "ping";
$a->strings["pinged"] = "napięcia";
-$a->strings["prod"] = "";
-$a->strings["prodded"] = "";
+$a->strings["prod"] = "zaczep";
+$a->strings["prodded"] = "zaczepiać";
$a->strings["slap"] = "klask";
$a->strings["slapped"] = "spoliczkowany";
$a->strings["finger"] = "wskaż";
@@ -297,104 +292,575 @@ $a->strings["comment"] = [
];
$a->strings["post"] = "post";
$a->strings["Item filed"] = "Element złożony";
-$a->strings["No friends to display."] = "Brak znajomych do wyświetlenia";
+$a->strings["Item not found."] = "Element nie znaleziony.";
+$a->strings["Do you really want to delete this item?"] = "Czy na pewno chcesz usunąć ten element?";
+$a->strings["Yes"] = "Tak";
+$a->strings["Permission denied."] = "Brak uprawnień.";
+$a->strings["Archives"] = "Archiwum";
+$a->strings["show more"] = "Pokaż więcej";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$suczestniczy %2\$s's %3\$s ";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$snie uczestniczy %2\$s's %3\$s ";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$smogą uczestniczyć %2\$s's %3\$s ";
+$a->strings["Drop Contact"] = "Upuść kontakt";
+$a->strings["Organisation"] = "Organizacja";
+$a->strings["News"] = "Aktualności";
+$a->strings["Forum"] = "Forum";
+$a->strings["Disallowed profile URL."] = "Nie dozwolony adres URL profilu.";
+$a->strings["Blocked domain"] = "Zablokowana domena";
+$a->strings["Connect URL missing."] = "Brak adresu URL połączenia.";
+$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Nie można dodać kontaktu. Sprawdź odpowiednie poświadczenia sieciowe na stronie Ustawienia -> Sieci społecznościowe.";
+$a->strings["This site is not configured to allow communications with other networks."] = "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Nie znaleziono żadnych kompatybilnych protokołów komunikacyjnych ani źródeł.";
+$a->strings["The profile address specified does not provide adequate information."] = "Dany adres profilu nie dostarcza odpowiednich informacji.";
+$a->strings["An author or name was not found."] = "Autor lub nazwa nie zostało znalezione.";
+$a->strings["No browser URL could be matched to this address."] = "Przeglądarka WWW nie może odnaleźć podanego adresu";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail.";
+$a->strings["Use mailto: in front of address to force email check."] = "Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Określony adres profilu należy do sieci, która została wyłączona na tej stronie.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie.";
+$a->strings["Unable to retrieve contact information."] = "Nie można otrzymać informacji kontaktowych";
+$a->strings["[Name Withheld]"] = "[Nazwa zastrzeżona]";
+$a->strings["%s's birthday"] = "Urodziny %s";
+$a->strings["Happy Birthday %s"] = "Urodziny %s";
+$a->strings["[no subject]"] = "[bez tematu]";
+$a->strings["Requested account is not available."] = "Żądane konto jest niedostępne.";
+$a->strings["Requested profile is not available."] = "Żądany profil jest niedostępny";
+$a->strings["Edit profile"] = "Edytuj profil";
$a->strings["Connect"] = "Połącz";
-$a->strings["Authorize application connection"] = "Autoryzacja połączenia aplikacji";
-$a->strings["Return to your app and insert this Securty Code:"] = "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:";
-$a->strings["Please login to continue."] = "Zaloguj się aby kontynuować.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Czy chcesz zezwolić tej aplikacji na dostęp do swoich postów i kontaktów i/lub tworzenie nowych postów?";
-$a->strings["No"] = "Nie";
-$a->strings["You must be logged in to use addons. "] = "Musisz być zalogowany, aby korzystać z dodatków.";
-$a->strings["Applications"] = "Aplikacje";
-$a->strings["No installed applications."] = "Brak zainstalowanych aplikacji.";
-$a->strings["Item not available."] = "Element niedostępny.";
-$a->strings["Item was not found."] = "Element nie znaleziony.";
-$a->strings["No contacts in common."] = "Brak wspólnych kontaktów.";
-$a->strings["Common Friends"] = "Wspólni znajomi";
-$a->strings["Credits"] = "Zaufany";
-$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 to projekt społecznościowy, który nie byłby możliwy bez pomocy wielu osób. Oto lista osób, które przyczyniły się do tworzenia kodu lub tłumaczenia Friendica. Dziękuję wam wszystkim!";
-$a->strings["Contact settings applied."] = "Ustawienia kontaktu zaktualizowane.";
-$a->strings["Contact update failed."] = "Nie udało się zaktualizować kontaktu.";
-$a->strings["Contact not found."] = "Kontakt nie znaleziony";
-$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "OSTRZEŻENIE: Jest to bardzo zaawansowane i jeśli wprowadzisz niepoprawne informacje, twoja komunikacja z tym kontaktem może przestać działać.";
-$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce.";
-$a->strings["No mirroring"] = "Bez dublowania";
-$a->strings["Mirror as forwarded posting"] = "Przesłany lustrzany post";
-$a->strings["Mirror as my own posting"] = "Lustro mojego własnego komentarza";
-$a->strings["Return to contact editor"] = "Wróć do edytora kontaktów";
-$a->strings["Refetch contact data"] = "Odśwież dane kontaktowe";
-$a->strings["Submit"] = "Potwierdź";
-$a->strings["Remote Self"] = "Zdalny Self";
-$a->strings["Mirror postings from this contact"] = "Publikacje lustrzane od tego kontaktu";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Oznacz ten kontakt jako remote_self, spowoduje to, że friendica odeśle nowe wpisy z tego kontaktu.";
-$a->strings["Name"] = "Nazwa";
-$a->strings["Account Nickname"] = "Nazwa konta";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Zmienna - zastępuje Imię/Pseudonim";
-$a->strings["Account URL"] = "URL konta";
-$a->strings["Friend Request URL"] = "URL żądajacy znajomości";
-$a->strings["Friend Confirm URL"] = "URL potwierdzający znajomość";
-$a->strings["Notification Endpoint URL"] = "Zgłoszenie Punktu Końcowego URL";
-$a->strings["Poll/Feed URL"] = "Adres Ankiety/RSS";
-$a->strings["New photo from this URL"] = "Nowe zdjęcie z tego adresu URL";
-$a->strings["Photos"] = "Zdjęcia";
-$a->strings["Contact Photos"] = "Zdjęcia kontaktu";
-$a->strings["Upload"] = "Załaduj";
-$a->strings["Files"] = "Pliki";
-$a->strings["Not Found"] = "Nie znaleziono";
-$a->strings["No profile"] = "Brak profilu";
-$a->strings["Help:"] = "Pomoc:";
-$a->strings["Help"] = "Pomoc";
-$a->strings["Page not found."] = "Strona nie znaleziona.";
-$a->strings["Welcome to %s"] = "Witamy w %s";
-$a->strings["Remote privacy information not available."] = "Dane prywatne nie są zdalnie dostępne";
-$a->strings["Visible to:"] = "Widoczne dla:";
-$a->strings["System down for maintenance"] = "System wyłączony w celu konserwacji";
-$a->strings["Welcome to Friendica"] = "Witamy na Friendica";
-$a->strings["New Member Checklist"] = "Lista nowych członków";
-$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."] = "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie.";
-$a->strings["Getting Started"] = "Pierwsze kroki";
-$a->strings["Friendica Walk-Through"] = "Friendica Przejdź-Przez";
-$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na stronie Szybki start - znajdź krótkie wprowadzenie do swojego profilu i kart sieciowych, stwórz nowe połączenia i znajdź kilka grup do przyłączenia się.";
-$a->strings["Settings"] = "Ustawienia";
-$a->strings["Go to Your Settings"] = "Idź do swoich ustawień";
-$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Na stronie Ustawienia - zmień swoje początkowe hasło. Zanotuj także swój adres tożsamości. Wygląda to jak adres e-mail - i będzie przydatny w nawiązywaniu znajomości w bezpłatnej sieci społecznościowej.";
-$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."] = "Przejrzyj pozostałe ustawienia, w szczególności ustawienia prywatności. Niepublikowany wykaz katalogów jest podobny do niepublicznego numeru telefonu. Ogólnie rzecz biorąc, powinieneś opublikować swój wpis - chyba, że wszyscy twoi znajomi i potencjalni znajomi dokładnie wiedzą, jak Cię znaleźć.";
+$a->strings["Atom feed"] = "Kanał Atom";
+$a->strings["Profiles"] = "Profile";
+$a->strings["Manage/edit profiles"] = "Zarządzaj profilami";
+$a->strings["Change profile photo"] = "Zmień zdjęcie profilowe";
+$a->strings["Create New Profile"] = "Utwórz nowy profil";
+$a->strings["Profile Image"] = "Zdjęcie profilowe";
+$a->strings["visible to everybody"] = "widoczne dla wszystkich";
+$a->strings["Edit visibility"] = "Edytuj widoczność";
+$a->strings["Location:"] = "Lokalizacja";
+$a->strings["Gender:"] = "Płeć:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Strona główna:";
+$a->strings["About:"] = "O:";
+$a->strings["XMPP:"] = "XMPP:";
+$a->strings["Network:"] = "Sieć:";
+$a->strings["g A l F d"] = "g A I F d";
+$a->strings["F d"] = "";
+$a->strings["[today]"] = "[dziś]";
+$a->strings["Birthday Reminders"] = "Przypomnienia o urodzinach";
+$a->strings["Birthdays this week:"] = "Urodziny w tym tygodniu:";
+$a->strings["[No description]"] = "[Brak opisu]";
+$a->strings["Event Reminders"] = "Przypominacze wydarzeń";
+$a->strings["Events this week:"] = "Wydarzenia w tym tygodniu:";
$a->strings["Profile"] = "Profil użytkownika";
-$a->strings["Upload Profile Photo"] = "Wyślij zdjęcie profilowe";
-$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."] = "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty.";
-$a->strings["Edit Your Profile"] = "Edytuj własny profil";
-$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edytuj swój domyślny profil do swoich potrzeb. Przejrzyj ustawienia ukrywania listy znajomych i ukrywania profilu przed nieznanymi użytkownikami.";
-$a->strings["Profile Keywords"] = "Słowa kluczowe profilu";
-$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."] = "Ustaw kilka publicznych słów kluczowych dla swojego domyślnego profilu, które opisują Twoje zainteresowania. Możemy znaleźć inne osoby o podobnych zainteresowaniach i zaproponować przyjaźnie.";
-$a->strings["Connecting"] = "Łączę się...";
-$a->strings["Importing Emails"] = "Importuję emaile...";
-$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"] = "Wprowadź informacje dotyczące dostępu do poczty e-mail na stronie Ustawienia oprogramowania, jeśli chcesz importować i wchodzić w interakcje z przyjaciółmi lub listami adresowymi z poziomu konta e-mail INBOX";
-$a->strings["Go to Your Contacts Page"] = "Idź do strony z Twoimi kontaktami";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Strona Kontakty jest twoją bramą do zarządzania przyjaciółmi i łączenia się z przyjaciółmi w innych sieciach. Zazwyczaj podaje się adres lub adres URL strony w oknie dialogowym Dodaj nowy kontakt .";
-$a->strings["Go to Your Site's Directory"] = "Idż do twojej strony";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Strona Katalog umożliwia znalezienie innych osób w tej sieci lub innych witrynach stowarzyszonych. Poszukaj łącza Połącz lub Śledź na stronie profilu. Jeśli chcesz, podaj swój własny adres tożsamości.";
-$a->strings["Finding New People"] = "Znajdowanie nowych osób";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Na bocznym panelu strony Kontaktów znajduje się kilka narzędzi do znajdowania nowych przyjaciół. Możemy dopasować osoby według zainteresowań, wyszukiwać osoby według nazwisk i zainteresowań oraz dostarczać sugestie oparte na relacjach sieciowych. Na zupełnie nowej stronie sugestie znajomych zwykle zaczynają być wypełniane w ciągu 24 godzin";
+$a->strings["Full Name:"] = "Imię i Nazwisko:";
+$a->strings["Member since:"] = "Członek od:";
+$a->strings["j F, Y"] = "d M, R";
+$a->strings["j F"] = "d M";
+$a->strings["Birthday:"] = "Urodziny:";
+$a->strings["Age:"] = "Wiek:";
+$a->strings["for %1\$d %2\$s"] = "od %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Preferencje seksualne:";
+$a->strings["Hometown:"] = "Miasto rodzinne:";
+$a->strings["Tags:"] = "Tagi:";
+$a->strings["Political Views:"] = "Poglądy polityczne:";
+$a->strings["Religion:"] = "Religia:";
+$a->strings["Hobbies/Interests:"] = "Hobby/Zainteresowania:";
+$a->strings["Likes:"] = "Lubią to:";
+$a->strings["Dislikes:"] = "Nie lubię tego:";
+$a->strings["Contact information and Social Networks:"] = "Informacje kontaktowe i sieci społeczne";
+$a->strings["Musical interests:"] = "Zainteresowania muzyczne:";
+$a->strings["Books, literature:"] = "Książki, literatura:";
+$a->strings["Television:"] = "Telewizja:";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/taniec/kultura/rozrywka";
+$a->strings["Love/Romance:"] = "Miłość/Romans:";
+$a->strings["Work/employment:"] = "Praca/zatrudnienie:";
+$a->strings["School/education:"] = "Szkoła/edukacja:";
+$a->strings["Forums:"] = "Fora:";
+$a->strings["Basic"] = "Podstawowy";
+$a->strings["Advanced"] = "Zaawansowany";
+$a->strings["Status"] = "Status";
+$a->strings["Status Messages and Posts"] = "Status wiadomości i postów";
+$a->strings["Profile Details"] = "Szczegóły profilu";
+$a->strings["Photos"] = "Zdjęcia";
+$a->strings["Photo Albums"] = "Albumy zdjęć";
+$a->strings["Videos"] = "Filmy";
+$a->strings["Events"] = "Wydarzenia";
+$a->strings["Events and Calendar"] = "Wydarzenia i kalendarz";
+$a->strings["Personal Notes"] = "Notatki";
+$a->strings["Only You Can See This"] = "Tylko ty możesz to zobaczyć";
+$a->strings["l F d, Y \\@ g:i A"] = "";
+$a->strings["Starts:"] = "Rozpoczęcie:";
+$a->strings["Finishes:"] = "Zakończenie:";
+$a->strings["all-day"] = "cały dzień";
+$a->strings["Jun"] = "cze";
+$a->strings["Sept"] = "wrz";
+$a->strings["today"] = "dzisiaj";
+$a->strings["month"] = "miesiąc";
+$a->strings["week"] = "tydzień";
+$a->strings["day"] = "dzień";
+$a->strings["No events to display"] = "Brak wydarzeń do wyświetlenia";
+$a->strings["l, F j"] = "d, M d ";
+$a->strings["Edit event"] = "Edytuj wydarzenie";
+$a->strings["Duplicate event"] = "Zduplikowane zdarzenie";
+$a->strings["Delete event"] = "Usuń wydarzenie";
+$a->strings["D g:i A"] = "";
+$a->strings["g:i A"] = "";
+$a->strings["Show map"] = "Pokaż mapę";
+$a->strings["Hide map"] = "Ukryj mapę";
+$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Skasowana grupa o tej nazwie została przywrócona. Istniejące uprawnienia do pozycji mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie jest to zamierzone, utwórz inną grupę o innej nazwie.";
+$a->strings["Default privacy group for new contacts"] = "Domyślne ustawienia prywatności dla nowych kontaktów";
+$a->strings["Everybody"] = "Wszyscy";
+$a->strings["edit"] = "edytuj";
+$a->strings["add"] = "dodaj";
$a->strings["Groups"] = "Grupy";
-$a->strings["Group Your Contacts"] = "Grupuj Swoje kontakty";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Gdy zaprzyjaźnisz się z przyjaciółmi, uporządkuj je w prywatne grupy konwersacji na pasku bocznym na stronie Kontakty, a następnie możesz wchodzić w interakcje z każdą grupą prywatnie na stronie Sieć.";
-$a->strings["Why Aren't My Posts Public?"] = "Dlaczego moje posty nie są publiczne?";
-$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 szanuje Twoją prywatność. Domyślnie Twoje wpisy będą wyświetlane tylko osobom, które dodałeś jako znajomi. Aby uzyskać więcej informacji, zobacz sekcję pomocy na powyższym łączu.";
-$a->strings["Getting Help"] = "Otrzymaj pomoc";
-$a->strings["Go to the Help Section"] = "Przejdź do sekcji pomocy";
-$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Na naszych stronach pomocy można znaleźć szczegółowe informacje na temat innych funkcji programu i zasobów.";
-$a->strings["Visit %s's profile [%s]"] = "Obejrzyj %s's profil [%s]";
-$a->strings["Edit contact"] = "Edytuj kontakt";
-$a->strings["Contacts who are not members of a group"] = "Kontakty spoza członków grupy";
-$a->strings["Not Extended"] = "Nie przedłużony";
+$a->strings["Edit group"] = "Edytuj grupy";
+$a->strings["Contacts not in any group"] = "Kontakt nie jest w żadnej grupie";
+$a->strings["Create a new group"] = "Stwórz nową grupę";
+$a->strings["Group Name: "] = "Nazwa grupy: ";
+$a->strings["Edit groups"] = "Edytuj grupy";
+$a->strings["Contact Photos"] = "Zdjęcia kontaktu";
+$a->strings["Login failed"] = "Logowanie nieudane";
+$a->strings["Not enough information to authenticate"] = "Za mało informacji do uwierzytelnienia";
+$a->strings["User not found"] = "Użytkownik nie znaleziony";
+$a->strings["Passwords do not match. Password unchanged."] = "Hasła nie pasują do siebie. Hasło niezmienione.";
+$a->strings["An invitation is required."] = "Wymagane zaproszenie.";
+$a->strings["Invitation could not be verified."] = "Zaproszenie niezweryfikowane.";
+$a->strings["Invalid OpenID url"] = "Nieprawidłowy adres url OpenID";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Napotkaliśmy problem podczas logowania z podanym przez nas identyfikatorem OpenID. Sprawdź poprawną pisownię identyfikatora.";
+$a->strings["The error message was:"] = "Komunikat o błędzie:";
+$a->strings["Please enter the required information."] = "Wprowadź wymagane informacje";
+$a->strings["Please use a shorter name."] = "Użyj dłuższej nazwy.";
+$a->strings["Name too short."] = "Nazwa jest za krótka.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Wydaje mi się, że to nie jest twoje pełne imię (pierwsze imię) i nazwisko.";
+$a->strings["Your email domain is not among those allowed on this site."] = "Twoja domena internetowa nie jest obsługiwana na tej stronie.";
+$a->strings["Not a valid email address."] = "Niepoprawny adres e mail..";
+$a->strings["Cannot use that email."] = "Nie możesz użyć tego e-maila. ";
+$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Twój pseudonim może zawierać tylko a-z, 0-9 i _.";
+$a->strings["Nickname is already registered. Please choose another."] = "Ten login jest zajęty. Wybierz inny.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń.";
+$a->strings["An error occurred during registration. Please try again."] = "Wystąpił bład podczas rejestracji, Spróbuj ponownie.";
+$a->strings["default"] = "standardowe";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie.";
+$a->strings["An error occurred creating your self contact. Please try again."] = "Wystąpił błąd podczas tworzenia własnego kontaktu. Proszę spróbuj ponownie.";
+$a->strings["Friends"] = "Przyjaciele";
+$a->strings["An error occurred creating your default contact group. Please try again."] = "Wystąpił błąd podczas tworzenia domyślnej grupy kontaktów. Proszę spróbuj ponownie.";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t\t"] = "\n\t\t\tDrodzy %1\$s, \n\t\t\t\tDziękujemy za rejestrację na stronie %2\$s. Twoje konto czeka na zatwierdzenie przez administratora.";
+$a->strings["Registration at %s"] = "Rejestracja w %s";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t"] = "\n\t\t\tDrodzy %1\$s, \n\t\t\t\tDziękujemy za rejestrację na stronie %2\$s. Twoje konto zostało utworzone.";
+$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$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\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%3\$s\n\t\t\tNazwa użytkownika:\t\t%1\$s\n\t\t\tHasło:\t\t%5\$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\"\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i\n\t\t\tbyć może w jakim kraju mieszkasz; jeśli nie chcesz być bardziej szczegółowy.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić w %3\$s/Usuń konto\n\n\t\t\tDziękujemy i Zapraszamy do %2\$s.";
+$a->strings["Registration details for %s"] = "Szczegóły rejestracji dla %s";
+$a->strings["view full size"] = "Zobacz w pełnym wymiarze";
+$a->strings["Image/photo"] = "Obrazek/zdjęcie";
+$a->strings[" %2\$s %3\$s"] = "%2\$s %3\$s";
+$a->strings["$1 wrote:"] = "$1 napisał:";
+$a->strings["Encrypted content"] = "Szyfrowana treść";
+$a->strings["Invalid source protocol"] = "Nieprawidłowy protokół źródłowy";
+$a->strings["Invalid link protocol"] = "Niepoprawny link protokołu";
+$a->strings["General Features"] = "Funkcje ogólne";
+$a->strings["Multiple Profiles"] = "Wiele profili";
+$a->strings["Ability to create multiple profiles"] = "Umożliwienie tworzenia wielu profili";
+$a->strings["Photo Location"] = "Lokalizacja zdjęcia";
+$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Metadane zdjęć są zwykle usuwane. Wyodrębnia to położenie (jeśli jest obecne) przed usunięciem metadanych i łączy je z mapą.";
+$a->strings["Export Public Calendar"] = "Eksportowanie publicznego kalendarza";
+$a->strings["Ability for visitors to download the public calendar"] = "Umożliwienie pobierania kalendarza publicznego przez odwiedzających";
+$a->strings["Post Composition Features"] = "Ustawienia funkcji postów";
+$a->strings["Post Preview"] = "Podgląd posta";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Zezwalaj na podgląd postów i komentarzy przed ich opublikowaniem";
+$a->strings["Auto-mention Forums"] = "Automatyczne wymienianie forów";
+$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Dodaj/usuń wzmiankę, gdy strona forum zostanie wybrana/cofnięta w oknie ACL.";
+$a->strings["Network Sidebar Widgets"] = "Widgety paska bocznego sieci";
+$a->strings["Search by Date"] = "Szukanie wg daty";
+$a->strings["Ability to select posts by date ranges"] = "Wybierz wpisy według zakresów dat";
+$a->strings["List Forums"] = "Lista forów";
+$a->strings["Enable widget to display the forums your are connected with"] = "Włącz widżet, aby wyświetlić fora, z którymi jesteś połączony";
+$a->strings["Group Filter"] = "Filtr grupowy";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Włącz widżet, aby wyświetlać posty sieciowe tylko z wybranej grupy";
+$a->strings["Network Filter"] = "Filtr sieciowy";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Włącz widżet, aby wyświetlać posty sieciowe tylko z wybranej sieci";
+$a->strings["Saved Searches"] = "Zapisywanie wyszukiwania";
+$a->strings["Save search terms for re-use"] = "Zapisz wyszukiwane hasła do ponownego użycia";
+$a->strings["Network Tabs"] = "Etykiety sieciowe";
+$a->strings["Network Personal Tab"] = "Etykieta Sieć Osobista";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Włącz etykietę, by wyświetlać posty tylko z sieci, z którymi współpracujesz";
+$a->strings["Network New Tab"] = "Etykieta Nowe Posty Sieciowe";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Włącz etykietę, aby wyświetlić tylko nowe posty sieciowe (z ostatnich 12 godzin)";
+$a->strings["Network Shared Links Tab"] = "Etykieta Udostępnianie Łącz Sieciowych";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Włącz etykietę, aby wyświetlić tylko posty sieciowe z łączami do nich";
+$a->strings["Post/Comment Tools"] = "Narzędzia post/komentarz";
+$a->strings["Multiple Deletion"] = "Wielokrotne Usuwanie";
+$a->strings["Select and delete multiple posts/comments at once"] = "Wybierz i usuń wiele postów/komentarzy jednocześnie";
+$a->strings["Edit Sent Posts"] = "Edytuj wysłane posty";
+$a->strings["Edit and correct posts and comments after sending"] = "Edycja i poprawianie wpisów i komentarzy po wysłaniu";
+$a->strings["Tagging"] = "Tagowanie";
+$a->strings["Ability to tag existing posts"] = "Umożliwienie oznaczania istniejących postów";
+$a->strings["Post Categories"] = "Kategorie postów";
+$a->strings["Add categories to your posts"] = "Dodaj kategorie do twoich postów";
+$a->strings["Saved Folders"] = "Zapisane foldery";
+$a->strings["Ability to file posts under folders"] = "Umożliwienie przesyłania postów do folderów";
+$a->strings["Dislike Posts"] = "Nie lubię Postów";
+$a->strings["Ability to dislike posts/comments"] = "Możliwa niechęć do postów/komentarzy";
+$a->strings["Star Posts"] = "Oznacz posty gwiazdką";
+$a->strings["Ability to mark special posts with a star indicator"] = "Oznacz specjalne posty gwiazdką";
+$a->strings["Mute Post Notifications"] = "Ignoruj powiadomienia pocztą";
+$a->strings["Ability to mute notifications for a thread"] = "Ignoruj powiadomienia dla wątku";
+$a->strings["Advanced Profile Settings"] = "Zaawansowane ustawienia profilu";
+$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Wyświetlaj publiczne fora społeczności na stronie profilu zaawansowanego";
+$a->strings["Tag Cloud"] = "Chmura tagów";
+$a->strings["Provide a personal tag cloud on your profile page"] = "Podaj osobistą chmurę tagów na stronie profilu";
+$a->strings["Display Membership Date"] = "Wyświetl datę członkostwa";
+$a->strings["Display membership date in profile"] = "Wyświetl datę członkostwa w profilu";
+$a->strings["Export"] = "Eksport";
+$a->strings["Export calendar as ical"] = "Wyeksportuj kalendarz jako ical";
+$a->strings["Export calendar as csv"] = "Eksportuj kalendarz jako csv";
+$a->strings["Add New Contact"] = "Dodaj nowy kontakt";
+$a->strings["Enter address or web location"] = "Wpisz adres lub lokalizację sieciową";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Przykład: bob@przykład.com, http://przykład.com/barbara";
+$a->strings["%d invitation available"] = [
+ 0 => "%d zaproszenie dostępne",
+ 1 => "%d zaproszeń dostępnych",
+ 2 => "%d zaproszenia dostępne",
+ 3 => "%d zaproszenia dostępne",
+];
+$a->strings["Find People"] = "Znajdź ludzi";
+$a->strings["Enter name or interest"] = "Wpisz nazwę lub zainteresowanie";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Przykład: Jan Kowalski, Wędkarstwo";
+$a->strings["Find"] = "Znajdź";
+$a->strings["Friend Suggestions"] = "Osoby, które możesz znać";
+$a->strings["Similar Interests"] = "Podobne zainteresowania";
+$a->strings["Random Profile"] = "Domyślny profil";
+$a->strings["Invite Friends"] = "Zaproś znajomych";
+$a->strings["View Global Directory"] = "Wyświetl globalny katalog";
+$a->strings["Networks"] = "Sieci";
+$a->strings["All Networks"] = "Wszystkie Sieci";
+$a->strings["Everything"] = "Wszystko";
+$a->strings["Categories"] = "Kategorie";
+$a->strings["%d contact in common"] = [
+ 0 => "",
+ 1 => "",
+ 2 => "",
+ 3 => "",
+];
+$a->strings["Frequently"] = "Często";
+$a->strings["Hourly"] = "Co godzinę";
+$a->strings["Twice daily"] = "Dwa razy dziennie";
+$a->strings["Daily"] = "Codziennie";
+$a->strings["Weekly"] = "Co tydzień";
+$a->strings["Monthly"] = "Miesięczne";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "E-mail";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Łącze Diaspora";
+$a->strings["GNU Social Connector"] = "GNU Połączenie Społecznościowe";
+$a->strings["pnut"] = "orzech";
+$a->strings["App.net"] = "App.net";
+$a->strings["Male"] = "Mężczyzna";
+$a->strings["Female"] = "Kobieta";
+$a->strings["Currently Male"] = "Obecnie mężczyzna";
+$a->strings["Currently Female"] = "Obecnie Kobieta";
+$a->strings["Mostly Male"] = "Głównie mężczyzna";
+$a->strings["Mostly Female"] = "Głównie kobieta";
+$a->strings["Transgender"] = "Transseksualny";
+$a->strings["Intersex"] = "Interseksualne";
+$a->strings["Transsexual"] = "Transseksualny";
+$a->strings["Hermaphrodite"] = "Hermafrodyta";
+$a->strings["Neuter"] = "Rodzaj nijaki";
+$a->strings["Non-specific"] = "Niespecyficzne";
+$a->strings["Other"] = "Inne";
+$a->strings["Males"] = "Mężczyźni";
+$a->strings["Females"] = "Kobiety";
+$a->strings["Gay"] = "Gej";
+$a->strings["Lesbian"] = "Lesbijka";
+$a->strings["No Preference"] = "Brak preferencji";
+$a->strings["Bisexual"] = "Biseksualny";
+$a->strings["Autosexual"] = "Niezidentyfikowany";
+$a->strings["Abstinent"] = "Abstynent";
+$a->strings["Virgin"] = "Dziewica";
+$a->strings["Deviant"] = "Zboczeniec";
+$a->strings["Fetish"] = "Fetysz";
+$a->strings["Oodles"] = "Nadmiar";
+$a->strings["Nonsexual"] = "Nieseksualny";
+$a->strings["Single"] = "Singiel";
+$a->strings["Lonely"] = "Samotny";
+$a->strings["Available"] = "Dostępny";
+$a->strings["Unavailable"] = "Niedostępny";
+$a->strings["Has crush"] = "Ma sympatii";
+$a->strings["Infatuated"] = "Zakochany";
+$a->strings["Dating"] = "Randki";
+$a->strings["Unfaithful"] = "Niewierny";
+$a->strings["Sex Addict"] = "Uzależniony od seksu";
+$a->strings["Friends/Benefits"] = "Przyjaciele/Korzyści";
+$a->strings["Casual"] = "Przypadkowy";
+$a->strings["Engaged"] = "Zaręczeni";
+$a->strings["Married"] = "Małżeństwo";
+$a->strings["Imaginarily married"] = "Fikcyjnie w związku małżeńskim";
+$a->strings["Partners"] = "Partnerzy";
+$a->strings["Cohabiting"] = "Konkubinat";
+$a->strings["Common law"] = "Prawo zwyczajowe";
+$a->strings["Happy"] = "Szczęśliwy";
+$a->strings["Not looking"] = "Nie patrzę";
+$a->strings["Swinger"] = "Swinger";
+$a->strings["Betrayed"] = "Zdradzony";
+$a->strings["Separated"] = "W separacji";
+$a->strings["Unstable"] = "Niestabilny";
+$a->strings["Divorced"] = "Rozwiedzeni";
+$a->strings["Imaginarily divorced"] = "Fikcyjnie rozwiedziony/a";
+$a->strings["Widowed"] = "Wdowiec";
+$a->strings["Uncertain"] = "Nieokreślony";
+$a->strings["It's complicated"] = "To skomplikowane";
+$a->strings["Don't care"] = "Nie przejmuj się";
+$a->strings["Ask me"] = "Zapytaj mnie ";
+$a->strings["Embedding disabled"] = "Osadzanie wyłączone";
+$a->strings["Embedded content"] = "Osadzona zawartość";
+$a->strings["External link to forum"] = "Zewnętrzny link do forum";
+$a->strings["Nothing new here"] = "Brak nowych zdarzeń";
+$a->strings["Clear notifications"] = "Wyczyść powiadomienia";
+$a->strings["Logout"] = "Wyloguj się";
+$a->strings["End this session"] = "Zakończ sesję";
+$a->strings["Your posts and conversations"] = "Twoje posty i rozmowy";
+$a->strings["Your profile page"] = "Twoja strona profilowa";
+$a->strings["Your photos"] = "Twoje zdjęcia";
+$a->strings["Your videos"] = "Twoje filmy";
+$a->strings["Your events"] = "Twoje wydarzenia";
+$a->strings["Personal notes"] = "Notatki";
+$a->strings["Your personal notes"] = "Twoje prywatne notatki";
+$a->strings["Login"] = "Zaloguj się";
+$a->strings["Sign in"] = "Zaloguj się";
+$a->strings["Home"] = "Strona domowa";
+$a->strings["Home Page"] = "Strona startowa";
+$a->strings["Register"] = "Zarejestruj";
+$a->strings["Create an account"] = "Załóż konto";
+$a->strings["Help"] = "Pomoc";
+$a->strings["Help and documentation"] = "Pomoc i dokumentacja";
+$a->strings["Apps"] = "Aplikacje";
+$a->strings["Addon applications, utilities, games"] = "Wtyczki, aplikacje, narzędzia, gry";
+$a->strings["Search site content"] = "Przeszukaj zawartość strony";
+$a->strings["Community"] = "Społeczność";
+$a->strings["Conversations on this and other servers"] = "Rozmowy na tym i innych serwerach";
+$a->strings["Directory"] = "Katalog";
+$a->strings["People directory"] = "Katalog osób";
+$a->strings["Information"] = "Informacje";
+$a->strings["Information about this friendica instance"] = "Informacje o tej instancji friendica";
+$a->strings["Network"] = "Sieć";
+$a->strings["Conversations from your friends"] = "Rozmowy Twoich przyjaciół";
+$a->strings["Network Reset"] = "Resetowanie sieci";
+$a->strings["Load Network page with no filters"] = "Załaduj stronę sieci bez filtrów";
+$a->strings["Introductions"] = "Zapoznanie";
+$a->strings["Friend Requests"] = "Prośba o przyjęcie do grona znajomych";
+$a->strings["Notifications"] = "Powiadomienia";
+$a->strings["See all notifications"] = "Zobacz wszystkie powiadomienia";
+$a->strings["Mark as seen"] = "Oznacz jako przeczytane";
+$a->strings["Mark all system notifications seen"] = "Oznacz wszystkie powiadomienia systemu jako przeczytane";
+$a->strings["Messages"] = "Wiadomości";
+$a->strings["Private mail"] = "Prywatne maile";
+$a->strings["Inbox"] = "Odebrane";
+$a->strings["Outbox"] = "Wysłane";
+$a->strings["New Message"] = "Nowa wiadomość";
+$a->strings["Manage"] = "Zarządzaj";
+$a->strings["Manage other pages"] = "Zarządzaj innymi stronami";
+$a->strings["Delegations"] = "Delegowanie";
+$a->strings["Delegate Page Management"] = "Deleguj zarządzanie stronami";
+$a->strings["Settings"] = "Ustawienia";
+$a->strings["Account settings"] = "Ustawienia konta";
+$a->strings["Manage/Edit Profiles"] = "Zarządzaj/Edytuj profile";
+$a->strings["Manage/edit friends and contacts"] = "Zarządzaj listą przyjaciół i kontaktami";
+$a->strings["Admin"] = "Administator";
+$a->strings["Site setup and configuration"] = "Konfiguracja i ustawienia instancji";
+$a->strings["Navigation"] = "Nawigacja";
+$a->strings["Site map"] = "Mapa strony";
+$a->strings["(no subject)"] = "(bez tematu)";
+$a->strings["Delete this item?"] = "Usunąć ten element?";
+$a->strings["show fewer"] = "Pokaż mniej";
+$a->strings["Login failed."] = "Logowanie nieudane.";
+$a->strings["Create a New Account"] = "Załóż nowe konto";
+$a->strings["Nickname or Email: "] = "Pseudonim lub Email:";
+$a->strings["Password: "] = "Hasło:";
+$a->strings["Remember me"] = "Zapamiętaj mnie";
+$a->strings["Or login using OpenID: "] = "Lub zaloguj się korzystając z OpenID:";
+$a->strings["Forgot your password?"] = "Zapomniałeś swojego hasła?";
+$a->strings["Password Reset"] = "Zresetuj hasło";
+$a->strings["Website Terms of Service"] = "Warunki korzystania z witryny";
+$a->strings["terms of service"] = "warunki użytkowania";
+$a->strings["Website Privacy Policy"] = "Polityka Prywatności Witryny";
+$a->strings["privacy policy"] = "polityka prywatności";
+$a->strings["Terms of Service"] = "Warunki usługi";
+$a->strings["Privacy Statement"] = "Oświadczenie o prywatności";
+$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "W momencie rejestracji oraz w celu zapewnienia komunikacji między kontem użytkownika, a jego kontaktami, użytkownik musi podać nazwę wyświetlaną (pseudonim), nazwę użytkownika (przydomek) i działający adres e-mail. Nazwy będą dostępne na stronie profilu konta dla każdego odwiedzającego stronę, nawet jeśli inne szczegóły profilu nie zostaną wyświetlone. Adres e-mail będzie używany tylko do wysyłania powiadomień użytkownika o interakcjach, ale nie będzie wyświetlany w widoczny sposób. Lista kont w katalogu użytkownika węzła lub globalnym katalogu użytkownika jest opcjonalna i może być kontrolowana w ustawieniach użytkownika, nie jest konieczna do komunikacji.";
+$a->strings["This data is required for communication and is passed on to the nodes of the communication partners. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "Te dane są wymagane do komunikacji i przekazywane do węzłów partnerów komunikacyjnych. Użytkownicy mogą wprowadzać dodatkowe prywatne dane, które mogą być przesyłane na konta partnerów komunikacyjnych.";
+$a->strings["At any point in time a logged in user can export their account data from the account settings . If the user wants to delete their account they can do so at %1\$s/removeme . The deletion of the account will be permanent."] = "W dowolnym momencie zalogowany użytkownik może wyeksportować dane swojego konta z ustawień konta . Jeśli użytkownik chce usunąć swoje konto, może to zrobić w %1\$s/usuń mnie. Usunięcie konta będzie trwałe.";
+$a->strings["Logged out."] = "Wyloguj";
+$a->strings["Wall Photos"] = "Tablica zdjęć";
+$a->strings["This entry was edited"] = "Ten wpis został zedytowany";
+$a->strings["Private Message"] = "Wiadomość prywatna";
+$a->strings["Edit"] = "Edytuj";
+$a->strings["save to folder"] = "zapisz w folderze";
+$a->strings["I will attend"] = "Będę uczestniczyć";
+$a->strings["I will not attend"] = "Nie będę uczestniczyć";
+$a->strings["I might attend"] = "Mogę wziąć udział";
+$a->strings["add star"] = "dodaj gwiazdkę";
+$a->strings["remove star"] = "anuluj gwiazdkę";
+$a->strings["toggle star status"] = "włącz status gwiazdy";
+$a->strings["starred"] = "gwiazdką";
+$a->strings["ignore thread"] = "zignoruj wątek";
+$a->strings["unignore thread"] = "odignoruj wątek";
+$a->strings["toggle ignore status"] = "przełącz status ignorowania";
+$a->strings["ignored"] = "Ignoruj";
+$a->strings["add tag"] = "dodaj tag";
+$a->strings["I like this (toggle)"] = "Lubię to (zmień)";
+$a->strings["like"] = "lubię to";
+$a->strings["I don't like this (toggle)"] = "Nie lubię tego (zmień)";
+$a->strings["dislike"] = "nie lubię tego";
+$a->strings["Share this"] = "Udostępnij to";
+$a->strings["share"] = "udostępnij";
+$a->strings["to"] = "do";
+$a->strings["via"] = "przez";
+$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
+$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
+$a->strings["Comment"] = "Komentarz";
+$a->strings["%d comment"] = [
+ 0 => " %d komentarz",
+ 1 => " %d komentarzy",
+ 2 => " %d komentarzy",
+ 3 => " %d komentarzy",
+];
+$a->strings["This is you"] = "To jesteś ty";
+$a->strings["Submit"] = "Potwierdź";
+$a->strings["Bold"] = "Pogrubienie";
+$a->strings["Italic"] = "Kursywa";
+$a->strings["Underline"] = "Podkreślenie";
+$a->strings["Quote"] = "Cytat";
+$a->strings["Code"] = "Kod";
+$a->strings["Image"] = "Obraz";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Video";
+$a->strings["There are no tables on MyISAM."] = "W MyISAM nie ma tabel.";
+$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tDeweloperzy friendica wydali niedawno aktualizację %s,\n\t\t\t\tale podczas próby instalacji, coś poszło nie tak.\n\t\t\t\tZostanie to naprawione wkrótce i nie mogę tego zrobić sam. Proszę skontaktować się z \n\t\t\t\tprogramistami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być nieprawidłowa.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "Komunikat o błędzie jest \n[pre]%s[/ pre]";
+$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nWystąpił błąd %d podczas aktualizacji bazy danych:\n%s\n";
+$a->strings["Errors encountered performing database changes: "] = "Napotkane błędy powodujące zmiany w bazie danych:";
+$a->strings[": Database update"] = ": Aktualizacja bazy danych";
+$a->strings["%s: updating %s table."] = "%s: aktualizowanie %s tabeli.";
+$a->strings["Error decoding account file"] = "Błąd podczas odczytu pliku konta";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Błąd! Brak danych wersji w pliku! To nie jest plik konta Friendica?";
+$a->strings["User '%s' already exists on this server!"] = "Użytkownik '%s' już istnieje na tym serwerze!";
+$a->strings["User creation error"] = "Błąd tworzenia użytkownika";
+$a->strings["User profile creation error"] = "Błąd tworzenia profilu użytkownika";
+$a->strings["%d contact not imported"] = [
+ 0 => "Nie zaimportowano %d kontaktu.",
+ 1 => "Nie zaimportowano %d kontaktów.",
+ 2 => "Nie zaimportowano %d kontaktów.",
+ 3 => "%dkontakty nie zostały zaimportowane ",
+];
+$a->strings["Done. You can now login with your username and password"] = "Gotowe. Możesz teraz zalogować się, podając swoją nazwę użytkownika i hasło.";
+$a->strings["The new password has been exposed in a public data dump, please choose another."] = "Nowe hasło zostało ujawnione w publicznym zrzucie danych, wybierz inne.";
+$a->strings["Password update failed. Please try again."] = "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie.";
+$a->strings["Password changed."] = "Hasło zostało zmianione.";
+$a->strings["Could not find any contact entry for this URL (%s)"] = "Nie można znaleźć żadnego kontaktu dla tego adresu URL (%s)";
+$a->strings["The contact has been blocked from the node"] = "Kontakt został zablokowany w węźle";
+$a->strings["Post to Email"] = "Prześlij e-mailem";
+$a->strings["Hide your profile details from unknown viewers?"] = "Ukryć szczegóły twojego profilu przed nieznajomymi?";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Wtyczki są wyłączone, ponieważ \"%s\" jest włączone.";
+$a->strings["Visible to everybody"] = "Widoczny dla wszystkich";
+$a->strings["show"] = "pokaż";
+$a->strings["don't show"] = "nie pokazuj";
+$a->strings["CC: email addresses"] = "CC: adresy e-mail";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Przykład: bob@example.com, mary@example.com";
+$a->strings["Permissions"] = "Uprawnienia";
+$a->strings["Close"] = "Zamknij";
+$a->strings["System"] = "System";
+$a->strings["Personal"] = "Osobiste";
+$a->strings["%s commented on %s's post"] = "%s skomentował wpis %s";
+$a->strings["%s created a new post"] = "%s dodał nowy wpis";
+$a->strings["%s liked %s's post"] = "%s polubił wpis %s";
+$a->strings["%s disliked %s's post"] = "%s nie lubi tych %s postów";
+$a->strings["%s is attending %s's event"] = "%suczestniczy %sw wydarzeniu ";
+$a->strings["%s is not attending %s's event"] = "%snie uczestniczy %s w wydarzeniu ";
+$a->strings["%s may attend %s's event"] = "%smoże uczestniczyć %s w wydarzeniu";
+$a->strings["%s is now friends with %s"] = "%s jest teraz znajomym %s";
+$a->strings["Friend Suggestion"] = "Propozycja znajomych";
+$a->strings["Friend/Connect Request"] = "Prośba o dodanie do przyjaciół/powiązanych";
+$a->strings["New Follower"] = "Nowy obserwujący";
+$a->strings["Miscellaneous"] = "Różny";
+$a->strings["Age: "] = "Wiek: ";
+$a->strings["YYYY-MM-DD or MM-DD"] = "RRRR-MM-DD lub MM-DD";
+$a->strings["never"] = "nigdy";
+$a->strings["less than a second ago"] = "mniej niż sekundę temu";
+$a->strings["year"] = "rok";
+$a->strings["years"] = "lata";
+$a->strings["months"] = "miesiące";
+$a->strings["weeks"] = "tygodnie";
+$a->strings["days"] = "dni";
+$a->strings["hour"] = "godzina";
+$a->strings["hours"] = "godziny";
+$a->strings["minute"] = "minuta";
+$a->strings["minutes"] = "minuty";
+$a->strings["second"] = "sekunda";
+$a->strings["seconds"] = "sekundy";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s temu";
+$a->strings["%s's timeline"] = "%s oś czasu ";
+$a->strings["%s's posts"] = "%s posty ";
+$a->strings["%s's comments"] = "%s komentarze ";
+$a->strings["%s is now following %s."] = "%sjest teraz następujące %s. ";
+$a->strings["following"] = "następujący";
+$a->strings["%s stopped following %s."] = "%sprzestał śledzić %s. ";
+$a->strings["stopped following"] = "przestał śledzić";
+$a->strings["Sharing notification from Diaspora network"] = "Wspólne powiadomienie z sieci Diaspora";
+$a->strings["Attachments:"] = "Załączniki:";
+$a->strings["Public access denied."] = "Publiczny dostęp zabroniony";
+$a->strings["Global Directory"] = "Globalny Katalog";
+$a->strings["Find on this site"] = "Znajdź na tej stronie";
+$a->strings["Results for:"] = "Wyniki dla:";
+$a->strings["Site Directory"] = "Katalog Witryny";
+$a->strings["No entries (some entries may be hidden)."] = "Brak odwiedzin (niektóre odwiedziny mogą być ukryte).";
+$a->strings["People Search - %s"] = "Szukaj osób - %s";
+$a->strings["Forum Search - %s"] = "Przeszukiwanie forum - %s";
+$a->strings["No matches"] = "Brak wyników";
$a->strings["Resubscribing to OStatus contacts"] = "Ponowne subskrybowanie kontaktów OStatus";
$a->strings["Error"] = "Błąd";
$a->strings["Done"] = "Gotowe";
$a->strings["Keep this window open until done."] = "Pozostaw to okno otwarte, dopóki nie będzie gotowe.";
+$a->strings["{0} wants to be your friend"] = "{0} chce być Twoim znajomym";
+$a->strings["{0} sent you a message"] = "{0} wysłałem Ci wiadomość";
+$a->strings["{0} requested registration"] = "{0} wymagana rejestracja";
$a->strings["Do you really want to delete this suggestion?"] = "Czy na pewno chcesz usunąć te sugestie ?";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Brak dostępnych sugestii. Jeśli jest to nowa witryna, spróbuj ponownie za 24 godziny.";
$a->strings["Ignore/Hide"] = "Ignoruj/Ukryj";
-$a->strings["Friend Suggestions"] = "Osoby, które możesz znać";
+$a->strings["Access to this profile has been restricted."] = "Dostęp do tego profilu został ograniczony.";
+$a->strings["Image uploaded but image cropping failed."] = "Zdjęcie zostało przesłane, ale przycinanie obrazu nie powiodło się.";
+$a->strings["Image size reduction [%s] failed."] = "Redukcja rozmiaru obrazka [%s] nie powiodła się.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ponownie załaduj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie nie pojawi się natychmiast.";
+$a->strings["Unable to process image"] = "Nie udało się przetworzyć obrazu.";
+$a->strings["Image exceeds size limit of %s"] = "Obraz przekracza limit rozmiaru wynoszący %s";
+$a->strings["Unable to process image."] = "Przetwarzanie obrazu nie powiodło się.";
+$a->strings["Upload File:"] = "Wyślij plik:";
+$a->strings["Select a profile:"] = "Wybierz profil:";
+$a->strings["Upload Profile Photo"] = "Wyślij zdjęcie profilowe";
+$a->strings["Upload"] = "Załaduj";
+$a->strings["or"] = "lub";
+$a->strings["skip this step"] = "pomiń ten krok";
+$a->strings["select a photo from your photo albums"] = "wybierz zdjęcie z twojego albumu";
+$a->strings["Crop Image"] = "Przytnij zdjęcie";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Dostosuj kadrowanie obrazu, aby uzyskać optymalny obraz.";
+$a->strings["Done Editing"] = "Zakończono edycję";
+$a->strings["Image uploaded successfully."] = "Zdjęcie wczytano pomyślnie ";
+$a->strings["Image upload failed."] = "Przesyłanie obrazu nie powiodło się";
+$a->strings["User deleted their account"] = "Użytkownik usunął swoje konto";
+$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych.";
+$a->strings["The user id is %d"] = "Identyfikatorem użytkownika jest %d";
+$a->strings["Remove My Account"] = "Usuń moje konto";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć.";
+$a->strings["Please enter your password for verification:"] = "Wprowadź hasło w celu weryfikacji.";
+$a->strings["Manage Identities and/or Pages"] = "Zarządzaj Tożsamościami i/lub Stronami.";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Przełącz między różnymi tożsamościami lub stronami społeczność/grupy, które udostępniają dane Twojego konta lub które otrzymałeś uprawnienia \"zarządzaj\"";
+$a->strings["Select an identity to manage: "] = "Wybierz tożsamość do zarządzania:";
$a->strings["[Embedded content - reload page to view]"] = "[Dodatkowa zawartość - odśwież stronę by zobaczyć]";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro.";
$a->strings["Import"] = "Import";
@@ -404,208 +870,400 @@ $a->strings["You need to export your account from the old server and upload it h
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Ta funkcja jest eksperymentalna. Nie możemy importować kontaktów z sieci OStatus (GNU Social/Statusnet) lub z Diaspory";
$a->strings["Account file"] = "Pliki konta";
$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\"";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s witamy %2\$s";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Brak pasujących słów kluczowych. Dodaj słowa kluczowe do domyślnego profilu.";
-$a->strings["is interested in:"] = "interesuje się:";
-$a->strings["Profile Match"] = "Dopasowanie profilu";
-$a->strings["No matches"] = "Brak wyników";
-$a->strings["Invalid request identifier."] = "Nieprawidłowe żądanie identyfikatora.";
-$a->strings["Discard"] = "Odrzuć";
-$a->strings["Ignore"] = "Ignoruj";
-$a->strings["Notifications"] = "Powiadomienia";
-$a->strings["Network Notifications"] = "Powiadomienia sieciowe";
-$a->strings["System Notifications"] = "Powiadomienia systemowe";
-$a->strings["Personal Notifications"] = "Prywatne powiadomienia";
-$a->strings["Home Notifications"] = "Powiadomienia domowe";
-$a->strings["Show Ignored Requests"] = "Pokaż ignorowane żądania";
-$a->strings["Hide Ignored Requests"] = "Ukryj zignorowane prośby";
-$a->strings["Notification type: "] = "Typ powiadomienia:";
-$a->strings["suggested by %s"] = "zaproponowane przez %s";
-$a->strings["Hide this contact from others"] = "Ukryj ten kontakt przed innymi";
-$a->strings["Post a new friend activity"] = "Opublikuj aktywność nowego znajomego";
-$a->strings["if applicable"] = "jeśli dotyczy";
-$a->strings["Approve"] = "Zatwierdź";
-$a->strings["Claims to be known to you: "] = "Twierdzi, że go znasz:";
-$a->strings["yes"] = "tak";
-$a->strings["no"] = "nie";
-$a->strings["Shall your connection be bidirectional or not?"] = "Czy twoje połączenie ma być dwukierunkowe, czy nie?";
-$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Przyjmowanie %s jako znajomego pozwala %s zasubskrybować twoje posty, a także otrzymywać od nich aktualizacje w swoim kanale wiadomości.";
-$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Zaakceptowanie %s jako subskrybenta umożliwia im subskrybowanie Twoich postów, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości.";
-$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Akceptowanie %s jako udostępniający pozwala im subskrybować twoje posty, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości.";
-$a->strings["Friend"] = "Znajomy";
-$a->strings["Sharer"] = "Udostępniający/a";
-$a->strings["Subscriber"] = "Subskrybent";
-$a->strings["Location:"] = "Lokalizacja";
-$a->strings["About:"] = "O:";
-$a->strings["Tags:"] = "Tagi:";
-$a->strings["Gender:"] = "Płeć:";
-$a->strings["Profile URL"] = "Adres URL profilu";
-$a->strings["Network:"] = "Sieć:";
-$a->strings["No introductions."] = "Brak dostępu.";
-$a->strings["Show unread"] = "Pokaż nieprzeczytane";
-$a->strings["Show all"] = "Pokaż wszystko";
-$a->strings["No more %s notifications."] = "Nigdy więcej %s powiadomień.";
+$a->strings["Total invitation limit exceeded."] = "Przekroczono limit zaproszeń ogółem.";
+$a->strings["%s : Not a valid email address."] = "%s : Nieprawidłowy adres e-mail.";
+$a->strings["Please join us on Friendica"] = "Dołącz do nas na Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Przekroczono limit zaproszeń. Skontaktuj się z administratorem witryny.";
+$a->strings["%s : Message delivery failed."] = "%s : Nie udało się dostarczyć wiadomości.";
+$a->strings["%d message sent."] = [
+ 0 => "%d wiadomość wysłana.",
+ 1 => "%d wiadomości wysłane.",
+ 2 => "%d wysłano .",
+ 3 => "%d wiadomość wysłano.",
+];
+$a->strings["You have no more invitations available"] = "Nie masz już dostępnych zaproszeń";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Odwiedź %s listę publicznych witryn, do których możesz dołączyć. Członkowie Friendica na innych stronach mogą łączyć się ze sobą, jak również z członkami wielu innych sieci społecznościowych.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Aby zaakceptować to zaproszenie, odwiedź i zarejestruj się %s lub w dowolnej innej publicznej witrynie internetowej Friendica.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi. Zobacz %s listę alternatywnych witryn Friendica, do których możesz dołączyć.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Przepraszamy. System nie jest obecnie skonfigurowany do łączenia się z innymi publicznymi witrynami lub zapraszania członków.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi.";
+$a->strings["To accept this invitation, please visit and register at %s."] = "Aby zaakceptować to zaproszenie, odwiedź stronę i zarejestruj się na stronie %s.";
+$a->strings["Send invitations"] = "Wyślij zaproszenie";
+$a->strings["Enter email addresses, one per line:"] = "Wprowadź adresy e-mail, po jednym w wierszu:";
+$a->strings["Your message:"] = "Twoja wiadomość:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Serdecznie zapraszam do przyłączenia się do mnie i innych bliskich znajomych na stronie Friendica - i pomóż nam stworzyć lepszą sieć społecznościową.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Musisz podać ten kod zaproszenia: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Po rejestracji połącz się ze mną na stronie mojego profilu pod adresem:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Aby uzyskać więcej informacji na temat projektu Friendica i dlaczego uważamy, że jest to ważne, odwiedź http://friendi.ca";
$a->strings["OpenID protocol error. No ID returned."] = "Błąd protokołu OpenID. Nie znaleziono identyfikatora.";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Konto nie zostało znalezione, a rejestracja OpenID nie jest dozwolona na tej stronie.";
-$a->strings["Login failed."] = "Logowanie nieudane.";
-$a->strings["Profile not found."] = "Nie znaleziono profilu.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Może się to zdarzyć, gdy kontakt został zgłoszony przez obie osoby i został już zatwierdzony.";
-$a->strings["Response from remote site was not understood."] = "Odpowiedź do zdalnej strony nie została zrozumiana";
-$a->strings["Unexpected response from remote site: "] = "Nieoczekiwana odpowiedź od strony zdalnej:";
-$a->strings["Confirmation completed successfully."] = "Potwierdzenie zostało pomyślnie zakończone.";
-$a->strings["Temporary failure. Please wait and try again."] = "Tymczasowa awaria. Proszę czekać i spróbuj ponownie.";
-$a->strings["Introduction failed or was revoked."] = "Wprowadzenie nie powiodło się lub zostało odwołane.";
-$a->strings["Remote site reported: "] = "Zdalna witryna zgłoszona:";
-$a->strings["Unable to set contact photo."] = "Nie można ustawić zdjęcia kontaktu.";
-$a->strings["No user record found for '%s' "] = "Nie znaleziono użytkownika dla '%s'";
-$a->strings["Our site encryption key is apparently messed up."] = "Klucz kodujący jest najwyraźniej uszkodzony.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Został podany pusty adres URL witryny lub nie można go odszyfrować.";
-$a->strings["Contact record was not found for you on our site."] = "Nie znaleziono kontaktu na naszej stronie";
-$a->strings["Site public key not available in contact record for URL %s."] = "Publiczny klucz witryny jest niedostępny w rekordzie kontaktu dla adresu URL %s";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Identyfikator dostarczony przez Twój system jest duplikatem w naszym systemie. Powinien działać, jeśli spróbujesz ponownie.";
-$a->strings["Unable to set your contact credentials on our system."] = "Nie można ustawić danych kontaktowych w naszym systemie.";
-$a->strings["Unable to update your contact profile details on our system"] = "Nie można zaktualizować danych Twojego profilu kontaktowego w naszym systemie";
-$a->strings["[Name Withheld]"] = "[Nazwa zastrzeżona]";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s dołączył/a do %2\$s";
-$a->strings["Manage Identities and/or Pages"] = "Zarządzaj Tożsamościami i/lub Stronami.";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Przełącz między różnymi tożsamościami lub stronami społeczność/grupy, które udostępniają dane Twojego konta lub które otrzymałeś uprawnienia \"zarządzaj\"";
-$a->strings["Select an identity to manage: "] = "Wybierz tożsamość do zarządzania:";
-$a->strings["Invalid request."] = "Nieprawidłowe żądanie.";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Przepraszam, może twój przesyłany plik jest większy niż pozwala konfiguracja PHP";
-$a->strings["Or - did you try to upload an empty file?"] = "Lub - czy próbowałeś załadować pusty plik?";
-$a->strings["File exceeds size limit of %s"] = "Plik przekracza limit rozmiaru wynoszący %s";
-$a->strings["File upload failed."] = "Przesyłanie pliku nie powiodło się.";
-$a->strings["This introduction has already been accepted."] = "To wprowadzenie zostało już zaakceptowane.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Lokalizacja profilu jest nieprawidłowa lub nie zawiera informacji o profilu.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik.";
-$a->strings["Warning: profile location has no profile photo."] = "Ostrzeżenie: położenie profilu nie zawiera zdjęcia.";
-$a->strings["%d required parameter was not found at the given location"] = [
- 0 => "%d wymagany parametr nie został znaleziony w podanej lokacji",
- 1 => "%d wymagane parametry nie zostały znalezione w podanej lokacji",
- 2 => "%d wymagany parametr nie został znaleziony w podanej lokacji",
- 3 => "%d wymagany parametr nie został znaleziony w podanej lokacji",
-];
-$a->strings["Introduction complete."] = "Wprowadzanie zakończone.";
-$a->strings["Unrecoverable protocol error."] = "Nieodwracalny błąd protokołu.";
-$a->strings["Profile unavailable."] = "Profil niedostępny.";
-$a->strings["%s has received too many connection requests today."] = "%s otrzymał dziś zbyt wiele żądań połączeń.";
-$a->strings["Spam protection measures have been invoked."] = "Wprowadzono zabezpieczenia przed spamem.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Przyjaciele namawiają do spróbowania za 24h.";
-$a->strings["Invalid locator"] = "Nieprawidłowy lokalizator";
-$a->strings["You have already introduced yourself here."] = "Już się tu przedstawiłeś.";
-$a->strings["Apparently you are already friends with %s."] = "Wygląda na to, że już jesteście przyjaciółmi z %s";
-$a->strings["Invalid profile URL."] = "Nieprawidłowy URL profilu.";
-$a->strings["Disallowed profile URL."] = "Nie dozwolony adres URL profilu.";
-$a->strings["Blocked domain"] = "Zablokowana domena";
-$a->strings["Failed to update contact record."] = "Aktualizacja rekordu kontaktu nie powiodła się.";
-$a->strings["Your introduction has been sent."] = "Twoje dane zostały wysłane.";
-$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie.";
-$a->strings["Please login to confirm introduction."] = "Zaloguj się, aby potwierdzić wprowadzenie.";
-$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. ";
-$a->strings["Confirm"] = "Potwierdź";
-$a->strings["Hide this contact"] = "Ukryj kontakt";
-$a->strings["Welcome home %s."] = "Welcome home %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s.";
-$a->strings["Public access denied."] = "Publiczny dostęp zabroniony";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Wprowadź swój 'Adres tożsamości' z jednej z następujących obsługiwanych sieci komunikacyjnych:";
-$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today ."] = "Jeśli nie jesteś jeszcze członkiem darmowej sieci społecznościowej, kliknij ten link, aby znaleźć publiczną witrynę Friendica i dołącz do nas już dziś .";
-$a->strings["Friend/Connection Request"] = "Przyjaciel/Prośba o połączenie";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = "Przykłady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de";
-$a->strings["Please answer the following:"] = "Proszę odpowiedzieć na następujące pytania:";
-$a->strings["Does %s know you?"] = "Czy %s Cię zna?";
-$a->strings["Add a personal note:"] = "Dodaj osobistą notkę:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)";
-$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)";
-$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- proszę nie używać tego formularza. Zamiast tego wpisz %s do paska wyszukiwania Diaspory.";
-$a->strings["Your Identity Address:"] = "Twój adres tożsamości:";
-$a->strings["Submit Request"] = "Wyślij zgłoszenie";
-$a->strings["- select -"] = "- wybierz -";
-$a->strings["l F d, Y \\@ g:i A"] = "";
-$a->strings["Time Conversion"] = "Zmiana czasu";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica udostępnia tę usługę do udostępniania wydarzeń innym sieciom i znajomym w nieznanych strefach czasowych.";
-$a->strings["UTC time: %s"] = "Czas UTC %s";
-$a->strings["Current timezone: %s"] = "Obecna strefa czasowa: %s";
-$a->strings["Converted localtime: %s"] = "Zmień strefę czasową: %s";
-$a->strings["Please select your timezone:"] = "Wybierz swoją strefę czasową:";
-$a->strings["No more system notifications."] = "Nie ma więcej powiadomień systemowych.";
-$a->strings["{0} wants to be your friend"] = "{0} chce być Twoim znajomym";
-$a->strings["{0} sent you a message"] = "{0} wysłałem Ci wiadomość";
-$a->strings["{0} requested registration"] = "{0} wymagana rejestracja";
-$a->strings["Poke/Prod"] = "";
-$a->strings["poke, prod or do other things to somebody"] = "";
-$a->strings["Recipient"] = "Odbiorca";
-$a->strings["Choose what you wish to do to recipient"] = "Wybierz, co chcesz zrobić";
-$a->strings["Make this post private"] = "Ustaw ten post jako prywatny";
-$a->strings["Only logged in users are permitted to perform a probing."] = "Tylko zalogowani użytkownicy mogą wykonywać sondowanie.";
-$a->strings["Permission denied"] = "Odmowa dostępu";
-$a->strings["Invalid profile identifier."] = "Nieprawidłowa nazwa użytkownika.";
-$a->strings["Profile Visibility Editor"] = "Ustawienia widoczności profilu";
-$a->strings["Click on a contact to add or remove."] = "Kliknij na kontakt w celu dodania lub usunięcia.";
-$a->strings["Visible To"] = "Widoczne dla";
-$a->strings["All Contacts (with secure profile access)"] = "Wszystkie kontakty (z bezpiecznym dostępem do profilu)";
-$a->strings["Account approved."] = "Konto zatwierdzone.";
-$a->strings["Registration revoked for %s"] = "Rejestracja odwołana dla %s";
-$a->strings["Please login."] = "Proszę się zalogować.";
+$a->strings["No profile"] = "Brak profilu";
+$a->strings["You must be logged in to use addons. "] = "Musisz być zalogowany, aby korzystać z dodatków.";
+$a->strings["Applications"] = "Aplikacje";
+$a->strings["No installed applications."] = "Brak zainstalowanych aplikacji.";
$a->strings["Remove term"] = "Usuń wpis";
-$a->strings["Saved Searches"] = "Zapisane wyszukiwania";
-$a->strings["Only logged in users are permitted to perform a search."] = "Tylko zalogowani użytkownicy mogą wyszukiwać.";
-$a->strings["Too Many Requests"] = "Zbyt dużo próśb";
-$a->strings["Only one search per minute is permitted for not logged in users."] = "Dla niezalogowanych użytkowników dozwolone jest tylko jedno wyszukiwanie na minutę.";
-$a->strings["No results."] = "Brak wyników.";
-$a->strings["Items tagged with: %s"] = "Przedmioty oznaczone tagiem: %s";
-$a->strings["Results for: %s"] = "Wyniki dla: %s";
+$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
+ 0 => "",
+ 1 => "",
+ 2 => "",
+ 3 => "",
+];
+$a->strings["Messages in this group won't be send to these receivers."] = "Wiadomości z tej grupy nie będą wysyłane do tych odbiorców.";
+$a->strings["No such group"] = "Nie ma takiej grupy";
+$a->strings["Group is empty"] = "Grupa jest pusta";
+$a->strings["Group: %s"] = "Grupa: %s";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione ";
+$a->strings["Invalid contact."] = "Nieprawidłowy kontakt.";
+$a->strings["Commented Order"] = "Porządek według komentarzy";
+$a->strings["Sort by Comment Date"] = "Sortuj według daty komentarza";
+$a->strings["Posted Order"] = "Porządek według wpisów";
+$a->strings["Sort by Post Date"] = "Sortuj według daty postów";
+$a->strings["Posts that mention or involve you"] = "Posty, które wspominają lub angażują Ciebie";
+$a->strings["New"] = "Nowy";
+$a->strings["Activity Stream - by date"] = "Strumień aktywności - według daty";
+$a->strings["Shared Links"] = "Udostępnione łącza";
+$a->strings["Interesting Links"] = "Interesujące linki";
+$a->strings["Starred"] = "Ulubione";
+$a->strings["Favourite Posts"] = "Ulubione posty";
+$a->strings["This is Friendica, version"] = "To jest Friendica, wersja";
+$a->strings["running at web location"] = "otwierane na serwerze";
+$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Odwiedź stronę Friendi.ca aby dowiedzieć się więcej o projekcie Friendica.";
+$a->strings["Bug reports and issues: please visit"] = "Raporty o błędach i problemy: odwiedź stronę";
+$a->strings["the bugtracker at github"] = "bugtracker na github";
+$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Sugestie, pochwały itp. - napisz e-mail \"info\" na \"friendi - kropka - ca";
+$a->strings["Installed addons/apps:"] = "Zainstalowane dodatki/aplikacje:";
+$a->strings["No installed addons/apps"] = "Brak zainstalowanych dodatków/aplikacji";
+$a->strings["Read about the Terms of Service of this node."] = "Przeczytaj o Warunkach świadczenia usług tego węzła.";
+$a->strings["On this server the following remote servers are blocked."] = "Na tym serwerze następujące serwery zdalne są blokowane.";
+$a->strings["Reason for the block"] = "Powód blokowania";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$skolejny %2\$s %3\$s ";
-$a->strings["Tag removed"] = "Tag usunięty";
-$a->strings["Remove Item Tag"] = "Usuń pozycję Tag";
-$a->strings["Select a tag to remove: "] = "Wybierz tag do usunięcia";
-$a->strings["Remove"] = "Usuń";
-$a->strings["Export account"] = "Eksportuj konto";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Eksportuj informacje o swoim koncie i kontaktach. Użyj tego do utworzenia kopii zapasowej konta i/lub przeniesienia go na inny serwer.";
-$a->strings["Export all"] = "Eksportuj wszystko";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Wyeksportuj informacje o koncie, kontaktach i wszystkie swoje pozycje jako json. Może to być bardzo duży plik i może zająć dużo czasu. Użyj tej opcji, aby utworzyć pełną kopię zapasową swojego konta (zdjęcia nie są eksportowane)";
-$a->strings["Export personal data"] = "Eksportuje dane personalne";
-$a->strings["No contacts."] = "brak kontaktów";
-$a->strings["Access denied."] = "Brak dostępu";
-$a->strings["Image exceeds size limit of %s"] = "Obraz przekracza limit rozmiaru wynoszący %s";
-$a->strings["Unable to process image."] = "Przetwarzanie obrazu nie powiodło się.";
-$a->strings["Wall Photos"] = "Tablica zdjęć";
-$a->strings["Image upload failed."] = "Przesyłanie obrazu nie powiodło się";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Dzienny limit wiadomości %s został przekroczony. Wiadomość została odrzucona.";
-$a->strings["No recipient selected."] = "Nie wybrano odbiorcy.";
-$a->strings["Unable to check your home location."] = "Nie można sprawdzić twojej lokalizacji.";
-$a->strings["Message could not be sent."] = "Wiadomość nie może zostać wysłana";
-$a->strings["Message collection failure."] = "Błąd zbierania komunikatów.";
-$a->strings["Message sent."] = "Wysłano.";
-$a->strings["No recipient."] = "Brak odbiorcy.";
-$a->strings["Send Private Message"] = "Wyślij prywatną wiadomość";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców.";
-$a->strings["To:"] = "Do:";
-$a->strings["Subject:"] = "Temat:";
-$a->strings["Your message:"] = "Twoja wiadomość:";
-$a->strings["Login"] = "Login";
-$a->strings["The post was created"] = "Post został utworzony";
-$a->strings["Community option not available."] = "Opcja wspólnotowa jest niedostępna.";
-$a->strings["Not available."] = "Niedostępne.";
-$a->strings["Local Community"] = "Lokalna społeczność";
-$a->strings["Posts from local users on this server"] = "Wpisy od lokalnych użytkowników na tym serwerze";
-$a->strings["Global Community"] = "Globalna społeczność";
-$a->strings["Posts from users of the whole federated network"] = "Wpisy od użytkowników całej sieci stowarzyszonej";
-$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Ten strumień społeczności pokazuje wszystkie publiczne posty otrzymane przez ten węzeł. Mogą nie odzwierciedlać opinii użytkowników tego węzła.";
-$a->strings["Item not found"] = "Nie znaleziono elementu";
-$a->strings["Edit post"] = "Edytuj post";
-$a->strings["CC: email addresses"] = "CC: adresy e-mail";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Przykład: bob@example.com, mary@example.com";
+$a->strings["Profile not found."] = "Nie znaleziono profilu.";
+$a->strings["Profile deleted."] = "Konto usunięte.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Utworzono nowy profil.";
+$a->strings["Profile unavailable to clone."] = "Nie można powileić profilu ";
+$a->strings["Profile Name is required."] = "Nazwa Profilu jest wymagana";
+$a->strings["Marital Status"] = "Stan cywilny";
+$a->strings["Romantic Partner"] = "Romantyczny partner";
+$a->strings["Work/Employment"] = "Praca/Zatrudnienie";
+$a->strings["Religion"] = "Religia";
+$a->strings["Political Views"] = "Poglądy polityczne";
+$a->strings["Gender"] = "Płeć";
+$a->strings["Sexual Preference"] = "Orientacja seksualna";
+$a->strings["XMPP"] = "XMPP";
+$a->strings["Homepage"] = "Strona Główna";
+$a->strings["Interests"] = "Zainteresowania";
+$a->strings["Address"] = "Adres";
+$a->strings["Location"] = "Lokalizacja";
+$a->strings["Profile updated."] = "Profil zaktualizowany.";
+$a->strings[" and "] = " i ";
+$a->strings["public profile"] = "profil publiczny";
+$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$szmienione %2\$s na “%3\$s”";
+$a->strings[" - Visit %1\$s's %2\$s"] = " - Odwiedź %1\$s's %2\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$sma zaktualizowany %2\$s, zmiana%3\$s.";
+$a->strings["Hide contacts and friends:"] = "Ukryj kontakty i znajomych:";
+$a->strings["No"] = "Nie";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?";
+$a->strings["Show more profile fields:"] = "Pokaż więcej pól profilu:";
+$a->strings["Profile Actions"] = "Akcje profilowe";
+$a->strings["Edit Profile Details"] = "Edytuj profil.";
+$a->strings["Change Profile Photo"] = "Zmień zdjęcie profilowe";
+$a->strings["View this profile"] = "Wyświetl ten profil";
+$a->strings["Create a new profile using these settings"] = "Stwórz nowy profil wykorzystując te ustawienia";
+$a->strings["Clone this profile"] = "Sklonuj ten profil";
+$a->strings["Delete this profile"] = "Usuń ten profil";
+$a->strings["Basic information"] = "Podstawowe informacje";
+$a->strings["Profile picture"] = "Zdjęcie profilowe";
+$a->strings["Preferences"] = "Preferencje";
+$a->strings["Status information"] = "Informacje o stanie";
+$a->strings["Additional information"] = "Dodatkowe informacje";
+$a->strings["Relation"] = "Relacje";
+$a->strings["Your Gender:"] = "Płeć:";
+$a->strings["♥ Marital Status:"] = "♥ Stan cywilny:";
+$a->strings["Example: fishing photography software"] = "Przykład: oprogramowanie do fotografowania ryb";
+$a->strings["Profile Name:"] = "Nazwa profilu:";
+$a->strings["Required"] = "Wymagany";
+$a->strings["This is your public profile. It may be visible to anybody using the internet."] = "To jest Twój publiczny profil. Może zostać wyświetlony przez każdego kto używa internetu.";
+$a->strings["Your Full Name:"] = "Imię i Nazwisko:";
+$a->strings["Title/Description:"] = "Tytuł/Opis :";
+$a->strings["Street Address:"] = "Ulica:";
+$a->strings["Locality/City:"] = "Miejscowość/Miasto:";
+$a->strings["Region/State:"] = "Region/Państwo:";
+$a->strings["Postal/Zip Code:"] = "Kod Pocztowy:";
+$a->strings["Country:"] = "Kraj:";
+$a->strings["Who: (if applicable)"] = "Kto: (jeśli dotyczy)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Przykłady: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Od [data]:";
+$a->strings["Tell us about yourself..."] = "Napisz o sobie...";
+$a->strings["XMPP (Jabber) address:"] = "Adres XMPP (Jabber):";
+$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Adres XMPP będzie propagowany do Twoich kontaktów, aby mogli Cię śledzić.";
+$a->strings["Homepage URL:"] = "Adres URL strony domowej:";
+$a->strings["Religious Views:"] = "Poglądy religijne:";
+$a->strings["Public Keywords:"] = "Publiczne słowa kluczowe:";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)";
+$a->strings["Private Keywords:"] = "Prywatne słowa kluczowe:";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Używany do wyszukiwania profili, niepokazywany innym)";
+$a->strings["Musical interests"] = "Muzyka";
+$a->strings["Books, literature"] = "Literatura";
+$a->strings["Television"] = "Telewizja";
+$a->strings["Film/dance/culture/entertainment"] = "Film/taniec/kultura/rozrywka";
+$a->strings["Hobbies/Interests"] = "Zainteresowania";
+$a->strings["Love/romance"] = "Miłość/romans";
+$a->strings["Work/employment"] = "Praca/zatrudnienie";
+$a->strings["School/education"] = "Szkoła/edukacja";
+$a->strings["Contact information and Social Networks"] = "Dane kontaktowe i Sieci społecznościowe";
+$a->strings["Edit/Manage Profiles"] = "Edycja/Zarządzanie profilami";
+$a->strings["Event can not end before it has started."] = "Wydarzenie nie może się zakończyć przed jego rozpoczęciem.";
+$a->strings["Event title and start time are required."] = "Wymagany tytuł wydarzenia i czas rozpoczęcia.";
+$a->strings["View"] = "Widok";
+$a->strings["Create New Event"] = "Stwórz nowe wydarzenie";
+$a->strings["Previous"] = "Poprzedni";
+$a->strings["Next"] = "Następny";
+$a->strings["list"] = "lista";
+$a->strings["Event details"] = "Szczegóły wydarzenia";
+$a->strings["Starting date and Title are required."] = "Data rozpoczęcia i tytuł są wymagane.";
+$a->strings["Event Starts:"] = "Rozpoczęcie wydarzenia:";
+$a->strings["Finish date/time is not known or not relevant"] = "Data/czas zakończenia nie jest znana lub jest nieistotna";
+$a->strings["Event Finishes:"] = "Zakończenie wydarzenia:";
+$a->strings["Adjust for viewer timezone"] = "Dopasuj dla strefy czasowej widza";
+$a->strings["Description:"] = "Opis:";
+$a->strings["Title:"] = "Tytuł:";
+$a->strings["Share this event"] = "Udostępnij te wydarzenie";
+$a->strings["Failed to remove event"] = "Nie udało się usunąć wydarzenia";
+$a->strings["Event removed"] = "Wydarzenie zostało usunięte";
+$a->strings["No more system notifications."] = "Nie ma więcej powiadomień systemowych.";
+$a->strings["System Notifications"] = "Powiadomienia systemowe";
+$a->strings["Contact not found."] = "Kontakt nie znaleziony";
$a->strings["Friend suggestion sent."] = "Wysłana propozycja dodania do znajomych.";
$a->strings["Suggest Friends"] = "Proponuję znajomych";
$a->strings["Suggest a friend for %s"] = "Zaproponuj znajomych dla %s";
+$a->strings["Item not available."] = "Element niedostępny.";
+$a->strings["Item was not found."] = "Element nie znaleziony.";
+$a->strings["No friends to display."] = "Brak znajomych do wyświetlenia";
+$a->strings["No contacts."] = "brak kontaktów";
+$a->strings["Visit %s's profile [%s]"] = "Obejrzyj %s's profil [%s]";
+$a->strings["Subscribing to OStatus contacts"] = "Subskrybowanie kontaktów OStatus";
+$a->strings["No contact provided."] = "Brak kontaktu.";
+$a->strings["Couldn't fetch information for contact."] = "Nie można pobrać informacji o kontakcie.";
+$a->strings["Couldn't fetch friends for contact."] = "Nie można pobrać znajomych do kontaktu.";
+$a->strings["success"] = "powodzenie";
+$a->strings["failed"] = "nie powiodło się";
+$a->strings["Authorize application connection"] = "Autoryzacja połączenia aplikacji";
+$a->strings["Return to your app and insert this Securty Code:"] = "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:";
+$a->strings["Please login to continue."] = "Zaloguj się aby kontynuować.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Czy chcesz zezwolić tej aplikacji na dostęp do swoich postów i kontaktów i/lub tworzenie nowych postów?";
+$a->strings["everybody"] = "wszyscy";
+$a->strings["Account"] = "Konto";
+$a->strings["Additional features"] = "Dodatkowe funkcje";
+$a->strings["Display"] = "Wyświetlanie";
+$a->strings["Social Networks"] = "Portale społecznościowe";
+$a->strings["Addons"] = "Dodatki";
+$a->strings["Connected apps"] = "Powiązane aplikacje";
+$a->strings["Export personal data"] = "Eksportuje dane personalne";
+$a->strings["Remove account"] = "Usuń konto";
+$a->strings["Missing some important data!"] = "Brakuje ważnych danych!";
+$a->strings["Update"] = "Zaktualizuj";
+$a->strings["Failed to connect with email account using the settings provided."] = "Połączenie z kontem email używając wybranych ustawień nie powiodło się.";
+$a->strings["Email settings updated."] = "Zaktualizowano ustawienia email.";
+$a->strings["Features updated"] = "Funkcje zaktualizowane";
+$a->strings["Relocate message has been send to your contacts"] = "Przeniesienie wiadomości zostało wysłane do Twoich kontaktów";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Puste hasła są niedozwolone. Hasło niezmienione.";
+$a->strings["Wrong password."] = "Złe hasło.";
+$a->strings[" Please use a shorter name."] = "Proszę użyć krótszej nazwy.";
+$a->strings[" Name too short."] = "Za krótka nazwa.";
+$a->strings["Wrong Password"] = "Złe hasło";
+$a->strings["Invalid email."] = "Niepoprawny e-mail.";
+$a->strings["Cannot change to that email."] = "Nie można zmienić tego e-maila.";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Prywatne forum nie ma uprawnień do prywatności. Użyj domyślnej grupy prywatnej.";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Prywatne forum nie ma uprawnień do prywatności ani domyślnej grupy prywatności.";
+$a->strings["Settings updated."] = "Zaktualizowano ustawienia.";
+$a->strings["Add application"] = "Dodaj aplikację";
+$a->strings["Save Settings"] = "Zapisz ustawienia";
+$a->strings["Name"] = "Nazwa";
+$a->strings["Consumer Key"] = "Klucz klienta";
+$a->strings["Consumer Secret"] = "Tajny klucz klienta";
+$a->strings["Redirect"] = "Przekierowanie";
+$a->strings["Icon url"] = "Adres Url ikony";
+$a->strings["You can't edit this application."] = "Nie możesz edytować tej aplikacji.";
+$a->strings["Connected Apps"] = "Powiązane aplikacje";
+$a->strings["Client key starts with"] = "Klucz klienta zaczyna się od";
+$a->strings["No name"] = "Bez nazwy";
+$a->strings["Remove authorization"] = "Odwołaj upoważnienie";
+$a->strings["No Addon settings configured"] = "Brak skonfigurowanych ustawień Dodatków";
+$a->strings["Addon Settings"] = "Ustawienia Dodatków";
+$a->strings["Off"] = "Wyłącz";
+$a->strings["On"] = "Włącz";
+$a->strings["Additional Features"] = "Dodatkowe funkcje";
+$a->strings["enabled"] = "włączony";
+$a->strings["disabled"] = "wyłączony";
+$a->strings["Built-in support for %s connectivity is %s"] = "Wbudowane wsparcie dla %s łączność jest %s";
+$a->strings["GNU Social (OStatus)"] = "GNU Społeczny (OStatus)";
+$a->strings["Email access is disabled on this site."] = "Dostęp do e-maila nie jest w pełni sprawny na tej stronie";
+$a->strings["General Social Media Settings"] = "Ogólne ustawienia mediów społecznościowych";
+$a->strings["Disable Content Warning"] = "Wyłącz ostrzeżenie o treści";
+$a->strings["Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn't affect any other content filtering you eventually set up."] = "Użytkownicy w sieciach takich jak Mastodon lub Pleroma mogą ustawić pole ostrzeżenia o treści, które domyślnie zwijać będzie swój wpis. Powoduje wyłączenie automatycznego zwijania i ustawia ostrzeżenie o treści jako tytuł postu. Nie ma wpływu na żadne inne filtrowanie treści, które ostatecznie utworzyłeś.";
+$a->strings["Disable intelligent shortening"] = "Wyłącz inteligentne skracanie";
+$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Zwykle system próbuje znaleźć najlepszy link do dodania do skróconych postów. Jeśli ta opcja jest włączona, każdy skrócony wpis zawsze wskazuje oryginalny post znajomej osoby.";
+$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automatycznie podążaj za wszystkimi obserwatorami/rzecznikami GNU Społeczności (OStatus)";
+$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Jeśli otrzymasz wiadomość od nieznanego użytkownika OStatus, ta opcja decyduje, co zrobić. Jeśli zostanie zaznaczone, dla każdego nieznanego użytkownika zostanie utworzony nowy kontakt.";
+$a->strings["Default group for OStatus contacts"] = "Domyślna grupa dla kontaktów OStatus";
+$a->strings["Your legacy GNU Social account"] = "Twoje starsze konto społecznościowe GNU";
+$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Jeśli podasz swoją starą nazwę konta GNU Social/Statusnet tutaj (w formacie user@domain.tld), twoje kontakty zostaną dodane automatycznie. Pole zostanie opróżnione po zakończeniu.";
+$a->strings["Repair OStatus subscriptions"] = "Napraw subskrypcje OStatus";
+$a->strings["Email/Mailbox Setup"] = "Ustawienia emaila/skrzynki mailowej";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową.";
+$a->strings["Last successful email check:"] = "Ostatni sprawdzony e-mail:";
+$a->strings["IMAP server name:"] = "Nazwa serwera IMAP:";
+$a->strings["IMAP port:"] = "Port IMAP:";
+$a->strings["Security:"] = "Ochrona:";
+$a->strings["None"] = "Brak";
+$a->strings["Email login name:"] = "Nazwa logowania e-mail:";
+$a->strings["Email password:"] = "E-mail hasło:";
+$a->strings["Reply-to address:"] = "Adres zwrotny:";
+$a->strings["Send public posts to all email contacts:"] = "Wyślij publiczny post do wszystkich kontaktów e-mail";
+$a->strings["Action after import:"] = "Akcja po zaimportowaniu:";
+$a->strings["Move to folder"] = "Przenieś do folderu";
+$a->strings["Move to folder:"] = "Przenieś do folderu:";
+$a->strings["No special theme for mobile devices"] = "Brak specialnego motywu dla urządzeń mobilnych";
+$a->strings["%s - (Unsupported)"] = "%s - (Nieobsługiwane)";
+$a->strings["%s - (Experimental)"] = "%s- (Eksperymentalne)";
+$a->strings["Display Settings"] = "Wyświetl ustawienia";
+$a->strings["Display Theme:"] = "Wyświetl motyw:";
+$a->strings["Mobile Theme:"] = "Motyw dla urządzeń mobilnych:";
+$a->strings["Suppress warning of insecure networks"] = "Ukryj ostrzeżenie przed niebezpiecznymi sieciami";
+$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "System powinien pominąć ostrzeżenie, że bieżąca grupa zawiera członków sieci, którzy nie mogą otrzymywać komentarzy niepublicznych";
+$a->strings["Update browser every xx seconds"] = "Odświeżaj stronę co xx sekund";
+$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum 10 sekund. Wprowadź -1, aby go wyłączyć.";
+$a->strings["Number of items to display per page:"] = "Liczba elementów do wyświetlenia na stronie:";
+$a->strings["Maximum of 100 items"] = "Maksymalnie 100 elementów";
+$a->strings["Number of items to display per page when viewed from mobile device:"] = "Liczba elementów do wyświetlenia na stronie podczas przeglądania z urządzenia mobilnego:";
+$a->strings["Don't show emoticons"] = "Nie pokazuj emotikonek";
+$a->strings["Calendar"] = "Kalendarz";
+$a->strings["Beginning of week:"] = "Początek tygodnia:";
+$a->strings["Don't show notices"] = "Nie pokazuj powiadomień";
+$a->strings["Infinite scroll"] = "Nieskończone przewijanie";
+$a->strings["Automatic updates only at the top of the network page"] = "Automatyczne aktualizacje tylko u góry strony sieci";
+$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "Po wyłączeniu strona sieciowa jest cały czas aktualizowana, co może być mylące podczas czytania.";
+$a->strings["Bandwith Saver Mode"] = "Tryb oszczędzania przepustowości";
+$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Po włączeniu wbudowana zawartość nie jest wyświetlana w automatycznych aktualizacjach, wyświetlają się tylko przy przeładowaniu strony.";
+$a->strings["Smart Threading"] = "Inteligentne gwintowanie";
+$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "Włączenie tej opcji powoduje pomijanie wcięcia nitek zewnętrznych, zachowując je w dowolnym miejscu. Działa tylko wtedy, gdy wątki są dostępne i włączone.";
+$a->strings["General Theme Settings"] = "Ogólne ustawienia motywu";
+$a->strings["Custom Theme Settings"] = "Niestandardowe ustawienia motywów";
+$a->strings["Content Settings"] = "Ustawienia zawartości";
+$a->strings["Theme settings"] = "Ustawienia motywu";
+$a->strings["Unable to find your profile. Please contact your admin."] = "Nie można znaleźć Twojego profilu. Skontaktuj się z administratorem.";
+$a->strings["Account Types"] = "Rodzaje kont";
+$a->strings["Personal Page Subtypes"] = "Podtypy osobistych stron";
+$a->strings["Community Forum Subtypes"] = "Podtypy społeczności forum";
+$a->strings["Personal Page"] = "Strona osobista";
+$a->strings["Account for a personal profile."] = "Konto dla profilu osobistego.";
+$a->strings["Organisation Page"] = "Strona Organizacji";
+$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = "Konto dla organizacji, która automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\".";
+$a->strings["News Page"] = "Strona Wiadomości";
+$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = "Konto dla reflektora wiadomości, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\".";
+$a->strings["Community Forum"] = "Forum społecznościowe";
+$a->strings["Account for community discussions."] = "Konto do dyskusji w społeczności.";
+$a->strings["Normal Account Page"] = "Normalna strona konta";
+$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = "Konto dla zwykłego profilu osobistego, który wymaga ręcznej zgody \"Przyjaciół\" i \"Obserwatorów\".";
+$a->strings["Soapbox Page"] = "Strona Soapbox";
+$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = "Konto dla profilu publicznego, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\".";
+$a->strings["Public Forum"] = "Forum publiczne";
+$a->strings["Automatically approves all contact requests."] = "Automatycznie zatwierdza wszystkie prośby o kontakt.";
+$a->strings["Automatic Friend Page"] = "Automatyczna strona znajomego";
+$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "Konto popularnego profilu, które automatycznie zatwierdza prośby o kontakt jako \"Przyjaciele\".";
+$a->strings["Private Forum [Experimental]"] = "Prywatne Forum [Eksperymentalne]";
+$a->strings["Requires manual approval of contact requests."] = "Wymaga ręcznego zatwierdzania żądań kontaktów.";
+$a->strings["OpenID:"] = "OpenID:";
+$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcjonalnie) Pozwól zalogować się na to konto przy pomocy OpenID.";
+$a->strings["Publish your default profile in your local site directory?"] = "Opublikować Twój domyślny profil w Twoim lokalnym katalogu stron?";
+$a->strings["Your profile will be published in the global friendica directories (e.g. %s ). Your profile will be visible in public."] = "Twój profil zostanie opublikowany w globalnych katalogach friendica (np.%s ). Twój profil będzie widoczny publicznie.";
+$a->strings["Publish your default profile in the global social directory?"] = "Opublikować Twój domyślny profil w globalnym, społecznościowym katalogu?";
+$a->strings["Your profile will be published in this node's local directory . Your profile details may be publicly visible depending on the system settings."] = "Twój profil zostanie opublikowany w lokalnym katalogu tego węzła . Dane Twojego profilu mogą być publicznie widoczne w zależności od ustawień systemu.";
+$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ukryć listę znajomych przed odwiedzającymi Twój profil?";
+$a->strings["Your contact list won't be shown in your default profile page. You can decide to show your contact list separately for each additional profile you create"] = "Twoja lista kontaktów nie będzie wyświetlana na domyślnej stronie profilu. Możesz zdecydować o wyświetleniu listy kontaktów osobno dla każdego tworzonego dodatkowego profilu.";
+$a->strings["Hide your profile details from anonymous viewers?"] = "Ukryć dane Twojego profilu przed anonimowymi widzami?";
+$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Disables posting public messages to Diaspora and other networks."] = "Anonimowi użytkownicy zobaczą tylko Twoje zdjęcie profilowe, Twoją wyświetlaną nazwę i pseudonim, którego używasz na stronie profilu. Wyłącza wysyłanie publicznych wiadomości do Diaspory i innych sieci.";
+$a->strings["Allow friends to post to your profile page?"] = "Zezwalać znajomym na publikowanie postów na stronie Twojego profilu?";
+$a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = "Twoi znajomi mogą pisać posty na stronie Twojego profilu. Posty zostaną przesłane do Twoich kontaktów.";
+$a->strings["Allow friends to tag your posts?"] = "Zezwolić na oznaczanie Twoich postów przez znajomych?";
+$a->strings["Your contacts can add additional tags to your posts."] = "Twoje kontakty mogą dodawać do tagów dodatkowe posty.";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Zezwolić na zaproponowanie Cię jako potencjalnego przyjaciela dla nowych członków?";
+$a->strings["If you like, Friendica may suggest new members to add you as a contact."] = "Jeśli chcesz, Friendica może zaproponować nowym członkom dodanie Cię jako kontakt.";
+$a->strings["Permit unknown people to send you private mail?"] = "Zezwolić nieznanym osobom na wysyłanie prywatnych wiadomości?";
+$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = "Użytkownicy sieci w serwisie Friendica mogą wysyłać prywatne wiadomości, nawet jeśli nie znajdują się one na liście kontaktów.";
+$a->strings["Profile is not published ."] = "Profil nie jest opublikowany ";
+$a->strings["Your Identity Address is '%s' or '%s'."] = "Twój adres tożsamości to '%s' lub '%s'.";
+$a->strings["Automatically expire posts after this many days:"] = "Posty wygasną automatycznie po następującej liczbie dni:";
+$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte.";
+$a->strings["Advanced expiration settings"] = "Zaawansowane ustawienia wygasania";
+$a->strings["Advanced Expiration"] = "Zaawansowane wygasanie";
+$a->strings["Expire posts:"] = "Wygasające posty:";
+$a->strings["Expire personal notes:"] = "Wygasanie osobistych notatek:";
+$a->strings["Expire starred posts:"] = "Wygasaj posty oznaczone gwiazdką:";
+$a->strings["Expire photos:"] = "Wygasanie zdjęć:";
+$a->strings["Only expire posts by others:"] = "Wygaszaj tylko te posty, które zostały napisane przez inne osoby:";
+$a->strings["Account Settings"] = "Ustawienia konta";
+$a->strings["Password Settings"] = "Ustawienia hasła";
+$a->strings["New Password:"] = "Nowe hasło:";
+$a->strings["Confirm:"] = "Potwierdź:";
+$a->strings["Leave password fields blank unless changing"] = "Pozostaw pole hasła puste, chyba że chcesz je zmienić.";
+$a->strings["Current Password:"] = "Aktualne hasło:";
+$a->strings["Your current password to confirm the changes"] = "Wpisz aktualne hasło, aby potwierdzić zmiany";
+$a->strings["Password:"] = "Hasło:";
+$a->strings["Basic Settings"] = "Ustawienia podstawowe";
+$a->strings["Email Address:"] = "Adres email:";
+$a->strings["Your Timezone:"] = "Twoja strefa czasowa:";
+$a->strings["Your Language:"] = "Twój język:";
+$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Wybierz język, którego używasz, aby pokazać interfejs użytkownika friendica i do wysłania Ci e-maili";
+$a->strings["Default Post Location:"] = "Domyślna lokalizacja wiadomości:";
+$a->strings["Use Browser Location:"] = "Użyj lokalizacji przeglądarki:";
+$a->strings["Security and Privacy Settings"] = "Ustawienia bezpieczeństwa i prywatności";
+$a->strings["Maximum Friend Requests/Day:"] = "Maksymalna dzienna liczba zaproszeń do grona przyjaciół:";
+$a->strings["(to prevent spam abuse)"] = "(aby zapobiec spamowaniu)";
+$a->strings["Default Post Permissions"] = "Domyślne prawa dostępu wiadomości";
+$a->strings["(click to open/close)"] = "(kliknij by otworzyć/zamknąć)";
+$a->strings["Show to Groups"] = "Pokaż Grupy";
+$a->strings["Show to Contacts"] = "Pokaż kontakty";
+$a->strings["Default Private Post"] = "Domyślny Prywatny Wpis";
+$a->strings["Default Public Post"] = "Domyślny Publiczny Post";
+$a->strings["Default Permissions for New Posts"] = "Uprawnienia domyślne dla nowych postów";
+$a->strings["Maximum private messages per day from unknown people:"] = "Maksymalna liczba prywatnych wiadomości dziennie od nieznanych osób:";
+$a->strings["Notification Settings"] = "Ustawienia powiadomień";
+$a->strings["By default post a status message when:"] = "Publikuj domyślnie komunikat o stanie, gdy:";
+$a->strings["accepting a friend request"] = "przyjęto prośbę o dodanie do znajomych";
+$a->strings["joining a forum/community"] = "dołączono do forum/społeczności";
+$a->strings["making an interesting profile change"] = "dokonano interesującej zmiany profilu";
+$a->strings["Send a notification email when:"] = "Wyślij powiadmonienia na email, kiedy:";
+$a->strings["You receive an introduction"] = "Otrzymałeś zaproszenie";
+$a->strings["Your introductions are confirmed"] = "Twoje zaproszenie jest potwierdzone";
+$a->strings["Someone writes on your profile wall"] = "Ktoś pisze na twoim profilu";
+$a->strings["Someone writes a followup comment"] = "Ktoś pisze komentarz nawiązujący.";
+$a->strings["You receive a private message"] = "Otrzymałeś prywatną wiadomość";
+$a->strings["You receive a friend suggestion"] = "Otrzymałeś propozycję od znajomych";
+$a->strings["You are tagged in a post"] = "Jesteś oznaczony tagiem w poście";
+$a->strings["You are poked/prodded/etc. in a post"] = "Jesteś zaczepiony/zaczepiona/itp. w poście";
+$a->strings["Activate desktop notifications"] = "Aktywuj powiadomienia na pulpicie";
+$a->strings["Show desktop popup on new notifications"] = "Pokaż wyskakujące okienko dla nowych powiadomień";
+$a->strings["Text-only notification emails"] = "E-maile z powiadomieniami tekstowymi";
+$a->strings["Send text only notification emails, without the html part"] = "Wysyłaj tylko e-maile z powiadomieniami tekstowymi, bez części html";
+$a->strings["Show detailled notifications"] = "Pokaż szczegółowe powiadomienia";
+$a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = "Domyślne powiadomienia są skondensowane z jednym powiadomieniem dla każdego przedmiotu. Po włączeniu wyświetlane jest każde powiadomienie.";
+$a->strings["Advanced Account/Page Type Settings"] = "Zaawansowane ustawienia konta/rodzaju strony";
+$a->strings["Change the behaviour of this account for special situations"] = "Zmień zachowanie tego konta w sytuacjach specjalnych";
+$a->strings["Relocate"] = "Przeniesienie";
+$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."] = "Jeśli ten profil został przeniesiony z innego serwera, a niektóre z Twoich kontaktów nie otrzymają aktualizacji, spróbuj nacisnąć ten przycisk.";
+$a->strings["Resend relocate message to contacts"] = "Wyślij ponownie przenieść wiadomości do kontaktów";
+$a->strings["Account approved."] = "Konto zatwierdzone.";
+$a->strings["Registration revoked for %s"] = "Rejestracja odwołana dla %s";
+$a->strings["Please login."] = "Proszę się zalogować.";
$a->strings["Group created."] = "Grupa utworzona.";
$a->strings["Could not create group."] = "Nie mogę stworzyć grupy";
$a->strings["Group not found."] = "Nie znaleziono grupy";
$a->strings["Group name changed."] = "Nazwa grupy zmieniona";
+$a->strings["Permission denied"] = "Odmowa dostępu";
$a->strings["Save Group"] = "Zapisz grupę";
$a->strings["Create a group of contacts/friends."] = "Stwórz grupę znajomych.";
-$a->strings["Group Name: "] = "Nazwa grupy: ";
$a->strings["Group removed."] = "Grupa usunięta.";
$a->strings["Unable to remove group."] = "Nie można usunąć grupy.";
$a->strings["Delete Group"] = "Usuń grupę";
@@ -613,353 +1271,17 @@ $a->strings["Group Editor"] = "Edytor grupy";
$a->strings["Edit Group Name"] = "Edytuj nazwę grupy";
$a->strings["Members"] = "Członkowie";
$a->strings["All Contacts"] = "Wszystkie kontakty";
-$a->strings["Group is empty"] = "Grupa jest pusta";
$a->strings["Remove Contact"] = "Usuń Kontakt";
$a->strings["Add Contact"] = "Dodaj Kontakt";
-$a->strings["New Message"] = "Nowa wiadomość";
-$a->strings["Unable to locate contact information."] = "Nie można znaleźć informacji kontaktowych.";
-$a->strings["Messages"] = "Wiadomości";
-$a->strings["Do you really want to delete this message?"] = "Czy na pewno chcesz usunąć tę wiadomość?";
-$a->strings["Message deleted."] = "Wiadomość usunięta.";
-$a->strings["Conversation removed."] = "Rozmowa usunięta.";
-$a->strings["No messages."] = "Brak wiadomości.";
-$a->strings["Message not available."] = "Wiadomość nie jest dostępna.";
-$a->strings["Delete message"] = "Usuń wiadomość";
-$a->strings["D, d M Y - g:i A"] = "D, d M R - g:m AM/PM";
-$a->strings["Delete conversation"] = "Usuń rozmowę";
-$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Brak bezpiecznej komunikacji. Możesz odpowiedzieć na stronie profilu nadawcy.";
-$a->strings["Send Reply"] = "Odpowiedz";
-$a->strings["Unknown sender - %s"] = "Nieznany nadawca - %s";
-$a->strings["You and %s"] = "Ty i %s";
-$a->strings["%s and You"] = "%s i ty";
-$a->strings["%d message"] = [
- 0 => " %d wiadomość",
- 1 => " %d wiadomości",
- 2 => " %d wiadomości",
- 3 => " %d wiadomości",
-];
-$a->strings["Personal Notes"] = "Notatki";
-$a->strings["Photo Albums"] = "Albumy zdjęć";
-$a->strings["Recent Photos"] = "Ostatnio dodane zdjęcia";
-$a->strings["Upload New Photos"] = "Wyślij nowe zdjęcie";
-$a->strings["everybody"] = "wszyscy";
-$a->strings["Contact information unavailable"] = "Informacje kontaktowe są niedostępne.";
-$a->strings["Album not found."] = "Album nie znaleziony";
-$a->strings["Delete Album"] = "Usuń album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?";
-$a->strings["Delete Photo"] = "Usuń zdjęcie";
-$a->strings["Do you really want to delete this photo?"] = "Czy na pewno chcesz usunąć to zdjęcie ?";
-$a->strings["a photo"] = "zdjęcie";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$szostał oznaczony tagiem %2\$s przez %3\$s";
-$a->strings["Image upload didn't complete, please try again"] = "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie";
-$a->strings["Image file is missing"] = "Brak pliku obrazu";
-$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem";
-$a->strings["Image file is empty."] = "Plik obrazka jest pusty.";
-$a->strings["No photos selected"] = "Nie zaznaczono zdjęć";
-$a->strings["Access to this item is restricted."] = "Dostęp do tego obiektu jest ograniczony.";
-$a->strings["Upload Photos"] = "Prześlij zdjęcia";
-$a->strings["New album name: "] = "Nazwa nowego albumu:";
-$a->strings["or existing album name: "] = "lub istniejąca nazwa albumu:";
-$a->strings["Do not show a status post for this upload"] = "Nie pokazuj statusu postów dla tego wysłania";
-$a->strings["Permissions"] = "Uprawnienia";
-$a->strings["Show to Groups"] = "Pokaż Grupy";
-$a->strings["Show to Contacts"] = "Pokaż kontakty";
-$a->strings["Edit Album"] = "Edytuj album";
-$a->strings["Show Newest First"] = "Najpierw pokaż najnowsze";
-$a->strings["Show Oldest First"] = "Najpierw pokaż najstarsze";
-$a->strings["View Photo"] = "Zobacz zdjęcie";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Odmowa dostępu. Dostęp do tych danych może być ograniczony.";
-$a->strings["Photo not available"] = "Zdjęcie niedostępne";
-$a->strings["View photo"] = "Zobacz zdjęcie";
-$a->strings["Edit photo"] = "Edytuj zdjęcie";
-$a->strings["Use as profile photo"] = "Ustaw jako zdjęcie profilowe";
-$a->strings["Private Message"] = "Wiadomość prywatna";
-$a->strings["View Full Size"] = "Zobacz w pełnym rozmiarze";
-$a->strings["Tags: "] = "Tagi:";
-$a->strings["[Remove any tag]"] = "[Usunąć znacznik]";
-$a->strings["New album name"] = "Nazwa nowego albumu";
-$a->strings["Caption"] = "Zawartość";
-$a->strings["Add a Tag"] = "Dodaj tag";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["Do not rotate"] = "Nie obracaj";
-$a->strings["Rotate CW (right)"] = "Obróć CW (w prawo)";
-$a->strings["Rotate CCW (left)"] = "Obróć CCW (w lewo)";
-$a->strings["I like this (toggle)"] = "Lubię to (zmień)";
-$a->strings["I don't like this (toggle)"] = "Nie lubię tego (zmień)";
-$a->strings["This is you"] = "To jesteś ty";
-$a->strings["Comment"] = "Komentarz";
-$a->strings["Map"] = "Mapa";
-$a->strings["View Album"] = "Zobacz album";
-$a->strings["Requested profile is not available."] = "Żądany profil jest niedostępny";
-$a->strings["%s's posts"] = "%s posty ";
-$a->strings["%s's comments"] = "%s komentarze ";
-$a->strings["%s's timeline"] = "%s oś czasu ";
-$a->strings["Access to this profile has been restricted."] = "Dostęp do tego profilu został ograniczony.";
-$a->strings["Tips for New Members"] = "Wskazówki dla nowych użytkowników";
-$a->strings["Do you really want to delete this video?"] = "Czy na pewno chcesz usunąć ten film wideo?";
-$a->strings["Delete Video"] = "Usuń wideo";
-$a->strings["No videos selected"] = "Nie zaznaczono filmów";
-$a->strings["Recent Videos"] = "Ostatnio dodane filmy";
-$a->strings["Upload New Videos"] = "Wstaw nowe filmy";
-$a->strings["Events"] = "Wydarzenia";
-$a->strings["View"] = "Widok";
-$a->strings["Previous"] = "Poprzedni";
-$a->strings["Next"] = "Następny";
-$a->strings["today"] = "dzisiaj";
-$a->strings["month"] = "miesiąc";
-$a->strings["week"] = "tydzień";
-$a->strings["day"] = "dzień";
-$a->strings["list"] = "lista";
-$a->strings["User not found"] = "Użytkownik nie znaleziony";
-$a->strings["This calendar format is not supported"] = "Ten format kalendarza nie jest obsługiwany";
-$a->strings["No exportable data found"] = "Nie znaleziono danych do eksportu";
-$a->strings["calendar"] = "kalendarz";
-$a->strings["%d contact edited."] = [
- 0 => "",
- 1 => "",
- 2 => "",
- 3 => "",
-];
-$a->strings["Could not access contact record."] = "Nie można uzyskać dostępu do rejestru kontaktów.";
-$a->strings["Could not locate selected profile."] = "Nie można znaleźć wybranego profilu.";
-$a->strings["Contact updated."] = "Kontakt zaktualizowany";
-$a->strings["Contact has been blocked"] = "Kontakt został zablokowany";
-$a->strings["Contact has been unblocked"] = "Kontakt został odblokowany";
-$a->strings["Contact has been ignored"] = "Kontakt jest ignorowany";
-$a->strings["Contact has been unignored"] = "Kontakt nie jest ignorowany";
-$a->strings["Contact has been archived"] = "Kontakt został zarchiwizowany";
-$a->strings["Contact has been unarchived"] = "Kontakt został przywrócony";
-$a->strings["Drop contact"] = "Usuń kontakt";
-$a->strings["Do you really want to delete this contact?"] = "Czy na pewno chcesz usunąć ten kontakt?";
-$a->strings["Contact has been removed."] = "Kontakt został usunięty.";
-$a->strings["You are mutual friends with %s"] = "Jesteś już znajomym z %s";
-$a->strings["You are sharing with %s"] = "Współdzielisz z %s";
-$a->strings["%s is sharing with you"] = "%s współdzieli z tobą";
-$a->strings["Private communications are not available for this contact."] = "Prywatna rozmowa jest niemożliwa dla tego kontaktu";
-$a->strings["Never"] = "Nigdy";
-$a->strings["(Update was successful)"] = "(Aktualizacja przebiegła pomyślnie)";
-$a->strings["(Update was not successful)"] = "(Aktualizacja nie powiodła się)";
-$a->strings["Suggest friends"] = "Osoby, które możesz znać";
-$a->strings["Network type: %s"] = "Typ sieci: %s";
-$a->strings["Communications lost with this contact!"] = "Utracono komunikację z tym kontaktem!";
-$a->strings["Fetch further information for feeds"] = "Pobierz dalsze informacje dla kanałów";
-$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Pobieranie informacji, takich jak zdjęcia podglądu, tytuł i zwiastun z elementu kanału. Możesz to aktywować, jeśli plik danych nie zawiera dużo tekstu. Słowa kluczowe są pobierane z nagłówka meta w elemencie kanału i są publikowane jako znaczniki haszowania.";
-$a->strings["Disabled"] = "Wyłączony";
-$a->strings["Fetch information"] = "Pobierz informacje";
-$a->strings["Fetch keywords"] = "Pobierz słowa kluczowe";
-$a->strings["Fetch information and keywords"] = "Pobierz informacje i słowa kluczowe";
-$a->strings["Disconnect/Unfollow"] = "Rozłącz/Nie obserwuj";
-$a->strings["Contact"] = "Kontakt";
-$a->strings["Profile Visibility"] = "Widoczność profilu";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Wybierz profil, który chcesz bezpiecznie wyświetlić %s";
-$a->strings["Contact Information / Notes"] = "Informacje kontaktowe/Notatki";
-$a->strings["Their personal note"] = "Ich osobista uwaga";
-$a->strings["Edit contact notes"] = "Edytuj notatki kontaktu";
-$a->strings["Block/Unblock contact"] = "Zablokuj/odblokuj kontakt";
-$a->strings["Ignore contact"] = "Ignoruj kontakt";
-$a->strings["Repair URL settings"] = "Napraw ustawienia adresu";
-$a->strings["View conversations"] = "Wyświetl rozmowy";
-$a->strings["Last update:"] = "Ostatnia aktualizacja:";
-$a->strings["Update public posts"] = "Zaktualizuj publiczne posty";
-$a->strings["Update now"] = "Aktualizuj teraz";
-$a->strings["Unblock"] = "Odblokuj";
-$a->strings["Block"] = "Zablokuj";
-$a->strings["Unignore"] = "Odblokuj";
-$a->strings["Currently blocked"] = "Obecnie zablokowany";
-$a->strings["Currently ignored"] = "Obecnie zignorowany";
-$a->strings["Currently archived"] = "Obecnie zarchiwizowany";
-$a->strings["Awaiting connection acknowledge"] = "Oczekiwanie na potwierdzenie połączenia";
-$a->strings["Replies/likes to your public posts may still be visible"] = "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne";
-$a->strings["Notification for new posts"] = "Powiadomienie o nowych postach";
-$a->strings["Send a notification of every new post of this contact"] = "Wyślij powiadomienie o każdym nowym poście tego kontaktu";
-$a->strings["Blacklisted keywords"] = "Słowa kluczowe na czarnej liście";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Rozdzielana przecinkami lista słów kluczowych, które nie powinny zostać przekonwertowane na hashtagi, gdy wybrana jest opcja 'Pobierz informacje i słowa kluczowe'";
-$a->strings["XMPP:"] = "XMPP:";
-$a->strings["Actions"] = "Akcja";
-$a->strings["Status"] = "Status";
-$a->strings["Contact Settings"] = "Ustawienia kontaktów";
-$a->strings["Suggestions"] = "Sugestie";
-$a->strings["Suggest potential friends"] = "Sugerowani znajomi";
-$a->strings["Show all contacts"] = "Pokaż wszystkie kontakty";
-$a->strings["Unblocked"] = "Odblokowany";
-$a->strings["Only show unblocked contacts"] = "Pokaż tylko odblokowane kontakty";
-$a->strings["Blocked"] = "Zablokowany";
-$a->strings["Only show blocked contacts"] = "Pokaż tylko zablokowane kontakty";
-$a->strings["Ignored"] = "Zignorowany";
-$a->strings["Only show ignored contacts"] = "Pokaż tylko ignorowane kontakty";
-$a->strings["Archived"] = "Zarchiwizowane";
-$a->strings["Only show archived contacts"] = "Pokaż tylko zarchiwizowane kontakty";
-$a->strings["Hidden"] = "Ukryty";
-$a->strings["Only show hidden contacts"] = "Pokaż tylko ukryte kontakty";
-$a->strings["Search your contacts"] = "Wyszukaj w kontaktach";
-$a->strings["Find"] = "Znajdź";
-$a->strings["Update"] = "Zaktualizuj";
-$a->strings["Archive"] = "Archiwum";
-$a->strings["Unarchive"] = "Przywróć z archiwum";
-$a->strings["Batch Actions"] = "Akcje wsadowe";
-$a->strings["Status Messages and Posts"] = "Status wiadomości i postów";
-$a->strings["Profile Details"] = "Szczegóły profilu";
-$a->strings["View all contacts"] = "Zobacz wszystkie kontakty";
-$a->strings["View all common friends"] = "Zobacz wszystkich popularnych znajomych";
-$a->strings["Advanced"] = "Zaawansowany";
-$a->strings["Advanced Contact Settings"] = "Zaawansowane ustawienia kontaktów";
-$a->strings["Mutual Friendship"] = "Wzajemna przyjaźń";
-$a->strings["is a fan of yours"] = "jest twoim fanem";
-$a->strings["you are a fan of"] = "jesteś fanem";
-$a->strings["Toggle Blocked status"] = "Przełącz na Zablokowany";
-$a->strings["Toggle Ignored status"] = "Przełącz ignorowany status";
-$a->strings["Toggle Archive status"] = "Przełącz status archiwum";
-$a->strings["Delete contact"] = "Usuń kontakt";
-$a->strings["Parent user not found."] = "Nie znaleziono użytkownika nadrzędnego.";
-$a->strings["No parent user"] = "Brak nadrzędnego użytkownika";
-$a->strings["Parent Password:"] = "Hasło nadrzędne:";
-$a->strings["Please enter the password of the parent account to legitimize your request."] = "Wprowadź hasło konta nadrzędnego, aby legalizować swoje żądanie.";
-$a->strings["Parent User"] = "Użytkownik nadrzędny";
-$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "Użytkownicy nadrzędni mają pełną kontrolę nad tym kontem, w tym także ustawienia konta. Sprawdź dokładnie, komu przyznasz ten dostęp.";
-$a->strings["Save Settings"] = "Zapisz ustawienia";
-$a->strings["Delegate Page Management"] = "Deleguj zarządzanie stronami";
-$a->strings["Delegates"] = "Oddeleguj";
-$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."] = "Delegaci mogą zarządzać wszystkimi aspektami tego konta/strony, z wyjątkiem podstawowych ustawień konta. Nie przekazuj swojego konta osobistego nikomu, komu nie ufasz całkowicie.";
-$a->strings["Existing Page Delegates"] = "Obecni delegaci stron";
-$a->strings["Potential Delegates"] = "Potencjalni delegaci";
-$a->strings["Add"] = "Dodaj";
-$a->strings["No entries."] = "Brak wpisów.";
-$a->strings["Event can not end before it has started."] = "Wydarzenie nie może się zakończyć przed jego rozpoczęciem.";
-$a->strings["Event title and start time are required."] = "Wymagany tytuł wydarzenia i czas rozpoczęcia.";
-$a->strings["Create New Event"] = "Stwórz nowe wydarzenie";
-$a->strings["Event details"] = "Szczegóły wydarzenia";
-$a->strings["Starting date and Title are required."] = "Data rozpoczęcia i tytuł są wymagane.";
-$a->strings["Event Starts:"] = "Rozpoczęcie wydarzenia:";
-$a->strings["Required"] = "Wymagany";
-$a->strings["Finish date/time is not known or not relevant"] = "Data/czas zakończenia nie jest znana lub jest nieistotna";
-$a->strings["Event Finishes:"] = "Zakończenie wydarzenia:";
-$a->strings["Adjust for viewer timezone"] = "Dopasuj dla strefy czasowej widza";
-$a->strings["Description:"] = "Opis:";
-$a->strings["Title:"] = "Tytuł:";
-$a->strings["Share this event"] = "Udostępnij te wydarzenie";
-$a->strings["Basic"] = "Podstawowy";
-$a->strings["Failed to remove event"] = "Nie udało się usunąć wydarzenia";
-$a->strings["Event removed"] = "Wydarzenie zostało usunięte";
-$a->strings["You must be logged in to use this module"] = "Musisz być zalogowany, aby korzystać z tego modułu";
-$a->strings["Source URL"] = "Źródłowy adres URL";
-$a->strings["Friendica Communications Server - Setup"] = "Friendica Serwer Komunikacyjny - Instalacja";
-$a->strings["Could not connect to database."] = "Nie można nawiązać połączenia z bazą danych";
-$a->strings["Could not create table."] = "Nie mogę stworzyć tabeli.";
-$a->strings["Your Friendica site database has been installed."] = "Twoja baza danych witryny Friendica została zainstalowana.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Proszę przejrzeć plik \"INSTALL.txt\".";
-$a->strings["Database already in use."] = "Baza danych jest już w użyciu.";
-$a->strings["System check"] = "Sprawdzanie systemu";
-$a->strings["Check again"] = "Sprawdź ponownie";
-$a->strings["Database connection"] = "Połączenie z bazą danych";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień .";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją.";
-$a->strings["Database Server Name"] = "Nazwa serwera bazy danych";
-$a->strings["Database Login Name"] = "Nazwa użytkownika bazy danych";
-$a->strings["Database Login Password"] = "Hasło logowania do bazy danych";
-$a->strings["For security reasons the password must not be empty"] = "Ze względów bezpieczeństwa hasło nie może być puste";
-$a->strings["Database Name"] = "Nazwa bazy danych";
-$a->strings["Site administrator email address"] = "Adres e-mail administratora strony";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Adres e-mail konta musi pasować do tego, aby móc korzystać z panelu administracyjnego.";
-$a->strings["Please select a default timezone for your website"] = "Proszę wybrać domyślną strefę czasową dla swojej strony";
-$a->strings["Site settings"] = "Ustawienia strony";
-$a->strings["System Language:"] = "Język systemu:";
-$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Ustaw domyślny język dla interfejsu instalacyjnego Friendica i wysyłaj e-maile.";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nie można znaleźć wersji PHP komendy w serwerze PATH";
-$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker' "] = "Jeśli nie masz zainstalowanej na serwerze wersji PHP z wiersza poleceń, nie będziesz mógł uruchomić przetwarzania w tle. Zobacz 'Konfiguracja pracownika' ";
-$a->strings["PHP executable path"] = "Ścieżka wykonywalna PHP";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Wprowadź pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole puste, aby kontynuować instalację.";
-$a->strings["Command line PHP"] = "Linia komend PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Plik wykonywalny PHP nie jest php cli binarny (może być wersją cgi-fgci)";
-$a->strings["Found PHP version: "] = "Znaleziono wersje PHP:";
-$a->strings["PHP cli binary"] = "PHP cli binarny";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\".";
-$a->strings["This is required for message delivery to work."] = "Jest wymagane, aby dostarczanie wiadomości działało.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować kluczy szyfrujących";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Generuj klucz kodowania";
-$a->strings["libCurl PHP module"] = "Moduł libCurl PHP";
-$a->strings["GD graphics PHP module"] = "Moduł PHP-GD";
-$a->strings["OpenSSL PHP module"] = "Moduł PHP OpenSSL";
-$a->strings["PDO or MySQLi PHP module"] = "Moduł PDO lub MySQLi PHP";
-$a->strings["mb_string PHP module"] = "Moduł mb_string PHP";
-$a->strings["XML PHP module"] = "Moduł XML PHP";
-$a->strings["iconv PHP module"] = "Moduł PHP iconv";
-$a->strings["POSIX PHP module"] = "Moduł POSIX PHP";
-$a->strings["Apache mod_rewrite module"] = "Moduł Apache mod_rewrite";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany.";
-$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Błąd: Wymagany moduł PDO lub MySQLi PHP, ale nie zainstalowany.";
-$a->strings["Error: The MySQL driver for PDO is not installed."] = "Błąd: Sterownik MySQL dla PDO nie jest zainstalowany.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany";
-$a->strings["Error: iconv PHP module required but not installed."] = "Błąd: wymagany moduł PHP iconv, ale nie zainstalowany.";
-$a->strings["Error: POSIX PHP module required but not installed."] = "Błąd: wymagany moduł POSIX PHP, ale nie zainstalowany.";
-$a->strings["Error, XML PHP module required but not installed."] = "Błąd, wymagany moduł XML PHP, ale nie zainstalowany.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\" i nie jest w stanie tego zrobić.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Jest to najczęściej ustawienie uprawnień, ponieważ serwer sieciowy może nie być w stanie zapisywać plików w folderze - nawet jeśli możesz.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Pod koniec tej procedury podamy Ci tekst do zapisania w pliku o nazwie .htconfig.php w twoim górnym folderze Friendica.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternatywnie można pominąć tę procedurę i wykonać ręczną instalację. Proszę zobaczyć plik 'INSTALL.txt' z instrukcjami.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php jest zapisywalny";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica używa silnika szablonów Smarty3 do renderowania swoich widoków. Smarty3 kompiluje szablony do PHP, aby przyspieszyć renderowanie.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Aby przechowywać te skompilowane szablony, serwer WWW musi mieć dostęp do zapisu do katalogu view/smarty3/ w folderze najwyższego poziomu Friendica.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Upewnij się, że użytkownik, na którym działa serwer WWW (np. www-data), ma prawo do zapisu do tego folderu.";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Uwaga: jako środek bezpieczeństwa, powinieneś dać serwerowi dostęp do zapisu view/smarty3/ jedynie - nie do plików szablonów (.tpl), które zawiera.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 jest zapisywalny";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Nie działa URL w .htaccess popraw. Sprawdź konfigurację serwera.";
-$a->strings["Url rewrite is working"] = "Działający adres URL";
-$a->strings["ImageMagick PHP extension is not installed"] = "Rozszerzenie PHP ImageMagick nie jest zainstalowane";
-$a->strings["ImageMagick PHP extension is installed"] = "Rozszerzenie PHP ImageMagick jest zainstalowane";
-$a->strings["ImageMagick supports GIF"] = "ImageMagick obsługuje 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."] = "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera.";
-$a->strings["What next "] = "Co dalej ";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "WAŻNE: Będziesz musiał [ręcznie] ustawić zaplanowane zadanie dla pracownika.";
-$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Przejdź do strony rejestracji nowego węzła Friendica i zarejestruj się jako nowy użytkownik. Pamiętaj, aby użyć adresu e-mail wprowadzonego jako e-mail administratora. To pozwoli Ci wejść do panelu administratora witryny.";
-$a->strings["Unable to locate original post."] = "Nie można zlokalizować oryginalnej wiadomości.";
-$a->strings["Empty post discarded."] = "Pusty wpis został odrzucony.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica";
-$a->strings["You may visit them online at %s"] = "Możesz odwiedzić ich online pod adresem %s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości.";
-$a->strings["%s posted an update."] = "%s zaktualizował wpis.";
-$a->strings["Post successful."] = "Post dodany pomyślnie";
-$a->strings["Subscribing to OStatus contacts"] = "Subskrybowanie kontaktów OStatus";
-$a->strings["No contact provided."] = "Brak kontaktu.";
-$a->strings["Couldn't fetch information for contact."] = "Nie można pobrać informacji o kontakcie.";
-$a->strings["Couldn't fetch friends for contact."] = "Nie można pobrać znajomych do kontaktu.";
-$a->strings["success"] = "powodzenie";
-$a->strings["failed"] = "nie powiodło się";
-$a->strings["ignored"] = "Ignoruj";
-$a->strings["Image uploaded but image cropping failed."] = "Zdjęcie zostało przesłane, ale przycinanie obrazu nie powiodło się.";
-$a->strings["Image size reduction [%s] failed."] = "Redukcja rozmiaru obrazka [%s] nie powiodła się.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ponownie załaduj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie nie pojawi się natychmiast.";
-$a->strings["Unable to process image"] = "Nie udało się przetworzyć obrazu.";
-$a->strings["Upload File:"] = "Wyślij plik:";
-$a->strings["Select a profile:"] = "Wybierz profil:";
-$a->strings["or"] = "lub";
-$a->strings["skip this step"] = "pomiń ten krok";
-$a->strings["select a photo from your photo albums"] = "wybierz zdjęcie z twojego albumu";
-$a->strings["Crop Image"] = "Przytnij zdjęcie";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Dostosuj kadrowanie obrazu, aby uzyskać optymalny obraz.";
-$a->strings["Done Editing"] = "Zakończono edycję";
-$a->strings["Image uploaded successfully."] = "Zdjęcie wczytano pomyślnie ";
-$a->strings["Contact wasn't found or can't be unfollowed."] = "Kontakt nie został znaleziony lub nie można go pominąć.";
-$a->strings["Contact unfollowed"] = "Skontaktuj się z obserwowanym";
-$a->strings["You aren't a friend of this contact."] = "Nie jesteś przyjacielem tego kontaktu.";
-$a->strings["Unfollowing is currently not supported by your network."] = "Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć.";
+$a->strings["Click on a contact to add or remove."] = "Kliknij na kontakt w celu dodania lub usunięcia.";
+$a->strings["Files"] = "Pliki";
$a->strings["Theme settings updated."] = "Zaktualizowano ustawienia motywów.";
-$a->strings["Information"] = "Informacje";
$a->strings["Overview"] = "Przegląd";
$a->strings["Federation Statistics"] = "Statystyki Organizacji";
$a->strings["Configuration"] = "Konfiguracja";
$a->strings["Site"] = "Strona";
$a->strings["Users"] = "Użytkownicy";
-$a->strings["Addons"] = "Dodatki";
$a->strings["Themes"] = "Wygląd";
-$a->strings["Additional features"] = "Dodatkowe funkcje";
-$a->strings["Terms of Service"] = "Warunki usługi";
$a->strings["Database"] = "Baza danych";
$a->strings["DB updates"] = "Aktualizacje DB";
$a->strings["Inspect Queue"] = "Sprawdź kolejkę";
@@ -973,7 +1295,6 @@ $a->strings["Diagnostics"] = "Diagnostyka";
$a->strings["PHP Info"] = "Informacje o PHP";
$a->strings["probe address"] = "adres sondy";
$a->strings["check webfinger"] = "sprawdź webfinger";
-$a->strings["Admin"] = "Administator";
$a->strings["Addon Features"] = "Funkcje dodatkowe";
$a->strings["User registrations waiting for confirmation"] = "Rejestracje użytkownika czekają na potwierdzenie.";
$a->strings["Administration"] = "Administracja";
@@ -984,7 +1305,6 @@ $a->strings["Show some informations regarding the needed information to operate
$a->strings["The Terms of Service"] = "Warunki świadczenia usług";
$a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "Wprowadź tutaj Warunki świadczenia usług dla swojego węzła. Możesz użyć BBCode. Nagłówki sekcji powinny być [h2] i poniżej.";
$a->strings["The blocked domain"] = "Zablokowana domena";
-$a->strings["Reason for the block"] = "Powód blokowania";
$a->strings["The reason why you blocked this domain."] = "Powód zablokowania tej domeny.";
$a->strings["Delete domain"] = "Usuń domenę";
$a->strings["Check to delete this entry from the blocklist"] = "Zaznacz, aby usunąć ten wpis z listy bloków";
@@ -1001,8 +1321,6 @@ $a->strings["Delete entry from blocklist"] = "Usuń wpis z listy zablokowanych";
$a->strings["Delete entry from blocklist?"] = "Usunąć wpis z listy zablokowanych?";
$a->strings["Server added to blocklist."] = "Serwer dodany do listy zablokowanych.";
$a->strings["Site blocklist updated."] = "Zaktualizowano listę bloków witryny.";
-$a->strings["The contact has been blocked from the node"] = "Kontakt został zablokowany w węźle";
-$a->strings["Could not find any contact entry for this URL (%s)"] = "Nie można znaleźć żadnego kontaktu dla tego adresu URL (%s)";
$a->strings["%s contact unblocked"] = [
0 => "",
1 => "",
@@ -1014,11 +1332,13 @@ $a->strings["This page allows you to prevent any message from a remote contact t
$a->strings["Block Remote Contact"] = "Zablokuj kontakt zdalny";
$a->strings["select all"] = "Zaznacz wszystko";
$a->strings["select none"] = "wybierz brak";
+$a->strings["Block"] = "Zablokuj";
+$a->strings["Unblock"] = "Odblokuj";
$a->strings["No remote contact is blocked from this node."] = "Z tego węzła nie jest blokowany kontakt zdalny.";
$a->strings["Blocked Remote Contacts"] = "Zablokowane kontakty zdalne";
$a->strings["Block New Remote Contact"] = "Zablokuj nowy kontakt zdalny";
$a->strings["Photo"] = "Zdjęcie";
-$a->strings["Address"] = "Adres";
+$a->strings["Profile URL"] = "Adres URL profilu";
$a->strings["%s total blocked contact"] = [
0 => "",
1 => "",
@@ -1039,7 +1359,6 @@ $a->strings["Currently this node is aware of %d nodes with %d registered users f
$a->strings["ID"] = "ID";
$a->strings["Recipient Name"] = "Nazwa odbiorcy";
$a->strings["Recipient Profile"] = "Profil odbiorcy";
-$a->strings["Network"] = "Sieć";
$a->strings["Created"] = "Utwórz";
$a->strings["Last Tried"] = "Ostatnia wypróbowana";
$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."] = "Na tej stronie znajduje się zawartość kolejki dla wysyłek wychodzących. Są to posty, dla których początkowe wysyłanie nie powiodło się. Zostaną one ponownie wysłane później i ostatecznie usunięte, jeśli doręczenie zakończy się trwale.";
@@ -1062,11 +1381,11 @@ $a->strings["Version"] = "Wersja";
$a->strings["Active addons"] = "Aktywne dodatki";
$a->strings["Can not parse base url. Must have at least ://"] = "Nie można zanalizować podstawowego adresu URL. Musi mieć co najmniej : //";
$a->strings["Site settings updated."] = "Ustawienia strony zaktualizowane";
-$a->strings["No special theme for mobile devices"] = "Brak specialnego motywu dla urządzeń mobilnych";
$a->strings["No community page"] = "Brak strony społeczności";
$a->strings["Public postings from users of this site"] = "Publikacje publiczne od użytkowników tej strony";
$a->strings["Public postings from the federated network"] = "Publikacje wpisy ze sfederowanej sieci";
$a->strings["Public postings from local users and the federated network"] = "Publikacje publiczne od użytkowników lokalnych i sieci federacyjnej";
+$a->strings["Disabled"] = "Wyłączony";
$a->strings["Users, Global Contacts"] = "Użytkownicy, kontakty globalne";
$a->strings["Users, Global Contacts/fallback"] = "Użytkownicy, kontakty globalne/awaryjne";
$a->strings["One month"] = "Miesiąc";
@@ -1074,9 +1393,9 @@ $a->strings["Three months"] = "Trzy miesiące";
$a->strings["Half a year"] = "Pół roku";
$a->strings["One year"] = "Rok";
$a->strings["Multi user instance"] = "Tryb wielu użytkowników";
-$a->strings["Closed"] = "Zamknięta";
+$a->strings["Closed"] = "Zamknięte";
$a->strings["Requires approval"] = "Wymagane zatwierdzenie.";
-$a->strings["Open"] = "Otwarte";
+$a->strings["Open"] = "Otwarta";
$a->strings["No SSL policy, links will track page SSL state"] = "Brak SSL , linki będą śledzić stan SSL .";
$a->strings["Force all links to use SSL"] = "Wymuś by linki używały SSL.";
$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Wewnętrzne Certyfikaty , użyj SSL tylko dla linków lokalnych . ";
@@ -1085,8 +1404,8 @@ $a->strings["check the stable version"] = "sprawdź wersję stabilną";
$a->strings["check the development version"] = "sprawdź wersję rozwojową";
$a->strings["Republish users to directory"] = "Ponownie opublikuj użytkowników w katalogu";
$a->strings["Registration"] = "Rejestracja";
-$a->strings["File upload"] = "Plik załadowano";
-$a->strings["Policies"] = "zasady";
+$a->strings["File upload"] = "Przesyłanie plików";
+$a->strings["Policies"] = "Zasady";
$a->strings["Auto Discovered Contact Directory"] = "Katalog kontaktów automatycznie odkrytych";
$a->strings["Performance"] = "Ustawienia";
$a->strings["Worker"] = "Pracownik";
@@ -1119,9 +1438,9 @@ $a->strings["Make this instance multi-user or single-user for the named user"] =
$a->strings["Maximum image size"] = "Maksymalny rozmiar zdjęcia";
$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maksymalny rozmiar w bitach dla wczytywanego obrazu . Domyślnie jest to 0 , co oznacza bez limitu .";
$a->strings["Maximum image length"] = "Maksymalna długość obrazu";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu.";
-$a->strings["JPEG image quality"] = "jakość obrazu JPEG";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Wczytywanie JPEGS będzie zapisane z tymi ustawieniami jakości [0-100] . Domyslnie jest ustawione 100 co oznacza brak strat jakości . ";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maksymalna długość w pikselach dłuższego boku przesyłanego obrazu. Wartością domyślną jest -1, co oznacza brak ograniczeń.";
+$a->strings["JPEG image quality"] = "Jakość obrazu JPEG";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Przesłane pliki JPEG zostaną zapisane w tym ustawieniu jakości [0-100]. Domyślna wartość to 100, która jest pełną jakością.";
$a->strings["Register policy"] = "Zasady rejestracji";
$a->strings["Maximum Daily Registrations"] = "Maksymalna dzienna rejestracja";
$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Jeśli rejestracja powyżej jest dozwolona, to określa maksymalną liczbę nowych rejestracji użytkowników do zaakceptowania na dzień. Jeśli rejestracja jest ustawiona na \"Zamknięta\", to ustawienie to nie ma wpływu.";
@@ -1130,7 +1449,7 @@ $a->strings["Will be displayed prominently on the registration page. You can use
$a->strings["Accounts abandoned after x days"] = "Konto porzucone od x dni.";
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Nie będzie marnować zasobów systemu wypytując zewnętrzne strony o opuszczone konta. Ustaw 0 dla braku limitu czasu .";
$a->strings["Allowed friend domains"] = "Dozwolone domeny przyjaciół";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista domen separowana przecinkami które mogą zaprzyjaźnić się z tą stroną . Wildcards są akceptowane . Pozostaw puste by zezwolić każdej domenie na zapryjaźnienie. ";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Rozdzielana przecinkami lista domen, które mogą nawiązywać przyjaźnie z tą witryną. Symbole wieloznaczne są akceptowane. Pozostaw puste by zezwolić każdej domenie na zaprzyjaźnienie.";
$a->strings["Allowed email domains"] = "Dozwolone domeny e-mailowe";
$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Rozdzielana przecinkami lista domen dozwolonych w adresach e-mail do rejestracji na tej stronie. Symbole wieloznaczne są akceptowane. Opróżnij, aby zezwolić na dowolne domeny";
$a->strings["No OEmbed rich content"] = "Brak treści multimedialnych ze znaczkiem HTML";
@@ -1180,7 +1499,7 @@ $a->strings["Proxy URL"] = "URL Proxy";
$a->strings["Network timeout"] = "Network timeout";
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wartość jest w sekundach. Ustaw na 0 dla nieograniczonej (niezalecane).";
$a->strings["Maximum Load Average"] = "Maksymalne obciążenie średnie";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maksymalne obciążenie systemu przed dostawą i odpytywaniem jest odroczone - domyślnie 50.";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maksymalne obciążenie systemu przed dostawą i odpytywaniem jest odłożone - domyślnie 50.";
$a->strings["Maximum Load Average (Frontend)"] = "Maksymalne obciążenie średnie (Frontend)";
$a->strings["Maximum system load before the frontend quits service - default 50."] = "Maksymalne obciążenie systemu, zanim frontend zakończy pracę - domyślnie 50.";
$a->strings["Minimal Memory"] = "Minimalna pamięć";
@@ -1261,7 +1580,6 @@ $a->strings["Mark success (if update was manually applied)"] = "Oznacz sukces (j
$a->strings["Attempt to execute this update step automatically"] = "Spróbuj automatycznie wykonać ten krok aktualizacji";
$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tSzanowny/a Panie/Pani %1\$s, \n\t\t\t\tadministrator %2\$s założył dla ciebie konto.";
$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\t\tThank you and welcome to %4\$s."] = "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%1\$s\n\t\t\tNazwa użytkownika:%2\$s\n\t\t\tHasło:%3\$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\"\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i\n\t\t\tbyć może w jakim kraju mieszkasz; jeśli nie chcesz być bardziej szczegółowy.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić w %1\$s/Usuń konto\n\n\t\t\tDziękujemy i Zapraszamy do%4\$s";
-$a->strings["Registration details for %s"] = "Szczegóły rejestracji dla %s";
$a->strings["%s user blocked/unblocked"] = [
0 => "",
1 => "",
@@ -1277,17 +1595,18 @@ $a->strings["%s user deleted"] = [
$a->strings["User '%s' deleted"] = "Użytkownik '%s' usunięty";
$a->strings["User '%s' unblocked"] = "Użytkownik '%s' odblokowany";
$a->strings["User '%s' blocked"] = "Użytkownik '%s' zablokowany";
-$a->strings["Email"] = "E-mail";
+$a->strings["Private Forum"] = "Prywatne forum";
$a->strings["Register date"] = "Data rejestracji";
$a->strings["Last login"] = "Ostatnie logowanie";
$a->strings["Last item"] = "Ostatni element";
-$a->strings["Account"] = "Konto";
+$a->strings["Type"] = "Typu";
$a->strings["Add User"] = "Dodaj użytkownika";
-$a->strings["User registrations waiting for confirm"] = "zarejestrowany użytkownik czeka na potwierdzenie";
+$a->strings["User registrations waiting for confirm"] = "Zarejestrowani użytkownicy czekający na potwierdzenie";
$a->strings["User waiting for permanent deletion"] = "Użytkownik czekający na trwałe usunięcie";
$a->strings["Request date"] = "Data prośby";
-$a->strings["No registrations."] = "brak rejestracji";
+$a->strings["No registrations."] = "Brak rejestracji.";
$a->strings["Note from the user"] = "Uwaga od użytkownika";
+$a->strings["Approve"] = "Zatwierdź";
$a->strings["Deny"] = "Odmów";
$a->strings["Site admin"] = "Administracja stroną";
$a->strings["Account expired"] = "Konto wygasło.";
@@ -1326,11 +1645,414 @@ $a->strings["PHP logging"] = "Logowanie w PHP";
$a->strings["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."] = "Aby włączyć rejestrowanie błędów i ostrzeżeń PHP, możesz dodać następujące dane do pliku .htconfig.php instalacji. Nazwa pliku ustawiona w linii 'error_log' odnosi się do katalogu najwyższego poziomu friendiki i musi być zapisywalna przez serwer WWW. Opcja '1' dla 'log_errors' i 'display_errors' polega na włączeniu tych opcji, ustawieniu na '0', aby je wyłączyć.";
$a->strings["Error trying to open %1\$s log file.\\r\\n Check to see if file %1\$s exist and is readable."] = "Błąd podczas próby otwarcia %1\$s pliku dziennika. \\r\\n Sprawdź, czy plik %1\$s istnieje i czy można go odczytać.";
$a->strings["Couldn't open %1\$s log file.\\r\\n Check to see if file %1\$s is readable."] = "Nie można otworzyć %1\$s pliku dziennika. \\r\\n Sprawdź, czy plik %1\$s jest czytelny.";
-$a->strings["Off"] = "Wyłącz";
-$a->strings["On"] = "Włącz";
$a->strings["Lock feature %s"] = "Funkcja blokady %s";
-$a->strings["Manage Additional Features"] = "Zarządzaj dodatkowymi funkcjami";
+$a->strings["Manage Additional Features"] = "Zarządzanie dodatkowymi funkcjami";
+$a->strings["Parent user not found."] = "Nie znaleziono użytkownika nadrzędnego.";
+$a->strings["No parent user"] = "Brak nadrzędnego użytkownika";
+$a->strings["Parent Password:"] = "Hasło nadrzędne:";
+$a->strings["Please enter the password of the parent account to legitimize your request."] = "Wprowadź hasło konta nadrzędnego, aby legalizować swoje żądanie.";
+$a->strings["Parent User"] = "Użytkownik nadrzędny";
+$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "Użytkownicy nadrzędni mają pełną kontrolę nad tym kontem, w tym także ustawienia konta. Sprawdź dokładnie, komu przyznasz ten dostęp.";
+$a->strings["Delegates"] = "Oddeleguj";
+$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."] = "Delegaci mogą zarządzać wszystkimi aspektami tego konta/strony, z wyjątkiem podstawowych ustawień konta. Nie przekazuj swojego konta osobistego nikomu, komu nie ufasz całkowicie.";
+$a->strings["Existing Page Delegates"] = "Obecni delegaci stron";
+$a->strings["Potential Delegates"] = "Potencjalni delegaci";
+$a->strings["Remove"] = "Usuń";
+$a->strings["Add"] = "Dodaj";
+$a->strings["No entries."] = "Brak wpisów.";
+$a->strings["Recent Photos"] = "Ostatnio dodane zdjęcia";
+$a->strings["Upload New Photos"] = "Wyślij nowe zdjęcie";
+$a->strings["Contact information unavailable"] = "Informacje kontaktowe są niedostępne.";
+$a->strings["Album not found."] = "Album nie znaleziony";
+$a->strings["Delete Album"] = "Usuń album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?";
+$a->strings["Delete Photo"] = "Usuń zdjęcie";
+$a->strings["Do you really want to delete this photo?"] = "Czy na pewno chcesz usunąć to zdjęcie ?";
+$a->strings["a photo"] = "zdjęcie";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$szostał oznaczony tagiem %2\$s przez %3\$s";
+$a->strings["Image upload didn't complete, please try again"] = "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie";
+$a->strings["Image file is missing"] = "Brak pliku obrazu";
+$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem";
+$a->strings["Image file is empty."] = "Plik obrazka jest pusty.";
+$a->strings["No photos selected"] = "Nie zaznaczono zdjęć";
+$a->strings["Access to this item is restricted."] = "Dostęp do tego obiektu jest ograniczony.";
+$a->strings["Upload Photos"] = "Prześlij zdjęcia";
+$a->strings["New album name: "] = "Nazwa nowego albumu:";
+$a->strings["or existing album name: "] = "lub istniejąca nazwa albumu:";
+$a->strings["Do not show a status post for this upload"] = "Nie pokazuj statusu postów dla tego wysłania";
+$a->strings["Edit Album"] = "Edytuj album";
+$a->strings["Show Newest First"] = "Najpierw pokaż najnowsze";
+$a->strings["Show Oldest First"] = "Najpierw pokaż najstarsze";
+$a->strings["View Photo"] = "Zobacz zdjęcie";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Odmowa dostępu. Dostęp do tych danych może być ograniczony.";
+$a->strings["Photo not available"] = "Zdjęcie niedostępne";
+$a->strings["View photo"] = "Zobacz zdjęcie";
+$a->strings["Edit photo"] = "Edytuj zdjęcie";
+$a->strings["Use as profile photo"] = "Ustaw jako zdjęcie profilowe";
+$a->strings["View Full Size"] = "Zobacz w pełnym rozmiarze";
+$a->strings["Tags: "] = "Tagi:";
+$a->strings["[Remove any tag]"] = "[Usunąć znacznik]";
+$a->strings["New album name"] = "Nazwa nowego albumu";
+$a->strings["Caption"] = "Zawartość";
+$a->strings["Add a Tag"] = "Dodaj tag";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["Do not rotate"] = "Nie obracaj";
+$a->strings["Rotate CW (right)"] = "Obróć CW (w prawo)";
+$a->strings["Rotate CCW (left)"] = "Obróć CCW (w lewo)";
+$a->strings["Map"] = "Mapa";
+$a->strings["View Album"] = "Zobacz album";
+$a->strings["Edit contact"] = "Edytuj kontakt";
+$a->strings["Contacts who are not members of a group"] = "Kontakty spoza członków grupy";
+$a->strings["Community option not available."] = "Opcja wspólnotowa jest niedostępna.";
+$a->strings["Not available."] = "Niedostępne.";
+$a->strings["Local Community"] = "Lokalna społeczność";
+$a->strings["Posts from local users on this server"] = "Wpisy od lokalnych użytkowników na tym serwerze";
+$a->strings["Global Community"] = "Globalna społeczność";
+$a->strings["Posts from users of the whole federated network"] = "Wpisy od użytkowników całej sieci stowarzyszonej";
+$a->strings["No results."] = "Brak wyników.";
+$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Ten strumień społeczności pokazuje wszystkie publiczne posty otrzymane przez ten węzeł. Mogą nie odzwierciedlać opinii użytkowników tego węzła.";
+$a->strings["No recipient selected."] = "Nie wybrano odbiorcy.";
+$a->strings["Unable to locate contact information."] = "Nie można znaleźć informacji kontaktowych.";
+$a->strings["Message could not be sent."] = "Wiadomość nie może zostać wysłana";
+$a->strings["Message collection failure."] = "Błąd zbierania komunikatów.";
+$a->strings["Message sent."] = "Wysłano.";
+$a->strings["Do you really want to delete this message?"] = "Czy na pewno chcesz usunąć tę wiadomość?";
+$a->strings["Message deleted."] = "Wiadomość usunięta.";
+$a->strings["Conversation removed."] = "Rozmowa usunięta.";
+$a->strings["Send Private Message"] = "Wyślij prywatną wiadomość";
+$a->strings["To:"] = "Do:";
+$a->strings["Subject:"] = "Temat:";
+$a->strings["No messages."] = "Brak wiadomości.";
+$a->strings["Message not available."] = "Wiadomość nie jest dostępna.";
+$a->strings["Delete message"] = "Usuń wiadomość";
+$a->strings["D, d M Y - g:i A"] = "D, d M R - g:m AM/PM";
+$a->strings["Delete conversation"] = "Usuń rozmowę";
+$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Brak bezpiecznej komunikacji. Możesz odpowiedzieć na stronie profilu nadawcy.";
+$a->strings["Send Reply"] = "Odpowiedz";
+$a->strings["Unknown sender - %s"] = "Nieznany nadawca - %s";
+$a->strings["You and %s"] = "Ty i %s";
+$a->strings["%s and You"] = "%s i ty";
+$a->strings["%d message"] = [
+ 0 => " %d wiadomość",
+ 1 => " %d wiadomości",
+ 2 => " %d wiadomości",
+ 3 => " %d wiadomości",
+];
+$a->strings["Do you really want to delete this video?"] = "Czy na pewno chcesz usunąć ten film wideo?";
+$a->strings["Delete Video"] = "Usuń wideo";
+$a->strings["No videos selected"] = "Nie zaznaczono filmów";
+$a->strings["Recent Videos"] = "Ostatnio dodane filmy";
+$a->strings["Upload New Videos"] = "Wstaw nowe filmy";
+$a->strings["Credits"] = "Zaufany";
+$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 to projekt społecznościowy, który nie byłby możliwy bez pomocy wielu osób. Oto lista osób, które przyczyniły się do tworzenia kodu lub tłumaczenia Friendica. Dziękuję wam wszystkim!";
+$a->strings["Contact wasn't found or can't be unfollowed."] = "Kontakt nie został znaleziony lub nie można go pominąć.";
+$a->strings["Contact unfollowed"] = "Skontaktuj się z obserwowanym";
+$a->strings["Submit Request"] = "Wyślij zgłoszenie";
+$a->strings["You aren't a friend of this contact."] = "Nie jesteś przyjacielem tego kontaktu.";
+$a->strings["Unfollowing is currently not supported by your network."] = "Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć.";
+$a->strings["Disconnect/Unfollow"] = "Rozłącz/Nie obserwuj";
+$a->strings["Your Identity Address:"] = "Twój adres tożsamości:";
+$a->strings["Invalid request."] = "Nieprawidłowe żądanie.";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Przepraszam, może twój przesyłany plik jest większy niż pozwala konfiguracja PHP";
+$a->strings["Or - did you try to upload an empty file?"] = "Lub - czy próbowałeś załadować pusty plik?";
+$a->strings["File exceeds size limit of %s"] = "Plik przekracza limit rozmiaru wynoszący %s";
+$a->strings["File upload failed."] = "Przesyłanie pliku nie powiodło się.";
+$a->strings["Tips for New Members"] = "Wskazówki dla nowych użytkowników";
+$a->strings["Time Conversion"] = "Zmiana czasu";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica udostępnia tę usługę do udostępniania wydarzeń innym sieciom i znajomym w nieznanych strefach czasowych.";
+$a->strings["UTC time: %s"] = "Czas UTC %s";
+$a->strings["Current timezone: %s"] = "Obecna strefa czasowa: %s";
+$a->strings["Converted localtime: %s"] = "Zmień strefę czasową: %s";
+$a->strings["Please select your timezone:"] = "Wybierz swoją strefę czasową:";
+$a->strings["This introduction has already been accepted."] = "To wprowadzenie zostało już zaakceptowane.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Lokalizacja profilu jest nieprawidłowa lub nie zawiera informacji o profilu.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik.";
+$a->strings["Warning: profile location has no profile photo."] = "Ostrzeżenie: położenie profilu nie zawiera zdjęcia.";
+$a->strings["%d required parameter was not found at the given location"] = [
+ 0 => "%d wymagany parametr nie został znaleziony w podanej lokacji",
+ 1 => "%d wymagane parametry nie zostały znalezione w podanej lokacji",
+ 2 => "%d wymagany parametr nie został znaleziony w podanej lokacji",
+ 3 => "%d wymagany parametr nie został znaleziony w podanej lokacji",
+];
+$a->strings["Introduction complete."] = "Wprowadzanie zakończone.";
+$a->strings["Unrecoverable protocol error."] = "Nieodwracalny błąd protokołu.";
+$a->strings["Profile unavailable."] = "Profil niedostępny.";
+$a->strings["%s has received too many connection requests today."] = "%s otrzymał dziś zbyt wiele żądań połączeń.";
+$a->strings["Spam protection measures have been invoked."] = "Wprowadzono zabezpieczenia przed spamem.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Przyjaciele namawiają do spróbowania za 24h.";
+$a->strings["Invalid locator"] = "Nieprawidłowy lokalizator";
+$a->strings["You have already introduced yourself here."] = "Już się tu przedstawiłeś.";
+$a->strings["Apparently you are already friends with %s."] = "Wygląda na to, że już jesteście przyjaciółmi z %s";
+$a->strings["Invalid profile URL."] = "Nieprawidłowy URL profilu.";
+$a->strings["Failed to update contact record."] = "Aktualizacja rekordu kontaktu nie powiodła się.";
+$a->strings["Your introduction has been sent."] = "Twoje dane zostały wysłane.";
+$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie.";
+$a->strings["Please login to confirm introduction."] = "Zaloguj się, aby potwierdzić wprowadzenie.";
+$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. ";
+$a->strings["Confirm"] = "Potwierdź";
+$a->strings["Hide this contact"] = "Ukryj kontakt";
+$a->strings["Welcome home %s."] = "Welcome home %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Wprowadź swój 'Adres tożsamości' z jednej z następujących obsługiwanych sieci komunikacyjnych:";
+$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today ."] = "Jeśli nie jesteś jeszcze członkiem darmowej sieci społecznościowej, kliknij ten link, aby znaleźć publiczną witrynę Friendica i dołącz do nas już dziś .";
+$a->strings["Friend/Connection Request"] = "Przyjaciel/Prośba o połączenie";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = "Przykłady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de";
+$a->strings["Please answer the following:"] = "Proszę odpowiedzieć na następujące pytania:";
+$a->strings["Does %s know you?"] = "Czy %s Cię zna?";
+$a->strings["Add a personal note:"] = "Dodaj osobistą notkę:";
+$a->strings["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)";
+$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)";
+$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- proszę nie używać tego formularza. Zamiast tego wpisz %s do paska wyszukiwania Diaspory.";
+$a->strings["Contact settings applied."] = "Ustawienia kontaktu zaktualizowane.";
+$a->strings["Contact update failed."] = "Nie udało się zaktualizować kontaktu.";
+$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "OSTRZEŻENIE: Jest to bardzo zaawansowane i jeśli wprowadzisz niepoprawne informacje, twoja komunikacja z tym kontaktem może przestać działać.";
+$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce.";
+$a->strings["No mirroring"] = "Bez dublowania";
+$a->strings["Mirror as forwarded posting"] = "Przesłany lustrzany post";
+$a->strings["Mirror as my own posting"] = "Lustro mojego własnego komentarza";
+$a->strings["Return to contact editor"] = "Wróć do edytora kontaktów";
+$a->strings["Refetch contact data"] = "Odśwież dane kontaktowe";
+$a->strings["Remote Self"] = "Zdalny Self";
+$a->strings["Mirror postings from this contact"] = "Publikacje lustrzane od tego kontaktu";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Oznacz ten kontakt jako remote_self, spowoduje to, że friendica odeśle nowe wpisy z tego kontaktu.";
+$a->strings["Account Nickname"] = "Nazwa konta";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Zmienna - zastępuje Imię/Pseudonim";
+$a->strings["Account URL"] = "URL konta";
+$a->strings["Friend Request URL"] = "URL żądajacy znajomości";
+$a->strings["Friend Confirm URL"] = "URL potwierdzający znajomość";
+$a->strings["Notification Endpoint URL"] = "Zgłoszenie Punktu Końcowego URL";
+$a->strings["Poll/Feed URL"] = "Adres Ankiety/RSS";
+$a->strings["New photo from this URL"] = "Nowe zdjęcie z tego adresu URL";
+$a->strings["Welcome to %s"] = "Witamy w %s";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s witamy %2\$s";
+$a->strings["Poke/Prod"] = "Zaczepić";
+$a->strings["poke, prod or do other things to somebody"] = "";
+$a->strings["Recipient"] = "Odbiorca";
+$a->strings["Choose what you wish to do to recipient"] = "Wybierz, co chcesz zrobić";
+$a->strings["Make this post private"] = "Ustaw ten post jako prywatny";
+$a->strings["Post successful."] = "Post dodany pomyślnie";
+$a->strings["Access denied."] = "Brak dostępu";
+$a->strings["Invalid request identifier."] = "Nieprawidłowe żądanie identyfikatora.";
+$a->strings["Discard"] = "Odrzuć";
+$a->strings["Ignore"] = "Ignoruj";
+$a->strings["Network Notifications"] = "Powiadomienia sieciowe";
+$a->strings["Personal Notifications"] = "Prywatne powiadomienia";
+$a->strings["Home Notifications"] = "Powiadomienia domowe";
+$a->strings["Show Ignored Requests"] = "Pokaż ignorowane żądania";
+$a->strings["Hide Ignored Requests"] = "Ukryj zignorowane prośby";
+$a->strings["Notification type: "] = "Typ powiadomienia:";
+$a->strings["suggested by %s"] = "zaproponowane przez %s";
+$a->strings["Hide this contact from others"] = "Ukryj ten kontakt przed innymi";
+$a->strings["Post a new friend activity"] = "Opublikuj aktywność nowego znajomego";
+$a->strings["if applicable"] = "jeśli dotyczy";
+$a->strings["Claims to be known to you: "] = "Twierdzi, że go znasz:";
+$a->strings["yes"] = "tak";
+$a->strings["no"] = "nie";
+$a->strings["Shall your connection be bidirectional or not?"] = "Czy twoje połączenie ma być dwukierunkowe, czy nie?";
+$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Przyjmowanie %s jako znajomego pozwala %s zasubskrybować twoje posty, a także otrzymywać od nich aktualizacje w swoim kanale wiadomości.";
+$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Zaakceptowanie %s jako subskrybenta umożliwia im subskrybowanie Twoich postów, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości.";
+$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Akceptowanie %s jako udostępniający pozwala im subskrybować twoje posty, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości.";
+$a->strings["Friend"] = "Znajomy";
+$a->strings["Sharer"] = "Udostępniający/a";
+$a->strings["Subscriber"] = "Subskrybent";
+$a->strings["No introductions."] = "Brak dostępu.";
+$a->strings["Show unread"] = "Pokaż nieprzeczytane";
+$a->strings["Show all"] = "Pokaż wszystko";
+$a->strings["No more %s notifications."] = "Nigdy więcej %s powiadomień.";
+$a->strings["Not Extended"] = "Nie przedłużony";
+$a->strings["Not Found"] = "Nie znaleziono";
+$a->strings["The contact could not be added."] = "Nie można dodać kontaktu.";
+$a->strings["You already added this contact."] = "Już dodałeś ten kontakt.";
+$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Obsługa Diaspory nie jest włączona. Kontakt nie może zostać dodany.";
+$a->strings["OStatus support is disabled. Contact can't be added."] = "Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany.";
+$a->strings["The network type couldn't be detected. Contact can't be added."] = "Nie można wykryć typu sieci. Kontakt nie może zostać dodany.";
+$a->strings["This calendar format is not supported"] = "Ten format kalendarza nie jest obsługiwany";
+$a->strings["No exportable data found"] = "Nie znaleziono danych do eksportu";
+$a->strings["calendar"] = "kalendarz";
+$a->strings["%d contact edited."] = [
+ 0 => "",
+ 1 => "",
+ 2 => "",
+ 3 => "",
+];
+$a->strings["Could not access contact record."] = "Nie można uzyskać dostępu do rejestru kontaktów.";
+$a->strings["Could not locate selected profile."] = "Nie można znaleźć wybranego profilu.";
+$a->strings["Contact updated."] = "Kontakt zaktualizowany";
+$a->strings["Contact has been blocked"] = "Kontakt został zablokowany";
+$a->strings["Contact has been unblocked"] = "Kontakt został odblokowany";
+$a->strings["Contact has been ignored"] = "Kontakt jest ignorowany";
+$a->strings["Contact has been unignored"] = "Kontakt nie jest ignorowany";
+$a->strings["Contact has been archived"] = "Kontakt został zarchiwizowany";
+$a->strings["Contact has been unarchived"] = "Kontakt został przywrócony";
+$a->strings["Drop contact"] = "Usuń kontakt";
+$a->strings["Do you really want to delete this contact?"] = "Czy na pewno chcesz usunąć ten kontakt?";
+$a->strings["Contact has been removed."] = "Kontakt został usunięty.";
+$a->strings["You are mutual friends with %s"] = "Jesteś już znajomym z %s";
+$a->strings["You are sharing with %s"] = "Współdzielisz z %s";
+$a->strings["%s is sharing with you"] = "%s współdzieli z tobą";
+$a->strings["Private communications are not available for this contact."] = "Prywatna rozmowa jest niemożliwa dla tego kontaktu";
+$a->strings["Never"] = "Nigdy";
+$a->strings["(Update was successful)"] = "(Aktualizacja przebiegła pomyślnie)";
+$a->strings["(Update was not successful)"] = "(Aktualizacja nie powiodła się)";
+$a->strings["Suggest friends"] = "Osoby, które możesz znać";
+$a->strings["Network type: %s"] = "Typ sieci: %s";
+$a->strings["Communications lost with this contact!"] = "Utracono komunikację z tym kontaktem!";
+$a->strings["Fetch further information for feeds"] = "Pobierz dalsze informacje dla kanałów";
+$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Pobieranie informacji, takich jak zdjęcia podglądu, tytuł i zwiastun z elementu kanału. Możesz to aktywować, jeśli plik danych nie zawiera dużo tekstu. Słowa kluczowe są pobierane z nagłówka meta w elemencie kanału i są publikowane jako znaczniki haszowania.";
+$a->strings["Fetch information"] = "Pobierz informacje";
+$a->strings["Fetch keywords"] = "Pobierz słowa kluczowe";
+$a->strings["Fetch information and keywords"] = "Pobierz informacje i słowa kluczowe";
+$a->strings["Contact"] = "Kontakt";
+$a->strings["Profile Visibility"] = "Widoczność profilu";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Wybierz profil, który chcesz bezpiecznie wyświetlić %s";
+$a->strings["Contact Information / Notes"] = "Informacje kontaktowe/Notatki";
+$a->strings["Their personal note"] = "Ich osobista uwaga";
+$a->strings["Edit contact notes"] = "Edytuj notatki kontaktu";
+$a->strings["Block/Unblock contact"] = "Zablokuj/odblokuj kontakt";
+$a->strings["Ignore contact"] = "Ignoruj kontakt";
+$a->strings["Repair URL settings"] = "Napraw ustawienia adresu";
+$a->strings["View conversations"] = "Wyświetl rozmowy";
+$a->strings["Last update:"] = "Ostatnia aktualizacja:";
+$a->strings["Update public posts"] = "Zaktualizuj publiczne posty";
+$a->strings["Update now"] = "Aktualizuj teraz";
+$a->strings["Unignore"] = "Odblokuj";
+$a->strings["Currently blocked"] = "Obecnie zablokowany";
+$a->strings["Currently ignored"] = "Obecnie zignorowany";
+$a->strings["Currently archived"] = "Obecnie zarchiwizowany";
+$a->strings["Awaiting connection acknowledge"] = "Oczekiwanie na potwierdzenie połączenia";
+$a->strings["Replies/likes to your public posts may still be visible"] = "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne";
+$a->strings["Notification for new posts"] = "Powiadomienie o nowych postach";
+$a->strings["Send a notification of every new post of this contact"] = "Wyślij powiadomienie o każdym nowym poście tego kontaktu";
+$a->strings["Blacklisted keywords"] = "Słowa kluczowe na czarnej liście";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Rozdzielana przecinkami lista słów kluczowych, które nie powinny zostać przekonwertowane na hashtagi, gdy wybrana jest opcja 'Pobierz informacje i słowa kluczowe'";
+$a->strings["Actions"] = "Akcja";
+$a->strings["Contact Settings"] = "Ustawienia kontaktów";
+$a->strings["Suggestions"] = "Sugestie";
+$a->strings["Suggest potential friends"] = "Sugerowani znajomi";
+$a->strings["Show all contacts"] = "Pokaż wszystkie kontakty";
+$a->strings["Unblocked"] = "Odblokowany";
+$a->strings["Only show unblocked contacts"] = "Pokaż tylko odblokowane kontakty";
+$a->strings["Blocked"] = "Zablokowany";
+$a->strings["Only show blocked contacts"] = "Pokaż tylko zablokowane kontakty";
+$a->strings["Ignored"] = "Zignorowany";
+$a->strings["Only show ignored contacts"] = "Pokaż tylko ignorowane kontakty";
+$a->strings["Archived"] = "Zarchiwizowane";
+$a->strings["Only show archived contacts"] = "Pokaż tylko zarchiwizowane kontakty";
+$a->strings["Hidden"] = "Ukryty";
+$a->strings["Only show hidden contacts"] = "Pokaż tylko ukryte kontakty";
+$a->strings["Search your contacts"] = "Wyszukaj w kontaktach";
+$a->strings["Results for: %s"] = "Wyniki dla: %s";
+$a->strings["Archive"] = "Archiwum";
+$a->strings["Unarchive"] = "Przywróć z archiwum";
+$a->strings["Batch Actions"] = "Akcje wsadowe";
+$a->strings["View all contacts"] = "Zobacz wszystkie kontakty";
+$a->strings["Common Friends"] = "Wspólni znajomi";
+$a->strings["View all common friends"] = "Zobacz wszystkich popularnych znajomych";
+$a->strings["Advanced Contact Settings"] = "Zaawansowane ustawienia kontaktów";
+$a->strings["Mutual Friendship"] = "Wzajemna przyjaźń";
+$a->strings["is a fan of yours"] = "jest twoim fanem";
+$a->strings["you are a fan of"] = "jesteś fanem";
+$a->strings["Toggle Blocked status"] = "Przełącz na Zablokowany";
+$a->strings["Toggle Ignored status"] = "Przełącz ignorowany status";
+$a->strings["Toggle Archive status"] = "Przełącz status archiwum";
+$a->strings["Delete contact"] = "Usuń kontakt";
+$a->strings["The post was created"] = "Post został utworzony";
+$a->strings["No valid account found."] = "Nie znaleziono ważnego konta.";
+$a->strings["Password reset request issued. Check your email."] = "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój e-mail.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tDrodzy %1\$s, \n\t\t\tOtrzymano niedawno prośbę o ''%2\$s\" zresetowanie konta \n\t\thasło. Aby potwierdzić tę prośbę, wybierz link weryfikacyjny \n\t\tponiżej lub wklej go na pasek adresu przeglądarki internetowej. \n \n\t\tJeśli NIE poprosiłeś o tę zmianę, NIE wykonuj tego linku \n\t\tpod warunkiem, że zignorujesz i/lub usuniesz ten e-mail, prośba wkrótce wygaśnie. \n \n\t\tTwoje hasło nie zostanie zmienione, chyba że będziemy mogli to potwierdzić \n\t\twydał to żądanie.";
+$a->strings["\n\t\tFollow this link soon 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"] = "\nWkrótce skorzystaj z tego linku, aby zweryfikować swoją tożsamość: \n\n\t\t%1\$s\n\n\t\tOtrzymasz następnie komunikat uzupełniający zawierający nowe hasło. \n\t\tMożesz zmienić to hasło ze strony ustawień swojego konta po zalogowaniu. \n \n\t\tDane logowania są następujące: \n \nLokalizacja strony: \t%2\$s\nNazwa użytkownika:\t%3\$s";
+$a->strings["Password reset requested at %s"] = "Prośba o reset hasła na %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się.";
+$a->strings["Request has expired, please make a new one."] = "Żądanie wygasło. Zrób nowe.";
+$a->strings["Forgot your Password?"] = "Zapomniałeś hasła?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji.";
+$a->strings["Reset"] = "Zresetuj";
+$a->strings["Your password has been reset as requested."] = "Twoje hasło zostało zresetowane zgodnie z żądaniem.";
+$a->strings["Your new password is"] = "Twoje nowe hasło to";
+$a->strings["Save or copy your new password - and then"] = "Zapisz lub skopiuj nowe hasło - a następnie";
+$a->strings["click here to login"] = "Kliknij tutaj aby się zalogować";
+$a->strings["Your password may be changed from the Settings page after successful login."] = "Twoje hasło może być zmienione w Ustawieniach po udanym zalogowaniu.";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\tDrogi %1\$s, \n\t\t\t\tTwoje hasło zostało zmienione zgodnie z życzeniem. Proszę, zachowaj te \n\t\t\tinformacje dotyczące twoich rekordów (lub natychmiast zmień hasło na \n\t\t\tcoś, co zapamiętasz).\n\t\t";
+$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tDane logowania są następujące:\n\n\t\t\tLokalizacja witryny:\t%1\$s\n\t\t\tNazwa użytkownika:\t%2\$s\n\t\t\tHasło:\t%3\$s\n\n\t\t\tMożesz zmienić hasło na stronie ustawień konta po zalogowaniu.\n\t\t";
+$a->strings["Your password has been changed at %s"] = "Twoje hasło zostało zmienione na %s";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica Serwer Komunikacyjny - Instalacja";
+$a->strings["Could not connect to database."] = "Nie można nawiązać połączenia z bazą danych";
+$a->strings["Could not create table."] = "Nie mogę stworzyć tabeli.";
+$a->strings["Your Friendica site database has been installed."] = "Twoja baza danych witryny Friendica została zainstalowana.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Proszę przejrzeć plik \"INSTALL.txt\".";
+$a->strings["Database already in use."] = "Baza danych jest już w użyciu.";
+$a->strings["System check"] = "Sprawdzanie systemu";
+$a->strings["Check again"] = "Sprawdź ponownie";
+$a->strings["Database connection"] = "Połączenie z bazą danych";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień .";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją.";
+$a->strings["Database Server Name"] = "Nazwa serwera bazy danych";
+$a->strings["Database Login Name"] = "Nazwa użytkownika bazy danych";
+$a->strings["Database Login Password"] = "Hasło logowania do bazy danych";
+$a->strings["For security reasons the password must not be empty"] = "Ze względów bezpieczeństwa hasło nie może być puste";
+$a->strings["Database Name"] = "Nazwa bazy danych";
+$a->strings["Site administrator email address"] = "Adres e-mail administratora strony";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Adres e-mail konta musi pasować do tego, aby móc korzystać z panelu administracyjnego.";
+$a->strings["Please select a default timezone for your website"] = "Proszę wybrać domyślną strefę czasową dla swojej strony";
+$a->strings["Site settings"] = "Ustawienia strony";
+$a->strings["System Language:"] = "Język systemu:";
+$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Ustaw domyślny język dla interfejsu instalacyjnego Friendica i wysyłaj e-maile.";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nie można znaleźć wersji PHP komendy w serwerze PATH";
+$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker' "] = "Jeśli nie masz zainstalowanej na serwerze wersji PHP z wiersza poleceń, nie będziesz mógł uruchomić przetwarzania w tle. Zobacz 'Konfiguracja pracownika' ";
+$a->strings["PHP executable path"] = "Ścieżka wykonywalna PHP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Wprowadź pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole puste, aby kontynuować instalację.";
+$a->strings["Command line PHP"] = "Linia komend PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Plik wykonywalny PHP nie jest php cli binarny (może być wersją cgi-fgci)";
+$a->strings["Found PHP version: "] = "Znaleziono wersje PHP:";
+$a->strings["PHP cli binary"] = "PHP cli binarny";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\".";
+$a->strings["This is required for message delivery to work."] = "Jest wymagane, aby dostarczanie wiadomości działało.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować kluczy szyfrujących";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Generuj klucz kodowania";
+$a->strings["libCurl PHP module"] = "Moduł libCurl PHP";
+$a->strings["GD graphics PHP module"] = "Moduł PHP-GD";
+$a->strings["OpenSSL PHP module"] = "Moduł PHP OpenSSL";
+$a->strings["PDO or MySQLi PHP module"] = "Moduł PDO lub MySQLi PHP";
+$a->strings["mb_string PHP module"] = "Moduł mb_string PHP";
+$a->strings["XML PHP module"] = "Moduł XML PHP";
+$a->strings["iconv PHP module"] = "Moduł PHP iconv";
+$a->strings["POSIX PHP module"] = "Moduł POSIX PHP";
+$a->strings["Apache mod_rewrite module"] = "Moduł Apache mod_rewrite";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany.";
+$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Błąd: Wymagany moduł PDO lub MySQLi PHP, ale nie zainstalowany.";
+$a->strings["Error: The MySQL driver for PDO is not installed."] = "Błąd: Sterownik MySQL dla PDO nie jest zainstalowany.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany";
+$a->strings["Error: iconv PHP module required but not installed."] = "Błąd: wymagany moduł PHP iconv, ale nie zainstalowany.";
+$a->strings["Error: POSIX PHP module required but not installed."] = "Błąd: wymagany moduł POSIX PHP, ale nie zainstalowany.";
+$a->strings["Error, XML PHP module required but not installed."] = "Błąd, wymagany moduł XML PHP, ale nie zainstalowany.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\" i nie jest w stanie tego zrobić.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Jest to najczęściej ustawienie uprawnień, ponieważ serwer sieciowy może nie być w stanie zapisywać plików w folderze - nawet jeśli możesz.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Pod koniec tej procedury podamy Ci tekst do zapisania w pliku o nazwie .htconfig.php w twoim górnym folderze Friendica.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternatywnie można pominąć tę procedurę i wykonać ręczną instalację. Proszę zobaczyć plik 'INSTALL.txt' z instrukcjami.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php jest zapisywalny";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica używa silnika szablonów Smarty3 do renderowania swoich widoków. Smarty3 kompiluje szablony do PHP, aby przyspieszyć renderowanie.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Aby przechowywać te skompilowane szablony, serwer WWW musi mieć dostęp do zapisu do katalogu view/smarty3/ w folderze najwyższego poziomu Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Upewnij się, że użytkownik, na którym działa serwer WWW (np. www-data), ma prawo do zapisu do tego folderu.";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Uwaga: jako środek bezpieczeństwa, powinieneś dać serwerowi dostęp do zapisu view/smarty3/ jedynie - nie do plików szablonów (.tpl), które zawiera.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 jest zapisywalny";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Nie działa URL w .htaccess popraw. Sprawdź konfigurację serwera.";
+$a->strings["Url rewrite is working"] = "Działający adres URL";
+$a->strings["ImageMagick PHP extension is not installed"] = "Rozszerzenie PHP ImageMagick nie jest zainstalowane";
+$a->strings["ImageMagick PHP extension is installed"] = "Rozszerzenie PHP ImageMagick jest zainstalowane";
+$a->strings["ImageMagick supports GIF"] = "ImageMagick obsługuje 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."] = "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera.";
+$a->strings["What next "] = "Co dalej ";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "WAŻNE: Będziesz musiał [ręcznie] ustawić zaplanowane zadanie dla pracownika.";
+$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Przejdź do strony rejestracji nowego węzła Friendica i zarejestruj się jako nowy użytkownik. Pamiętaj, aby użyć adresu e-mail wprowadzonego jako e-mail administratora. To pozwoli Ci wejść do panelu administratora witryny.";
$a->strings["Source input"] = "Źródło wejściowe";
+$a->strings["BBCode::toPlaintext"] = "BBCode::na prosty tekst";
$a->strings["BBCode::convert (raw HTML)"] = "BBCode:: konwersjia (raw HTML)";
$a->strings["BBCode::convert"] = "BBCode::przekształć";
$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::przekształć => HTML::toBBCode";
@@ -1348,182 +2070,77 @@ $a->strings["Source text"] = "Tekst źródłowy";
$a->strings["BBCode"] = "BBCode";
$a->strings["Markdown"] = "Markdown";
$a->strings["HTML"] = "HTML";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Strona główna:";
-$a->strings["Global Directory"] = "Globalny Katalog";
-$a->strings["Find on this site"] = "Znajdź na tej stronie";
-$a->strings["Results for:"] = "Wyniki dla:";
-$a->strings["Site Directory"] = "Katalog Witryny";
-$a->strings["No entries (some entries may be hidden)."] = "Brak odwiedzin (niektóre odwiedziny mogą być ukryte).";
-$a->strings["People Search - %s"] = "Szukaj osób - %s";
-$a->strings["Forum Search - %s"] = "Przeszukiwanie forum - %s";
-$a->strings["The contact could not be added."] = "Nie można dodać kontaktu.";
-$a->strings["You already added this contact."] = "Już dodałeś ten kontakt.";
-$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Obsługa Diaspory nie jest włączona. Kontakt nie może zostać dodany.";
-$a->strings["OStatus support is disabled. Contact can't be added."] = "Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany.";
-$a->strings["The network type couldn't be detected. Contact can't be added."] = "Nie można wykryć typu sieci. Kontakt nie może zostać dodany.";
-$a->strings["This is Friendica, version"] = "To jest Friendica, wersja";
-$a->strings["running at web location"] = "otwierane na serwerze";
-$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Odwiedź stronę Friendi.ca aby dowiedzieć się więcej o projekcie Friendica.";
-$a->strings["Bug reports and issues: please visit"] = "Raporty o błędach i problemy: odwiedź stronę";
-$a->strings["the bugtracker at github"] = "bugtracker na github";
-$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Sugestie, pochwały itp. - napisz e-mail \"info\" na \"friendi - kropka - ca";
-$a->strings["Installed addons/apps:"] = "Zainstalowane dodatki/aplikacje:";
-$a->strings["No installed addons/apps"] = "Brak zainstalowanych dodatków/aplikacji";
-$a->strings["Read about the Terms of Service of this node."] = "Przeczytaj o Warunkach świadczenia usług tego węzła.";
-$a->strings["On this server the following remote servers are blocked."] = "Na tym serwerze następujące serwery zdalne są blokowane.";
-$a->strings["Total invitation limit exceeded."] = "Przekroczono limit zaproszeń ogółem.";
-$a->strings["%s : Not a valid email address."] = "%s : Nieprawidłowy adres e-mail.";
-$a->strings["Please join us on Friendica"] = "Dołącz do nas na Friendica";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Przekroczono limit zaproszeń. Skontaktuj się z administratorem witryny.";
-$a->strings["%s : Message delivery failed."] = "%s : Nie udało się dostarczyć wiadomości.";
-$a->strings["%d message sent."] = [
- 0 => "%d wiadomość wysłana.",
- 1 => "%d wiadomości wysłane.",
- 2 => "%d wysłano .",
- 3 => "%d wiadomość wysłano.",
-];
-$a->strings["You have no more invitations available"] = "Nie masz już dostępnych zaproszeń";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Odwiedź %s listę publicznych witryn, do których możesz dołączyć. Członkowie Friendica na innych stronach mogą łączyć się ze sobą, jak również z członkami wielu innych sieci społecznościowych.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Aby zaakceptować to zaproszenie, odwiedź i zarejestruj się %s lub w dowolnej innej publicznej witrynie internetowej Friendica.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi. Zobacz %s listę alternatywnych witryn Friendica, do których możesz dołączyć.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Przepraszamy. System nie jest obecnie skonfigurowany do łączenia się z innymi publicznymi witrynami lub zapraszania członków.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi.";
-$a->strings["To accept this invitation, please visit and register at %s."] = "Aby zaakceptować to zaproszenie, odwiedź stronę i zarejestruj się na stronie %s.";
-$a->strings["Send invitations"] = "Wyślij zaproszenie";
-$a->strings["Enter email addresses, one per line:"] = "Wprowadź adresy e-mail, po jednym w wierszu:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Serdecznie zapraszam do przyłączenia się do mnie i innych bliskich znajomych na stronie Friendica - i pomóż nam stworzyć lepszą sieć społecznościową.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Musisz podać ten kod zaproszenia: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Po rejestracji połącz się ze mną na stronie mojego profilu pod adresem:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Aby uzyskać więcej informacji na temat projektu Friendica i dlaczego uważamy, że jest to ważne, odwiedź http://friendi.ca";
-$a->strings["No valid account found."] = "Nie znaleziono ważnego konta.";
-$a->strings["Password reset request issued. Check your email."] = "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój e-mail.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tDrodzy %1\$s, \n\t\t\tOtrzymano niedawno prośbę o ''%2\$s\" zresetowanie konta \n\t\thasło. Aby potwierdzić tę prośbę, wybierz link weryfikacyjny \n\t\tponiżej lub wklej go na pasek adresu przeglądarki internetowej. \n \n\t\tJeśli NIE poprosiłeś o tę zmianę, NIE wykonuj tego linku \n\t\tpod warunkiem, że zignorujesz i/lub usuniesz ten e-mail, prośba wkrótce wygaśnie. \n \n\t\tTwoje hasło nie zostanie zmienione, chyba że będziemy mogli to potwierdzić \n\t\twydał to żądanie.";
-$a->strings["\n\t\tFollow this link soon 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"] = "\nWkrótce skorzystaj z tego linku, aby zweryfikować swoją tożsamość: \n\n\t\t%1\$s\n\n\t\tOtrzymasz następnie komunikat uzupełniający zawierający nowe hasło. \n\t\tMożesz zmienić to hasło ze strony ustawień swojego konta po zalogowaniu. \n \n\t\tDane logowania są następujące: \n \nLokalizacja strony: \t%2\$s\nNazwa użytkownika:\t%3\$s";
-$a->strings["Password reset requested at %s"] = "Prośba o reset hasła na %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się.";
-$a->strings["Request has expired, please make a new one."] = "Żądanie wygasło. Zrób nowe.";
-$a->strings["Forgot your Password?"] = "Zapomniałeś hasła?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji.";
-$a->strings["Nickname or Email: "] = "Pseudonim lub Email:";
-$a->strings["Reset"] = "Zresetuj";
-$a->strings["Password Reset"] = "Zresetuj hasło";
-$a->strings["Your password has been reset as requested."] = "Twoje hasło zostało zresetowane zgodnie z żądaniem.";
-$a->strings["Your new password is"] = "Twoje nowe hasło to";
-$a->strings["Save or copy your new password - and then"] = "Zapisz lub skopiuj nowe hasło - a następnie";
-$a->strings["click here to login"] = "Kliknij tutaj aby się zalogować";
-$a->strings["Your password may be changed from the Settings page after successful login."] = "Twoje hasło może być zmienione w Ustawieniach po udanym zalogowaniu.";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\tDrogi %1\$s, \n\t\t\t\tTwoje hasło zostało zmienione zgodnie z życzeniem. Proszę, zachowaj te \n\t\t\tinformacje dotyczące twoich rekordów (lub natychmiast zmień hasło na \n\t\t\tcoś, co zapamiętasz).\n\t\t";
-$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tDane logowania są następujące:\n\n\t\t\tLokalizacja witryny:\t%1\$s\n\t\t\tNazwa użytkownika:\t%2\$s\n\t\t\tHasło:\t%3\$s\n\n\t\t\tMożesz zmienić hasło na stronie ustawień konta po zalogowaniu.\n\t\t";
-$a->strings["Your password has been changed at %s"] = "Twoje hasło zostało zmienione na %s";
-$a->strings["add"] = "dodaj";
-$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
- 0 => "",
- 1 => "",
- 2 => "",
- 3 => "",
-];
-$a->strings["Messages in this group won't be send to these receivers."] = "Wiadomości z tej grupy nie będą wysyłane do tych odbiorców.";
-$a->strings["No such group"] = "Nie ma takiej grupy";
-$a->strings["Group: %s"] = "Grupa: %s";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione ";
-$a->strings["Invalid contact."] = "Nieprawidłowy kontakt.";
-$a->strings["Commented Order"] = "Porządek według komentarzy";
-$a->strings["Sort by Comment Date"] = "Sortuj według daty komentarza";
-$a->strings["Posted Order"] = "Porządek według wpisów";
-$a->strings["Sort by Post Date"] = "Sortuj według daty postów";
-$a->strings["Personal"] = "Osobiste";
-$a->strings["Posts that mention or involve you"] = "Posty, które wspominają lub angażują Ciebie";
-$a->strings["New"] = "Nowy";
-$a->strings["Activity Stream - by date"] = "Strumień aktywności - według daty";
-$a->strings["Shared Links"] = "Udostępnione łącza";
-$a->strings["Interesting Links"] = "Interesujące linki";
-$a->strings["Starred"] = "Ulubione";
-$a->strings["Favourite Posts"] = "Ulubione posty";
-$a->strings["Profile deleted."] = "Konto usunięte.";
-$a->strings["Profile-"] = "Profil-";
-$a->strings["New profile created."] = "Utworzono nowy profil.";
-$a->strings["Profile unavailable to clone."] = "Nie można powileić profilu ";
-$a->strings["Profile Name is required."] = "Nazwa Profilu jest wymagana";
-$a->strings["Marital Status"] = "Stan cywilny";
-$a->strings["Romantic Partner"] = "Romantyczny partner";
-$a->strings["Work/Employment"] = "Praca/Zatrudnienie";
-$a->strings["Religion"] = "Religia";
-$a->strings["Political Views"] = "Poglądy polityczne";
-$a->strings["Gender"] = "Płeć";
-$a->strings["Sexual Preference"] = "Orientacja seksualna";
-$a->strings["XMPP"] = "XMPP";
-$a->strings["Homepage"] = "Strona Główna";
-$a->strings["Interests"] = "Zainteresowania";
-$a->strings["Location"] = "Lokalizacja";
-$a->strings["Profile updated."] = "Profil zaktualizowany.";
-$a->strings[" and "] = " i ";
-$a->strings["public profile"] = "profil publiczny";
-$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$szmienione %2\$s na “%3\$s”";
-$a->strings[" - Visit %1\$s's %2\$s"] = " - Odwiedź %1\$s's %2\$s";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$sma zaktualizowany %2\$s, zmiana%3\$s.";
-$a->strings["Hide contacts and friends:"] = "Ukryj kontakty i znajomych:";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?";
-$a->strings["Show more profile fields:"] = "Pokaż więcej pól profilu:";
-$a->strings["Profile Actions"] = "Akcje profilowe";
-$a->strings["Edit Profile Details"] = "Edytuj profil.";
-$a->strings["Change Profile Photo"] = "Zmień zdjęcie profilowe";
-$a->strings["View this profile"] = "Wyświetl ten profil";
-$a->strings["Edit visibility"] = "Edytuj widoczność";
-$a->strings["Create a new profile using these settings"] = "Stwórz nowy profil wykorzystując te ustawienia";
-$a->strings["Clone this profile"] = "Sklonuj ten profil";
-$a->strings["Delete this profile"] = "Usuń ten profil";
-$a->strings["Basic information"] = "Podstawowe informacje";
-$a->strings["Profile picture"] = "Zdjęcie profilowe";
-$a->strings["Preferences"] = "Preferencje";
-$a->strings["Status information"] = "Informacje o stanie";
-$a->strings["Additional information"] = "Dodatkowe informacje";
-$a->strings["Relation"] = "Relacje";
-$a->strings["Miscellaneous"] = "Różny";
-$a->strings["Your Gender:"] = "Płeć:";
-$a->strings["♥ Marital Status:"] = "♥ Stan cywilny:";
-$a->strings["Sexual Preference:"] = "Preferencje seksualne:";
-$a->strings["Example: fishing photography software"] = "Przykład: oprogramowanie do fotografowania ryb";
-$a->strings["Profile Name:"] = "Nazwa profilu:";
-$a->strings["This is your public profile. It may be visible to anybody using the internet."] = "To jest Twój publiczny profil. Może zostać wyświetlony przez każdego kto używa internetu.";
-$a->strings["Your Full Name:"] = "Imię i Nazwisko:";
-$a->strings["Title/Description:"] = "Tytuł/Opis :";
-$a->strings["Street Address:"] = "Ulica:";
-$a->strings["Locality/City:"] = "Miejscowość/Miasto:";
-$a->strings["Region/State:"] = "Region/Państwo:";
-$a->strings["Postal/Zip Code:"] = "Kod Pocztowy:";
-$a->strings["Country:"] = "Kraj:";
-$a->strings["Age: "] = "Wiek: ";
-$a->strings["Who: (if applicable)"] = "Kto: (jeśli dotyczy)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Przykłady: cathy123, Cathy Williams, cathy@example.com";
-$a->strings["Since [date]:"] = "Od [data]:";
-$a->strings["Tell us about yourself..."] = "Napisz o sobie...";
-$a->strings["XMPP (Jabber) address:"] = "Adres XMPP (Jabber):";
-$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Adres XMPP będzie propagowany do Twoich kontaktów, aby mogli Cię śledzić.";
-$a->strings["Homepage URL:"] = "Adres URL strony domowej:";
-$a->strings["Hometown:"] = "Miasto rodzinne:";
-$a->strings["Political Views:"] = "Poglądy polityczne:";
-$a->strings["Religious Views:"] = "Poglądy religijne:";
-$a->strings["Public Keywords:"] = "Publiczne słowa kluczowe:";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)";
-$a->strings["Private Keywords:"] = "Prywatne słowa kluczowe:";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Używany do wyszukiwania profili, niepokazywany innym)";
-$a->strings["Likes:"] = "Lubią to:";
-$a->strings["Dislikes:"] = "Nie lubię tego:";
-$a->strings["Musical interests"] = "Muzyka";
-$a->strings["Books, literature"] = "Literatura";
-$a->strings["Television"] = "Telewizja";
-$a->strings["Film/dance/culture/entertainment"] = "Film/taniec/kultura/rozrywka";
-$a->strings["Hobbies/Interests"] = "Zainteresowania";
-$a->strings["Love/romance"] = "Miłość/romans";
-$a->strings["Work/employment"] = "Praca/zatrudnienie";
-$a->strings["School/education"] = "Szkoła/edukacja";
-$a->strings["Contact information and Social Networks"] = "Dane kontaktowe i Sieci społecznościowe";
-$a->strings["Profile Image"] = "Zdjęcie profilowe";
-$a->strings["visible to everybody"] = "widoczne dla wszystkich";
-$a->strings["Edit/Manage Profiles"] = "Edycja/Zarządzanie profilami";
-$a->strings["Change profile photo"] = "Zmień zdjęcie profilowe";
-$a->strings["Create New Profile"] = "Utwórz nowy profil";
+$a->strings["Remote privacy information not available."] = "Dane prywatne nie są zdalnie dostępne";
+$a->strings["Visible to:"] = "Widoczne dla:";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Dzienny limit wiadomości %s został przekroczony. Wiadomość została odrzucona.";
+$a->strings["Unable to check your home location."] = "Nie można sprawdzić twojej lokalizacji.";
+$a->strings["No recipient."] = "Brak odbiorcy.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców.";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Brak pasujących słów kluczowych. Dodaj słowa kluczowe do domyślnego profilu.";
+$a->strings["is interested in:"] = "interesuje się:";
+$a->strings["Profile Match"] = "Dopasowanie profilu";
+$a->strings["System down for maintenance"] = "System wyłączony w celu konserwacji";
+$a->strings["Tag removed"] = "Tag usunięty";
+$a->strings["Remove Item Tag"] = "Usuń pozycję Tag";
+$a->strings["Select a tag to remove: "] = "Wybierz tag do usunięcia";
+$a->strings["You must be logged in to use this module"] = "Musisz być zalogowany, aby korzystać z tego modułu";
+$a->strings["Source URL"] = "Źródłowy adres URL";
+$a->strings["Only logged in users are permitted to perform a search."] = "Tylko zalogowani użytkownicy mogą wyszukiwać.";
+$a->strings["Too Many Requests"] = "Zbyt dużo próśb";
+$a->strings["Only one search per minute is permitted for not logged in users."] = "Dla niezalogowanych użytkowników dozwolone jest tylko jedno wyszukiwanie na minutę.";
+$a->strings["Items tagged with: %s"] = "Przedmioty oznaczone tagiem: %s";
+$a->strings["Export account"] = "Eksportuj konto";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Eksportuj informacje o swoim koncie i kontaktach. Użyj tego do utworzenia kopii zapasowej konta i/lub przeniesienia go na inny serwer.";
+$a->strings["Export all"] = "Eksportuj wszystko";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Wyeksportuj informacje o koncie, kontaktach i wszystkie swoje pozycje jako json. Może to być bardzo duży plik i może zająć dużo czasu. Użyj tej opcji, aby utworzyć pełną kopię zapasową swojego konta (zdjęcia nie są eksportowane)";
+$a->strings["Welcome to Friendica"] = "Witamy na Friendica";
+$a->strings["New Member Checklist"] = "Lista nowych członków";
+$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."] = "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie.";
+$a->strings["Getting Started"] = "Pierwsze kroki";
+$a->strings["Friendica Walk-Through"] = "Friendica Przejdź-Przez";
+$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na stronie Szybki start - znajdź krótkie wprowadzenie do swojego profilu i kart sieciowych, stwórz nowe połączenia i znajdź kilka grup do przyłączenia się.";
+$a->strings["Go to Your Settings"] = "Idź do swoich ustawień";
+$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Na stronie Ustawienia - zmień swoje początkowe hasło. Zanotuj także swój adres tożsamości. Wygląda to jak adres e-mail - i będzie przydatny w nawiązywaniu znajomości w bezpłatnej sieci społecznościowej.";
+$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."] = "Przejrzyj pozostałe ustawienia, w szczególności ustawienia prywatności. Niepublikowany wykaz katalogów jest podobny do niepublicznego numeru telefonu. Ogólnie rzecz biorąc, powinieneś opublikować swój wpis - chyba, że wszyscy twoi znajomi i potencjalni znajomi dokładnie wiedzą, jak Cię znaleźć.";
+$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."] = "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty.";
+$a->strings["Edit Your Profile"] = "Edytuj własny profil";
+$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edytuj swój domyślny profil do swoich potrzeb. Przejrzyj ustawienia ukrywania listy znajomych i ukrywania profilu przed nieznanymi użytkownikami.";
+$a->strings["Profile Keywords"] = "Słowa kluczowe profilu";
+$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."] = "Ustaw kilka publicznych słów kluczowych dla swojego domyślnego profilu, które opisują Twoje zainteresowania. Możemy znaleźć inne osoby o podobnych zainteresowaniach i zaproponować przyjaźnie.";
+$a->strings["Connecting"] = "Łączę się...";
+$a->strings["Importing Emails"] = "Importuję emaile...";
+$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"] = "Wprowadź informacje dotyczące dostępu do poczty e-mail na stronie Ustawienia oprogramowania, jeśli chcesz importować i wchodzić w interakcje z przyjaciółmi lub listami adresowymi z poziomu konta e-mail INBOX";
+$a->strings["Go to Your Contacts Page"] = "Idź do strony z Twoimi kontaktami";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Strona Kontakty jest twoją bramą do zarządzania przyjaciółmi i łączenia się z przyjaciółmi w innych sieciach. Zazwyczaj podaje się adres lub adres URL strony w oknie dialogowym Dodaj nowy kontakt .";
+$a->strings["Go to Your Site's Directory"] = "Idż do twojej strony";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Strona Katalog umożliwia znalezienie innych osób w tej sieci lub innych witrynach stowarzyszonych. Poszukaj łącza Połącz lub Śledź na stronie profilu. Jeśli chcesz, podaj swój własny adres tożsamości.";
+$a->strings["Finding New People"] = "Znajdowanie nowych osób";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Na bocznym panelu strony Kontaktów znajduje się kilka narzędzi do znajdowania nowych przyjaciół. Możemy dopasować osoby według zainteresowań, wyszukiwać osoby według nazwisk i zainteresowań oraz dostarczać sugestie oparte na relacjach sieciowych. Na zupełnie nowej stronie sugestie znajomych zwykle zaczynają być wypełniane w ciągu 24 godzin";
+$a->strings["Group Your Contacts"] = "Grupuj Swoje kontakty";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Gdy zaprzyjaźnisz się z przyjaciółmi, uporządkuj je w prywatne grupy konwersacji na pasku bocznym na stronie Kontakty, a następnie możesz wchodzić w interakcje z każdą grupą prywatnie na stronie Sieć.";
+$a->strings["Why Aren't My Posts Public?"] = "Dlaczego moje posty nie są publiczne?";
+$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 szanuje Twoją prywatność. Domyślnie Twoje wpisy będą wyświetlane tylko osobom, które dodałeś jako znajomi. Aby uzyskać więcej informacji, zobacz sekcję pomocy na powyższym łączu.";
+$a->strings["Getting Help"] = "Otrzymaj pomoc";
+$a->strings["Go to the Help Section"] = "Przejdź do sekcji pomocy";
+$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Na naszych stronach pomocy można znaleźć szczegółowe informacje na temat innych funkcji programu i zasobów.";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Może się to zdarzyć, gdy kontakt został zgłoszony przez obie osoby i został już zatwierdzony.";
+$a->strings["Response from remote site was not understood."] = "Odpowiedź do zdalnej strony nie została zrozumiana";
+$a->strings["Unexpected response from remote site: "] = "Nieoczekiwana odpowiedź od strony zdalnej:";
+$a->strings["Confirmation completed successfully."] = "Potwierdzenie zostało pomyślnie zakończone.";
+$a->strings["Temporary failure. Please wait and try again."] = "Tymczasowa awaria. Proszę czekać i spróbuj ponownie.";
+$a->strings["Introduction failed or was revoked."] = "Wprowadzenie nie powiodło się lub zostało odwołane.";
+$a->strings["Remote site reported: "] = "Zdalna witryna zgłoszona:";
+$a->strings["Unable to set contact photo."] = "Nie można ustawić zdjęcia kontaktu.";
+$a->strings["No user record found for '%s' "] = "Nie znaleziono użytkownika dla '%s'";
+$a->strings["Our site encryption key is apparently messed up."] = "Klucz kodujący jest najwyraźniej uszkodzony.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Został podany pusty adres URL witryny lub nie można go odszyfrować.";
+$a->strings["Contact record was not found for you on our site."] = "Nie znaleziono kontaktu na naszej stronie";
+$a->strings["Site public key not available in contact record for URL %s."] = "Publiczny klucz witryny jest niedostępny w rekordzie kontaktu dla adresu URL %s";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Identyfikator dostarczony przez Twój system jest duplikatem w naszym systemie. Powinien działać, jeśli spróbujesz ponownie.";
+$a->strings["Unable to set your contact credentials on our system."] = "Nie można ustawić danych kontaktowych w naszym systemie.";
+$a->strings["Unable to update your contact profile details on our system"] = "Nie można zaktualizować danych Twojego profilu kontaktowego w naszym systemie";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s dołączył/a do %2\$s";
+$a->strings["- select -"] = "- wybierz -";
$a->strings["Registration successful. Please check your email for further instructions."] = "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila.";
$a->strings["Failed to send email message. Here your accout details: login: %s password: %s You can change your password after login."] = "Nie udało się wysłać wiadomości e-mail. Tutaj szczegóły twojego konta: login: %s hasło: %s Możesz zmienić swoje hasło po zalogowaniu.";
$a->strings["Registration successful."] = "Rejestracja udana.";
@@ -1539,223 +2156,32 @@ $a->strings["Membership on this site is by invitation only."] = "Członkostwo na
$a->strings["Your invitation code: "] = "Twój kod zaproszenia:";
$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Twoje Imię i Nazwisko (np. Jan Kowalski, prawdziwe lub wyglądające na prawdziwe):";
$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Twój adres e-mail: (Informacje początkowe zostaną wysłane tam, więc musi to być istniejący adres).";
-$a->strings["New Password:"] = "Nowe hasło:";
$a->strings["Leave empty for an auto generated password."] = "Pozostaw puste dla wygenerowanego automatycznie hasła.";
-$a->strings["Confirm:"] = "Potwierdź:";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@%s '."] = "Wybierz pseudonim profilu. Nazwa musi zaczynać się od znaku tekstowego. Twój adres profilu na tej stronie będzie wówczas 'pseudonimem%s '.";
$a->strings["Choose a nickname: "] = "Wybierz pseudonim:";
-$a->strings["Register"] = "Zarejestruj";
$a->strings["Import your profile to this friendica instance"] = "Zaimportuj swój profil do tej instancji friendica";
-$a->strings["User deleted their account"] = "Użytkownik usunął swoje konto";
-$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych.";
-$a->strings["The user id is %d"] = "Identyfikatorem użytkownika jest %d";
-$a->strings["Remove My Account"] = "Usuń moje konto";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć.";
-$a->strings["Please enter your password for verification:"] = "Wprowadź hasło w celu weryfikacji.";
-$a->strings["Display"] = "Wyświetlanie";
-$a->strings["Social Networks"] = "Portale społecznościowe";
-$a->strings["Delegations"] = "Delegowanie";
-$a->strings["Connected apps"] = "Powiązane aplikacje";
-$a->strings["Remove account"] = "Usuń konto";
-$a->strings["Missing some important data!"] = "Brakuje ważnych danych!";
-$a->strings["Failed to connect with email account using the settings provided."] = "Połączenie z kontem email używając wybranych ustawień nie powiodło się.";
-$a->strings["Email settings updated."] = "Zaktualizowano ustawienia email.";
-$a->strings["Features updated"] = "Funkcje zaktualizowane";
-$a->strings["Relocate message has been send to your contacts"] = "Przeniesienie wiadomości zostało wysłane do Twoich kontaktów";
-$a->strings["Passwords do not match. Password unchanged."] = "Hasła nie pasują do siebie. Hasło niezmienione.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Puste hasła są niedozwolone. Hasło niezmienione.";
-$a->strings["The new password has been exposed in a public data dump, please choose another."] = "Nowe hasło zostało ujawnione w publicznym zrzucie danych, wybierz inne.";
-$a->strings["Wrong password."] = "Złe hasło.";
-$a->strings["Password changed."] = "Hasło zostało zmianione.";
-$a->strings["Password update failed. Please try again."] = "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie.";
-$a->strings[" Please use a shorter name."] = "Proszę użyć krótszej nazwy.";
-$a->strings[" Name too short."] = "Za krótka nazwa.";
-$a->strings["Wrong Password"] = "Złe hasło";
-$a->strings["Invalid email."] = "Niepoprawny e-mail.";
-$a->strings["Cannot change to that email."] = "Nie można zmienić tego e-maila.";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Prywatne forum nie ma uprawnień do prywatności. Użyj domyślnej grupy prywatnej.";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Prywatne forum nie ma uprawnień do prywatności ani domyślnej grupy prywatności.";
-$a->strings["Settings updated."] = "Zaktualizowano ustawienia.";
-$a->strings["Add application"] = "Dodaj aplikację";
-$a->strings["Consumer Key"] = "Klucz klienta";
-$a->strings["Consumer Secret"] = "Tajny klucz klienta";
-$a->strings["Redirect"] = "Przekierowanie";
-$a->strings["Icon url"] = "Adres Url ikony";
-$a->strings["You can't edit this application."] = "Nie możesz edytować tej aplikacji.";
-$a->strings["Connected Apps"] = "Powiązane aplikacje";
-$a->strings["Edit"] = "Edytuj";
-$a->strings["Client key starts with"] = "Klucz klienta zaczyna się od";
-$a->strings["No name"] = "Bez nazwy";
-$a->strings["Remove authorization"] = "Odwołaj upoważnienie";
-$a->strings["No Addon settings configured"] = "Brak skonfigurowanych ustawień Dodatków";
-$a->strings["Addon Settings"] = "Ustawienia Dodatków";
-$a->strings["Additional Features"] = "Dodatkowe funkcje";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings["enabled"] = "włączony";
-$a->strings["disabled"] = "wyłączony";
-$a->strings["Built-in support for %s connectivity is %s"] = "Wbudowane wsparcie dla %s łączność jest %s";
-$a->strings["GNU Social (OStatus)"] = "GNU Społeczny (OStatus)";
-$a->strings["Email access is disabled on this site."] = "Dostęp do e-maila nie jest w pełni sprawny na tej stronie";
-$a->strings["General Social Media Settings"] = "Ogólne ustawienia mediów społecznościowych";
-$a->strings["Disable Content Warning"] = "Wyłącz ostrzeżenie o treści";
-$a->strings["Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn't affect any other content filtering you eventually set up."] = "Użytkownicy w sieciach takich jak Mastodon lub Pleroma mogą ustawić pole ostrzeżenia o treści, które domyślnie zwijać będzie swój wpis. Powoduje wyłączenie automatycznego zwijania i ustawia ostrzeżenie o treści jako tytuł postu. Nie ma wpływu na żadne inne filtrowanie treści, które ostatecznie utworzyłeś.";
-$a->strings["Disable intelligent shortening"] = "Wyłącz inteligentne skracanie";
-$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Zwykle system próbuje znaleźć najlepszy link do dodania do skróconych postów. Jeśli ta opcja jest włączona, każdy skrócony wpis zawsze wskazuje oryginalny post znajomej osoby.";
-$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automatycznie podążaj za wszystkimi obserwatorami/rzecznikami GNU Społeczności (OStatus)";
-$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Jeśli otrzymasz wiadomość od nieznanego użytkownika OStatus, ta opcja decyduje, co zrobić. Jeśli zostanie zaznaczone, dla każdego nieznanego użytkownika zostanie utworzony nowy kontakt.";
-$a->strings["Default group for OStatus contacts"] = "Domyślna grupa dla kontaktów OStatus";
-$a->strings["Your legacy GNU Social account"] = "Twoje starsze konto społecznościowe GNU";
-$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Jeśli podasz swoją starą nazwę konta GNU Social/Statusnet tutaj (w formacie user@domain.tld), twoje kontakty zostaną dodane automatycznie. Pole zostanie opróżnione po zakończeniu.";
-$a->strings["Repair OStatus subscriptions"] = "Napraw subskrypcje OStatus";
-$a->strings["Email/Mailbox Setup"] = "Ustawienia emaila/skrzynki mailowej";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową.";
-$a->strings["Last successful email check:"] = "Ostatni sprawdzony e-mail:";
-$a->strings["IMAP server name:"] = "Nazwa serwera IMAP:";
-$a->strings["IMAP port:"] = "Port IMAP:";
-$a->strings["Security:"] = "Ochrona:";
-$a->strings["None"] = "Brak";
-$a->strings["Email login name:"] = "Nazwa logowania e-mail:";
-$a->strings["Email password:"] = "E-mail hasło:";
-$a->strings["Reply-to address:"] = "Adres zwrotny:";
-$a->strings["Send public posts to all email contacts:"] = "Wyślij publiczny post do wszystkich kontaktów e-mail";
-$a->strings["Action after import:"] = "Akcja po zaimportowaniu:";
-$a->strings["Mark as seen"] = "Oznacz jako przeczytane";
-$a->strings["Move to folder"] = "Przenieś do folderu";
-$a->strings["Move to folder:"] = "Przenieś do folderu:";
-$a->strings["%s - (Unsupported)"] = "%s - (Nieobsługiwane)";
-$a->strings["%s - (Experimental)"] = "%s- (Eksperymentalne)";
-$a->strings["Display Settings"] = "Wyświetl ustawienia";
-$a->strings["Display Theme:"] = "Wyświetl motyw:";
-$a->strings["Mobile Theme:"] = "Motyw dla urządzeń mobilnych:";
-$a->strings["Suppress warning of insecure networks"] = "Ukryj ostrzeżenie przed niebezpiecznymi sieciami";
-$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "System powinien pominąć ostrzeżenie, że bieżąca grupa zawiera członków sieci, którzy nie mogą otrzymywać komentarzy niepublicznych";
-$a->strings["Update browser every xx seconds"] = "Odświeżaj stronę co xx sekund";
-$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum 10 sekund. Wprowadź -1, aby go wyłączyć.";
-$a->strings["Number of items to display per page:"] = "Liczba elementów do wyświetlenia na stronie:";
-$a->strings["Maximum of 100 items"] = "Maksymalnie 100 elementów";
-$a->strings["Number of items to display per page when viewed from mobile device:"] = "Liczba elementów do wyświetlenia na stronie podczas przeglądania z urządzenia mobilnego:";
-$a->strings["Don't show emoticons"] = "Nie pokazuj emotikonek";
-$a->strings["Calendar"] = "Kalendarz";
-$a->strings["Beginning of week:"] = "Początek tygodnia:";
-$a->strings["Don't show notices"] = "Nie pokazuj powiadomień";
-$a->strings["Infinite scroll"] = "Nieskończone przewijanie";
-$a->strings["Automatic updates only at the top of the network page"] = "Automatyczne aktualizacje tylko u góry strony sieci";
-$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "Po wyłączeniu strona sieciowa jest cały czas aktualizowana, co może być mylące podczas czytania.";
-$a->strings["Bandwith Saver Mode"] = "Tryb oszczędzania przepustowości";
-$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Po włączeniu wbudowana zawartość nie jest wyświetlana w automatycznych aktualizacjach, wyświetlają się tylko przy przeładowaniu strony.";
-$a->strings["Smart Threading"] = "Inteligentne gwintowanie";
-$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "Włączenie tej opcji powoduje pomijanie wcięcia nitek zewnętrznych, zachowując je w dowolnym miejscu. Działa tylko wtedy, gdy wątki są dostępne i włączone.";
-$a->strings["General Theme Settings"] = "Ogólne ustawienia motywu";
-$a->strings["Custom Theme Settings"] = "Niestandardowe ustawienia motywów";
-$a->strings["Content Settings"] = "Ustawienia zawartości";
-$a->strings["Theme settings"] = "Ustawienia motywu";
-$a->strings["Unable to find your profile. Please contact your admin."] = "Nie można znaleźć Twojego profilu. Skontaktuj się z administratorem.";
-$a->strings["Account Types"] = "Rodzaje kont";
-$a->strings["Personal Page Subtypes"] = "Podtypy osobistych stron";
-$a->strings["Community Forum Subtypes"] = "Podtypy społeczności forum";
-$a->strings["Personal Page"] = "Strona osobista";
-$a->strings["Account for a personal profile."] = "Konto dla profilu osobistego.";
-$a->strings["Organisation Page"] = "Strona Organizacji";
-$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = "Konto dla organizacji, która automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\".";
-$a->strings["News Page"] = "Strona Wiadomości";
-$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = "Konto dla reflektora wiadomości, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\".";
-$a->strings["Community Forum"] = "Forum społecznościowe";
-$a->strings["Account for community discussions."] = "Konto do dyskusji w społeczności.";
-$a->strings["Normal Account Page"] = "Normalna strona konta";
-$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = "Konto dla zwykłego profilu osobistego, który wymaga ręcznej zgody \"Przyjaciół\" i \"Obserwatorów\".";
-$a->strings["Soapbox Page"] = "Strona Soapbox";
-$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = "Konto dla profilu publicznego, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\".";
-$a->strings["Public Forum"] = "Forum publiczne";
-$a->strings["Automatically approves all contact requests."] = "Automatycznie zatwierdza wszystkie prośby o kontakt.";
-$a->strings["Automatic Friend Page"] = "Automatyczna strona znajomego";
-$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "Konto popularnego profilu, które automatycznie zatwierdza prośby o kontakt jako \"Przyjaciele\".";
-$a->strings["Private Forum [Experimental]"] = "Prywatne Forum [Eksperymentalne]";
-$a->strings["Requires manual approval of contact requests."] = "Wymaga ręcznego zatwierdzania żądań kontaktów.";
-$a->strings["OpenID:"] = "OpenID:";
-$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcjonalnie) Pozwól zalogować się na to konto przy pomocy OpenID.";
-$a->strings["Publish your default profile in your local site directory?"] = "Opublikować Twój domyślny profil w Twoim lokalnym katalogu stron?";
-$a->strings["Your profile will be published in the global friendica directories (e.g. %s ). Your profile will be visible in public."] = "Twój profil zostanie opublikowany w globalnych katalogach friendica (np.%s ). Twój profil będzie widoczny publicznie.";
-$a->strings["Publish your default profile in the global social directory?"] = "Opublikować Twój domyślny profil w globalnym, społecznościowym katalogu?";
-$a->strings["Your profile will be published in this node's local directory . Your profile details may be publicly visible depending on the system settings."] = "Twój profil zostanie opublikowany w lokalnym katalogu tego węzła . Dane Twojego profilu mogą być publicznie widoczne w zależności od ustawień systemu.";
-$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ukryć listę znajomych przed odwiedzającymi Twój profil?";
-$a->strings["Your contact list won't be shown in your default profile page. You can decide to show your contact list separately for each additional profile you create"] = "Twoja lista kontaktów nie będzie wyświetlana na domyślnej stronie profilu. Możesz zdecydować o wyświetleniu listy kontaktów osobno dla każdego tworzonego dodatkowego profilu.";
-$a->strings["Hide your profile details from anonymous viewers?"] = "Ukryć dane Twojego profilu przed anonimowymi widzami?";
-$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Disables posting public messages to Diaspora and other networks."] = "Anonimowi użytkownicy zobaczą tylko Twoje zdjęcie profilowe, Twoją wyświetlaną nazwę i pseudonim, którego używasz na stronie profilu. Wyłącza wysyłanie publicznych wiadomości do Diaspory i innych sieci.";
-$a->strings["Allow friends to post to your profile page?"] = "Zezwalać znajomym na publikowanie postów na stronie Twojego profilu?";
-$a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = "Twoi znajomi mogą pisać posty na stronie Twojego profilu. Posty zostaną przesłane do Twoich kontaktów.";
-$a->strings["Allow friends to tag your posts?"] = "Zezwolić na oznaczanie Twoich postów przez znajomych?";
-$a->strings["Your contacts can add additional tags to your posts."] = "Twoje kontakty mogą dodawać do tagów dodatkowe posty.";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Pozwól zasugerować Cię jako potencjalnego przyjaciela dla nowych członków?";
-$a->strings["If you like, Friendica may suggest new members to add you as a contact."] = "Jeśli chcesz, Friendica może zaproponować nowym członkom dodanie Cię jako kontakt.";
-$a->strings["Permit unknown people to send you private mail?"] = "Zezwolić nieznanym osobom na wysyłanie prywatnych wiadomości?";
-$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = "Użytkownicy sieci w serwisie Friendica mogą wysyłać prywatne wiadomości, nawet jeśli nie znajdują się one na liście kontaktów.";
-$a->strings["Profile is not published ."] = "Profil nie jest opublikowany ";
-$a->strings["Your Identity Address is '%s' or '%s'."] = "Twój adres tożsamości to '%s' lub '%s'.";
-$a->strings["Automatically expire posts after this many days:"] = "Posty wygasną automatycznie po następującej liczbie dni:";
-$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte.";
-$a->strings["Advanced expiration settings"] = "Zaawansowane ustawienia wygasania";
-$a->strings["Advanced Expiration"] = "Zaawansowane wygasanie";
-$a->strings["Expire posts:"] = "Wygasające posty:";
-$a->strings["Expire personal notes:"] = "Wygasanie osobistych notatek:";
-$a->strings["Expire starred posts:"] = "Wygasaj posty oznaczone gwiazdką:";
-$a->strings["Expire photos:"] = "Wygasanie zdjęć:";
-$a->strings["Only expire posts by others:"] = "Wygaszaj tylko te posty, które zostały napisane przez inne osoby:";
-$a->strings["Account Settings"] = "Ustawienia konta";
-$a->strings["Password Settings"] = "Ustawienia hasła";
-$a->strings["Leave password fields blank unless changing"] = "Pozostaw pola hasła puste, chyba że chcesz je zmienić.";
-$a->strings["Current Password:"] = "Aktualne hasło:";
-$a->strings["Your current password to confirm the changes"] = "Twoje aktualne hasło, potwierdź zmiany";
-$a->strings["Password:"] = "Hasło:";
-$a->strings["Basic Settings"] = "Ustawienia podstawowe";
-$a->strings["Full Name:"] = "Imię i Nazwisko:";
-$a->strings["Email Address:"] = "Adres email:";
-$a->strings["Your Timezone:"] = "Twoja strefa czasowa:";
-$a->strings["Your Language:"] = "Twój język:";
-$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Ustaw język, którego używasz, aby pokazać interfejs użytkownika friendica i do wysłania Ci e-maili";
-$a->strings["Default Post Location:"] = "Standardowa lokalizacja wiadomości:";
-$a->strings["Use Browser Location:"] = "Użyj położenia przeglądarki:";
-$a->strings["Security and Privacy Settings"] = "Ustawienia bezpieczeństwa i prywatności";
-$a->strings["Maximum Friend Requests/Day:"] = "Maksymalna dzienna liczba zaproszeń do grona przyjaciół:";
-$a->strings["(to prevent spam abuse)"] = "(aby zapobiec spamowaniu)";
-$a->strings["Default Post Permissions"] = "Domyślne prawa dostępu wiadomości";
-$a->strings["(click to open/close)"] = "(kliknij by otworzyć/zamknąć)";
-$a->strings["Default Private Post"] = "Domyślny Prywatny Wpis";
-$a->strings["Default Public Post"] = "Domyślny Publiczny Post";
-$a->strings["Default Permissions for New Posts"] = "Uprawnienia domyślne dla nowych postów";
-$a->strings["Maximum private messages per day from unknown people:"] = "Maksymalna liczba prywatnych wiadomości dziennie od nieznanych osób:";
-$a->strings["Notification Settings"] = "Ustawienia powiadomień";
-$a->strings["By default post a status message when:"] = "Domyślnie publikuj komunikat o stanie, gdy:";
-$a->strings["accepting a friend request"] = "przyjęto prośbę o dodanie do znajomych";
-$a->strings["joining a forum/community"] = "dołączono do forum/społeczności";
-$a->strings["making an interesting profile change"] = "dokonano interesującej zmiany profilu";
-$a->strings["Send a notification email when:"] = "Wyślij powiadmonienia na email, kiedy:";
-$a->strings["You receive an introduction"] = "Otrzymałeś zaproszenie";
-$a->strings["Your introductions are confirmed"] = "Twoje zaproszenie jest potwierdzone";
-$a->strings["Someone writes on your profile wall"] = "Ktoś pisze na twoim profilu";
-$a->strings["Someone writes a followup comment"] = "Ktoś pisze komentarz nawiązujący.";
-$a->strings["You receive a private message"] = "Otrzymałeś prywatną wiadomość";
-$a->strings["You receive a friend suggestion"] = "Otrzymałeś propozycję od znajomych";
-$a->strings["You are tagged in a post"] = "Jesteś oznaczony tagiem w poście";
-$a->strings["You are poked/prodded/etc. in a post"] = "Jesteś zaczepiony/zaczepiona/itp. w poście";
-$a->strings["Activate desktop notifications"] = "Aktywuj powiadomienia na pulpicie";
-$a->strings["Show desktop popup on new notifications"] = "Pokaż wyskakujące okienko dla nowych powiadomień";
-$a->strings["Text-only notification emails"] = "E-maile z powiadomieniami tekstowymi";
-$a->strings["Send text only notification emails, without the html part"] = "Wysyłaj tylko e-maile z powiadomieniami tekstowymi, bez części html";
-$a->strings["Show detailled notifications"] = "Pokaż szczegółowe powiadomienia";
-$a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = "Domyślne powiadomienia są skondensowane z jednym powiadomieniem dla każdego przedmiotu. Po włączeniu wyświetlane jest każde powiadomienie.";
-$a->strings["Advanced Account/Page Type Settings"] = "Zaawansowane ustawienia konta/rodzaju strony";
-$a->strings["Change the behaviour of this account for special situations"] = "Zmień zachowanie tego konta w sytuacjach specjalnych";
-$a->strings["Relocate"] = "Przeniesienie";
-$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."] = "Jeśli ten profil został przeniesiony z innego serwera, a niektóre z Twoich kontaktów nie otrzymają aktualizacji, spróbuj nacisnąć ten przycisk.";
-$a->strings["Resend relocate message to contacts"] = "Wyślij ponownie przenieść wiadomości do kontaktów";
-$a->strings["default"] = "standardowe";
-$a->strings["greenzero"] = "greenzero";
-$a->strings["purplezero"] = "purplezero";
-$a->strings["easterbunny"] = "Zajączek wielkanocny";
-$a->strings["darkzero"] = "darkzero";
-$a->strings["comix"] = "comix";
-$a->strings["slackr"] = "";
-$a->strings["Variations"] = "Zmiana";
+$a->strings["No contacts in common."] = "Brak wspólnych kontaktów.";
+$a->strings["Only logged in users are permitted to perform a probing."] = "Tylko zalogowani użytkownicy mogą wykonywać sondowanie.";
+$a->strings["Help:"] = "Pomoc:";
+$a->strings["Page not found."] = "Strona nie znaleziona.";
+$a->strings["Invalid profile identifier."] = "Nieprawidłowa nazwa użytkownika.";
+$a->strings["Profile Visibility Editor"] = "Ustawienia widoczności profilu";
+$a->strings["Visible To"] = "Widoczne dla";
+$a->strings["All Contacts (with secure profile access)"] = "Wszystkie kontakty (z bezpiecznym dostępem do profilu)";
+$a->strings["Unable to locate original post."] = "Nie można zlokalizować oryginalnej wiadomości.";
+$a->strings["Empty post discarded."] = "Pusty wpis został odrzucony.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica";
+$a->strings["You may visit them online at %s"] = "Możesz odwiedzić ich online pod adresem %s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości.";
+$a->strings["%s posted an update."] = "%s zaktualizował wpis.";
+$a->strings["Item not found"] = "Nie znaleziono elementu";
+$a->strings["Edit post"] = "Edytuj post";
+$a->strings["Alignment"] = "Wyrównanie";
+$a->strings["Left"] = "Lewo";
+$a->strings["Center"] = "Środek";
+$a->strings["Color scheme"] = "Zestaw kolorów";
+$a->strings["Posts font size"] = "Rozmiar czcionki postów";
+$a->strings["Textareas font size"] = "Rozmiar czcionki Textareas";
$a->strings["Repeat the image"] = "Powtórz obraz";
$a->strings["Will repeat your image to fill the background."] = "Powtarza twój obraz, aby wypełnić tło.";
$a->strings["Stretch"] = "Rozwiń";
@@ -1779,28 +2205,7 @@ $a->strings["Login page background color"] = "Kolor tła strony logowania";
$a->strings["Leave background image and color empty for theme defaults"] = "Pozostaw obraz tła i kolor pusty dla domyślnych ustawień kompozycji";
$a->strings["Guest"] = "Gość";
$a->strings["Visitor"] = "Odwiedzający";
-$a->strings["Logout"] = "Wyloguj się";
-$a->strings["End this session"] = "Zakończ sesję";
-$a->strings["Your posts and conversations"] = "Twoje posty i rozmowy";
-$a->strings["Your profile page"] = "Twoja strona profilowa";
-$a->strings["Your photos"] = "Twoje zdjęcia";
-$a->strings["Videos"] = "Filmy";
-$a->strings["Your videos"] = "Twoje filmy";
-$a->strings["Your events"] = "Twoje wydarzenia";
-$a->strings["Conversations from your friends"] = "Rozmowy Twoich przyjaciół";
-$a->strings["Events and Calendar"] = "Wydarzenia i kalendarz";
-$a->strings["Private mail"] = "Prywatne maile";
-$a->strings["Account settings"] = "Ustawienia konta";
-$a->strings["Manage/edit friends and contacts"] = "Zarządzaj listą przyjaciół i kontaktami";
-$a->strings["Alignment"] = "Wyrównanie";
-$a->strings["Left"] = "Lewo";
-$a->strings["Center"] = "Środek";
-$a->strings["Color scheme"] = "Zestaw kolorów";
-$a->strings["Posts font size"] = "Rozmiar czcionki postów";
-$a->strings["Textareas font size"] = "Rozmiar czcionki Textareas";
$a->strings["Comma separated list of helper forums"] = "Lista pomocników oddzielona przecinkami";
-$a->strings["don't show"] = "nie pokazuj";
-$a->strings["show"] = "pokaż";
$a->strings["Set style"] = "Ustaw styl";
$a->strings["Community Pages"] = "Strony społeczności";
$a->strings["Community Profiles"] = "Profile społeczności";
@@ -1809,417 +2214,12 @@ $a->strings["Connect Services"] = "Połączone serwisy";
$a->strings["Find Friends"] = "Znajdź znajomych";
$a->strings["Last users"] = "Ostatni użytkownicy";
$a->strings["Local Directory"] = "Katalog lokalny";
-$a->strings["Similar Interests"] = "Podobne zainteresowania";
-$a->strings["Invite Friends"] = "Zaproś znajomych";
-$a->strings["External link to forum"] = "Zewnętrzny link do forum";
$a->strings["Quick Start"] = "Szybki start";
-$a->strings["Error decoding account file"] = "Błąd podczas odczytu pliku konta";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Błąd! Brak danych wersji w pliku! To nie jest plik konta Friendica?";
-$a->strings["User '%s' already exists on this server!"] = "Użytkownik '%s' już istnieje na tym serwerze!";
-$a->strings["User creation error"] = "Błąd tworzenia użytkownika";
-$a->strings["User profile creation error"] = "Błąd tworzenia profilu użytkownika";
-$a->strings["%d contact not imported"] = [
- 0 => "Nie zaimportowano %d kontaktu.",
- 1 => "Nie zaimportowano %d kontaktów.",
- 2 => "Nie zaimportowano %d kontaktów.",
- 3 => "%dkontakty nie zostały zaimportowane ",
-];
-$a->strings["Done. You can now login with your username and password"] = "Gotowe. Możesz teraz zalogować się, podając swoją nazwę użytkownika i hasło.";
-$a->strings["Post to Email"] = "Prześlij e-mailem";
-$a->strings["Hide your profile details from unknown viewers?"] = "Ukryć szczegóły twojego profilu przed nieznajomymi?";
-$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Wtyczki są wyłączone, ponieważ \"%s\" jest włączone.";
-$a->strings["Visible to everybody"] = "Widoczny dla wszystkich";
-$a->strings["Close"] = "Zamknij";
-$a->strings["Enter new password: "] = "Wprowadź nowe hasło:";
-$a->strings["Password can't be empty"] = "Hasło nie może być puste";
-$a->strings["System"] = "System";
-$a->strings["Home"] = "Strona domowa";
-$a->strings["Introductions"] = "Wstępy";
-$a->strings["%s commented on %s's post"] = "%s skomentował wpis %s";
-$a->strings["%s created a new post"] = "%s dodał nowy wpis";
-$a->strings["%s liked %s's post"] = "%s polubił wpis %s";
-$a->strings["%s disliked %s's post"] = "%s nie lubi tych %s postów";
-$a->strings["%s is attending %s's event"] = "%suczestniczy %sw wydarzeniu ";
-$a->strings["%s is not attending %s's event"] = "%snie uczestniczy %s w wydarzeniu ";
-$a->strings["%s may attend %s's event"] = "%smoże uczestniczyć %s w wydarzeniu";
-$a->strings["%s is now friends with %s"] = "%s jest teraz znajomym %s";
-$a->strings["Friend Suggestion"] = "Propozycja znajomych";
-$a->strings["Friend/Connect Request"] = "Prośba o dodanie do przyjaciół/powiązanych";
-$a->strings["New Follower"] = "Nowy obserwujący";
-$a->strings["Birthday:"] = "Urodziny:";
-$a->strings["YYYY-MM-DD or MM-DD"] = "RRRR-MM-DD lub MM-DD";
-$a->strings["never"] = "nigdy";
-$a->strings["less than a second ago"] = "mniej niż sekundę temu";
-$a->strings["year"] = "rok";
-$a->strings["years"] = "lata";
-$a->strings["months"] = "miesiące";
-$a->strings["weeks"] = "tygodnie";
-$a->strings["days"] = "dni";
-$a->strings["hour"] = "godzina";
-$a->strings["hours"] = "godziny";
-$a->strings["minute"] = "minuta";
-$a->strings["minutes"] = "minuty";
-$a->strings["second"] = "sekunda";
-$a->strings["seconds"] = "sekundy";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s temu";
-$a->strings["view full size"] = "Zobacz w pełnym wymiarze";
-$a->strings["Image/photo"] = "Obrazek/zdjęcie";
-$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s";
-$a->strings["$1 wrote:"] = "$1 napisał:";
-$a->strings["Encrypted content"] = "Szyfrowana treść";
-$a->strings["Invalid source protocol"] = "Nieprawidłowy protokół źródłowy";
-$a->strings["Invalid link protocol"] = "Niepoprawny link protokołu";
-$a->strings["Nothing new here"] = "Brak nowych zdarzeń";
-$a->strings["Clear notifications"] = "Wyczyść powiadomienia";
-$a->strings["Personal notes"] = "Notatki";
-$a->strings["Your personal notes"] = "Twoje prywatne notatki";
-$a->strings["Sign in"] = "Zaloguj się";
-$a->strings["Home Page"] = "Strona startowa";
-$a->strings["Create an account"] = "Załóż konto";
-$a->strings["Help and documentation"] = "Pomoc i dokumentacja";
-$a->strings["Apps"] = "Aplikacje";
-$a->strings["Addon applications, utilities, games"] = "Wtyczki, aplikacje, narzędzia, gry";
-$a->strings["Search site content"] = "Przeszukaj zawartość strony";
-$a->strings["Community"] = "Społeczność";
-$a->strings["Conversations on this and other servers"] = "Rozmowy na tym i innych serwerach";
-$a->strings["Directory"] = "Katalog";
-$a->strings["People directory"] = "Katalog osób";
-$a->strings["Information about this friendica instance"] = "Informacje o tej instancji friendica";
-$a->strings["Network Reset"] = "Resetowanie sieci";
-$a->strings["Load Network page with no filters"] = "Załaduj stronę sieci bez filtrów";
-$a->strings["Friend Requests"] = "Prośba o przyjęcie do grona znajomych";
-$a->strings["See all notifications"] = "Zobacz wszystkie powiadomienia";
-$a->strings["Mark all system notifications seen"] = "Oznacz wszystkie powiadomienia systemu jako przeczytane";
-$a->strings["Inbox"] = "Odebrane";
-$a->strings["Outbox"] = "Wysłane";
-$a->strings["Manage"] = "Zarządzaj";
-$a->strings["Manage other pages"] = "Zarządzaj innymi stronami";
-$a->strings["Profiles"] = "Profile";
-$a->strings["Manage/Edit Profiles"] = "Zarządzaj/Edytuj profile";
-$a->strings["Site setup and configuration"] = "Konfiguracja i ustawienia instancji";
-$a->strings["Navigation"] = "Nawigacja";
-$a->strings["Site map"] = "Mapa strony";
-$a->strings["General Features"] = "Funkcje ogólne";
-$a->strings["Multiple Profiles"] = "Wiele profili";
-$a->strings["Ability to create multiple profiles"] = "Możliwość tworzenia wielu profili";
-$a->strings["Photo Location"] = "Lokalizacja zdjęcia";
-$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Metadane zdjęć są zwykle usuwane. Wyodrębnia to położenie (jeśli jest obecne) przed usunięciem metadanych i łączy je z mapą.";
-$a->strings["Export Public Calendar"] = "Eksportuj kalendarz publiczny";
-$a->strings["Ability for visitors to download the public calendar"] = "Możliwość pobierania kalendarza publicznego przez odwiedzających";
-$a->strings["Post Composition Features"] = "Ustawienia funkcji postów";
-$a->strings["Post Preview"] = "Podgląd posta";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Zezwalaj na podgląd postów i komentarzy przed ich opublikowaniem";
-$a->strings["Auto-mention Forums"] = "Automatyczne wymienianie forów";
-$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Dodaj/usuń wzmiankę, gdy strona forum zostanie wybrana/cofnięta w oknie ACL.";
-$a->strings["Network Sidebar Widgets"] = "Widgety paska bocznego sieci";
-$a->strings["Search by Date"] = "Szukanie wg daty";
-$a->strings["Ability to select posts by date ranges"] = "Wybierz wpisy według zakresów dat";
-$a->strings["List Forums"] = "Lista forów";
-$a->strings["Enable widget to display the forums your are connected with"] = "Włącz widżet, aby wyświetlić fora, z którymi jesteś połączony";
-$a->strings["Group Filter"] = "Filtr grupowy";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Włącz widżet, aby wyświetlać posty sieciowe tylko z wybranej grupy";
-$a->strings["Network Filter"] = "Filtr sieciowy";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Włącz widżet, aby wyświetlać posty sieciowe tylko z wybranej sieci";
-$a->strings["Save search terms for re-use"] = "Zapisz wyszukiwane hasła do ponownego użycia";
-$a->strings["Network Tabs"] = "Etykiety sieciowe";
-$a->strings["Network Personal Tab"] = "Etykieta Sieć Osobista";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Włącz etykietę, by wyświetlać posty tylko z sieci, z którymi współpracujesz";
-$a->strings["Network New Tab"] = "Etykieta Nowe Posty Sieciowe";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Włącz etykietę, aby wyświetlić tylko nowe posty sieciowe (z ostatnich 12 godzin)";
-$a->strings["Network Shared Links Tab"] = "Etykieta Udostępnianie Łącz Sieciowych";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Włącz etykietę, aby wyświetlić tylko posty sieciowe z łączami do nich";
-$a->strings["Post/Comment Tools"] = "Narzędzia post/komentarz";
-$a->strings["Multiple Deletion"] = "Wielokrotne Usuwanie";
-$a->strings["Select and delete multiple posts/comments at once"] = "Wybierz i usuń wiele postów/komentarzy jednocześnie";
-$a->strings["Edit Sent Posts"] = "Edytuj wysłane posty";
-$a->strings["Edit and correct posts and comments after sending"] = "Edycja i poprawianie wpisów i komentarzy po wysłaniu";
-$a->strings["Tagging"] = "Tagowanie";
-$a->strings["Ability to tag existing posts"] = "Możliwość oznaczania istniejących postów";
-$a->strings["Post Categories"] = "Kategorie postów";
-$a->strings["Add categories to your posts"] = "Dodaj kategorie do twoich postów";
-$a->strings["Saved Folders"] = "Zapisane foldery";
-$a->strings["Ability to file posts under folders"] = "Możliwość przesyłania postów do folderów";
-$a->strings["Dislike Posts"] = "Nie lubię Postów";
-$a->strings["Ability to dislike posts/comments"] = "Możliwa niechęć do postów/komentarzy";
-$a->strings["Star Posts"] = "Oznacz posty gwiazdką";
-$a->strings["Ability to mark special posts with a star indicator"] = "Oznacz specjalne posty gwiazdką";
-$a->strings["Mute Post Notifications"] = "Ignoruj powiadomienia pocztą";
-$a->strings["Ability to mute notifications for a thread"] = "Ignoruj powiadomienia dla wątku";
-$a->strings["Advanced Profile Settings"] = "Zaawansowane ustawienia profilu";
-$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Wyświetlaj publiczne fora społeczności na stronie profilu zaawansowanego";
-$a->strings["Tag Cloud"] = "Chmura tagów";
-$a->strings["Provide a personal tag cloud on your profile page"] = "Podaj osobistą chmurę tagów na stronie profilu";
-$a->strings["Display Membership Date"] = "Wyświetl datę członkostwa";
-$a->strings["Display membership date in profile"] = "Wyświetl datę członkostwa w profilu";
-$a->strings["Embedding disabled"] = "Osadzanie wyłączone";
-$a->strings["Embedded content"] = "Osadzona zawartość";
-$a->strings["Export"] = "Eksport";
-$a->strings["Export calendar as ical"] = "Wyeksportuj kalendarz jako ical";
-$a->strings["Export calendar as csv"] = "Eksportuj kalendarz jako csv";
-$a->strings["Add New Contact"] = "Dodaj nowy kontakt";
-$a->strings["Enter address or web location"] = "Wpisz adres lub lokalizację sieciową";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Przykład: bob@przykład.com, http://przykład.com/barbara";
-$a->strings["%d invitation available"] = [
- 0 => "%d zaproszenie dostępne",
- 1 => "%d zaproszeń dostępnych",
- 2 => "%d zaproszenia dostępne",
- 3 => "%d zaproszenia dostępne",
-];
-$a->strings["Find People"] = "Znajdź ludzi";
-$a->strings["Enter name or interest"] = "Wpisz nazwę lub zainteresowanie";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Przykład: Jan Kowalski, Wędkarstwo";
-$a->strings["Random Profile"] = "Domyślny profil";
-$a->strings["View Global Directory"] = "Wyświetl globalny katalog";
-$a->strings["Networks"] = "Sieci";
-$a->strings["All Networks"] = "Wszystkie Sieci";
-$a->strings["Everything"] = "Wszystko";
-$a->strings["Categories"] = "Kategorie";
-$a->strings["%d contact in common"] = [
- 0 => "",
- 1 => "",
- 2 => "",
- 3 => "",
-];
-$a->strings["Frequently"] = "Często";
-$a->strings["Hourly"] = "Co godzinę";
-$a->strings["Twice daily"] = "Dwa razy dziennie";
-$a->strings["Daily"] = "Codziennie";
-$a->strings["Weekly"] = "Co tydzień";
-$a->strings["Monthly"] = "Miesięczne";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$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"] = "Łącze Diaspora";
-$a->strings["GNU Social Connector"] = "GNU Połączenie Społecznościowe";
-$a->strings["pnut"] = "orzech";
-$a->strings["App.net"] = "App.net";
-$a->strings["Male"] = "Mężczyzna";
-$a->strings["Female"] = "Kobieta";
-$a->strings["Currently Male"] = "Obecnie mężczyzna";
-$a->strings["Currently Female"] = "Obecnie Kobieta";
-$a->strings["Mostly Male"] = "Głównie mężczyzna";
-$a->strings["Mostly Female"] = "Głównie kobieta";
-$a->strings["Transgender"] = "Transseksualny";
-$a->strings["Intersex"] = "Interseksualne";
-$a->strings["Transsexual"] = "Transseksualny";
-$a->strings["Hermaphrodite"] = "Hermafrodyta";
-$a->strings["Neuter"] = "Rodzaj nijaki";
-$a->strings["Non-specific"] = "Niespecyficzne";
-$a->strings["Other"] = "Inne";
-$a->strings["Males"] = "Mężczyźni";
-$a->strings["Females"] = "Kobiety";
-$a->strings["Gay"] = "Gej";
-$a->strings["Lesbian"] = "Lesbijka";
-$a->strings["No Preference"] = "Brak preferencji";
-$a->strings["Bisexual"] = "Biseksualny";
-$a->strings["Autosexual"] = "Niezidentyfikowany";
-$a->strings["Abstinent"] = "Abstynent";
-$a->strings["Virgin"] = "Dziewica";
-$a->strings["Deviant"] = "Zboczeniec";
-$a->strings["Fetish"] = "Fetysz";
-$a->strings["Oodles"] = "Nadmiar";
-$a->strings["Nonsexual"] = "Nieseksualny";
-$a->strings["Single"] = "Singiel";
-$a->strings["Lonely"] = "Samotny";
-$a->strings["Available"] = "Dostępny";
-$a->strings["Unavailable"] = "Niedostępny";
-$a->strings["Has crush"] = "Ma sympatii";
-$a->strings["Infatuated"] = "Zakochany";
-$a->strings["Dating"] = "Randki";
-$a->strings["Unfaithful"] = "Niewierny";
-$a->strings["Sex Addict"] = "Uzależniony od seksu";
-$a->strings["Friends"] = "Przyjaciele";
-$a->strings["Friends/Benefits"] = "Przyjaciele/Korzyści";
-$a->strings["Casual"] = "Przypadkowy";
-$a->strings["Engaged"] = "Zaręczeni";
-$a->strings["Married"] = "Małżeństwo";
-$a->strings["Imaginarily married"] = "Fikcyjnie w związku małżeńskim";
-$a->strings["Partners"] = "Partnerzy";
-$a->strings["Cohabiting"] = "Konkubinat";
-$a->strings["Common law"] = "Prawo zwyczajowe";
-$a->strings["Happy"] = "Szczęśliwy";
-$a->strings["Not looking"] = "Nie patrzę";
-$a->strings["Swinger"] = "Swinger";
-$a->strings["Betrayed"] = "Zdradzony";
-$a->strings["Separated"] = "W separacji";
-$a->strings["Unstable"] = "Niestabilny";
-$a->strings["Divorced"] = "Rozwiedzeni";
-$a->strings["Imaginarily divorced"] = "Fikcyjnie rozwiedziony/a";
-$a->strings["Widowed"] = "Wdowiec";
-$a->strings["Uncertain"] = "Nieokreślony";
-$a->strings["It's complicated"] = "To skomplikowane";
-$a->strings["Don't care"] = "Nie przejmuj się";
-$a->strings["Ask me"] = "Zapytaj mnie ";
-$a->strings["There are no tables on MyISAM."] = "W MyISAM nie ma tabel.";
-$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tDeweloperzy friendica wydali niedawno aktualizację %s,\n\t\t\t\tale podczas próby instalacji, coś poszło nie tak.\n\t\t\t\tZostanie to naprawione wkrótce i nie mogę tego zrobić sam. Proszę skontaktować się z \n\t\t\t\tprogramistami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być nieprawidłowa.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "Komunikat o błędzie jest \n[pre]%s[/ pre]";
-$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nWystąpił błąd %d podczas aktualizacji bazy danych:\n%s\n";
-$a->strings["Errors encountered performing database changes: "] = "Napotkane błędy powodujące zmiany w bazie danych:";
-$a->strings[": Database update"] = ": Aktualizacja bazy danych";
-$a->strings["%s: updating %s table."] = "%s: aktualizowanie %s tabeli.";
-$a->strings["[no subject]"] = "[bez tematu]";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$suczestniczy %2\$s's %3\$s ";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$snie uczestniczy %2\$s's %3\$s ";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$smogą uczestniczyć %2\$s's %3\$s ";
-$a->strings["Drop Contact"] = "Upuść kontakt";
-$a->strings["Organisation"] = "Organizacja";
-$a->strings["News"] = "Aktualności";
-$a->strings["Forum"] = "Forum";
-$a->strings["Connect URL missing."] = "Brak adresu URL połączenia.";
-$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Nie można dodać kontaktu. Sprawdź odpowiednie poświadczenia sieciowe na stronie Ustawienia -> Sieci społecznościowe.";
-$a->strings["This site is not configured to allow communications with other networks."] = "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Nie znaleziono żadnych kompatybilnych protokołów komunikacyjnych ani źródeł.";
-$a->strings["The profile address specified does not provide adequate information."] = "Dany adres profilu nie dostarcza odpowiednich informacji.";
-$a->strings["An author or name was not found."] = "Autor lub nazwa nie zostało znalezione.";
-$a->strings["No browser URL could be matched to this address."] = "Przeglądarka WWW nie może odnaleźć podanego adresu";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail.";
-$a->strings["Use mailto: in front of address to force email check."] = "Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Określony adres profilu należy do sieci, która została wyłączona na tej stronie.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie.";
-$a->strings["Unable to retrieve contact information."] = "Nie można otrzymać informacji kontaktowych";
-$a->strings["%s's birthday"] = "Urodziny %s";
-$a->strings["Happy Birthday %s"] = "Urodziny %s";
-$a->strings["Starts:"] = "Rozpoczęcie:";
-$a->strings["Finishes:"] = "Zakończenie:";
-$a->strings["all-day"] = "cały dzień";
-$a->strings["Jun"] = "cze";
-$a->strings["Sept"] = "wrz";
-$a->strings["No events to display"] = "Brak wydarzeń do wyświetlenia";
-$a->strings["l, F j"] = "d, M d ";
-$a->strings["Edit event"] = "Edytuj wydarzenie";
-$a->strings["Duplicate event"] = "Zduplikowane zdarzenie";
-$a->strings["Delete event"] = "Usuń wydarzenie";
-$a->strings["D g:i A"] = "";
-$a->strings["g:i A"] = "";
-$a->strings["Show map"] = "Pokaż mapę";
-$a->strings["Hide map"] = "Ukryj mapę";
-$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Skasowana grupa o tej nazwie została przywrócona. Istniejące uprawnienia do pozycji mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie jest to zamierzone, utwórz inną grupę o innej nazwie.";
-$a->strings["Default privacy group for new contacts"] = "Domyślne ustawienia prywatności dla nowych kontaktów";
-$a->strings["Everybody"] = "Wszyscy";
-$a->strings["edit"] = "edytuj";
-$a->strings["Edit group"] = "Edytuj grupy";
-$a->strings["Contacts not in any group"] = "Kontakt nie jest w żadnej grupie";
-$a->strings["Create a new group"] = "Stwórz nową grupę";
-$a->strings["Edit groups"] = "Edytuj grupy";
-$a->strings["Requested account is not available."] = "Żądane konto jest niedostępne.";
-$a->strings["Edit profile"] = "Edytuj profil";
-$a->strings["Atom feed"] = "Kanał Atom";
-$a->strings["Manage/edit profiles"] = "Zarządzaj profilami";
-$a->strings["g A l F d"] = "g A I F d";
-$a->strings["F d"] = "";
-$a->strings["[today]"] = "[dziś]";
-$a->strings["Birthday Reminders"] = "Przypomnienia o urodzinach";
-$a->strings["Birthdays this week:"] = "Urodziny w tym tygodniu:";
-$a->strings["[No description]"] = "[Brak opisu]";
-$a->strings["Event Reminders"] = "Przypominacze wydarzeń";
-$a->strings["Events this week:"] = "Wydarzenia w tym tygodniu:";
-$a->strings["Member since:"] = "Członek od:";
-$a->strings["j F, Y"] = "d M, R";
-$a->strings["j F"] = "d M";
-$a->strings["Age:"] = "Wiek:";
-$a->strings["for %1\$d %2\$s"] = "od %1\$d %2\$s";
-$a->strings["Religion:"] = "Religia:";
-$a->strings["Hobbies/Interests:"] = "Hobby/Zainteresowania:";
-$a->strings["Contact information and Social Networks:"] = "Informacje kontaktowe i sieci społeczne";
-$a->strings["Musical interests:"] = "Zainteresowania muzyczne:";
-$a->strings["Books, literature:"] = "Książki, literatura:";
-$a->strings["Television:"] = "Telewizja:";
-$a->strings["Film/dance/culture/entertainment:"] = "Film/taniec/kultura/rozrywka";
-$a->strings["Love/Romance:"] = "Miłość/Romans:";
-$a->strings["Work/employment:"] = "Praca/zatrudnienie:";
-$a->strings["School/education:"] = "Szkoła/edukacja:";
-$a->strings["Forums:"] = "Fora:";
-$a->strings["Only You Can See This"] = "Tylko ty możesz to zobaczyć";
-$a->strings["Login failed"] = "Logowanie nieudane";
-$a->strings["Not enough information to authenticate"] = "Za mało informacji do uwierzytelnienia";
-$a->strings["An invitation is required."] = "Wymagane zaproszenie.";
-$a->strings["Invitation could not be verified."] = "Zaproszenie niezweryfikowane.";
-$a->strings["Invalid OpenID url"] = "Nieprawidłowy adres url OpenID";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Napotkaliśmy problem podczas logowania z podanym przez nas identyfikatorem OpenID. Sprawdź poprawną pisownię identyfikatora.";
-$a->strings["The error message was:"] = "Komunikat o błędzie:";
-$a->strings["Please enter the required information."] = "Wprowadź wymagane informacje";
-$a->strings["Please use a shorter name."] = "Użyj dłuższej nazwy.";
-$a->strings["Name too short."] = "Nazwa jest za krótka.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Wydaje mi się, że to nie jest twoje pełne imię (pierwsze imię) i nazwisko.";
-$a->strings["Your email domain is not among those allowed on this site."] = "Twoja domena internetowa nie jest obsługiwana na tej stronie.";
-$a->strings["Not a valid email address."] = "Niepoprawny adres e mail..";
-$a->strings["Cannot use that email."] = "Nie możesz użyć tego e-maila. ";
-$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Twój pseudonim może zawierać tylko a-z, 0-9 i _.";
-$a->strings["Nickname is already registered. Please choose another."] = "Ten login jest zajęty. Wybierz inny.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń.";
-$a->strings["An error occurred during registration. Please try again."] = "Wystąpił bład podczas rejestracji, Spróbuj ponownie.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie.";
-$a->strings["An error occurred creating your self contact. Please try again."] = "Wystąpił błąd podczas tworzenia własnego kontaktu. Proszę spróbuj ponownie.";
-$a->strings["An error occurred creating your default contact group. Please try again."] = "Wystąpił błąd podczas tworzenia domyślnej grupy kontaktów. Proszę spróbuj ponownie.";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t\t"] = "\n\t\t\tDrodzy %1\$s, \n\t\t\t\tDziękujemy za rejestrację na stronie %2\$s. Twoje konto czeka na zatwierdzenie przez administratora.";
-$a->strings["Registration at %s"] = "Rejestracja w %s";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t"] = "\n\t\t\tDrodzy %1\$s, \n\t\t\t\tDziękujemy za rejestrację na stronie %2\$s. Twoje konto zostało utworzone.";
-$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$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\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%3\$s\n\t\t\tNazwa użytkownika:\t\t%1\$s\n\t\t\tHasło:\t\t%5\$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\"\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i\n\t\t\tbyć może w jakim kraju mieszkasz; jeśli nie chcesz być bardziej szczegółowy.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić w %3\$s/Usuń konto\n\n\t\t\tDziękujemy i Zapraszamy do %2\$s.";
-$a->strings["%s is now following %s."] = "%sjest teraz następujące %s. ";
-$a->strings["following"] = "następujący";
-$a->strings["%s stopped following %s."] = "%sprzestał śledzić %s. ";
-$a->strings["stopped following"] = "przestał śledzić";
-$a->strings["%s\\'s birthday"] = "%s\\'s urodziny";
-$a->strings["Sharing notification from Diaspora network"] = "Wspólne powiadomienie z sieci Diaspora";
-$a->strings["Attachments:"] = "Załączniki:";
-$a->strings["(no subject)"] = "(bez tematu)";
-$a->strings["Create a New Account"] = "Załóż nowe konto";
-$a->strings["Password: "] = "Hasło:";
-$a->strings["Remember me"] = "Zapamiętaj mnie";
-$a->strings["Or login using OpenID: "] = "Lub zaloguj się korzystając z OpenID:";
-$a->strings["Forgot your password?"] = "Zapomniałeś swojego hasła?";
-$a->strings["Website Terms of Service"] = "Warunki korzystania z witryny";
-$a->strings["terms of service"] = "warunki użytkowania";
-$a->strings["Website Privacy Policy"] = "Polityka Prywatności Witryny";
-$a->strings["privacy policy"] = "polityka prywatności";
-$a->strings["Logged out."] = "Wyloguj";
-$a->strings["Privacy Statement"] = "Oświadczenie o prywatności";
-$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "W momencie rejestracji oraz w celu zapewnienia komunikacji między kontem użytkownika, a jego kontaktami, użytkownik musi podać nazwę wyświetlaną (pseudonim), nazwę użytkownika (przydomek) i działający adres e-mail. Nazwy będą dostępne na stronie profilu konta dla każdego odwiedzającego stronę, nawet jeśli inne szczegóły profilu nie zostaną wyświetlone. Adres e-mail będzie używany tylko do wysyłania powiadomień użytkownika o interakcjach, ale nie będzie wyświetlany w widoczny sposób. Lista kont w katalogu użytkownika węzła lub globalnym katalogu użytkownika jest opcjonalna i może być kontrolowana w ustawieniach użytkownika, nie jest konieczna do komunikacji.";
-$a->strings["This data is required for communication and is passed on to the nodes of the communication partners. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "Te dane są wymagane do komunikacji i przekazywane do węzłów partnerów komunikacyjnych. Użytkownicy mogą wprowadzać dodatkowe prywatne dane, które mogą być przesyłane na konta partnerów komunikacyjnych.";
-$a->strings["At any point in time a logged in user can export their account data from the account settings . If the user wants to delete their account they can do so at %1\$s/removeme . The deletion of the account will be permanent."] = "W dowolnym momencie zalogowany użytkownik może wyeksportować dane swojego konta z ustawień konta . Jeśli użytkownik chce usunąć swoje konto, może to zrobić w %1\$s/usuń mnie. Usunięcie konta będzie trwałe.";
-$a->strings["This entry was edited"] = "Ten wpis został zedytowany";
-$a->strings["save to folder"] = "zapisz w folderze";
-$a->strings["I will attend"] = "Będę uczestniczyć";
-$a->strings["I will not attend"] = "Nie będę uczestniczyć";
-$a->strings["I might attend"] = "Mogę wziąć udział";
-$a->strings["add star"] = "dodaj gwiazdkę";
-$a->strings["remove star"] = "anuluj gwiazdkę";
-$a->strings["toggle star status"] = "włącz status gwiazdy";
-$a->strings["starred"] = "gwiazdką";
-$a->strings["ignore thread"] = "zignoruj wątek";
-$a->strings["unignore thread"] = "odignoruj wątek";
-$a->strings["toggle ignore status"] = "przełącz status ignorowania";
-$a->strings["add tag"] = "dodaj tag";
-$a->strings["like"] = "lubię to";
-$a->strings["dislike"] = "nie lubię tego";
-$a->strings["Share this"] = "Udostępnij to";
-$a->strings["share"] = "udostępnij";
-$a->strings["to"] = "do";
-$a->strings["via"] = "przez";
-$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
-$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
-$a->strings["%d comment"] = [
- 0 => " %d komentarz",
- 1 => " %d komentarzy",
- 2 => " %d komentarzy",
- 3 => " %d komentarzy",
-];
-$a->strings["Bold"] = "Pogrubienie";
-$a->strings["Italic"] = "Kursywa";
-$a->strings["Underline"] = "Podkreślenie";
-$a->strings["Quote"] = "Cytat";
-$a->strings["Code"] = "Kod";
-$a->strings["Image"] = "Obraz";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Video";
-$a->strings["Delete this item?"] = "Usunąć ten element?";
-$a->strings["show fewer"] = "Pokaż mniej";
-$a->strings["Update %s failed. See error logs."] = "Aktualizacja %s nie powiodła się. Zobacz dziennik błędów.";
+$a->strings["greenzero"] = "greenzero";
+$a->strings["purplezero"] = "purplezero";
+$a->strings["easterbunny"] = "Zajączek wielkanocny";
+$a->strings["darkzero"] = "darkzero";
+$a->strings["comix"] = "comix";
+$a->strings["slackr"] = "";
+$a->strings["Variations"] = "Zmiana";
$a->strings["toggle mobile"] = "przełącz na mobilny";
diff --git a/view/templates/field_checkbox.tpl b/view/templates/field_checkbox.tpl
index b66cced87..8275d4595 100644
--- a/view/templates/field_checkbox.tpl
+++ b/view/templates/field_checkbox.tpl
@@ -1,6 +1,8 @@
- {{$field.1}}
+ {{$field.1}}
+ {{if $field.3}}
{{$field.3}}
+ {{/if}}
diff --git a/view/templates/field_combobox.tpl b/view/templates/field_combobox.tpl
index 458655016..876e607cd 100644
--- a/view/templates/field_combobox.tpl
+++ b/view/templates/field_combobox.tpl
@@ -13,6 +13,8 @@
{{foreach $field.4 as $opt=>$val}}{{$val}} {{/foreach}}
- {{$field.3}}
+ {{if $field.3}}
+ {{$field.3}}
+ {{/if}}
diff --git a/view/templates/field_custom.tpl b/view/templates/field_custom.tpl
index 0b0928402..6649b0ff9 100644
--- a/view/templates/field_custom.tpl
+++ b/view/templates/field_custom.tpl
@@ -3,5 +3,7 @@
{{$field.1}}
{{$field.2}}
- {{$field.3}}
+ {{if $field.3}}
+ {{$field.3}}
+ {{/if}}
diff --git a/view/templates/field_input.tpl b/view/templates/field_input.tpl
index 495493f2f..850656bb8 100644
--- a/view/templates/field_input.tpl
+++ b/view/templates/field_input.tpl
@@ -2,5 +2,7 @@
{{$field.1}}
+ {{if $field.3}}
{{$field.3}}
+ {{/if}}
diff --git a/view/templates/field_intcheckbox.tpl b/view/templates/field_intcheckbox.tpl
index 73bdf6041..9c5f04e79 100644
--- a/view/templates/field_intcheckbox.tpl
+++ b/view/templates/field_intcheckbox.tpl
@@ -3,5 +3,7 @@
{{$field.1}}
+ {{if $field.4}}
{{$field.4}}
+ {{/if}}
diff --git a/view/templates/field_openid.tpl b/view/templates/field_openid.tpl
index 062ac6ac6..9a18bbc13 100644
--- a/view/templates/field_openid.tpl
+++ b/view/templates/field_openid.tpl
@@ -2,5 +2,7 @@
{{$field.1}}
- {{$field.3}}
+ {{if $field.3}}
+ {{$field.3}}
+ {{/if}}
diff --git a/view/templates/field_password.tpl b/view/templates/field_password.tpl
index 333ce67c3..4b4d4f2b2 100644
--- a/view/templates/field_password.tpl
+++ b/view/templates/field_password.tpl
@@ -2,5 +2,7 @@
{{$field.1}}
+ {{if $field.3}}
{{$field.3}}
+ {{/if}}
diff --git a/view/templates/field_radio.tpl b/view/templates/field_radio.tpl
index 6b880ed99..1e1d8e0b1 100644
--- a/view/templates/field_radio.tpl
+++ b/view/templates/field_radio.tpl
@@ -1,5 +1,7 @@
{{$field.1}}
+ {{if $field.3}}
{{$field.3}}
+ {{/if}}
diff --git a/view/templates/field_richtext.tpl b/view/templates/field_richtext.tpl
index 67553bb95..bc346ddb0 100644
--- a/view/templates/field_richtext.tpl
+++ b/view/templates/field_richtext.tpl
@@ -3,5 +3,7 @@
{{$field.1}}
- {{$field.3}}
+ {{if $field.3}}
+ {{$field.3}}
+ {{/if}}
diff --git a/view/templates/field_select.tpl b/view/templates/field_select.tpl
index 2d037439d..87a2ab9ff 100644
--- a/view/templates/field_select.tpl
+++ b/view/templates/field_select.tpl
@@ -5,5 +5,7 @@
{{foreach $field.4 as $opt=>$val}}{{$val}} {{/foreach}}
- {{$field.3}}
+ {{if $field.3}}
+ {{$field.3}}
+ {{/if}}
diff --git a/view/templates/field_select_raw.tpl b/view/templates/field_select_raw.tpl
index 4c826a042..147c028ef 100644
--- a/view/templates/field_select_raw.tpl
+++ b/view/templates/field_select_raw.tpl
@@ -5,5 +5,7 @@
{{$field.4}}
- {{$field.3}}
+ {{if $field.3}}
+ {{$field.3}}
+ {{/if}}
diff --git a/view/templates/field_textarea.tpl b/view/templates/field_textarea.tpl
index c37537d6e..60594a266 100644
--- a/view/templates/field_textarea.tpl
+++ b/view/templates/field_textarea.tpl
@@ -3,5 +3,7 @@
{{$field.1}}
- {{$field.3}}
+ {{if $field.3}}
+ {{$field.3}}
+ {{/if}}
diff --git a/view/templates/field_themeselect.tpl b/view/templates/field_themeselect.tpl
index 51f6057ae..5f56c187e 100644
--- a/view/templates/field_themeselect.tpl
+++ b/view/templates/field_themeselect.tpl
@@ -5,6 +5,8 @@
{{foreach $field.4 as $opt=>$val}}{{$val}} {{/foreach}}
- {{$field.3}}
+ {{if $field.3}}
+ {{$field.3}}
+ {{/if}}
{{if $field.5}}
{{/if}}
diff --git a/view/templates/field_yesno.tpl b/view/templates/field_yesno.tpl
index 155d0488b..7e7c3cc4e 100644
--- a/view/templates/field_yesno.tpl
+++ b/view/templates/field_yesno.tpl
@@ -10,5 +10,7 @@
{{if $field.4}}{{$field.4.1}}{{else}}ON{{/if}}
- {{$field.3}}
+ {{if $field.3}}
+ {{$field.3}}
+ {{/if}}
diff --git a/view/templates/htconfig.tpl b/view/templates/htconfig.tpl
index d72307fb5..1325a6177 100644
--- a/view/templates/htconfig.tpl
+++ b/view/templates/htconfig.tpl
@@ -107,7 +107,7 @@ $a->config['system']['no_regfullname'] = true;
//$a->config['system']['block_local_dir'] = false;
// Location of the global directory
-$a->config['system']['directory'] = 'http://dir.friendica.social';
+$a->config['system']['directory'] = 'https://dir.friendica.social';
// Authentication cookie lifetime, in days
$a->config['system']['auth_cookie_lifetime'] = 7;
diff --git a/view/templates/install_checks.tpl b/view/templates/install_checks.tpl
index 10a197482..f96072911 100644
--- a/view/templates/install_checks.tpl
+++ b/view/templates/install_checks.tpl
@@ -16,7 +16,13 @@
{{/if}}
{{if $check.required}}(required){{/if}}
{{if $check.help}}
- {{$check.help}}
+
+ {{$check.help}}
+ {{if $check.error_msg}}
+
+ {{$check.error_msg.msg}}
+ {{/if}}
+
{{/if}}
{{/foreach}}
diff --git a/view/templates/invite.tpl b/view/templates/invite.tpl
index 6fd8539c5..2087635e4 100644
--- a/view/templates/invite.tpl
+++ b/view/templates/invite.tpl
@@ -1,31 +1,18 @@
diff --git a/view/templates/login.tpl b/view/templates/login.tpl
index e1e8c5f3a..029ebb034 100644
--- a/view/templates/login.tpl
+++ b/view/templates/login.tpl
@@ -4,11 +4,14 @@
-
{{$login}}
+
{{$login}}
{{include file="field_input.tpl" field=$lname}}
{{include file="field_password.tpl" field=$lpassword}}
+
{{if $openid}}
@@ -17,16 +20,11 @@
{{/if}}
- {{include file="field_checkbox.tpl" field=$lremember}}
-
-
-
+
+ {{include file="field_checkbox.tpl" field=$lremember}}
{{foreach $hiddens as $k=>$v}}
@@ -35,5 +33,11 @@
+{{if $register}}
+
+{{/if}}
diff --git a/view/templates/paginate.tpl b/view/templates/paginate.tpl
index fcd580b07..ee9a1cc33 100644
--- a/view/templates/paginate.tpl
+++ b/view/templates/paginate.tpl
@@ -1,5 +1,5 @@
+{{if $pager && ($pager.prev || $pager.next)}}
+{{/if}}
diff --git a/view/templates/peoplefind.tpl b/view/templates/peoplefind.tpl
index 481bdd71e..67f7a8086 100644
--- a/view/templates/peoplefind.tpl
+++ b/view/templates/peoplefind.tpl
@@ -1,16 +1,17 @@
diff --git a/view/templates/wall/content_filter.tpl b/view/templates/wall/content_filter.tpl
new file mode 100644
index 000000000..1e2b99c22
--- /dev/null
+++ b/view/templates/wall/content_filter.tpl
@@ -0,0 +1,22 @@
+{{if count($reasons) > 1}}
+
+ {{foreach $reasons as $reason}}
+ {{$reason|escape:html}}
+ {{/foreach}}
+
+
+
+ {{$openclose}}
+
+
+{{else}}
+
+ {{$reasons.0|escape:html}}
+
+ {{$openclose}}
+
+
+{{/if}}
+
+ {{$html}}
+
diff --git a/view/theme/frio/README.md b/view/theme/frio/README.md
index 037028ff4..c729d1282 100644
--- a/view/theme/frio/README.md
+++ b/view/theme/frio/README.md
@@ -37,11 +37,11 @@ Don't blame me too much for ugly code and hacks. Fix it ;-)
**Theme - Settings**

-**Red schema**
-
+**Red scheme**
+
-**Love Music schema**
-
+**Love Music scheme**
+
**frio on mobile**
diff --git a/view/theme/frio/config.php b/view/theme/frio/config.php
index 9081d9df4..55a653696 100644
--- a/view/theme/frio/config.php
+++ b/view/theme/frio/config.php
@@ -8,128 +8,134 @@ use Friendica\Core\System;
require_once 'view/theme/frio/php/Image.php';
-function theme_post(App $a) {
+function theme_post(App $a)
+{
if (!local_user()) {
return;
}
if (isset($_POST['frio-settings-submit'])) {
- PConfig::set(local_user(), 'frio', 'schema', $_POST["frio_schema"]);
- PConfig::set(local_user(), 'frio', 'nav_bg', $_POST["frio_nav_bg"]);
- PConfig::set(local_user(), 'frio', 'nav_icon_color', $_POST["frio_nav_icon_color"]);
- PConfig::set(local_user(), 'frio', 'link_color', $_POST["frio_link_color"]);
- PConfig::set(local_user(), 'frio', 'background_color', $_POST["frio_background_color"]);
- PConfig::set(local_user(), 'frio', 'contentbg_transp', $_POST["frio_contentbg_transp"]);
- PConfig::set(local_user(), 'frio', 'background_image', $_POST["frio_background_image"]);
- PConfig::set(local_user(), 'frio', 'bg_image_option', $_POST["frio_bg_image_option"]);
+ PConfig::set(local_user(), 'frio', 'scheme', $_POST['frio_scheme']);
+ PConfig::set(local_user(), 'frio', 'nav_bg', $_POST['frio_nav_bg']);
+ PConfig::set(local_user(), 'frio', 'nav_icon_color', $_POST['frio_nav_icon_color']);
+ PConfig::set(local_user(), 'frio', 'link_color', $_POST['frio_link_color']);
+ PConfig::set(local_user(), 'frio', 'background_color', $_POST['frio_background_color']);
+ PConfig::set(local_user(), 'frio', 'contentbg_transp', $_POST['frio_contentbg_transp']);
+ PConfig::set(local_user(), 'frio', 'background_image', $_POST['frio_background_image']);
+ PConfig::set(local_user(), 'frio', 'bg_image_option', $_POST['frio_bg_image_option']);
PConfig::set(local_user(), 'frio', 'css_modified', time());
}
}
-function theme_admin_post(App $a) {
+function theme_admin_post(App $a)
+{
if (!local_user()) {
return;
}
if (isset($_POST['frio-settings-submit'])) {
- Config::set('frio', 'schema', $_POST["frio_schema"]);
- Config::set('frio', 'nav_bg', $_POST["frio_nav_bg"]);
- Config::set('frio', 'nav_icon_color', $_POST["frio_nav_icon_color"]);
- Config::set('frio', 'link_color', $_POST["frio_link_color"]);
- Config::set('frio', 'background_color', $_POST["frio_background_color"]);
- Config::set('frio', 'contentbg_transp', $_POST["frio_contentbg_transp"]);
- Config::set('frio', 'background_image', $_POST["frio_background_image"]);
- Config::set('frio', 'bg_image_option', $_POST["frio_bg_image_option"]);
- Config::set('frio', 'login_bg_image', $_POST["frio_login_bg_image"]);
- Config::set('frio', 'login_bg_color', $_POST["frio_login_bg_color"]);
+ Config::set('frio', 'scheme', $_POST['frio_scheme']);
+ Config::set('frio', 'nav_bg', $_POST['frio_nav_bg']);
+ Config::set('frio', 'nav_icon_color', $_POST['frio_nav_icon_color']);
+ Config::set('frio', 'link_color', $_POST['frio_link_color']);
+ Config::set('frio', 'background_color', $_POST['frio_background_color']);
+ Config::set('frio', 'contentbg_transp', $_POST['frio_contentbg_transp']);
+ Config::set('frio', 'background_image', $_POST['frio_background_image']);
+ Config::set('frio', 'bg_image_option', $_POST['frio_bg_image_option']);
+ Config::set('frio', 'login_bg_image', $_POST['frio_login_bg_image']);
+ Config::set('frio', 'login_bg_color', $_POST['frio_login_bg_color']);
Config::set('frio', 'css_modified', time());
}
}
-function theme_content(App $a) {
+function theme_content(App $a)
+{
if (!local_user()) {
return;
}
$arr = [];
- $arr["schema"] = PConfig::get(local_user(), 'frio', 'schema');
- $arr["nav_bg"] = PConfig::get(local_user(), 'frio', 'nav_bg');
- $arr["nav_icon_color"] = PConfig::get(local_user(), 'frio', 'nav_icon_color');
- $arr["link_color"] = PConfig::get(local_user(), 'frio', 'link_color');
- $arr["bgcolor"] = PConfig::get(local_user(), 'frio', 'background_color');
- $arr["contentbg_transp"] = PConfig::get(local_user(), 'frio', 'contentbg_transp');
- $arr["background_image"] = PConfig::get(local_user(), 'frio', 'background_image');
- $arr["bg_image_option"] = PConfig::get(local_user(), 'frio', 'bg_image_option');
+ $arr['scheme'] = PConfig::get(local_user(), 'frio', 'scheme', PConfig::get(local_user(), 'frio', 'schema'));
+ $arr['nav_bg'] = PConfig::get(local_user(), 'frio', 'nav_bg');
+ $arr['nav_icon_color'] = PConfig::get(local_user(), 'frio', 'nav_icon_color');
+ $arr['link_color'] = PConfig::get(local_user(), 'frio', 'link_color');
+ $arr['background_color'] = PConfig::get(local_user(), 'frio', 'background_color');
+ $arr['contentbg_transp'] = PConfig::get(local_user(), 'frio', 'contentbg_transp');
+ $arr['background_image'] = PConfig::get(local_user(), 'frio', 'background_image');
+ $arr['bg_image_option'] = PConfig::get(local_user(), 'frio', 'bg_image_option');
return frio_form($arr);
}
-function theme_admin(App $a) {
+function theme_admin(App $a)
+{
if (!local_user()) {
return;
}
$arr = [];
- $arr["schema"] = Config::get('frio', 'schema');
- $arr["nav_bg"] = Config::get('frio', 'nav_bg');
- $arr["nav_icon_color"] = Config::get('frio', 'nav_icon_color');
- $arr["link_color"] = Config::get('frio', 'link_color');
- $arr["bgcolor"] = Config::get('frio', 'background_color');
- $arr["contentbg_transp"] = Config::get('frio', 'contentbg_transp');
- $arr["background_image"] = Config::get('frio', 'background_image');
- $arr["bg_image_option"] = Config::get('frio', 'bg_image_option');
- $arr["login_bg_image"] = Config::get('frio', 'login_bg_image');
- $arr["login_bg_color"] = Config::get('frio', 'login_bg_color');
+ $arr['scheme'] = Config::get('frio', 'scheme', Config::get('frio', 'scheme'));
+ $arr['nav_bg'] = Config::get('frio', 'nav_bg');
+ $arr['nav_icon_color'] = Config::get('frio', 'nav_icon_color');
+ $arr['link_color'] = Config::get('frio', 'link_color');
+ $arr['background_color'] = Config::get('frio', 'background_color');
+ $arr['contentbg_transp'] = Config::get('frio', 'contentbg_transp');
+ $arr['background_image'] = Config::get('frio', 'background_image');
+ $arr['bg_image_option'] = Config::get('frio', 'bg_image_option');
+ $arr['login_bg_image'] = Config::get('frio', 'login_bg_image');
+ $arr['login_bg_color'] = Config::get('frio', 'login_bg_color');
return frio_form($arr);
}
-function frio_form($arr) {
- require_once("view/theme/frio/php/schema.php");
+function frio_form($arr)
+{
+ require_once 'view/theme/frio/php/scheme.php';
- $scheme_info = get_schema_info($arr["schema"]);
- $disable = $scheme_info["overwrites"];
+ $scheme_info = get_scheme_info($arr['scheme']);
+ $disable = $scheme_info['overwrites'];
if (!is_array($disable)) {
$disable = [];
}
$scheme_choices = [];
- $scheme_choices["---"] = L10n::t("Default");
- $files = glob('view/theme/frio/schema/*.php');
+ $scheme_choices['---'] = L10n::t('Custom');
+ $files = glob('view/theme/frio/scheme/*.php');
if ($files) {
foreach ($files as $file) {
- $f = basename($file, ".php");
+ $f = basename($file, '.php');
if ($f != 'default') {
- $scheme_name = $f;
+ $scheme_name = ucfirst($f);
$scheme_choices[$f] = $scheme_name;
}
}
}
- $background_image_help = "" . L10n::t("Note"). ": ".L10n::t("Check image permissions if all users are allowed to visit the image");
+ $background_image_help = '' . L10n::t('Note') . ': ' . L10n::t('Check image permissions if all users are allowed to see the image');
$t = get_markup_template('theme_settings.tpl');
$ctx = [
'$submit' => L10n::t('Submit'),
'$baseurl' => System::baseUrl(),
- '$title' => L10n::t("Theme settings"),
- '$schema' => ['frio_schema', L10n::t("Select scheme"), $arr["schema"], '', $scheme_choices],
- '$nav_bg' => array_key_exists("nav_bg", $disable) ? "" : ['frio_nav_bg', L10n::t('Navigation bar background color'), $arr['nav_bg'], '', false],
- '$nav_icon_color' => array_key_exists("nav_icon_color", $disable) ? "" : ['frio_nav_icon_color', L10n::t('Navigation bar icon color '), $arr['nav_icon_color'], '', false],
- '$link_color' => array_key_exists("link_color", $disable) ? "" : ['frio_link_color', L10n::t('Link color'), $arr['link_color'], '', false],
- '$bgcolor' => array_key_exists("bgcolor", $disable) ? "" : ['frio_background_color', L10n::t('Set the background color'), $arr['bgcolor'], '', false],
- '$contentbg_transp' => array_key_exists("contentbg_transp", $disable) ? "" : ['frio_contentbg_transp', L10n::t("Content background opacity"), ((isset($arr["contentbg_transp"]) && $arr["contentbg_transp"] != "") ? $arr["contentbg_transp"] : 100), ''],
- '$background_image' => array_key_exists("background_image", $disable) ? "" : ['frio_background_image', L10n::t('Set the background image'), $arr['background_image'], $background_image_help, false],
+ '$title' => L10n::t('Theme settings'),
+ '$scheme' => ['frio_scheme', L10n::t('Select color scheme'), $arr['scheme'], '', $scheme_choices],
+ '$nav_bg' => array_key_exists('nav_bg', $disable) ? '' : ['frio_nav_bg', L10n::t('Navigation bar background color'), $arr['nav_bg'], '', false],
+ '$nav_icon_color' => array_key_exists('nav_icon_color', $disable) ? '' : ['frio_nav_icon_color', L10n::t('Navigation bar icon color '), $arr['nav_icon_color'], '', false],
+ '$link_color' => array_key_exists('link_color', $disable) ? '' : ['frio_link_color', L10n::t('Link color'), $arr['link_color'], '', false],
+ '$background_color' => array_key_exists('background_color', $disable) ? '' : ['frio_background_color', L10n::t('Set the background color'), $arr['background_color'], '', false],
+ '$contentbg_transp' => array_key_exists('contentbg_transp', $disable) ? '' : ['frio_contentbg_transp', L10n::t('Content background opacity'), defaults($arr, 'contentbg_transp', 100), ''],
+ '$background_image' => array_key_exists('background_image', $disable) ? '' : ['frio_background_image', L10n::t('Set the background image'), $arr['background_image'], $background_image_help, false],
+ '$bg_image_options_title' => L10n::t('Background image style'),
'$bg_image_options' => Image::get_options($arr),
];
- if (array_key_exists("login_bg_image", $arr) && !array_key_exists("login_bg_image", $disable)) {
- $ctx['$login_bg_image'] = ['frio_login_bg_image', L10n::t('Login page background image'), $arr['login_bg_image'], $background_image_help, false];
- }
- if (array_key_exists("login_bg_color", $arr) && !array_key_exists("login_bg_color", $disable)) {
- $ctx['$login_bg_color'] = ['frio_login_bg_color', L10n::t('Login page background color'), $arr['login_bg_color'], L10n::t('Leave background image and color empty for theme defaults'), false];
+ if (array_key_exists('login_bg_image', $arr) && !array_key_exists('login_bg_image', $disable)) {
+ $ctx['$login_bg_image'] = ['frio_login_bg_image', L10n::t('Login page background image'), $arr['login_bg_image'], $background_image_help, false];
}
+ if (array_key_exists('login_bg_color', $arr) && !array_key_exists('login_bg_color', $disable)) {
+ $ctx['$login_bg_color'] = ['frio_login_bg_color', L10n::t('Login page background color'), $arr['login_bg_color'], L10n::t('Leave background image and color empty for theme defaults'), false];
+ }
$o = replace_macros($t, $ctx);
diff --git a/view/theme/frio/css/mod_admin.css b/view/theme/frio/css/mod_admin.css
index cbcd53453..b690577d1 100644
--- a/view/theme/frio/css/mod_admin.css
+++ b/view/theme/frio/css/mod_admin.css
@@ -1,17 +1,20 @@
-#admin-users.adminpage { padding-left:0; padding-right: 0;}
#admin-users.adminpage > h1 { padding: 0 15px; }
-
-#admin-users td { word-break: break-all; }
+#admin-users.adminpage .panel-collapse { margin-left: -15px; margin-right: -15px; }
#admin-users #users th:first-of-type { width: 1em; }
#admin-users #users th:nth-of-type(2) { width: 40px; }
#admin-users #users th:last-of-type { width: 1em; }
+#admin-users .admin-settings-footer-elements { padding-left: 8px; padding-right: 8px; }
#admin-users #deleted th:first-of-type { width: 40px; }
#admin-users #users img.avatar-nano, #deleted img.avatar-nano { height: 24px; width: 24px; }
.opened .caret { transform: rotate(180deg); }
tr.details td,
-tr.details th
-{ border-top: 0!important; }
+tr.details th {
+ border-top: 0!important;
+}
+
+.adminpage td > .checkbox { margin: 0; }
+.adminpage td { word-break: break-all; }
\ No newline at end of file
diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css
index 6f2a71ca4..18b2f4208 100644
--- a/view/theme/frio/css/style.css
+++ b/view/theme/frio/css/style.css
@@ -24,9 +24,10 @@ and open the template in the editor.
body {
padding-top: 110px;
- background-color: $bgcolor;
+ background-color: $background_color;
background-image: url("$background_image");
background-size: $background_size_img;
+ background-repeat: $background_repeat;
background-attachment: fixed;
color: #777;
/*color: #555;*/
@@ -2115,9 +2116,10 @@ ul.dropdown-menu li:hover {
.allfriends-content-wrapper, .match-content-wrapper, .dirfind-content-wrapper,
.directory-content-wrapper, .manage-content-wrapper, .notes-content-wrapper,
.message-content-wrapper, .apps-content-wrapper, .photos-content-wrapper,
-#adminpage, .viewcontacts-content-wrapper, .dfrn_request-content-wrapper,
+#adminpage, .delegate-content-wrapper, .uexport-content-wrapper,
+.viewcontacts-content-wrapper, .dfrn_request-content-wrapper,
.friendica-content-wrapper, .credits-content-wrapper, .nogroup-content-wrapper,
-.profperm-content-wrapper {
+.profperm-content-wrapper, .invite-content-wrapper {
min-height: calc(100vh - 150px);
padding: 15px;
padding-bottom: 20px;
@@ -2409,10 +2411,13 @@ ul li:hover .contact-wrapper .contact-action-link:hover {
height: 48px;
width: 48px;
}
-
#prvmail-end {
clear:both;
}
+#modal #prvmail-text-edit-bb .bb-img {
+ display: none;
+}
+
/* photos */
.photo-album-actions {
margin-bottom: 10px;
@@ -2650,7 +2655,8 @@ ul li:hover .contact-wrapper .contact-action-link:hover {
margin-left: -15px;
margin-right: -15px;
}
-.panel-group-settings > .panel {
+.panel-group-settings > .panel,
+.panel-group-settings > form > .panel {
padding-left: 15px;
padding-right: 15px;
}
@@ -2935,6 +2941,22 @@ section.help-content-wrapper li {
#adminpage .plugin .desc {
padding-left: 10px;
}
+.adminpage .admin-settings-action-link,
+.adminpage .admin-settings-action-link:hover {
+ color: #555;
+}
+.adminpage .admin-settings-action-link:hover {
+ opacity: 1;
+}
+.adminpage .admin-settings-action-link {
+ opacity: 0.8;
+}
+#admin-users tr.blocked {
+ background-color: #f8efc0;
+}
+.adminpage .table-hover > tbody > tr:hover + tr.details {
+ background-color: #f5f5f5;
+}
/* Register Page*/
#register-openid-wrapper, #register-name-wrapper, #register-invite-wrapper, #profile-publish-wrapper {
@@ -3115,12 +3137,30 @@ section .profile-match-wrapper {
* Login page
*/
#login-submit-wrapper {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- align-items: center;
+ float: right;
}
#lost-password-link { flex-grow: 2; }
+#login-lost-password-link {
+ margin-bottom: 10px;
+ float: right;
+}
+#div_id_remember {
+ float: left;
+}
+#id_password_wrapper {
+ margin-bottom: unset;
+}
+#login_openid {
+ clear: both;
+}
+#register-link {
+ color: white;
+ background: #8ad0a1;
+ width: 100%;
+}
+#login-end {
+ clear: both;
+}
.mod-home.is-not-singleuser,
.mod-login {
@@ -3145,12 +3185,15 @@ section .profile-match-wrapper {
margin-top: 2.5%;
}
+.mod-home.is-not-singleuser .login-form > #login-extra-links {
+ margin-top: 4em;
+}
+
.mod-home.is-not-singleuser .login-form > #login-form label,
.mod-login #content #login-form label {
color: #eee;
}
-
.mod-home.is-not-singleuser .login-panel-content,
.mod-login .login-panel-content {
background-color: rgba(255,255,255,.85);
@@ -3164,11 +3207,15 @@ section .profile-match-wrapper {
}
.mod-home.is-not-singleuser .login-form > #login-form,
+ .mod-home.is-not-singleuser .login-form > #login-extra-links,
.mod-login #content #login-form {
background-color: #fff;
padding: 1em;
position: relative;
- margin-top: 4em;
+ }
+ .mod-home.is-not-singleuser .login-form > #login-extra-links {
+ margin-top: unset;
+ background-color: white;
}
.mod-home.is-not-singleuser .login-form > #login-form label,
@@ -3176,7 +3223,7 @@ section .profile-match-wrapper {
color: #444;
}
- .mod-home.is-not-singleuser .login-form > #login-form::before,
+ .mod-home.is-not-singleuser .login-form::before,
.mod-login #content #login-form::before {
display: block;
position: absolute;
@@ -3189,7 +3236,7 @@ section .profile-match-wrapper {
z-index: -1;
}
- .mod-home.is-not-singleuser .login-form > #login-form::after,
+ .mod-home.is-not-singleuser .login-form::after,
.mod-login #content #login-form::after {
display: block;
position: absolute;
diff --git a/view/theme/frio/img/screenshots/screenshot-schema-love-music.png b/view/theme/frio/img/screenshots/screenshot-scheme-love-music.png
similarity index 100%
rename from view/theme/frio/img/screenshots/screenshot-schema-love-music.png
rename to view/theme/frio/img/screenshots/screenshot-scheme-love-music.png
diff --git a/view/theme/frio/img/screenshots/screenshot-schema-red.png b/view/theme/frio/img/screenshots/screenshot-scheme-red.png
similarity index 100%
rename from view/theme/frio/img/screenshots/screenshot-schema-red.png
rename to view/theme/frio/img/screenshots/screenshot-scheme-red.png
diff --git a/view/theme/frio/js/filebrowser.js b/view/theme/frio/js/filebrowser.js
index 92f141291..270172072 100644
--- a/view/theme/frio/js/filebrowser.js
+++ b/view/theme/frio/js/filebrowser.js
@@ -231,7 +231,6 @@ var FileBrowser = {
$(".fbrowser .fbswitcher [data-mode=" + FileBrowser.type + "]").addClass("active");
// We need to add the AjaxUpload to the button
FileBrowser.uploadButtons();
-
},
// Load new content (e.g. change photo album)
diff --git a/view/theme/frio/js/mod_admin.js b/view/theme/frio/js/mod_admin.js
index dc8abe054..188b48098 100644
--- a/view/theme/frio/js/mod_admin.js
+++ b/view/theme/frio/js/mod_admin.js
@@ -9,7 +9,9 @@ $(function() {
selectnone($(this).data('selectNone'));
});
- $('body').on('change', 'input[type=checkbox].select', function() {
+ // Toggle checkbox status to all or none for all checkboxes of a specific
+ // css class.
+ $('body').on('change', 'input[type=checkbox].selecttoggle', function() {
$this = $(this);
if ($this.prop('checked')) {
selectall($this.data('selectClass'));
@@ -20,6 +22,26 @@ $(function() {
}
});
+ // Use AJAX calls to reorder the table (so we don't need to reload the page).
+ $('body').on('click', '.table-order', function(e) {
+ e.preventDefault();
+
+ // Get the parent table element.
+ var table = $(this).parents('table');
+ var orderUrl = this.getAttribute("data-order-url");
+ table.fadeTo("fast", 0.33);
+
+ $("body").css("cursor", "wait");
+
+ $.get(orderUrl, function(data) {
+ // Find the table element in the html we got.
+ var result = $(data).find('#' + table[0].id);
+ // And add the new table html to the parent.
+ $(table).parent().html(result);
+
+ $("body").css("cursor", "auto");
+ });
+ });
function selectall(cls) {
$('.' + cls).prop('checked', true);
@@ -39,7 +61,7 @@ function confirm_delete(msg, uname){
}
function details(uid) {
- $("#user-"+uid+"-detail").toggleClass("hidden");
- $("#user-"+uid).toggleClass("opened");
+ $("#user-" + uid + "-detail").toggleClass("hidden");
+ $("#user-" + uid).toggleClass("opened");
return false;
}
diff --git a/view/theme/frio/js/modal.js b/view/theme/frio/js/modal.js
index 2b60049f1..46bb1e514 100644
--- a/view/theme/frio/js/modal.js
+++ b/view/theme/frio/js/modal.js
@@ -152,6 +152,7 @@ Dialog._load = function(url) {
var jsbrowser = function() {
FileBrowser.init(nickname, type, hash);
};
+ loadScript("view/js/ajaxupload.js");
loadScript("view/theme/frio/js/filebrowser.js", jsbrowser);
};
@@ -206,6 +207,10 @@ function addToModal(url) {
//Get first element with the class "heading"
//and use it as title.
loadModalTitle();
+
+ // We need to initialize autosize again for new
+ // modal conent.
+ autosize($('.modal .text-autosize'));
}
});
}
diff --git a/view/theme/frio/js/theme.js b/view/theme/frio/js/theme.js
index a8787a6eb..859df0161 100644
--- a/view/theme/frio/js/theme.js
+++ b/view/theme/frio/js/theme.js
@@ -446,8 +446,16 @@ function justifyPhotosAjax() {
$('#photo-album-contents').justifiedGallery('norewind').on('jg.complete', function(e){ justifiedGalleryActive = false; });
}
+// Load a js script to the html head.
function loadScript(url, callback) {
- // Adding the script tag to the head as suggested before
+ // Check if the script is already in the html head.
+ var oscript = $('head script[src="' + url + '"]');
+
+ // Delete the old script from head.
+ if (oscript.length > 0) {
+ oscript.remove();
+ }
+ // Adding the script tag to the head as suggested before.
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
@@ -458,7 +466,7 @@ function loadScript(url, callback) {
script.onreadystatechange = callback;
script.onload = callback;
- // Fire the loading
+ // Fire the loading.
head.appendChild(script);
}
diff --git a/view/theme/frio/php/Image.php b/view/theme/frio/php/Image.php
index 2dc0345c7..72026cf02 100644
--- a/view/theme/frio/php/Image.php
+++ b/view/theme/frio/php/Image.php
@@ -21,14 +21,10 @@ class Image
public static function get_options($arr)
{
$bg_image_options = [
- 'repeat' => [
- 'frio_bg_image_option', L10n::t("Repeat the image"), "repeat", L10n::t("Will repeat your image to fill the background."), ($arr["bg_image_option"] == "repeat")],
- 'stretch' => [
- 'frio_bg_image_option', L10n::t("Stretch"), "stretch", L10n::t("Will stretch to width/height of the image."), ($arr["bg_image_option"] == "stretch")],
- 'cover' => [
- 'frio_bg_image_option', L10n::t("Resize fill and-clip"), "cover", L10n::t("Resize to fill and retain aspect ratio."), ($arr["bg_image_option"] == "cover")],
- 'contain' => [
- 'frio_bg_image_option', L10n::t("Resize best fit"), "contain", L10n::t("Resize to best fit and retain aspect ratio."), ($arr["bg_image_option"] == "contain")],
+ 'stretch' => ['frio_bg_image_option', L10n::t('Top Banner'), 'stretch', L10n::t('Resize image to the width of the screen and show background color below on long pages.'), ($arr['bg_image_option'] == 'stretch')],
+ 'cover' => ['frio_bg_image_option', L10n::t('Full screen'), 'cover', L10n::t('Resize image to fill entire screen, clipping either the right or the bottom.'), ($arr['bg_image_option'] == 'cover')],
+ 'contain' => ['frio_bg_image_option', L10n::t('Single row mosaic'), 'contain', L10n::t('Resize image to repeat it on a single row, either vertical or horizontal.'), ($arr['bg_image_option'] == 'contain')],
+ 'repeat' => ['frio_bg_image_option', L10n::t('Mosaic'), 'repeat', L10n::t('Repeat image to fill the screen.'), ($arr['bg_image_option'] == 'repeat')],
];
return $bg_image_options;
diff --git a/view/theme/frio/php/default.php b/view/theme/frio/php/default.php
index c78fdd265..428d88788 100644
--- a/view/theme/frio/php/default.php
+++ b/view/theme/frio/php/default.php
@@ -26,40 +26,43 @@ if (!isset($minimal)) {
profile_uid;
- if (is_null($uid)) {
- $uid = Profile::getThemeUid();
- }
- $schema = PConfig::get($uid, 'frio', 'schema');
- if (($schema) && ($schema != '---')) {
- if (file_exists('view/theme/frio/schema/' . $schema . '.php')) {
- $schemefile = 'view/theme/frio/schema/' . $schema . '.php';
- require_once $schemefile;
- }
- } else {
- $nav_bg = PConfig::get($uid, 'frio', 'nav_bg');
- }
- if (!$nav_bg) {
- $nav_bg = "#708fa0";
- }
- echo '
- ';
+ $basepath = $a->path ? "/" . $a->path . "/" : "/";
+ $frio = "view/theme/frio";
- $is_singleuser = Config::get('system','singleuser');
- $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
+ // Because we use minimal for modals the header and the included js stuff should be only loaded
+ // if the page is an standard page (so we don't have it twice for modals)
+ //
+ /// @todo Think about to move js stuff in the footer
+ if (!$minimal && x($page, 'htmlhead')) {
+ echo $page['htmlhead'];
+ }
+
+ // Add the theme color meta
+ // It makes mobile Chrome UI match Frio's top bar color.
+ $uid = $a->profile_uid;
+ if (is_null($uid)) {
+ $uid = Profile::getThemeUid();
+ }
+ $scheme = PConfig::get($uid, 'frio', 'scheme', PConfig::get($uid, 'frio', 'schema'));
+ if (($scheme) && ($scheme != '---')) {
+ if (file_exists('view/theme/frio/scheme/' . $scheme . '.php')) {
+ $schemefile = 'view/theme/frio/scheme/' . $scheme . '.php';
+ require_once $schemefile;
+ }
+ } else {
+ $nav_bg = PConfig::get($uid, 'frio', 'nav_bg');
+ }
+ if (!$nav_bg) {
+ $nav_bg = "#708fa0";
+ }
+ echo '
+ ';
+
+ $is_singleuser = Config::get('system','singleuser');
+ $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
?>
+
">
Skip to main content
';
if (x($page, 'aside')) {
@@ -107,18 +110,18 @@ if (!isset($minimal)) {
';
- if (x($page, 'content')) {
- echo $page['content'];
- }
- echo '
-
+ echo $a->argv[0];
+ echo '-content-wrapper">';
+ if (x($page, 'content')) {
+ echo $page['content'];
+ }
+ echo '
+
';
- } else {
- echo '
+ } else {
+ echo '
';
if (x($page, 'content')) {
echo $page['content'];
@@ -126,7 +129,7 @@ if (!isset($minimal)) {
echo '
';
- }
+ }
?>
diff --git a/view/theme/frio/php/schema.php b/view/theme/frio/php/schema.php
deleted file mode 100644
index 83aad53b7..000000000
--- a/view/theme/frio/php/schema.php
+++ /dev/null
@@ -1,74 +0,0 @@
- Author Name
- * 'description' => Schema description
- * 'version' => Schema version
- * 'overwrites' => Variables which overwriting custom settings
- */
-
-use Friendica\Core\PConfig;
-
-function get_schema_info($schema){
-
- $theme = current_theme();
- $themepath = "view/theme/" . $theme . "/";
- $schema = PConfig::get(local_user(),'frio', 'schema');
-
- $info=[
- 'name' => $schema,
- 'description' => "",
- 'author' => [],
- 'version' => "",
- 'overwrites' => []
- ];
-
- if (!is_file($themepath . "schema/" . $schema . ".php")) return $info;
-
- $f = file_get_contents($themepath . "schema/" . $schema . ".php");
-
- $r = preg_match("|/\*.*\*/|msU", $f, $m);
-
- if ($r){
- $ll = explode("\n", $m[0]);
- foreach( $ll as $l ) {
- $l = trim($l,"\t\n\r */");
- if ($l!=""){
- list($k,$v) = array_map("trim", explode(":",$l,2));
- $k= strtolower($k);
- if ($k=="author"){
- $r=preg_match("|([^<]+)<([^>]+)>|", $v, $m);
- if ($r) {
- $info['author'][] = ['name'=>$m[1], 'link'=>$m[2]];
- } else {
- $info['author'][] = ['name'=>$v];
- }
- } elseif ($k == "overwrites") {
- $theme_settings = explode(',',str_replace(' ','', $v));
- foreach ($theme_settings as $key => $value) {
- $info["overwrites"][$value] = true;
- }
- } else {
- if (array_key_exists($k,$info)){
- $info[$k]=$v;
- }
- }
-
- }
- }
-
- }
- return $info;
-}
diff --git a/view/theme/frio/php/scheme.php b/view/theme/frio/php/scheme.php
new file mode 100644
index 000000000..02de0a035
--- /dev/null
+++ b/view/theme/frio/php/scheme.php
@@ -0,0 +1,71 @@
+ Author Name
+ * 'description' => Scheme description
+ * 'version' => Scheme version
+ * 'overwrites' => Variables which overwriting custom settings
+ */
+use Friendica\Core\PConfig;
+
+function get_scheme_info($scheme)
+{
+ $theme = current_theme();
+ $themepath = 'view/theme/' . $theme . '/';
+ $scheme = PConfig::get(local_user(), 'frio', 'scheme', PConfig::get(local_user(), 'frio', 'scheme'));
+
+ $info = [
+ 'name' => $scheme,
+ 'description' => '',
+ 'author' => [],
+ 'version' => '',
+ 'overwrites' => []
+ ];
+
+ if (!is_file($themepath . 'scheme/' . $scheme . '.php')) return $info;
+
+ $f = file_get_contents($themepath . 'scheme/' . $scheme . '.php');
+
+ $r = preg_match('|/\*.*\*/|msU', $f, $m);
+
+ if ($r) {
+ $ll = explode("\n", $m[0]);
+ foreach ($ll as $l) {
+ $l = trim($l, "\t\n\r */");
+ if ($l != '') {
+ list($k, $v) = array_map('trim', explode(':', $l, 2));
+ $k = strtolower($k);
+ if ($k == 'author') {
+ $r = preg_match('|([^<]+)<([^>]+)>|', $v, $m);
+ if ($r) {
+ $info['author'][] = ['name' => $m[1], 'link' => $m[2]];
+ } else {
+ $info['author'][] = ['name' => $v];
+ }
+ } elseif ($k == 'overwrites') {
+ $theme_settings = explode(',', str_replace(' ', '', $v));
+ foreach ($theme_settings as $key => $value) {
+ $info['overwrites'][$value] = true;
+ }
+ } else {
+ if (array_key_exists($k, $info)) {
+ $info[$k] = $v;
+ }
+ }
+ }
+ }
+ }
+
+ return $info;
+}
diff --git a/view/theme/frio/php/standard.php b/view/theme/frio/php/standard.php
index edfec573b..64c4544cd 100644
--- a/view/theme/frio/php/standard.php
+++ b/view/theme/frio/php/standard.php
@@ -16,7 +16,7 @@
-";
+
Skip to main content
module !== 'install') {
PConfig::load($uid, 'frio');
// Load the profile owners pconfig.
- $schema = PConfig::get($uid, "frio", "schema");
- $nav_bg = PConfig::get($uid, "frio", "nav_bg");
- $nav_icon_color = PConfig::get($uid, "frio", "nav_icon_color");
- $link_color = PConfig::get($uid, "frio", "link_color");
- $bgcolor = PConfig::get($uid, "frio", "background_color");
- $contentbg_transp = PConfig::get($uid, "frio", "contentbg_transp");
- $background_image = PConfig::get($uid, "frio", "background_image");
- $bg_image_option = PConfig::get($uid, "frio", "bg_image_option");
- $modified = PConfig::get($uid, "frio", "css_modified");
+ $scheme = PConfig::get($uid, 'frio', 'scheme', PConfig::get($uid, 'frio', 'schema'));
+ $nav_bg = PConfig::get($uid, 'frio', 'nav_bg');
+ $nav_icon_color = PConfig::get($uid, 'frio', 'nav_icon_color');
+ $link_color = PConfig::get($uid, 'frio', 'link_color');
+ $background_color = PConfig::get($uid, 'frio', 'background_color');
+ $contentbg_transp = PConfig::get($uid, 'frio', 'contentbg_transp');
+ $background_image = PConfig::get($uid, 'frio', 'background_image');
+ $bg_image_option = PConfig::get($uid, 'frio', 'bg_image_option');
+ $modified = PConfig::get($uid, 'frio', 'css_modified');
// There is maybe the case that the user did never modify the theme settings.
// In this case we store the present time.
@@ -38,17 +38,17 @@ if ($a->module !== 'install') {
Config::load('frio');
// Load frios system config.
- $schema = Config::get("frio", "schema");
- $nav_bg = Config::get("frio", "nav_bg");
- $nav_icon_color = Config::get("frio", "nav_icon_color");
- $link_color = Config::get("frio", "link_color");
- $bgcolor = Config::get("frio", "background_color");
- $contentbg_transp = Config::get("frio", "contentbg_transp");
- $background_image = Config::get("frio", "background_image");
- $bg_image_option = Config::get("frio", "bg_image_option");
- $login_bg_image = Config::get("frio", "login_bg_image");
- $login_bg_color = Config::get("frio", "login_bg_color");
- $modified = Config::get("frio", "css_modified");
+ $scheme = Config::get('frio', 'scheme', Config::get('frio', 'schema'));
+ $nav_bg = Config::get('frio', 'nav_bg');
+ $nav_icon_color = Config::get('frio', 'nav_icon_color');
+ $link_color = Config::get('frio', 'link_color');
+ $background_color = Config::get('frio', 'background_color');
+ $contentbg_transp = Config::get('frio', 'contentbg_transp');
+ $background_image = Config::get('frio', 'background_image');
+ $bg_image_option = Config::get('frio', 'bg_image_option');
+ $login_bg_image = Config::get('frio', 'login_bg_image');
+ $login_bg_color = Config::get('frio', 'login_bg_color');
+ $modified = Config::get('frio', 'css_modified');
// There is maybe the case that the user did never modify the theme settings.
// In this case we store the present time.
@@ -59,60 +59,59 @@ if ($a->module !== 'install') {
}
// Now load the scheme. If a value is changed above, we'll keep the settings
-// If not, we'll keep those defined by the schema
-// Setting $schema to '' wasn't working for some reason, so we'll check it's
+// If not, we'll keep those defined by the scheme
+// Setting $scheme to '' wasn't working for some reason, so we'll check it's
// not --- like the mobile theme does instead.
-// Allow layouts to over-ride the schema.
-if (x($_REQUEST, 'schema')) {
- $schema = $_REQUEST['schema'];
+// Allow layouts to over-ride the scheme.
+if (x($_REQUEST, 'scheme')) {
+ $scheme = $_REQUEST['scheme'];
}
// Sanitize the data.
-$schema = !empty($schema) ? basename($schema) : "";
+$scheme = !empty($scheme) ? basename($scheme) : '';
-if (($schema) && ($schema != '---')) {
- if (file_exists('view/theme/frio/schema/' . $schema . '.php')) {
- $schemefile = 'view/theme/frio/schema/' . $schema . '.php';
+if (($scheme) && ($scheme != '---')) {
+ if (file_exists('view/theme/frio/scheme/' . $scheme . '.php')) {
+ $schemefile = 'view/theme/frio/scheme/' . $scheme . '.php';
require_once $schemefile;
}
- if (file_exists('view/theme/frio/schema/' . $schema . '.css')) {
- $schemecssfile = 'view/theme/frio/schema/' . $schema . '.css';
+ if (file_exists('view/theme/frio/scheme/' . $scheme . '.css')) {
+ $schemecssfile = 'view/theme/frio/scheme/' . $scheme . '.css';
}
}
-// If we haven't got a schema, load the default. We shouldn't touch this - we
+// If we haven't got a scheme, load the default. We shouldn't touch this - we
// should leave it for admins to define for themselves.
-// default.php and default.css MUST be symlinks to existing schema files.
-if (! $schema) {
- if (file_exists('view/theme/frio/schema/default.php')) {
- $schemefile = 'view/theme/frio/schema/default.php';
+// default.php and default.css MUST be symlinks to existing scheme files.
+if (!$scheme) {
+ if (file_exists('view/theme/frio/scheme/default.php')) {
+ $schemefile = 'view/theme/frio/scheme/default.php';
require_once $schemefile;
}
- if (file_exists('view/theme/frio/schema/default.css')) {
- $schemecssfile = 'view/theme/frio/schema/default.css';
+ if (file_exists('view/theme/frio/scheme/default.css')) {
+ $schemecssfile = 'view/theme/frio/scheme/default.css';
}
}
//Set some defaults - we have to do this after pulling owner settings, and we have to check for each setting
//individually. If we don't, we'll have problems if a user has set one, but not all options.
-$nav_bg = (empty($nav_bg) ? "#708fa0" : $nav_bg);
-$nav_icon_color = (empty($nav_icon_color) ? "#fff" : $nav_icon_color);
-$link_color = (empty($link_color) ? "#6fdbe8" : $link_color);
-$bgcolor = (empty($bgcolor) ? "#ededed" : $bgcolor);
+$nav_bg = (empty($nav_bg) ? '#708fa0' : $nav_bg);
+$nav_icon_color = (empty($nav_icon_color) ? '#fff' : $nav_icon_color);
+$link_color = (empty($link_color) ? '#6fdbe8' : $link_color);
+$background_color = (empty($background_color) ? '#ededed' : $background_color);
// The background image can not be empty. So we use a dummy jpg if no image was set.
$background_image = (empty($background_image) ? 'img/none.jpg' : $background_image);
-$modified = (empty($modified) ? time() :$modified);
+$modified = (empty($modified) ? time() : $modified);
// set a default login bg image if no custom image and no custom bg color are set.
if (empty($login_bg_image) && empty($login_bg_color)) {
- $login_bg_image = (empty($login_bg_image) ? 'img/login_bg.jpg' : $login_bg_image);
+ $login_bg_image = 'img/login_bg.jpg';
}
-$login_bg_color = (empty($login_bg_color) ? "#ededed" : $login_bg_color);
+$login_bg_color = (empty($login_bg_color) ? '#ededed' : $login_bg_color);
-
-$contentbg_transp = ((isset($contentbg_transp) && $contentbg_transp != "") ? $contentbg_transp : 100);
+$contentbg_transp = ((isset($contentbg_transp) && $contentbg_transp != '') ? $contentbg_transp : 100);
// Calculate some colors in dependance of existing colors.
// Some colors are calculated to don't have too many selection
@@ -153,29 +152,35 @@ if (!isset($link_hover_color)) {
if (!isset($bg_image_option)) {
$bg_image_option = null;
}
+
switch ($bg_image_option) {
- case "stretch":
- $background_size_img = "100%";
+ case 'stretch':
+ $background_size_img = '100%';
+ $background_repeat = 'no-repeat';
break;
- case "cover":
- $background_size_img ="cover";
+ case 'cover':
+ $background_size_img = 'cover';
+ $background_repeat = 'no-repeat';
break;
- case "repeat":
- $background_size_img = "auto";
+ case 'repeat':
+ $background_size_img = 'auto';
+ $background_repeat = 'repeat';
break;
- case "contain":
- $background_size_img = "contain";
+ case 'contain':
+ $background_size_img = 'contain';
+ $background_repeat = 'repeat';
break;
default:
- $background_size_img = "auto";
+ $background_size_img = 'auto';
+ $background_repeat = 'no-repeat';
break;
}
// Convert transparency level from percentage to opacity value.
$contentbg_transp = $contentbg_transp / 100;
-$options = [
+$options = [
'$nav_bg' => $nav_bg,
'$nav_icon_color' => $nav_icon_color,
'$nav_icon_hover_color' => $nav_icon_hover_color,
@@ -184,10 +189,11 @@ $options = [
'$menu_background_hover_color' => $menu_background_hover_color,
'$btn_primary_color' => $nav_icon_color,
'$btn_primary_hover_color' => $menu_background_hover_color,
- '$bgcolor' => $bgcolor,
+ '$background_color' => $background_color,
'$contentbg_transp' => $contentbg_transp,
'$background_image' => $background_image,
'$background_size_img' => $background_size_img,
+ '$background_repeat' => $background_repeat,
'$login_bg_image' => $login_bg_image,
'$login_bg_color' => $login_bg_color
];
@@ -214,13 +220,13 @@ $etag = md5($css);
// Set a header for caching.
header('Cache-Control: public');
-header('ETag: "'.$etag.'"');
-header('Last-Modified: '.$modified);
+header('ETag: "' . $etag . '"');
+header('Last-Modified: ' . $modified);
// Only send the CSS file if it was changed.
if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) || isset($_SERVER['HTTP_IF_NONE_MATCH'])) {
$cached_modified = gmdate('r', strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']));
- $cached_etag = str_replace(['"', "-gzip"], ['', ''],
+ $cached_etag = str_replace(['"', '-gzip'], ['', ''],
stripslashes($_SERVER['HTTP_IF_NONE_MATCH']));
if (($cached_modified == $modified) && ($cached_etag == $etag)) {
diff --git a/view/theme/frio/templates/admin/contactblock.tpl b/view/theme/frio/templates/admin/contactblock.tpl
index f330854bc..3173c238b 100644
--- a/view/theme/frio/templates/admin/contactblock.tpl
+++ b/view/theme/frio/templates/admin/contactblock.tpl
@@ -1,60 +1,105 @@
-
+
+
+
{{$title}} - {{$page}}
{{$description}}
-
-
- {{$h_contacts}}
- {{if $contacts}}
-
- {{$unblock|escape:'html'}}
- {{$paginate}}
- {{else}}
- {{$no_data|escape:'html'}}
- {{/if}}
-
+ {{* We organize the settings in collapsable panel-groups *}}
+
+ {{* The form for entering user profile which should be blocked *}}
+
+
-
{{$h_newblock}}
-
-
-
- {{$submit|escape:'html'}}
-
+
+
+
+ {{* The list of blocked user profiles with the possibility to unblock them *}}
+
+
diff --git a/view/theme/frio/templates/admin/users.tpl b/view/theme/frio/templates/admin/users.tpl
index 784d46b20..92ef9be6f 100644
--- a/view/theme/frio/templates/admin/users.tpl
+++ b/view/theme/frio/templates/admin/users.tpl
@@ -1,285 +1,345 @@
-
+
{{$title}} - {{$page}}
+ {{* We organize the settings in collapsable panel-groups *}}
+
-
-
-
{{$h_pending}}
+
+
+
- {{if $pending}}
-
-
diff --git a/view/theme/frio/templates/field_colorinput.tpl b/view/theme/frio/templates/field_colorinput.tpl
index 886d647e9..704db346d 100644
--- a/view/theme/frio/templates/field_colorinput.tpl
+++ b/view/theme/frio/templates/field_colorinput.tpl
@@ -6,6 +6,8 @@
{{if $field.4}}
{{$field.4}} {{/if}}
-
{{$field.3}}
+ {{if $field.3}}
+
{{$field.3}}
+ {{/if}}
diff --git a/view/theme/frio/templates/field_custom.tpl b/view/theme/frio/templates/field_custom.tpl
index 20f529278..158073a64 100644
--- a/view/theme/frio/templates/field_custom.tpl
+++ b/view/theme/frio/templates/field_custom.tpl
@@ -2,5 +2,7 @@
{{$field.1}}
{{$field.2}}
- {{$field.3}}
+ {{if $field.3}}
+ {{$field.3}}
+ {{/if}}
diff --git a/view/theme/frio/templates/field_fileinput.tpl b/view/theme/frio/templates/field_fileinput.tpl
index 721a6535f..c5f8ac86d 100644
--- a/view/theme/frio/templates/field_fileinput.tpl
+++ b/view/theme/frio/templates/field_fileinput.tpl
@@ -6,6 +6,8 @@
{{if $field.4}}
{{$field.4}} {{/if}}
- {{$field.3}}
+ {{if $field.3}}
+ {{$field.3}}
+ {{/if}}
diff --git a/view/theme/frio/templates/field_input.tpl b/view/theme/frio/templates/field_input.tpl
index bbd7535e5..62a7d72e8 100644
--- a/view/theme/frio/templates/field_input.tpl
+++ b/view/theme/frio/templates/field_input.tpl
@@ -2,6 +2,8 @@
diff --git a/view/theme/frio/templates/field_intcheckbox.tpl b/view/theme/frio/templates/field_intcheckbox.tpl
index 8863d14c4..f898c87fa 100644
--- a/view/theme/frio/templates/field_intcheckbox.tpl
+++ b/view/theme/frio/templates/field_intcheckbox.tpl
@@ -2,6 +2,8 @@
{{$field.1}}
- {{$field.4}}
+ {{if $field.4}}
+ {{$field.4}}
+ {{/if}}
diff --git a/view/theme/frio/templates/field_openid.tpl b/view/theme/frio/templates/field_openid.tpl
index 8081f9cf1..66f8c9e80 100644
--- a/view/theme/frio/templates/field_openid.tpl
+++ b/view/theme/frio/templates/field_openid.tpl
@@ -2,6 +2,8 @@
diff --git a/view/theme/frio/templates/field_password.tpl b/view/theme/frio/templates/field_password.tpl
index 31defaf33..7bef420a1 100644
--- a/view/theme/frio/templates/field_password.tpl
+++ b/view/theme/frio/templates/field_password.tpl
@@ -2,6 +2,8 @@
diff --git a/view/theme/frio/templates/field_radio.tpl b/view/theme/frio/templates/field_radio.tpl
index 42c145e3a..725e1c96a 100644
--- a/view/theme/frio/templates/field_radio.tpl
+++ b/view/theme/frio/templates/field_radio.tpl
@@ -4,7 +4,9 @@
{{$field.1}}
+ {{if $field.3}}
{{$field.3}}
+ {{/if}}
-
\ No newline at end of file
+
diff --git a/view/theme/frio/templates/field_select.tpl b/view/theme/frio/templates/field_select.tpl
index 9c0315121..594b91002 100644
--- a/view/theme/frio/templates/field_select.tpl
+++ b/view/theme/frio/templates/field_select.tpl
@@ -4,5 +4,7 @@
{{foreach $field.4 as $opt=>$val}}{{$val}} {{/foreach}}
- {{$field.3}}
-
\ No newline at end of file
+ {{if $field.3}}
+ {{$field.3}}
+ {{/if}}
+
diff --git a/view/theme/frio/templates/field_select_raw.tpl b/view/theme/frio/templates/field_select_raw.tpl
index d4f476860..52b63079c 100644
--- a/view/theme/frio/templates/field_select_raw.tpl
+++ b/view/theme/frio/templates/field_select_raw.tpl
@@ -4,5 +4,7 @@
{{$field.4}}
- {{$field.3}}
-
\ No newline at end of file
+ {{if $field.3}}
+ {{$field.3}}
+ {{/if}}
+
diff --git a/view/theme/frio/templates/field_textarea.tpl b/view/theme/frio/templates/field_textarea.tpl
index 8ef56babb..1aea484de 100644
--- a/view/theme/frio/templates/field_textarea.tpl
+++ b/view/theme/frio/templates/field_textarea.tpl
@@ -2,6 +2,8 @@
{{$field.1}}
{{$field.2}}
-
{{$field.3}}
+ {{if $field.3}}
+
{{$field.3}}
+ {{/if}}
diff --git a/view/theme/frio/templates/field_themeselect.tpl b/view/theme/frio/templates/field_themeselect.tpl
index 3b2cb780c..fc1f7243a 100644
--- a/view/theme/frio/templates/field_themeselect.tpl
+++ b/view/theme/frio/templates/field_themeselect.tpl
@@ -5,6 +5,8 @@
{{foreach $field.4 as $opt=>$val}}{{$val}} {{/foreach}}
+ {{if $field.3}}
{{$field.3}}
+ {{/if}}
{{if $field.5=="preview"}}
{{/if}}
-
\ No newline at end of file
+
diff --git a/view/theme/frio/templates/field_yesno.tpl b/view/theme/frio/templates/field_yesno.tpl
index 85096c70e..47649fe67 100644
--- a/view/theme/frio/templates/field_yesno.tpl
+++ b/view/theme/frio/templates/field_yesno.tpl
@@ -14,6 +14,8 @@
+ {{if $field.3}}
{{$field.3}}
+ {{/if}}
diff --git a/view/theme/frio/templates/invite.tpl b/view/theme/frio/templates/invite.tpl
new file mode 100644
index 000000000..9ff20240a
--- /dev/null
+++ b/view/theme/frio/templates/invite.tpl
@@ -0,0 +1,19 @@
+
+
+
+
{{$title}}
+
+
+
+
+
+ {{include file="field_textarea.tpl" field=$recipients}}
+ {{include file="field_textarea.tpl" field=$message}}
+
+
+ {{$submit|escape:'html'}}
+
+
+
+
+
diff --git a/view/theme/frio/templates/login.tpl b/view/theme/frio/templates/login.tpl
index aaa42d24b..ae586a3e6 100644
--- a/view/theme/frio/templates/login.tpl
+++ b/view/theme/frio/templates/login.tpl
@@ -8,6 +8,10 @@
{{include file="field_input.tpl" field=$lname}}
{{include file="field_password.tpl" field=$lpassword}}
+
+
{{if $openid}}
@@ -19,10 +23,7 @@
{{include file="field_checkbox.tpl" field=$lremember}}
@@ -32,7 +33,15 @@
{{/foreach}}
+
+{{if $register}}
+
+{{/if}}
+
diff --git a/view/theme/frio/templates/peoplefind.tpl b/view/theme/frio/templates/peoplefind.tpl
index 5a84f26c8..21b3e47e8 100644
--- a/view/theme/frio/templates/peoplefind.tpl
+++ b/view/theme/frio/templates/peoplefind.tpl
@@ -1,22 +1,23 @@
-
-
diff --git a/view/theme/frio/templates/prv_message.tpl b/view/theme/frio/templates/prv_message.tpl
index d80fcf6a1..4c90dcae6 100644
--- a/view/theme/frio/templates/prv_message.tpl
+++ b/view/theme/frio/templates/prv_message.tpl
@@ -33,7 +33,7 @@