]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #4762 from annando/frio-accessibility
authorHypolite Petovan <mrpetovan@gmail.com>
Fri, 6 Apr 2018 21:07:25 +0000 (17:07 -0400)
committerGitHub <noreply@github.com>
Fri, 6 Apr 2018 21:07:25 +0000 (17:07 -0400)
Some more accessibility for "Frio"

14 files changed:
doc/Addons.md
doc/de/Addons.md
include/conversation.php
include/text.php
mod/settings.php
src/Content/Text/BBCode.php
src/Object/Post.php
util/messages.po
view/lang/fi-fi/messages.po [new file with mode: 0644]
view/lang/fi-fi/strings.php [new file with mode: 0644]
view/lang/nl/messages.po
view/lang/nl/strings.php
view/templates/settings/connectors.tpl
view/theme/frio/templates/settings/connectors.tpl

index de0d9e4963a85a84ce8b495bf95e85f17bbf3e31..4df91864bc1392adbea93b983c605f0dcc2961e9 100644 (file)
@@ -284,192 +284,221 @@ $b is an array with:
     'template' => filename of template
     'vars' => array of vars passed to template
 
-### ''acl_lookup_end'
+### 'acl_lookup_end'
 is called after the other queries have passed.
 The registered function can add, change or remove the acl_lookup() variables.
 
     'results' => array of the acl_lookup() vars
 
+### 'prepare_body_init'
+Called at the start of prepare_body
+Hook data:
+    'item' => item array (input/output)
+
+### 'prepare_body_content_filter'
+Called before the HTML conversion in prepare_body. If the item matches a content filter rule set by an addon, it should
+just add the reason to the filter_reasons element of the hook data.
+Hook data:
+    'item' => item array (input)
+    'filter_reasons' => reasons array (input/output)
+
+### 'prepare_body'
+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)
+    '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)
 
 Complete list of hook callbacks
 ---
 
-Here is a complete list of all hook callbacks with file locations (as of 14-Feb-2012). Please see the source for details of any hooks not documented above.
+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.
 
-boot.php:      Addon::callHooks('login_hook',$o);
-
-boot.php:      Addon::callHooks('profile_sidebar_enter', $profile);
-
-boot.php:      Addon::callHooks('profile_sidebar', $arr);
-
-boot.php:      Addon::callHooks("proc_run", $arr);
-
-include/contact_selectors.php: Addon::callHooks('network_to_name', $nets);
-
-include/api.php:                               Addon::callHooks('logged_in', $a->user);
-
-include/api.php:               Addon::callHooks('logged_in', $a->user);
-
-include/queue.php:             Addon::callHooks('queue_predeliver', $a, $r);
+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']);
+
+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);
+
+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);
+
+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/queue.php:                             Addon::callHooks('queue_deliver', $a, $params);
+include/security.php:  Addon::callHooks('logged_in', $a->user);
 
 include/text.php:      Addon::callHooks('contact_block_end', $arr);
-
-include/text.php:      Addon::callHooks('smilie', $s);
-
+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/text.php:      Addon::callHooks('prepare_body', $prep_arr);
-
-include/text.php:      Addon::callHooks('prepare_body_final', $prep_arr);
-
-include/nav.php:       Addon::callHooks('page_header', $a->page['nav']);
-
-include/auth.php:              Addon::callHooks('authenticate', $addon_auth);
-
-include/bbcode.php:    Addon::callHooks('bbcode',$Text);
-
-include/oauth.php:             Addon::callHooks('logged_in', $a->user);
-
-include/acl_selectors.php:     Addon::callHooks($a->module . '_pre_' . $selname, $arr);
-
-include/acl_selectors.php:     Addon::callHooks($a->module . '_post_' . $selname, $o);
-
-include/acl_selectors.php:     Addon::callHooks('contact_select_options', $x);
-
-include/acl_selectors.php:     Addon::callHooks($a->module . '_pre_' . $selname, $arr);
-
-include/acl_selectors.php:     Addon::callHooks($a->module . '_post_' . $selname, $o);
-
-include/acl_selectors.php:     Addon::callHooks($a->module . '_pre_' . $selname, $arr);
-
-include/acl_selectors.php:     Addon::callHooks($a->module . '_post_' . $selname, $o);
-
-include/acl_selectors.php      Addon::callHooks('acl_lookup_end', $results);
-
-include/notifier.php:          Addon::callHooks('notifier_normal',$target_item);
-
-include/notifier.php:  Addon::callHooks('notifier_end',$target_item);
-
-include/items.php:     Addon::callHooks('atom_feed', $atom);
-
-include/items.php:             Addon::callHooks('atom_feed_end', $atom);
-
-include/items.php:     Addon::callHooks('atom_feed_end', $atom);
-
-include/items.php:     Addon::callHooks('parse_atom', $arr);
-
-include/items.php:     Addon::callHooks('post_remote',$arr);
+include/items.php:     Addon::callHooks('page_info_data', $data);
 
-include/items.php:     Addon::callHooks('atom_author', $o);
+mod/directory.php:     Addon::callHooks('directory_item', $arr);
 
-include/items.php:     Addon::callHooks('atom_entry', $o);
-
-include/bb2diaspora.php:       Addon::callHooks('bb2diaspora',$Text);
-
-include/cronhooks.php: Addon::callHooks('cron', $d);
-
-include/security.php:          Addon::callHooks('logged_in', $a->user);
-
-src/Content/Text/HTML.php:     Addon::callHooks('html2bbcode', $text);
-
-include/Contact.php:   Addon::callHooks('remove_user',$r[0]);
-
-include/Contact.php:   Addon::callHooks('contact_photo_menu', $args);
-
-include/conversation.php:      Addon::callHooks('conversation_start',$cb);
-
-include/conversation.php:                              Addon::callHooks('render_location',$locate);
-
-include/conversation.php:                              Addon::callHooks('display_item', $arr);
+mod/xrd.php:   Addon::callHooks('personal_xrd', $arr);
 
-include/conversation.php:                              Addon::callHooks('render_location',$locate);
+mod/ping.php:  Addon::callHooks('network_ping', $arr);
 
-include/conversation.php:                              Addon::callHooks('display_item', $arr);
+mod/parse_url.php:     Addon::callHooks("parse_link", $arr);
 
-include/conversation.php:      Addon::callHooks('item_photo_menu', $args);
+mod/manage.php:        Addon::callHooks('home_init', $ret);
 
-include/conversation.php:      Addon::callHooks('jot_tool', $jotplugins);
+mod/acl.php:   Addon::callHooks('acl_lookup_end', $results);
 
-include/conversation.php:      Addon::callHooks('jot_networks', $jotnets);
+mod/network.php:       Addon::callHooks('network_content_init', $arr);
+mod/network.php:       Addon::callHooks('network_tabs', $arr);
 
-index.php:     Addon::callHooks('init_1');
+mod/friendica.php:     Addon::callHooks('about_hook', $o);
+mod/subthread.php:     Addon::callHooks('post_local_end', $arr);
 
-index.php:Addon::callHooks('app_menu', $arr);
+mod/profiles.php:      Addon::callHooks('profile_post', $_POST);
+mod/profiles.php:      Addon::callHooks('profile_edit', $arr);
 
-index.php:Addon::callHooks('page_end', $a->page['content']);
+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/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/photos.php:        Addon::callHooks('photo_post_file',$ret);
+mod/profile.php:       Addon::callHooks('profile_advanced', $o);
 
-mod/photos.php:                Addon::callHooks('photo_post_end',$foo);
+mod/home.php:  Addon::callHooks('home_init', $ret);
+mod/home.php:  Addon::callHooks("home_content", $content);
 
-mod/photos.php:                Addon::callHooks('photo_post_end',$foo);
+mod/poke.php:  Addon::callHooks('post_local_end', $arr);
 
-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/contacts.php:      Addon::callHooks('contact_edit_post', $_POST);
+mod/contacts.php:      Addon::callHooks('contact_edit', $arr);
 
-mod/friendica.php:     Addon::callHooks('about_hook', $o);
+mod/tagger.php:        Addon::callHooks('post_local_end', $arr);
 
-mod/editpost.php:      Addon::callHooks('jot_tool', $jotplugins);
+mod/lockview.php:      Addon::callHooks('lockview_content', $item);
 
-mod/editpost.php:      Addon::callHooks('jot_networks', $jotnets);
+mod/uexport.php:       Addon::callHooks('uexport_options', $options);
 
-mod/parse_url.php:     Addon::callHooks('parse_link', $arr);
+mod/register.php:      Addon::callHooks('register_post', $arr);
+mod/register.php:      Addon::callHooks('register_form', $arr);
 
-mod/home.php:  Addon::callHooks('home_init',$ret);
+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/home.php:  Addon::callHooks("home_content",$o);
+mod/editpost.php:      Addon::callHooks('jot_tool', $jotplugins);
 
-mod/contacts.php:      Addon::callHooks('contact_edit_post', $_POST);
+src/Network/FKOAuth1.php:      Addon::callHooks('logged_in', $a->user);
 
-mod/contacts.php:              Addon::callHooks('contact_edit', $arr);
+src/Render/FriendicaSmartyEngine.php:  Addon::callHooks("template_vars", $arr);
 
-mod/settings.php:              Addon::callHooks('addon_settings_post', $_POST);
+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:              Addon::callHooks('connector_settings_post', $_POST);
+src/Model/Contact.php: Addon::callHooks('contact_photo_menu', $args);
+src/Model/Contact.php: Addon::callHooks('follow', $arr);
 
-mod/settings.php:      Addon::callHooks('settings_post', $_POST);
+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/settings.php:              Addon::callHooks('addon_settings', $settings_addons);
+src/Model/Event.php:   Addon::callHooks('event_updated', $event['id']);
+src/Model/Event.php:   Addon::callHooks("event_created", $event['id']);
 
-mod/settings.php:              Addon::callHooks('connector_settings', $settings_connectors);
+src/Model/User.php:    Addon::callHooks('register_account', $uid);
+src/Model/User.php:    Addon::callHooks('remove_user', $user);
 
-mod/settings.php:      Addon::callHooks('settings_form',$o);
+src/Content/Text/BBCode.php:   Addon::callHooks('bbcode', $text);
+src/Content/Text/BBCode.php:   Addon::callHooks('bb2diaspora', $text);
 
-mod/register.php:      Addon::callHooks('register_account', $newuid);
+src/Content/Text/HTML.php:     Addon::callHooks('html2bbcode', $message);
 
-mod/like.php:  Addon::callHooks('post_local_end', $arr);
+src/Content/Smilies.php:       Addon::callHooks('smilie', $params);
 
-mod/xrd.php:   Addon::callHooks('personal_xrd', $arr);
+src/Content/Feature.php:       Addon::callHooks('isEnabled', $arr);
+src/Content/Feature.php:       Addon::callHooks('get', $arr);
 
-mod/item.php:  Addon::callHooks('post_local_start', $_REQUEST);
+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/item.php:  Addon::callHooks('post_local',$datarray);
+src/Content/OEmbed.php:        Addon::callHooks('oembed_fetch_url', $embedurl, $j);
 
-mod/item.php:  Addon::callHooks('post_local_end', $datarray);
+src/Content/Nav.php:   Addon::callHooks('page_header', $a->page['nav']);
+src/Content/Nav.php:   Addon::callHooks('nav_info', $nav);
 
-mod/profile.php:                       Addon::callHooks('profile_advanced',$o);
+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/profiles.php:      Addon::callHooks('profile_post', $_POST);
+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/profiles.php:              Addon::callHooks('profile_edit', $arr);
+src/Object/Post.php:   Addon::callHooks('render_location', $locate);
+src/Object/Post.php:   Addon::callHooks('display_item', $arr);
 
-mod/tagger.php:        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/cb.php:    Addon::callHooks('cb_init');
+src/Core/Worker.php:   Addon::callHooks("proc_run", $arr);
 
-mod/cb.php:    Addon::callHooks('cb_post', $_POST);
+src/Util/Emailer.php:  Addon::callHooks('emailer_send_prepare', $params);
+src/Util/Emailer.php:  Addon::callHooks("emailer_send", $hookdata);
 
-mod/cb.php:    Addon::callHooks('cb_afterpost');
+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/cb.php:    Addon::callHooks('cb_content', $o);
+src/Util/Network.php:  Addon::callHooks('avatar_lookup', $avatar);
 
-mod/directory.php:                     Addon::callHooks('directory_item', $arr);
+src/Util/ParseUrl.php: Addon::callHooks("getsiteinfo", $siteinfo);
 
-src/Model/Item.php Addon::callHooks('tagged', $arr);
+src/Protocol/DFRN.php: Addon::callHooks('atom_feed_end', $atom);
+src/Protocol/DFRN.php: Addon::callHooks('atom_feed_end', $atom);
index 5bbfde279437388ae2cbd08d42f871598ce15b64..7651840f4113c06e7dc2c3e8ab9cf07e83e5ea48 100644 (file)
@@ -189,178 +189,186 @@ Derzeitige Hooks
 Komplette Liste der Hook-Callbacks
 ---
 
-Eine komplette Liste aller Hook-Callbacks mit den zugehörigen Dateien (am 14-Feb-2012 generiert): Bitte schau in die Quellcodes für Details zu Hooks, die oben nicht dokumentiert sind.
-
-boot.php:                      Addon::callHooks('login_hook',$o);
-
-boot.php:                      Addon::callHooks('profile_sidebar_enter', $profile);
-
-boot.php:                      Addon::callHooks('profile_sidebar', $arr);
-
-boot.php:                      Addon::callHooks("proc_run", $arr);
-
-include/contact_selectors.php: Addon::callHooks('network_to_name', $nets);
-
-include/api.php:               Addon::callHooks('logged_in', $a->user);
-
-include/api.php:               Addon::callHooks('logged_in', $a->user);
-
-include/queue.php:             Addon::callHooks('queue_predeliver', $a, $r);
-
-include/queue.php:             Addon::callHooks('queue_deliver', $a, $params);
-
-include/text.php:              Addon::callHooks('contact_block_end', $arr);
-
-include/text.php:              Addon::callHooks('smilie', $s);
-
-include/text.php:              Addon::callHooks('prepare_body_init', $item);
-
-include/text.php:              Addon::callHooks('prepare_body', $prep_arr);
-
-include/text.php:              Addon::callHooks('prepare_body_final', $prep_arr);
-
-include/nav.php:               Addon::callHooks('page_header', $a->page['nav']);
-
-include/auth.php:              Addon::callHooks('authenticate', $addon_auth);
-
-include/bbcode.php:            Addon::callHooks('bbcode',$Text);
-
-include/oauth.php:             Addon::callHooks('logged_in', $a->user);
-
-include/acl_selectors.php:     Addon::callHooks($a->module . '_pre_' . $selname, $arr);
-
-include/acl_selectors.php:     Addon::callHooks($a->module . '_post_' . $selname, $o);
-
-include/acl_selectors.php:     Addon::callHooks('contact_select_options', $x);
-
-include/acl_selectors.php:     Addon::callHooks($a->module . '_pre_' . $selname, $arr);
-
-include/acl_selectors.php:     Addon::callHooks($a->module . '_post_' . $selname, $o);
-
-include/acl_selectors.php:     Addon::callHooks($a->module . '_pre_' . $selname, $arr);
-
-include/acl_selectors.php:     Addon::callHooks($a->module . '_post_' . $selname, $o);
-
-include/notifier.php:          Addon::callHooks('notifier_normal',$target_item);
-
-include/notifier.php:          Addon::callHooks('notifier_end',$target_item);
-
-include/items.php:             Addon::callHooks('atom_feed', $atom);
-
-include/items.php:             Addon::callHooks('atom_feed_end', $atom);
-
-include/items.php:             Addon::callHooks('atom_feed_end', $atom);
-
-include/items.php:             Addon::callHooks('parse_atom', $arr);
-
-include/items.php:             Addon::callHooks('post_remote',$arr);
-
-include/items.php:             Addon::callHooks('atom_author', $o);
-
-include/items.php:             Addon::callHooks('atom_entry', $o);
-
-include/bb2diaspora.php:       Addon::callHooks('bb2diaspora',$Text);
-
-include/cronhooks.php:         Addon::callHooks('cron', $d);
-
-include/security.php:          Addon::callHooks('logged_in', $a->user);
-
-src/Content/Text/HTML.php:     Addon::callHooks('html2bbcode', $text);
-
-include/Contact.php:           Addon::callHooks('remove_user',$r[0]);
+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']);
+
+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);
+
+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);
+
+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/Contact.php:           Addon::callHooks('contact_photo_menu', $args);
+include/security.php:  Addon::callHooks('logged_in', $a->user);
 
-include/conversation.php:      Addon::callHooks('conversation_start',$cb);
+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/conversation.php:      Addon::callHooks('render_location',$locate);
+include/items.php:     Addon::callHooks('page_info_data', $data);
 
-include/conversation.php:      Addon::callHooks('display_item', $arr);
+mod/directory.php:     Addon::callHooks('directory_item', $arr);
 
-include/conversation.php:      Addon::callHooks('render_location',$locate);
+mod/xrd.php:   Addon::callHooks('personal_xrd', $arr);
 
-include/conversation.php:      Addon::callHooks('display_item', $arr);
+mod/ping.php:  Addon::callHooks('network_ping', $arr);
 
-include/conversation.php:      Addon::callHooks('item_photo_menu', $args);
+mod/parse_url.php:     Addon::callHooks("parse_link", $arr);
 
-include/conversation.php:      Addon::callHooks('jot_tool', $jotplugins);
+mod/manage.php:        Addon::callHooks('home_init', $ret);
 
-include/conversation.php:      Addon::callHooks('jot_networks', $jotnets);
+mod/acl.php:   Addon::callHooks('acl_lookup_end', $results);
 
-index.php:                     Addon::callHooks('init_1');
+mod/network.php:       Addon::callHooks('network_content_init', $arr);
+mod/network.php:       Addon::callHooks('network_tabs', $arr);
 
-index.php:                     Addon::callHooks('app_menu', $arr);
+mod/friendica.php:     Addon::callHooks('about_hook', $o);
+mod/subthread.php:     Addon::callHooks('post_local_end', $arr);
 
-index.php:                     Addon::callHooks('page_end', $a->page['content']);
+mod/profiles.php:      Addon::callHooks('profile_post', $_POST);
+mod/profiles.php:      Addon::callHooks('profile_edit', $arr);
 
-mod/photos.php:                        Addon::callHooks('photo_post_init', $_POST);
+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/photos.php:                        Addon::callHooks('photo_post_file',$ret);
+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/photos.php:                        Addon::callHooks('photo_post_end',$foo);
+mod/profile.php:       Addon::callHooks('profile_advanced', $o);
 
-mod/photos.php:                        Addon::callHooks('photo_post_end',$foo);
+mod/home.php:  Addon::callHooks('home_init', $ret);
+mod/home.php:  Addon::callHooks("home_content", $content);
 
-mod/photos.php:                        Addon::callHooks('photo_post_end',$foo);
+mod/poke.php:  Addon::callHooks('post_local_end', $arr);
 
-mod/photos.php:                        Addon::callHooks('photo_post_end',intval($item_id));
+mod/contacts.php:      Addon::callHooks('contact_edit_post', $_POST);
+mod/contacts.php:      Addon::callHooks('contact_edit', $arr);
 
-mod/photos.php:                        Addon::callHooks('photo_upload_form',$ret);
+mod/tagger.php:        Addon::callHooks('post_local_end', $arr);
 
-mod/friendica.php:             Addon::callHooks('about_hook', $o);
+mod/lockview.php:      Addon::callHooks('lockview_content', $item);
 
-mod/editpost.php:              Addon::callHooks('jot_tool', $jotplugins);
+mod/uexport.php:       Addon::callHooks('uexport_options', $options);
 
-mod/editpost.php:              Addon::callHooks('jot_networks', $jotnets);
+mod/register.php:      Addon::callHooks('register_post', $arr);
+mod/register.php:      Addon::callHooks('register_form', $arr);
 
-mod/parse_url.php:             Addon::callHooks('parse_link', $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/home.php:                  Addon::callHooks('home_init',$ret);
+mod/editpost.php:      Addon::callHooks('jot_tool', $jotplugins);
 
-mod/home.php:                  Addon::callHooks("home_content",$o);
+src/Network/FKOAuth1.php:      Addon::callHooks('logged_in', $a->user);
 
-mod/contacts.php:              Addon::callHooks('contact_edit_post', $_POST);
+src/Render/FriendicaSmartyEngine.php:  Addon::callHooks("template_vars", $arr);
 
-mod/contacts.php:              Addon::callHooks('contact_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:              Addon::callHooks('addon_settings_post', $_POST);
+src/Model/Contact.php: Addon::callHooks('contact_photo_menu', $args);
+src/Model/Contact.php: Addon::callHooks('follow', $arr);
 
-mod/settings.php:              Addon::callHooks('connector_settings_post', $_POST);
+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/settings.php:              Addon::callHooks('settings_post', $_POST);
+src/Model/Event.php:   Addon::callHooks('event_updated', $event['id']);
+src/Model/Event.php:   Addon::callHooks("event_created", $event['id']);
 
-mod/settings.php:              Addon::callHooks('addon_settings', $settings_addons);
+src/Model/User.php:    Addon::callHooks('register_account', $uid);
+src/Model/User.php:    Addon::callHooks('remove_user', $user);
 
-mod/settings.php:              Addon::callHooks('connector_settings', $settings_connectors);
+src/Content/Text/BBCode.php:   Addon::callHooks('bbcode', $text);
+src/Content/Text/BBCode.php:   Addon::callHooks('bb2diaspora', $text);
 
-mod/settings.php:              Addon::callHooks('settings_form',$o);
+src/Content/Text/HTML.php:     Addon::callHooks('html2bbcode', $message);
 
-mod/register.php:              Addon::callHooks('register_account', $newuid);
+src/Content/Smilies.php:       Addon::callHooks('smilie', $params);
 
-mod/like.php:                  Addon::callHooks('post_local_end', $arr);
+src/Content/Feature.php:       Addon::callHooks('isEnabled', $arr);
+src/Content/Feature.php:       Addon::callHooks('get', $arr);
 
-mod/xrd.php:                   Addon::callHooks('personal_xrd', $arr);
+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/item.php:                  Addon::callHooks('post_local_start', $_REQUEST);
+src/Content/OEmbed.php:        Addon::callHooks('oembed_fetch_url', $embedurl, $j);
 
-mod/item.php:                  Addon::callHooks('post_local',$datarray);
+src/Content/Nav.php:   Addon::callHooks('page_header', $a->page['nav']);
+src/Content/Nav.php:   Addon::callHooks('nav_info', $nav);
 
-mod/item.php:                  Addon::callHooks('post_local_end', $datarray);
+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/profile.php:               Addon::callHooks('profile_advanced',$o);
+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/profiles.php:              Addon::callHooks('profile_post', $_POST);
+src/Object/Post.php:   Addon::callHooks('render_location', $locate);
+src/Object/Post.php:   Addon::callHooks('display_item', $arr);
 
-mod/profiles.php:              Addon::callHooks('profile_edit', $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/tagger.php:                        Addon::callHooks('post_local_end', $arr);
+src/Core/Worker.php:   Addon::callHooks("proc_run", $arr);
 
-mod/cb.php:                    Addon::callHooks('cb_init');
+src/Util/Emailer.php:  Addon::callHooks('emailer_send_prepare', $params);
+src/Util/Emailer.php:  Addon::callHooks("emailer_send", $hookdata);
 
-mod/cb.php:                    Addon::callHooks('cb_post', $_POST);
+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/cb.php:                    Addon::callHooks('cb_afterpost');
+src/Util/Network.php:  Addon::callHooks('avatar_lookup', $avatar);
 
-mod/cb.php:                    Addon::callHooks('cb_content', $o);
+src/Util/ParseUrl.php: Addon::callHooks("getsiteinfo", $siteinfo);
 
-mod/directory.php:             Addon::callHooks('directory_item', $arr);
+src/Protocol/DFRN.php: Addon::callHooks('atom_feed_end', $atom);
+src/Protocol/DFRN.php: Addon::callHooks('atom_feed_end', $atom);
index c01aa2e6e40ea19af2b9691e2c0cba7a1153b4eb..8a2887d6b742f6f9d9aed74677469e69446ea102 100644 (file)
@@ -756,7 +756,13 @@ function conversation(App $a, $items, $mode, $update, $preview = false, $order =
                                list($categories, $folders) = get_cats_and_terms($item);
 
                                $profile_name_e = $profile_name;
-                               $item['title_e'] = $item['title'];
+
+                               if (!empty($item['content-warning']) && PConfig::get(local_user(), 'system', 'disable_cw', false)) {
+                                       $title_e = ucfirst($item['content-warning']);
+                               } else {
+                                       $title_e = $item['title'];
+                               }
+
                                $body_e = $body;
                                $tags_e = $tags;
                                $hashtags_e = $hashtags;
@@ -781,7 +787,7 @@ function conversation(App $a, $items, $mode, $update, $preview = false, $order =
                                        'sparkle' => $sparkle,
                                        'lock' => $lock,
                                        'thumb' => System::removedBaseUrl(proxy_url($item['author-thumb'], false, PROXY_SIZE_THUMB)),
-                                       'title' => $item['title_e'],
+                                       'title' => $title_e,
                                        'body' => $body_e,
                                        'tags' => $tags_e,
                                        'hashtags' => $hashtags_e,
index 311422c5751d9af55f2399298a1b4543f94e0c50..ee8a213ff659bfa3aa238e740ac51138346d25b3 100644 (file)
@@ -1183,12 +1183,8 @@ function put_item_in_cache(&$item, $update = false)
 {
        $body = $item["body"];
 
-       // Add the content warning
-       if (!empty($item['content-warning'])) {
-               $item["body"] = $item['content-warning'] . '[spoiler]' . $item["body"] . '[/spoiler]';
-       }
-
        $rendered_hash = defaults($item, 'rendered-hash', '');
+       $rendered_html = defaults($item, 'rendered-html', '');
 
        if ($rendered_hash == ''
                || $item["rendered-html"] == ""
@@ -1201,6 +1197,16 @@ function put_item_in_cache(&$item, $update = false)
                $item["rendered-html"] = prepare_text($item["body"]);
                $item["rendered-hash"] = hash("md5", $item["body"]);
 
+               // Force an update if the generated values differ from the existing ones
+               if ($rendered_hash != $item["rendered-hash"]) {
+                       $update = true;
+               }
+
+               // Only compare the HTML when we forcefully ignore the cache
+               if (Config::get("system", "ignore_cache") && ($rendered_html != $item["rendered-html"])) {
+                       $update = true;
+               }
+
                if ($update && ($item["id"] > 0)) {
                        dba::update('item', ['rendered-html' => $item["rendered-html"], 'rendered-hash' => $item["rendered-hash"]],
                                        ['id' => $item["id"]], false);
@@ -1214,15 +1220,17 @@ function put_item_in_cache(&$item, $update = false)
  * @brief Given an item array, convert the body element from bbcode to html and add smilie icons.
  * If attach is true, also add icons for item attachments.
  *
- * @param array $item
+ * @param array   $item
  * @param boolean $attach
+ * @param boolean $is_preview
  * @return string item body html
  * @hook prepare_body_init item array before any work
- * @hook prepare_body ('item'=>item array, 'html'=>body string) after first bbcode to html
+ * @hook prepare_body_content_filter ('item'=>item array, 'filter_reasons'=>string array) before first bbcode to html
+ * @hook prepare_body ('item'=>item array, 'html'=>body string, 'is_preview'=>boolean, 'filter_reasons'=>string array) after first bbcode to html
  * @hook prepare_body_final ('item'=>item array, 'html'=>body string) after attach icons and blockquote special case handling (spoiler, author)
  */
-function prepare_body(&$item, $attach = false, $preview = false) {
-
+function prepare_body(array &$item, $attach = false, $is_preview = false)
+{
        $a = get_app();
        Addon::callHooks('prepare_body_init', $item);
 
@@ -1271,6 +1279,22 @@ function prepare_body(&$item, $attach = false, $preview = false) {
        $item['hashtags'] = $hashtags;
        $item['mentions'] = $mentions;
 
+       // Compile eventual content filter reasons
+       $filter_reasons = [];
+       if (!$is_preview && !($item['self'] && local_user() == $item['uid'])) {
+               if (!empty($item['content-warning']) && (!local_user() || !PConfig::get(local_user(), 'system', 'disable_cw', false))) {
+                       $filter_reasons[] = L10n::t('Content warning: %s', $item['content-warning']);
+               }
+
+               $hook_data = [
+                       'item' => $item,
+                       'filter_reasons' => $filter_reasons
+               ];
+               Addon::callHooks('prepare_body_content_filter', $hook_data);
+               $filter_reasons = $hook_data['filter_reasons'];
+               unset($hook_data);
+       }
+
        // Update the cached values if there is no "zrl=..." on the links.
        $update = (!local_user() && !remote_user() && ($item["uid"] == 0));
 
@@ -1282,9 +1306,17 @@ function prepare_body(&$item, $attach = false, $preview = false) {
        put_item_in_cache($item, $update);
        $s = $item["rendered-html"];
 
-       $prep_arr = ['item' => $item, 'html' => $s, 'preview' => $preview];
-       Addon::callHooks('prepare_body', $prep_arr);
-       $s = $prep_arr['html'];
+       $hook_data = [
+               'item' => $item,
+               'html' => $s,
+               'preview' => $is_preview,
+               'filter_reasons' => $filter_reasons
+       ];
+       Addon::callHooks('prepare_body', $hook_data);
+       $s = $hook_data['html'];
+       unset($hook_data);
+
+       $s = apply_content_filter($s, $filter_reasons);
 
        if (! $attach) {
                // Replace the blockquotes with quotes that are used in mails.
@@ -1393,10 +1425,39 @@ function prepare_body(&$item, $attach = false, $preview = false) {
                $s = preg_replace('|(<img[^>]+src="[^"]+/photo/[0-9a-f]+)-[0-9]|', "$1-" . $ps, $s);
        }
 
-       $prep_arr = ['item' => $item, 'html' => $s];
-       Addon::callHooks('prepare_body_final', $prep_arr);
+       $hook_data = ['item' => $item, 'html' => $s];
+       Addon::callHooks('prepare_body_final', $hook_data);
+
+       return $hook_data['html'];
+}
+
+/**
+ * Given a HTML text and a set of filtering reasons, adds a content hiding header with the provided reasons
+ *
+ * Reasons are expected to have been translated already.
+ *
+ * @param string $html
+ * @param array  $reasons
+ * @return string
+ */
+function apply_content_filter($html, array $reasons)
+{
+       if (count($reasons)) {
+               $rnd = random_string(8);
+               $content_filter_html = '<ul class="content-filter-reasons">';
+               foreach ($reasons as $reason) {
+                       $content_filter_html .= '<li>' . htmlspecialchars($reason) . '</li>' . PHP_EOL;
+               }
+               $content_filter_html .= '</ul>
+                       <p><span id="content-filter-wrap-' . $rnd . '" class="fakelink content-filter-button" onclick=openClose(\'content-filter-' . $rnd . '\'); >' .
+                       L10n::t('Click to open/close') .
+                       '</span></p>
+                       <div id="content-filter-' . $rnd . '" class="content-filter-content" style="display: none;">';
+
+               $html = $content_filter_html . $html . '</div>';
+       }
 
-       return $prep_arr['html'];
+       return $html;
 }
 
 /**
index f4ad58412ccc3b4ff918f243dfe1523de9fb6866..aec2b2a0501d8f8eb7a9a12ce045eab88f8ffd76 100644 (file)
@@ -19,7 +19,6 @@ use Friendica\Model\GContact;
 use Friendica\Model\Group;
 use Friendica\Model\User;
 use Friendica\Protocol\Email;
-use Friendica\Util\DateTimeFormat;
 use Friendica\Util\Network;
 use Friendica\Util\Temporal;
 
@@ -213,6 +212,7 @@ function settings_post(App $a)
                check_form_security_token_redirectOnErr('/settings/connectors', 'settings_connectors');
 
                if (x($_POST, 'general-submit')) {
+                       PConfig::set(local_user(), 'system', 'disable_cw', intval($_POST['disable_cw']));
                        PConfig::set(local_user(), 'system', 'no_intelligent_shortening', intval($_POST['no_intelligent_shortening']));
                        PConfig::set(local_user(), 'system', 'ostatus_autofriend', intval($_POST['snautofollow']));
                        PConfig::set(local_user(), 'ostatus', 'default_group', $_POST['group-selection']);
@@ -787,6 +787,7 @@ function settings_content(App $a)
        }
 
        if (($a->argc > 1) && ($a->argv[1] === 'connectors')) {
+               $disable_cw                = intval(PConfig::get(local_user(), 'system', 'disable_cw'));
                $no_intelligent_shortening = intval(PConfig::get(local_user(), 'system', 'no_intelligent_shortening'));
                $ostatus_autofriend        = intval(PConfig::get(local_user(), 'system', 'ostatus_autofriend'));
                $default_group             = PConfig::get(local_user(), 'ostatus', 'default_group');
@@ -844,6 +845,7 @@ function settings_content(App $a)
                        '$ostat_enabled' => $ostat_enabled,
 
                        '$general_settings' => L10n::t('General Social Media Settings'),
+                       '$disable_cw' => ['disable_cw', L10n::t('Disable Content Warning'), $disable_cw, L10n::t('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.')],
                        '$no_intelligent_shortening' => ['no_intelligent_shortening', L10n::t('Disable intelligent shortening'), $no_intelligent_shortening, L10n::t('Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post.')],
                        '$ostatus_autofriend' => ['snautofollow', L10n::t("Automatically follow any GNU Social \x28OStatus\x29 followers/mentioners"), $ostatus_autofriend, L10n::t('If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user.')],
                        '$default_group' => Group::displayGroupSelection(local_user(), $default_group, L10n::t("Default group for OStatus contacts")),
index 7615ab08a8d21af1136a1a0cf1a683cf408eea10..97b809211801277b753922ff9e65aab6dda47304 100644 (file)
@@ -242,9 +242,10 @@ class BBCode extends BaseObject
                        // Simplify image codes
                        $body = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $body);
 
+                       $URLSearchString = "^\[\]";
+
                        $body = preg_replace("/\[img\=([$URLSearchString]*)\](.*?)\[\/img\]/ism", '[img]$1[/img]', $body);
 
-                       $URLSearchString = "^\[\]";
                        if (preg_match_all("(\[url=([$URLSearchString]*)\]\s*\[img\]([$URLSearchString]*)\[\/img\]\s*\[\/url\])ism", $body, $pictures, PREG_SET_ORDER)) {
                                if ((count($pictures) == 1) && !$has_title) {
                                        // Checking, if the link goes to a picture
index ecc6956be7c6ff8fffeeaca5b9380002ec2c807b..86e1414678e7bb7e76b9675139618a08d893bb0a 100644 (file)
@@ -316,7 +316,13 @@ class Post extends BaseObject
                $body_e       = $body;
                $text_e       = strip_tags($body);
                $name_e       = $profile_name;
-               $title_e      = $item['title'];
+
+               if (!empty($item['content-warning']) && PConfig::get(local_user(), 'system', 'disable_cw', false)) {
+                       $title_e = ucfirst($item['content-warning']);
+               } else {
+                       $title_e = $item['title'];
+               }
+
                $location_e   = $location;
                $owner_name_e = $this->getOwnerName();
 
index d7f127684f952c2f35df05835a24b0348510dece..a59e905a062861b67220da6a1864af21581fa1fb 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-04-04 07:01+0200\n"
+"POT-Creation-Date: 2018-04-06 16:58+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -69,791 +69,795 @@ msgstr ""
 msgid "Profile Photos"
 msgstr ""
 
-#: include/conversation.php:144 include/conversation.php:282
-#: include/text.php:1724 src/Model/Item.php:1795
-msgid "event"
+#: include/enotify.php:31
+msgid "Friendica Notification"
 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:2010
-msgid "status"
+#: include/enotify.php:34
+msgid "Thank You,"
 msgstr ""
 
-#: include/conversation.php:152 include/conversation.php:290
-#: include/text.php:1726 mod/subthread.php:97 mod/tagger.php:72
-#: src/Model/Item.php:1793
-msgid "photo"
+#: include/enotify.php:37
+#, php-format
+msgid "%s Administrator"
 msgstr ""
 
-#: include/conversation.php:164 src/Model/Item.php:1666
-#: src/Protocol/Diaspora.php:2006
+#: include/enotify.php:39
 #, php-format
-msgid "%1$s likes %2$s's %3$s"
+msgid "%1$s, %2$s Administrator"
 msgstr ""
 
-#: include/conversation.php:167 src/Model/Item.php:1671
+#: include/enotify.php:50 src/Worker/Delivery.php:404
+msgid "noreply"
+msgstr ""
+
+#: include/enotify.php:98
 #, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
+msgid "[Friendica:Notify] New mail received at %s"
 msgstr ""
 
-#: include/conversation.php:170
+#: include/enotify.php:100
 #, php-format
-msgid "%1$s attends %2$s's %3$s"
+msgid "%1$s sent you a new private message at %2$s."
 msgstr ""
 
-#: include/conversation.php:173
+#: include/enotify.php:101
+msgid "a private message"
+msgstr ""
+
+#: include/enotify.php:101
 #, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
+msgid "%1$s sent you %2$s."
 msgstr ""
 
-#: include/conversation.php:176
+#: include/enotify.php:103
 #, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
+msgid "Please visit %s to view and/or reply to your private messages."
 msgstr ""
 
-#: include/conversation.php:209 mod/dfrn_confirm.php:431
-#: src/Protocol/Diaspora.php:2481
+#: include/enotify.php:141
 #, php-format
-msgid "%1$s is now friends with %2$s"
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
 msgstr ""
 
-#: include/conversation.php:250
+#: include/enotify.php:149
 #, php-format
-msgid "%1$s poked %2$s"
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 msgstr ""
 
-#: include/conversation.php:304 mod/tagger.php:110
+#: include/enotify.php:159
 #, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
 msgstr ""
 
-#: include/conversation.php:331
-msgid "post/item"
+#: include/enotify.php:171
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 msgstr ""
 
-#: include/conversation.php:332
+#: include/enotify.php:173
 #, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
+msgid "%s commented on an item/conversation you have been following."
 msgstr ""
 
-#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:355
-msgid "Likes"
+#: include/enotify.php:176 include/enotify.php:191 include/enotify.php:206
+#: include/enotify.php:221 include/enotify.php:240 include/enotify.php:255
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
 msgstr ""
 
-#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:359
-msgid "Dislikes"
+#: include/enotify.php:183
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
 msgstr ""
 
-#: include/conversation.php:606 include/conversation.php:1680
-#: mod/photos.php:1502
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] ""
-msgstr[1] ""
+#: include/enotify.php:185
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr ""
 
-#: include/conversation.php:606 mod/photos.php:1502
-msgid "Not attending"
+#: include/enotify.php:186
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
 msgstr ""
 
-#: include/conversation.php:606 mod/photos.php:1502
-msgid "Might attend"
+#: include/enotify.php:198
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
 msgstr ""
 
-#: include/conversation.php:744 mod/photos.php:1569 src/Object/Post.php:178
-msgid "Select"
+#: include/enotify.php:200
+#, php-format
+msgid "%1$s tagged you at %2$s"
 msgstr ""
 
-#: include/conversation.php:745 mod/photos.php:1570 mod/settings.php:738
-#: mod/contacts.php:830 mod/contacts.php:1035 mod/admin.php:1798
-#: src/Object/Post.php:179
-msgid "Delete"
+#: include/enotify.php:201
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
 msgstr ""
 
-#: include/conversation.php:777 src/Object/Post.php:357 src/Object/Post.php:358
+#: include/enotify.php:213
 #, php-format
-msgid "View %s's profile @ %s"
+msgid "[Friendica:Notify] %s shared a new post"
 msgstr ""
 
-#: include/conversation.php:789 src/Object/Post.php:345
-msgid "Categories:"
+#: include/enotify.php:215
+#, php-format
+msgid "%1$s shared a new post at %2$s"
 msgstr ""
 
-#: include/conversation.php:790 src/Object/Post.php:346
-msgid "Filed under:"
+#: include/enotify.php:216
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
 msgstr ""
 
-#: include/conversation.php:797 src/Object/Post.php:371
+#: include/enotify.php:228
 #, php-format
-msgid "%s from %s"
+msgid "[Friendica:Notify] %1$s poked you"
 msgstr ""
 
-#: include/conversation.php:812
-msgid "View in context"
+#: include/enotify.php:230
+#, php-format
+msgid "%1$s poked you at %2$s"
 msgstr ""
 
-#: include/conversation.php:814 include/conversation.php:1353
-#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:264
-#: mod/message.php:433 mod/photos.php:1473 src/Object/Post.php:396
-msgid "Please wait"
+#: include/enotify.php:231
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr ""
 
-#: include/conversation.php:885
-msgid "remove"
+#: include/enotify.php:247
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
 msgstr ""
 
-#: include/conversation.php:889
-msgid "Delete Selected Items"
+#: include/enotify.php:249
+#, php-format
+msgid "%1$s tagged your post at %2$s"
 msgstr ""
 
-#: include/conversation.php:1059 view/theme/frio/theme.php:352
-msgid "Follow Thread"
+#: include/enotify.php:250
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
 msgstr ""
 
-#: include/conversation.php:1060 src/Model/Contact.php:640
-msgid "View Status"
+#: include/enotify.php:262
+msgid "[Friendica:Notify] Introduction received"
 msgstr ""
 
-#: include/conversation.php:1061 include/conversation.php:1077
-#: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89
-#: mod/dirfind.php:217 mod/directory.php:159 src/Model/Contact.php:580
-#: src/Model/Contact.php:593 src/Model/Contact.php:641
-msgid "View Profile"
+#: include/enotify.php:264
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
 msgstr ""
 
-#: include/conversation.php:1062 src/Model/Contact.php:642
-msgid "View Photos"
+#: include/enotify.php:265
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr ""
 
-#: include/conversation.php:1063 src/Model/Contact.php:643
-msgid "Network Posts"
+#: include/enotify.php:270 include/enotify.php:316
+#, php-format
+msgid "You may visit their profile at %s"
 msgstr ""
 
-#: include/conversation.php:1064 src/Model/Contact.php:644
-msgid "View Contact"
+#: include/enotify.php:272
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
 msgstr ""
 
-#: include/conversation.php:1065 src/Model/Contact.php:646
-msgid "Send PM"
+#: include/enotify.php:280
+msgid "[Friendica:Notify] A new person is sharing with you"
 msgstr ""
 
-#: include/conversation.php:1069 src/Model/Contact.php:647
-msgid "Poke"
+#: include/enotify.php:282 include/enotify.php:283
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
 msgstr ""
 
-#: include/conversation.php:1074 mod/allfriends.php:74 mod/suggest.php:83
-#: mod/match.php:90 mod/dirfind.php:218 mod/follow.php:143 mod/contacts.php:596
-#: src/Content/Widget.php:61 src/Model/Contact.php:594
-msgid "Connect/Follow"
+#: include/enotify.php:290
+msgid "[Friendica:Notify] You have a new follower"
 msgstr ""
 
-#: include/conversation.php:1193
+#: include/enotify.php:292 include/enotify.php:293
 #, php-format
-msgid "%s likes this."
+msgid "You have a new follower at %2$s : %1$s"
 msgstr ""
 
-#: include/conversation.php:1196
-#, php-format
-msgid "%s doesn't like this."
+#: include/enotify.php:305
+msgid "[Friendica:Notify] Friend suggestion received"
 msgstr ""
 
-#: include/conversation.php:1199
+#: include/enotify.php:307
 #, php-format
-msgid "%s attends."
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
 msgstr ""
 
-#: include/conversation.php:1202
+#: include/enotify.php:308
 #, php-format
-msgid "%s doesn't attend."
+msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 msgstr ""
 
-#: include/conversation.php:1205
-#, php-format
-msgid "%s attends maybe."
+#: include/enotify.php:314
+msgid "Name:"
 msgstr ""
 
-#: include/conversation.php:1216
-msgid "and"
+#: include/enotify.php:315
+msgid "Photo:"
 msgstr ""
 
-#: include/conversation.php:1222
+#: include/enotify.php:318
 #, php-format
-msgid "and %d other people"
+msgid "Please visit %s to approve or reject the suggestion."
 msgstr ""
 
-#: include/conversation.php:1231
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
+#: include/enotify.php:326 include/enotify.php:341
+msgid "[Friendica:Notify] Connection accepted"
 msgstr ""
 
-#: include/conversation.php:1232
+#: include/enotify.php:328 include/enotify.php:343
 #, php-format
-msgid "%s like this."
+msgid "'%1$s' has accepted your connection request at %2$s"
 msgstr ""
 
-#: include/conversation.php:1235
+#: include/enotify.php:329 include/enotify.php:344
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
 msgstr ""
 
-#: include/conversation.php:1236
-#, php-format
-msgid "%s don't like this."
+#: include/enotify.php:334
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
 msgstr ""
 
-#: include/conversation.php:1239
+#: include/enotify.php:336
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
+msgid "Please visit %s if you wish to make any changes to this relationship."
 msgstr ""
 
-#: include/conversation.php:1240
+#: include/enotify.php:349
 #, php-format
-msgid "%s attend."
+msgid ""
+"'%1$s' has chosen to accept you a fan, which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
 msgstr ""
 
-#: include/conversation.php:1243
+#: include/enotify.php:351
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future."
 msgstr ""
 
-#: include/conversation.php:1244
+#: include/enotify.php:353
 #, php-format
-msgid "%s don't attend."
+msgid "Please visit %s  if you wish to make any changes to this relationship."
 msgstr ""
 
-#: include/conversation.php:1247
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
+#: include/enotify.php:363
+msgid "[Friendica System:Notify] registration request"
 msgstr ""
 
-#: include/conversation.php:1248
+#: include/enotify.php:365
 #, php-format
-msgid "%s attend maybe."
+msgid "You've received a registration request from '%1$s' at %2$s"
 msgstr ""
 
-#: include/conversation.php:1278 include/conversation.php:1294
-msgid "Visible to <strong>everybody</strong>"
+#: include/enotify.php:366
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
 msgstr ""
 
-#: include/conversation.php:1279 include/conversation.php:1295
-#: 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:"
+#: include/enotify.php:371
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 msgstr ""
 
-#: include/conversation.php:1280 include/conversation.php:1296
-msgid "Please enter a video link/URL:"
+#: include/enotify.php:377
+#, php-format
+msgid "Please visit %s to approve or reject the request."
 msgstr ""
 
-#: include/conversation.php:1281 include/conversation.php:1297
-msgid "Please enter an audio link/URL:"
+#: 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/conversation.php:1282 include/conversation.php:1298
-msgid "Tag term:"
+#: include/items.php:382
+msgid "Do you really want to delete this item?"
 msgstr ""
 
-#: include/conversation.php:1283 include/conversation.php:1299 mod/filer.php:34
-msgid "Save to Folder:"
+#: include/items.php:384 mod/api.php:110 mod/suggest.php:38
+#: mod/dfrn_request.php:653 mod/message.php:138 mod/follow.php:150
+#: mod/profiles.php:636 mod/profiles.php:639 mod/profiles.php:661
+#: mod/contacts.php:472 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/conversation.php:1284 include/conversation.php:1300
-msgid "Where are you right now?"
+#: include/items.php:387 include/conversation.php:1378 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/unfollow.php:117 mod/follow.php:161 mod/contacts.php:475
+#: mod/settings.php:676 mod/settings.php:702
+msgid "Cancel"
 msgstr ""
 
-#: include/conversation.php:1285
-msgid "Delete item(s)?"
+#: 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/invite.php:20
+#: mod/invite.php:106 mod/wall_attach.php:74 mod/wall_attach.php:77
+#: mod/manage.php:131 mod/regmod.php:108 mod/viewcontacts.php:57
+#: mod/wallmessage.php:16 mod/wallmessage.php:40 mod/wallmessage.php:79
+#: mod/wallmessage.php:103 mod/poke.php:150 mod/wall_upload.php:103
+#: mod/wall_upload.php:106 mod/editpost.php:18 mod/fsuggest.php:80
+#: mod/group.php:26 mod/item.php:160 mod/message.php:59 mod/message.php:104
+#: mod/network.php:32 mod/notes.php:30 mod/photos.php:174 mod/photos.php:1051
+#: mod/delegate.php:25 mod/delegate.php:43 mod/delegate.php:54
+#: mod/dirfind.php:25 mod/ostatus_subscribe.php:16 mod/unfollow.php:15
+#: mod/unfollow.php:57 mod/unfollow.php:90 mod/cal.php:304 mod/events.php:194
+#: mod/profile_photo.php:30 mod/profile_photo.php:176 mod/profile_photo.php:187
+#: mod/profile_photo.php:200 mod/follow.php:17 mod/follow.php:54
+#: mod/follow.php:118 mod/profiles.php:182 mod/profiles.php:606
+#: mod/contacts.php:386 mod/register.php:53 mod/settings.php:42
+#: mod/settings.php:141 mod/settings.php:665 index.php:416
+msgid "Permission denied."
 msgstr ""
 
-#: include/conversation.php:1334
-msgid "Share"
+#: include/items.php:471
+msgid "Archives"
 msgstr ""
 
-#: include/conversation.php:1335 mod/wallmessage.php:143 mod/editpost.php:111
-#: mod/message.php:262 mod/message.php:430
-msgid "Upload photo"
+#: include/items.php:477 src/Content/ForumManager.php:130
+#: src/Content/Widget.php:312 src/Object/Post.php:430 src/App.php:512
+#: view/theme/vier/theme.php:259
+msgid "show more"
 msgstr ""
 
-#: include/conversation.php:1336 mod/editpost.php:112
-msgid "upload photo"
+#: include/conversation.php:144 include/conversation.php:282
+#: include/text.php:1774 src/Model/Item.php:1795
+msgid "event"
 msgstr ""
 
-#: include/conversation.php:1337 mod/editpost.php:113
-msgid "Attach file"
+#: 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:2010
+msgid "status"
 msgstr ""
 
-#: include/conversation.php:1338 mod/editpost.php:114
-msgid "attach file"
+#: include/conversation.php:152 include/conversation.php:290
+#: include/text.php:1776 mod/subthread.php:97 mod/tagger.php:72
+#: src/Model/Item.php:1793
+msgid "photo"
 msgstr ""
 
-#: include/conversation.php:1339 mod/wallmessage.php:144 mod/editpost.php:115
-#: mod/message.php:263 mod/message.php:431
-msgid "Insert web link"
+#: include/conversation.php:164 src/Model/Item.php:1666
+#: src/Protocol/Diaspora.php:2006
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
 msgstr ""
 
-#: include/conversation.php:1340 mod/editpost.php:116
-msgid "web link"
+#: 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:1341 mod/editpost.php:117
-msgid "Insert video link"
+#: include/conversation.php:170
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
 msgstr ""
 
-#: include/conversation.php:1342 mod/editpost.php:118
-msgid "video link"
+#: include/conversation.php:173
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
 msgstr ""
 
-#: include/conversation.php:1343 mod/editpost.php:119
-msgid "Insert audio link"
+#: include/conversation.php:176
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
 msgstr ""
 
-#: include/conversation.php:1344 mod/editpost.php:120
-msgid "audio link"
+#: include/conversation.php:209 mod/dfrn_confirm.php:431
+#: src/Protocol/Diaspora.php:2481
+#, php-format
+msgid "%1$s is now friends with %2$s"
 msgstr ""
 
-#: include/conversation.php:1345 mod/editpost.php:121
-msgid "Set your location"
+#: include/conversation.php:250
+#, php-format
+msgid "%1$s poked %2$s"
 msgstr ""
 
-#: include/conversation.php:1346 mod/editpost.php:122
-msgid "set location"
+#: 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:1347 mod/editpost.php:123
-msgid "Clear browser location"
+#: include/conversation.php:331
+msgid "post/item"
 msgstr ""
 
-#: include/conversation.php:1348 mod/editpost.php:124
-msgid "clear location"
+#: include/conversation.php:332
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr ""
 
-#: include/conversation.php:1350 mod/editpost.php:138
-msgid "Set title"
+#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:355
+msgid "Likes"
 msgstr ""
 
-#: include/conversation.php:1352 mod/editpost.php:140
-msgid "Categories (comma-separated list)"
+#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:359
+msgid "Dislikes"
 msgstr ""
 
-#: include/conversation.php:1354 mod/editpost.php:126
-msgid "Permission settings"
-msgstr ""
+#: include/conversation.php:606 include/conversation.php:1687
+#: mod/photos.php:1502
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] ""
+msgstr[1] ""
 
-#: include/conversation.php:1355 mod/editpost.php:155
-msgid "permissions"
+#: include/conversation.php:606 mod/photos.php:1502
+msgid "Not attending"
 msgstr ""
 
-#: include/conversation.php:1363 mod/editpost.php:135
-msgid "Public post"
+#: include/conversation.php:606 mod/photos.php:1502
+msgid "Might attend"
 msgstr ""
 
-#: include/conversation.php:1367 mod/editpost.php:146 mod/photos.php:1492
-#: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528
-#: src/Object/Post.php:799
-msgid "Preview"
+#: include/conversation.php:744 mod/photos.php:1569 src/Object/Post.php:178
+msgid "Select"
 msgstr ""
 
-#: include/conversation.php:1371 include/items.php:387 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/unfollow.php:117 mod/settings.php:676 mod/settings.php:702
-#: mod/follow.php:161 mod/contacts.php:475
-msgid "Cancel"
+#: include/conversation.php:745 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:1376
-msgid "Post to Groups"
+#: include/conversation.php:783 src/Object/Post.php:363 src/Object/Post.php:364
+#, php-format
+msgid "View %s's profile @ %s"
 msgstr ""
 
-#: include/conversation.php:1377
-msgid "Post to Contacts"
+#: include/conversation.php:795 src/Object/Post.php:351
+msgid "Categories:"
 msgstr ""
 
-#: include/conversation.php:1378
-msgid "Private post"
+#: include/conversation.php:796 src/Object/Post.php:352
+msgid "Filed under:"
 msgstr ""
 
-#: include/conversation.php:1383 mod/editpost.php:153 src/Model/Profile.php:342
-msgid "Message"
+#: include/conversation.php:803 src/Object/Post.php:377
+#, php-format
+msgid "%s from %s"
 msgstr ""
 
-#: include/conversation.php:1384 mod/editpost.php:154
-msgid "Browser"
+#: include/conversation.php:818
+msgid "View in context"
 msgstr ""
 
-#: include/conversation.php:1651
-msgid "View all"
+#: include/conversation.php:820 include/conversation.php:1360
+#: 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:1674
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/conversation.php:1677
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] ""
-msgstr[1] ""
+#: include/conversation.php:891
+msgid "remove"
+msgstr ""
 
-#: include/conversation.php:1683
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] ""
-msgstr[1] ""
+#: include/conversation.php:895
+msgid "Delete Selected Items"
+msgstr ""
 
-#: include/conversation.php:1686 src/Content/ContactSelector.php:125
-msgid "Undecided"
-msgid_plural "Undecided"
-msgstr[0] ""
-msgstr[1] ""
+#: include/conversation.php:1065 view/theme/frio/theme.php:352
+msgid "Follow Thread"
+msgstr ""
 
-#: include/enotify.php:31
-msgid "Friendica Notification"
+#: include/conversation.php:1066 src/Model/Contact.php:640
+msgid "View Status"
 msgstr ""
 
-#: include/enotify.php:34
-msgid "Thank You,"
+#: include/conversation.php:1067 include/conversation.php:1083
+#: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89
+#: mod/dirfind.php:217 mod/directory.php:159 src/Model/Contact.php:580
+#: src/Model/Contact.php:593 src/Model/Contact.php:641
+msgid "View Profile"
 msgstr ""
 
-#: include/enotify.php:37
-#, php-format
-msgid "%s Administrator"
+#: include/conversation.php:1068 src/Model/Contact.php:642
+msgid "View Photos"
 msgstr ""
 
-#: include/enotify.php:39
-#, php-format
-msgid "%1$s, %2$s Administrator"
+#: include/conversation.php:1069 src/Model/Contact.php:643
+msgid "Network Posts"
 msgstr ""
 
-#: include/enotify.php:50 src/Worker/Delivery.php:404
-msgid "noreply"
+#: include/conversation.php:1070 src/Model/Contact.php:644
+msgid "View Contact"
 msgstr ""
 
-#: include/enotify.php:98
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
+#: include/conversation.php:1071 src/Model/Contact.php:646
+msgid "Send PM"
 msgstr ""
 
-#: include/enotify.php:100
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
+#: include/conversation.php:1075 src/Model/Contact.php:647
+msgid "Poke"
 msgstr ""
 
-#: include/enotify.php:101
-msgid "a private message"
+#: include/conversation.php:1080 mod/allfriends.php:74 mod/suggest.php:83
+#: mod/match.php:90 mod/dirfind.php:218 mod/follow.php:143 mod/contacts.php:596
+#: src/Content/Widget.php:61 src/Model/Contact.php:594
+msgid "Connect/Follow"
 msgstr ""
 
-#: include/enotify.php:101
+#: include/conversation.php:1199
 #, php-format
-msgid "%1$s sent you %2$s."
+msgid "%s likes this."
 msgstr ""
 
-#: include/enotify.php:103
+#: include/conversation.php:1202
 #, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
+msgid "%s doesn't like this."
 msgstr ""
 
-#: include/enotify.php:141
+#: include/conversation.php:1205
 #, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgid "%s attends."
 msgstr ""
 
-#: include/enotify.php:149
+#: include/conversation.php:1208
 #, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgid "%s doesn't attend."
 msgstr ""
 
-#: include/enotify.php:159
+#: include/conversation.php:1211
 #, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgid "%s attends maybe."
 msgstr ""
 
-#: include/enotify.php:171
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+#: include/conversation.php:1222
+msgid "and"
 msgstr ""
 
-#: include/enotify.php:173
+#: include/conversation.php:1228
 #, php-format
-msgid "%s commented on an item/conversation you have been following."
+msgid "and %d other people"
 msgstr ""
 
-#: include/enotify.php:176 include/enotify.php:191 include/enotify.php:206
-#: include/enotify.php:221 include/enotify.php:240 include/enotify.php:255
+#: include/conversation.php:1237
 #, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
+msgid "<span  %1$s>%2$d people</span> like this"
 msgstr ""
 
-#: include/enotify.php:183
+#: include/conversation.php:1238
 #, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
+msgid "%s like this."
 msgstr ""
 
-#: include/enotify.php:185
+#: include/conversation.php:1241
 #, php-format
-msgid "%1$s posted to your profile wall at %2$s"
+msgid "<span  %1$s>%2$d people</span> don't like this"
 msgstr ""
 
-#: include/enotify.php:186
+#: include/conversation.php:1242
 #, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgid "%s don't like this."
 msgstr ""
 
-#: include/enotify.php:198
+#: include/conversation.php:1245
 #, php-format
-msgid "[Friendica:Notify] %s tagged you"
+msgid "<span  %1$s>%2$d people</span> attend"
 msgstr ""
 
-#: include/enotify.php:200
+#: include/conversation.php:1246
 #, php-format
-msgid "%1$s tagged you at %2$s"
+msgid "%s attend."
 msgstr ""
 
-#: include/enotify.php:201
+#: include/conversation.php:1249
 #, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
+msgid "<span  %1$s>%2$d people</span> don't attend"
 msgstr ""
 
-#: include/enotify.php:213
+#: include/conversation.php:1250
 #, php-format
-msgid "[Friendica:Notify] %s shared a new post"
+msgid "%s don't attend."
 msgstr ""
 
-#: include/enotify.php:215
+#: include/conversation.php:1253
 #, php-format
-msgid "%1$s shared a new post at %2$s"
+msgid "<span  %1$s>%2$d people</span> attend maybe"
 msgstr ""
 
-#: include/enotify.php:216
+#: include/conversation.php:1254
 #, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
+msgid "%s attend maybe."
 msgstr ""
 
-#: include/enotify.php:228
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
+#: include/conversation.php:1284 include/conversation.php:1300
+msgid "Visible to <strong>everybody</strong>"
 msgstr ""
 
-#: include/enotify.php:230
-#, php-format
-msgid "%1$s poked you at %2$s"
+#: include/conversation.php:1285 include/conversation.php:1301
+#: 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/enotify.php:231
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
+#: include/conversation.php:1286 include/conversation.php:1302
+msgid "Please enter a video link/URL:"
 msgstr ""
 
-#: include/enotify.php:247
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
+#: include/conversation.php:1287 include/conversation.php:1303
+msgid "Please enter an audio link/URL:"
 msgstr ""
 
-#: include/enotify.php:249
-#, php-format
-msgid "%1$s tagged your post at %2$s"
+#: include/conversation.php:1288 include/conversation.php:1304
+msgid "Tag term:"
 msgstr ""
 
-#: include/enotify.php:250
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
+#: include/conversation.php:1289 include/conversation.php:1305 mod/filer.php:34
+msgid "Save to Folder:"
 msgstr ""
 
-#: include/enotify.php:262
-msgid "[Friendica:Notify] Introduction received"
+#: include/conversation.php:1290 include/conversation.php:1306
+msgid "Where are you right now?"
 msgstr ""
 
-#: include/enotify.php:264
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
+#: include/conversation.php:1291
+msgid "Delete item(s)?"
 msgstr ""
 
-#: include/enotify.php:265
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+#: include/conversation.php:1338
+msgid "New Post"
 msgstr ""
 
-#: include/enotify.php:270 include/enotify.php:316
-#, php-format
-msgid "You may visit their profile at %s"
+#: include/conversation.php:1341
+msgid "Share"
 msgstr ""
 
-#: include/enotify.php:272
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
+#: include/conversation.php:1342 mod/wallmessage.php:143 mod/editpost.php:111
+#: mod/message.php:262 mod/message.php:430
+msgid "Upload photo"
 msgstr ""
 
-#: include/enotify.php:280
-msgid "[Friendica:Notify] A new person is sharing with you"
+#: include/conversation.php:1343 mod/editpost.php:112
+msgid "upload photo"
 msgstr ""
 
-#: include/enotify.php:282 include/enotify.php:283
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
+#: include/conversation.php:1344 mod/editpost.php:113
+msgid "Attach file"
 msgstr ""
 
-#: include/enotify.php:290
-msgid "[Friendica:Notify] You have a new follower"
+#: include/conversation.php:1345 mod/editpost.php:114
+msgid "attach file"
 msgstr ""
 
-#: include/enotify.php:292 include/enotify.php:293
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
+#: include/conversation.php:1346 mod/wallmessage.php:144 mod/editpost.php:115
+#: mod/message.php:263 mod/message.php:431
+msgid "Insert web link"
 msgstr ""
 
-#: include/enotify.php:305
-msgid "[Friendica:Notify] Friend suggestion received"
+#: include/conversation.php:1347 mod/editpost.php:116
+msgid "web link"
 msgstr ""
 
-#: include/enotify.php:307
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
+#: include/conversation.php:1348 mod/editpost.php:117
+msgid "Insert video link"
 msgstr ""
 
-#: include/enotify.php:308
-#, php-format
-msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+#: include/conversation.php:1349 mod/editpost.php:118
+msgid "video link"
 msgstr ""
 
-#: include/enotify.php:314
-msgid "Name:"
+#: include/conversation.php:1350 mod/editpost.php:119
+msgid "Insert audio link"
 msgstr ""
 
-#: include/enotify.php:315
-msgid "Photo:"
+#: include/conversation.php:1351 mod/editpost.php:120
+msgid "audio link"
 msgstr ""
 
-#: include/enotify.php:318
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
+#: include/conversation.php:1352 mod/editpost.php:121
+msgid "Set your location"
 msgstr ""
 
-#: include/enotify.php:326 include/enotify.php:341
-msgid "[Friendica:Notify] Connection accepted"
+#: include/conversation.php:1353 mod/editpost.php:122
+msgid "set location"
 msgstr ""
 
-#: include/enotify.php:328 include/enotify.php:343
-#, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
+#: include/conversation.php:1354 mod/editpost.php:123
+msgid "Clear browser location"
 msgstr ""
 
-#: include/enotify.php:329 include/enotify.php:344
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+#: include/conversation.php:1355 mod/editpost.php:124
+msgid "clear location"
 msgstr ""
 
-#: include/enotify.php:334
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email without restriction."
+#: include/conversation.php:1357 mod/editpost.php:138
+msgid "Set title"
 msgstr ""
 
-#: include/enotify.php:336
-#, php-format
-msgid "Please visit %s if you wish to make any changes to this relationship."
+#: include/conversation.php:1359 mod/editpost.php:140
+msgid "Categories (comma-separated list)"
 msgstr ""
 
-#: include/enotify.php:349
-#, php-format
-msgid ""
-"'%1$s' has chosen to accept you a fan, which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
+#: include/conversation.php:1361 mod/editpost.php:126
+msgid "Permission settings"
 msgstr ""
 
-#: include/enotify.php:351
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future."
+#: include/conversation.php:1362 mod/editpost.php:155
+msgid "permissions"
 msgstr ""
 
-#: include/enotify.php:353
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
+#: include/conversation.php:1370 mod/editpost.php:135
+msgid "Public post"
 msgstr ""
 
-#: include/enotify.php:363
-msgid "[Friendica System:Notify] registration request"
+#: include/conversation.php:1374 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/enotify.php:365
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
+#: include/conversation.php:1383
+msgid "Post to Groups"
 msgstr ""
 
-#: include/enotify.php:366
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+#: include/conversation.php:1384
+msgid "Post to Contacts"
 msgstr ""
 
-#: include/enotify.php:371
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+#: include/conversation.php:1385
+msgid "Private post"
 msgstr ""
 
-#: include/enotify.php:377
-#, php-format
-msgid "Please visit %s to approve or reject the request."
+#: include/conversation.php:1390 mod/editpost.php:153 src/Model/Profile.php:342
+msgid "Message"
 msgstr ""
 
-#: 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."
+#: include/conversation.php:1391 mod/editpost.php:154
+msgid "Browser"
 msgstr ""
 
-#: include/items.php:382
-msgid "Do you really want to delete this item?"
+#: include/conversation.php:1658
+msgid "View all"
 msgstr ""
 
-#: include/items.php:384 mod/api.php:110 mod/suggest.php:38
-#: mod/dfrn_request.php:653 mod/message.php:138 mod/settings.php:1103
-#: mod/settings.php:1109 mod/settings.php:1116 mod/settings.php:1120
-#: mod/settings.php:1124 mod/settings.php:1128 mod/settings.php:1132
-#: mod/settings.php:1136 mod/settings.php:1156 mod/settings.php:1157
-#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
-#: mod/follow.php:150 mod/profiles.php:636 mod/profiles.php:639
-#: mod/profiles.php:661 mod/contacts.php:472 mod/register.php:237
-msgid "Yes"
-msgstr ""
+#: include/conversation.php:1681
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] ""
+msgstr[1] ""
 
-#: 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/invite.php:20
-#: mod/invite.php:106 mod/wall_attach.php:74 mod/wall_attach.php:77
-#: mod/manage.php:131 mod/regmod.php:108 mod/viewcontacts.php:57
-#: mod/wallmessage.php:16 mod/wallmessage.php:40 mod/wallmessage.php:79
-#: mod/wallmessage.php:103 mod/poke.php:150 mod/wall_upload.php:103
-#: mod/wall_upload.php:106 mod/editpost.php:18 mod/fsuggest.php:80
-#: mod/group.php:26 mod/item.php:160 mod/message.php:59 mod/message.php:104
-#: mod/network.php:32 mod/notes.php:30 mod/photos.php:174 mod/photos.php:1051
-#: mod/delegate.php:25 mod/delegate.php:43 mod/delegate.php:54
-#: mod/dirfind.php:25 mod/ostatus_subscribe.php:16 mod/unfollow.php:15
-#: mod/unfollow.php:57 mod/unfollow.php:90 mod/cal.php:304 mod/events.php:194
-#: mod/profile_photo.php:30 mod/profile_photo.php:176 mod/profile_photo.php:187
-#: mod/profile_photo.php:200 mod/settings.php:43 mod/settings.php:142
-#: mod/settings.php:665 mod/follow.php:17 mod/follow.php:54 mod/follow.php:118
-#: mod/profiles.php:182 mod/profiles.php:606 mod/contacts.php:386
-#: mod/register.php:53 index.php:416
-msgid "Permission denied."
-msgstr ""
+#: include/conversation.php:1684
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] ""
+msgstr[1] ""
 
-#: include/items.php:471
-msgid "Archives"
-msgstr ""
+#: include/conversation.php:1690
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] ""
+msgstr[1] ""
 
-#: include/items.php:477 src/Content/ForumManager.php:130
-#: src/Content/Widget.php:312 src/Object/Post.php:424 src/App.php:512
-#: view/theme/vier/theme.php:259
-msgid "show more"
-msgstr ""
+#: include/conversation.php:1693 src/Content/ContactSelector.php:125
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] ""
+msgstr[1] ""
 
 #: include/text.php:302
 msgid "newer"
@@ -987,7 +991,7 @@ msgstr ""
 msgid "rebuffed"
 msgstr ""
 
-#: include/text.php:1093 mod/settings.php:941 src/Model/Event.php:379
+#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:379
 msgid "Monday"
 msgstr ""
 
@@ -1011,7 +1015,7 @@ msgstr ""
 msgid "Saturday"
 msgstr ""
 
-#: include/text.php:1093 mod/settings.php:941 src/Model/Event.php:378
+#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:378
 msgid "Sunday"
 msgstr ""
 
@@ -1132,45 +1136,50 @@ msgstr ""
 msgid "Dec"
 msgstr ""
 
-#: include/text.php:1324 mod/videos.php:380
+#: include/text.php:1275
+#, php-format
+msgid "Content warning: %s"
+msgstr ""
+
+#: include/text.php:1345 mod/videos.php:380
 msgid "View Video"
 msgstr ""
 
-#: include/text.php:1341
+#: include/text.php:1362
 msgid "bytes"
 msgstr ""
 
-#: include/text.php:1374 include/text.php:1385
+#: include/text.php:1395 include/text.php:1406 include/text.php:1442
 msgid "Click to open/close"
 msgstr ""
 
-#: include/text.php:1509
+#: include/text.php:1559
 msgid "View on separate page"
 msgstr ""
 
-#: include/text.php:1510
+#: include/text.php:1560
 msgid "view on separate page"
 msgstr ""
 
-#: include/text.php:1515 include/text.php:1522 src/Model/Event.php:594
+#: include/text.php:1565 include/text.php:1572 src/Model/Event.php:594
 msgid "link to source"
 msgstr ""
 
-#: include/text.php:1728
+#: include/text.php:1778
 msgid "activity"
 msgstr ""
 
-#: include/text.php:1730 src/Object/Post.php:423 src/Object/Post.php:435
+#: include/text.php:1780 src/Object/Post.php:429 src/Object/Post.php:441
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] ""
 msgstr[1] ""
 
-#: include/text.php:1733
+#: include/text.php:1783
 msgid "post"
 msgstr ""
 
-#: include/text.php:1890
+#: include/text.php:1940
 msgid "Item filed"
 msgstr ""
 
@@ -1201,13 +1210,13 @@ msgid ""
 "and/or create new posts for you?"
 msgstr ""
 
-#: mod/api.php:111 mod/dfrn_request.php:653 mod/settings.php:1103
-#: mod/settings.php:1109 mod/settings.php:1116 mod/settings.php:1120
-#: mod/settings.php:1124 mod/settings.php:1128 mod/settings.php:1132
-#: mod/settings.php:1136 mod/settings.php:1156 mod/settings.php:1157
+#: 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/follow.php:150 mod/profiles.php:636 mod/profiles.php:640
-#: mod/profiles.php:661 mod/register.php:238
+#: mod/settings.php:1161 mod/settings.php:1162
 msgid "No"
 msgstr ""
 
@@ -1301,7 +1310,7 @@ msgstr ""
 #: mod/photos.php:1160 mod/photos.php:1445 mod/photos.php:1491
 #: mod/photos.php:1530 mod/photos.php:1603 mod/install.php:251
 #: mod/install.php:290 mod/events.php:530 mod/profiles.php:672
-#: mod/contacts.php:610 src/Object/Post.php:790
+#: mod/contacts.php:610 src/Object/Post.php:796
 #: view/theme/duepuntozero/config.php:71 view/theme/frio/config.php:113
 #: view/theme/quattro/config.php:73 view/theme/vier/config.php:119
 msgid "Submit"
@@ -1321,9 +1330,9 @@ msgid ""
 "entries from this contact."
 msgstr ""
 
-#: mod/crepair.php:158 mod/settings.php:677 mod/settings.php:703
-#: mod/admin.php:490 mod/admin.php:1781 mod/admin.php:1793 mod/admin.php:1806
-#: mod/admin.php:1822
+#: 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 ""
 
@@ -1448,8 +1457,8 @@ msgid ""
 "join."
 msgstr ""
 
-#: mod/newmember.php:19 mod/settings.php:124 mod/admin.php:1906
-#: mod/admin.php:2175 src/Content/Nav.php:206 view/theme/frio/theme.php:269
+#: mod/newmember.php:19 mod/admin.php:1906 mod/admin.php:2175
+#: mod/settings.php:123 src/Content/Nav.php:206 view/theme/frio/theme.php:269
 msgid "Settings"
 msgstr ""
 
@@ -2477,7 +2486,7 @@ msgid ""
 "of your account (photos are not exported)"
 msgstr ""
 
-#: mod/uexport.php:52 mod/settings.php:108
+#: mod/uexport.php:52 mod/settings.php:107
 msgid "Export personal data"
 msgstr ""
 
@@ -2949,7 +2958,7 @@ msgstr ""
 msgid "Upload New Photos"
 msgstr ""
 
-#: mod/photos.php:126 mod/settings.php:51
+#: mod/photos.php:126 mod/settings.php:50
 msgid "everybody"
 msgstr ""
 
@@ -3033,11 +3042,11 @@ msgstr ""
 msgid "Permissions"
 msgstr ""
 
-#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1227
+#: 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:1228
+#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1230
 msgid "Show to Contacts"
 msgstr ""
 
@@ -3130,12 +3139,12 @@ 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:787
+#: 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:393 src/Object/Post.php:789
+#: src/Object/Post.php:399 src/Object/Post.php:795
 msgid "Comment"
 msgstr ""
 
@@ -3221,10 +3230,10 @@ msgid ""
 "settings. Please double check whom you give this access."
 msgstr ""
 
-#: mod/delegate.php:168 mod/settings.php:675 mod/settings.php:784
-#: mod/settings.php:870 mod/settings.php:959 mod/settings.php:1192
-#: 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/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 ""
 
@@ -3860,3696 +3869,3708 @@ msgstr ""
 msgid "Image uploaded successfully."
 msgstr ""
 
-#: mod/settings.php:56 mod/admin.php:1781
-msgid "Account"
+#: mod/directory.php:152 src/Model/Profile.php:421 src/Model/Profile.php:769
+msgid "Status:"
 msgstr ""
 
-#: mod/settings.php:65 mod/admin.php:187
-msgid "Additional features"
+#: mod/directory.php:153 src/Model/Profile.php:422 src/Model/Profile.php:786
+msgid "Homepage:"
 msgstr ""
 
-#: mod/settings.php:73
-msgid "Display"
+#: mod/directory.php:202 view/theme/vier/theme.php:201
+msgid "Global Directory"
 msgstr ""
 
-#: mod/settings.php:80 mod/settings.php:841
-msgid "Social Networks"
+#: mod/directory.php:204
+msgid "Find on this site"
 msgstr ""
 
-#: mod/settings.php:87 mod/admin.php:185 mod/admin.php:1904 mod/admin.php:1964
-msgid "Addons"
+#: mod/directory.php:206
+msgid "Results for:"
 msgstr ""
 
-#: mod/settings.php:94 src/Content/Nav.php:204
-msgid "Delegations"
+#: mod/directory.php:208
+msgid "Site Directory"
 msgstr ""
 
-#: mod/settings.php:101
-msgid "Connected apps"
+#: mod/directory.php:209 mod/contacts.php:820 src/Content/Widget.php:63
+msgid "Find"
 msgstr ""
 
-#: mod/settings.php:115
-msgid "Remove account"
+#: mod/directory.php:213
+msgid "No entries (some entries may be hidden)."
 msgstr ""
 
-#: mod/settings.php:169
-msgid "Missing some important data!"
+#: mod/babel.php:22
+msgid "Source input"
 msgstr ""
 
-#: mod/settings.php:171 mod/settings.php:701 mod/contacts.php:826
-msgid "Update"
+#: mod/babel.php:28
+msgid "BBCode::convert (raw HTML)"
 msgstr ""
 
-#: mod/settings.php:279
-msgid "Failed to connect with email account using the settings provided."
+#: mod/babel.php:33
+msgid "BBCode::convert"
 msgstr ""
 
-#: mod/settings.php:284
-msgid "Email settings updated."
+#: mod/babel.php:39
+msgid "BBCode::convert => HTML::toBBCode"
 msgstr ""
 
-#: mod/settings.php:300
-msgid "Features updated"
+#: mod/babel.php:45
+msgid "BBCode::toMarkdown"
 msgstr ""
 
-#: mod/settings.php:372
-msgid "Relocate message has been send to your contacts"
+#: mod/babel.php:51
+msgid "BBCode::toMarkdown => Markdown::convert"
 msgstr ""
 
-#: mod/settings.php:384 src/Model/User.php:325
-msgid "Passwords do not match. Password unchanged."
+#: mod/babel.php:57
+msgid "BBCode::toMarkdown => Markdown::toBBCode"
 msgstr ""
 
-#: mod/settings.php:389
-msgid "Empty passwords are not allowed. Password unchanged."
+#: mod/babel.php:63
+msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
 msgstr ""
 
-#: mod/settings.php:394 src/Core/Console/NewPassword.php:78
-msgid ""
-"The new password has been exposed in a public data dump, please choose "
-"another."
+#: mod/babel.php:70
+msgid "Source input \\x28Diaspora format\\x29"
 msgstr ""
 
-#: mod/settings.php:400
-msgid "Wrong password."
+#: mod/babel.php:76
+msgid "Markdown::toBBCode"
 msgstr ""
 
-#: mod/settings.php:407 src/Core/Console/NewPassword.php:85
-msgid "Password changed."
+#: mod/babel.php:83
+msgid "Raw HTML input"
 msgstr ""
 
-#: mod/settings.php:409 src/Core/Console/NewPassword.php:82
-msgid "Password update failed. Please try again."
+#: mod/babel.php:88
+msgid "HTML Input"
 msgstr ""
 
-#: mod/settings.php:496
-msgid " Please use a shorter name."
+#: mod/babel.php:94
+msgid "HTML::toBBCode"
 msgstr ""
 
-#: mod/settings.php:499
-msgid " Name too short."
+#: mod/babel.php:100
+msgid "HTML::toPlaintext"
 msgstr ""
 
-#: mod/settings.php:507
-msgid "Wrong Password"
+#: mod/babel.php:108
+msgid "Source text"
 msgstr ""
 
-#: mod/settings.php:512
-msgid "Invalid email."
+#: mod/babel.php:109
+msgid "BBCode"
 msgstr ""
 
-#: mod/settings.php:519
-msgid "Cannot change to that email."
+#: mod/babel.php:110
+msgid "Markdown"
 msgstr ""
 
-#: mod/settings.php:572
-msgid "Private forum has no privacy permissions. Using default privacy group."
+#: mod/babel.php:111
+msgid "HTML"
 msgstr ""
 
-#: mod/settings.php:575
-msgid "Private forum has no privacy permissions and no default privacy group."
+#: mod/follow.php:45
+msgid "The contact could not be added."
 msgstr ""
 
-#: mod/settings.php:615
-msgid "Settings updated."
+#: mod/follow.php:73
+msgid "You already added this contact."
 msgstr ""
 
-#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
-msgid "Add application"
+#: mod/follow.php:83
+msgid "Diaspora support isn't enabled. Contact can't be added."
 msgstr ""
 
-#: mod/settings.php:678 mod/settings.php:704
-msgid "Consumer Key"
+#: mod/follow.php:90
+msgid "OStatus support is disabled. Contact can't be added."
 msgstr ""
 
-#: mod/settings.php:679 mod/settings.php:705
-msgid "Consumer Secret"
+#: mod/follow.php:97
+msgid "The network type couldn't be detected. Contact can't be added."
 msgstr ""
 
-#: mod/settings.php:680 mod/settings.php:706
-msgid "Redirect"
+#: mod/profiles.php:58
+msgid "Profile deleted."
 msgstr ""
 
-#: mod/settings.php:681 mod/settings.php:707
-msgid "Icon url"
+#: mod/profiles.php:74 mod/profiles.php:110
+msgid "Profile-"
 msgstr ""
 
-#: mod/settings.php:692
-msgid "You can't edit this application."
+#: mod/profiles.php:93 mod/profiles.php:132
+msgid "New profile created."
 msgstr ""
 
-#: mod/settings.php:735
-msgid "Connected Apps"
+#: mod/profiles.php:116
+msgid "Profile unavailable to clone."
 msgstr ""
 
-#: mod/settings.php:737 src/Object/Post.php:155 src/Object/Post.php:157
-msgid "Edit"
+#: mod/profiles.php:206
+msgid "Profile Name is required."
 msgstr ""
 
-#: mod/settings.php:739
-msgid "Client key starts with"
+#: mod/profiles.php:347
+msgid "Marital Status"
 msgstr ""
 
-#: mod/settings.php:740
-msgid "No name"
+#: mod/profiles.php:351
+msgid "Romantic Partner"
 msgstr ""
 
-#: mod/settings.php:741
-msgid "Remove authorization"
+#: mod/profiles.php:363
+msgid "Work/Employment"
 msgstr ""
 
-#: mod/settings.php:752
-msgid "No Addon settings configured"
+#: mod/profiles.php:366
+msgid "Religion"
 msgstr ""
 
-#: mod/settings.php:761
-msgid "Addon Settings"
+#: mod/profiles.php:370
+msgid "Political Views"
 msgstr ""
 
-#: mod/settings.php:775 mod/admin.php:2428 mod/admin.php:2429
-msgid "Off"
+#: mod/profiles.php:374
+msgid "Gender"
 msgstr ""
 
-#: mod/settings.php:775 mod/admin.php:2428 mod/admin.php:2429
-msgid "On"
+#: mod/profiles.php:378
+msgid "Sexual Preference"
 msgstr ""
 
-#: mod/settings.php:782
-msgid "Additional Features"
+#: mod/profiles.php:382
+msgid "XMPP"
 msgstr ""
 
-#: mod/settings.php:804 src/Content/ContactSelector.php:83
-msgid "Diaspora"
+#: mod/profiles.php:386
+msgid "Homepage"
 msgstr ""
 
-#: mod/settings.php:804 mod/settings.php:805
-msgid "enabled"
+#: mod/profiles.php:390 mod/profiles.php:686
+msgid "Interests"
 msgstr ""
 
-#: mod/settings.php:804 mod/settings.php:805
-msgid "disabled"
+#: mod/profiles.php:394 mod/admin.php:490
+msgid "Address"
 msgstr ""
 
-#: mod/settings.php:804 mod/settings.php:805
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
+#: mod/profiles.php:401 mod/profiles.php:682
+msgid "Location"
 msgstr ""
 
-#: mod/settings.php:805
-msgid "GNU Social (OStatus)"
+#: mod/profiles.php:486
+msgid "Profile updated."
 msgstr ""
 
-#: mod/settings.php:836
-msgid "Email access is disabled on this site."
+#: mod/profiles.php:564
+msgid " and "
 msgstr ""
 
-#: mod/settings.php:846
-msgid "General Social Media Settings"
+#: mod/profiles.php:573
+msgid "public profile"
 msgstr ""
 
-#: mod/settings.php:847
-msgid "Disable intelligent shortening"
+#: mod/profiles.php:576
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr ""
 
-#: mod/settings.php:847
-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."
+#: mod/profiles.php:577
+#, php-format
+msgid " - Visit %1$s's %2$s"
 msgstr ""
 
-#: mod/settings.php:848
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+#: mod/profiles.php:579
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr ""
 
-#: mod/settings.php:848
-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."
+#: mod/profiles.php:633
+msgid "Hide contacts and friends:"
 msgstr ""
 
-#: mod/settings.php:849
-msgid "Default group for OStatus contacts"
+#: mod/profiles.php:638
+msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr ""
 
-#: mod/settings.php:850
-msgid "Your legacy GNU Social account"
+#: mod/profiles.php:658
+msgid "Show more profile fields:"
 msgstr ""
 
-#: mod/settings.php:850
-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."
+#: mod/profiles.php:670
+msgid "Profile Actions"
 msgstr ""
 
-#: mod/settings.php:853
-msgid "Repair OStatus subscriptions"
+#: mod/profiles.php:671
+msgid "Edit Profile Details"
 msgstr ""
 
-#: mod/settings.php:857
-msgid "Email/Mailbox Setup"
+#: mod/profiles.php:673
+msgid "Change Profile Photo"
 msgstr ""
 
-#: mod/settings.php:858
-msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
+#: mod/profiles.php:674
+msgid "View this profile"
 msgstr ""
 
-#: mod/settings.php:859
-msgid "Last successful email check:"
+#: mod/profiles.php:675 mod/profiles.php:770 src/Model/Profile.php:393
+msgid "Edit visibility"
 msgstr ""
 
-#: mod/settings.php:861
-msgid "IMAP server name:"
+#: mod/profiles.php:676
+msgid "Create a new profile using these settings"
 msgstr ""
 
-#: mod/settings.php:862
-msgid "IMAP port:"
+#: mod/profiles.php:677
+msgid "Clone this profile"
 msgstr ""
 
-#: mod/settings.php:863
-msgid "Security:"
+#: mod/profiles.php:678
+msgid "Delete this profile"
 msgstr ""
 
-#: mod/settings.php:863 mod/settings.php:868
-msgid "None"
+#: mod/profiles.php:680
+msgid "Basic information"
 msgstr ""
 
-#: mod/settings.php:864
-msgid "Email login name:"
+#: mod/profiles.php:681
+msgid "Profile picture"
 msgstr ""
 
-#: mod/settings.php:865
-msgid "Email password:"
+#: mod/profiles.php:683
+msgid "Preferences"
 msgstr ""
 
-#: mod/settings.php:866
-msgid "Reply-to address:"
+#: mod/profiles.php:684
+msgid "Status information"
 msgstr ""
 
-#: mod/settings.php:867
-msgid "Send public posts to all email contacts:"
+#: mod/profiles.php:685
+msgid "Additional information"
 msgstr ""
 
-#: mod/settings.php:868
-msgid "Action after import:"
+#: mod/profiles.php:688
+msgid "Relation"
 msgstr ""
 
-#: mod/settings.php:868 src/Content/Nav.php:191
-msgid "Mark as seen"
+#: mod/profiles.php:689 src/Util/Temporal.php:81 src/Util/Temporal.php:83
+msgid "Miscellaneous"
 msgstr ""
 
-#: mod/settings.php:868
-msgid "Move to folder"
+#: mod/profiles.php:692
+msgid "Your Gender:"
 msgstr ""
 
-#: mod/settings.php:869
-msgid "Move to folder:"
+#: mod/profiles.php:693
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr ""
 
-#: mod/settings.php:903 mod/admin.php:1236
-msgid "No special theme for mobile devices"
+#: mod/profiles.php:694 src/Model/Profile.php:782
+msgid "Sexual Preference:"
 msgstr ""
 
-#: mod/settings.php:912
-#, php-format
-msgid "%s - (Unsupported)"
+#: mod/profiles.php:695
+msgid "Example: fishing photography software"
 msgstr ""
 
-#: mod/settings.php:914
-#, php-format
-msgid "%s - (Experimental)"
+#: mod/profiles.php:700
+msgid "Profile Name:"
 msgstr ""
 
-#: mod/settings.php:957
-msgid "Display Settings"
+#: mod/profiles.php:702
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
 msgstr ""
 
-#: mod/settings.php:963 mod/settings.php:987
-msgid "Display Theme:"
+#: mod/profiles.php:703
+msgid "Your Full Name:"
 msgstr ""
 
-#: mod/settings.php:964
-msgid "Mobile Theme:"
+#: mod/profiles.php:704
+msgid "Title/Description:"
 msgstr ""
 
-#: mod/settings.php:965
-msgid "Suppress warning of insecure networks"
+#: mod/profiles.php:707
+msgid "Street Address:"
 msgstr ""
 
-#: mod/settings.php:965
-msgid ""
-"Should the system suppress the warning that the current group contains "
-"members of networks that can't receive non public postings."
+#: mod/profiles.php:708
+msgid "Locality/City:"
 msgstr ""
 
-#: mod/settings.php:966
-msgid "Update browser every xx seconds"
+#: mod/profiles.php:709
+msgid "Region/State:"
 msgstr ""
 
-#: mod/settings.php:966
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
+#: mod/profiles.php:710
+msgid "Postal/Zip Code:"
 msgstr ""
 
-#: mod/settings.php:967
-msgid "Number of items to display per page:"
+#: mod/profiles.php:711
+msgid "Country:"
 msgstr ""
 
-#: mod/settings.php:967 mod/settings.php:968
-msgid "Maximum of 100 items"
+#: mod/profiles.php:712 src/Util/Temporal.php:149
+msgid "Age: "
 msgstr ""
 
-#: mod/settings.php:968
-msgid "Number of items to display per page when viewed from mobile device:"
+#: mod/profiles.php:715
+msgid "Who: (if applicable)"
 msgstr ""
 
-#: mod/settings.php:969
-msgid "Don't show emoticons"
+#: mod/profiles.php:715
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr ""
 
-#: mod/settings.php:970
-msgid "Calendar"
+#: mod/profiles.php:716
+msgid "Since [date]:"
 msgstr ""
 
-#: mod/settings.php:971
-msgid "Beginning of week:"
+#: mod/profiles.php:718
+msgid "Tell us about yourself..."
 msgstr ""
 
-#: mod/settings.php:972
-msgid "Don't show notices"
+#: mod/profiles.php:719
+msgid "XMPP (Jabber) address:"
 msgstr ""
 
-#: mod/settings.php:973
-msgid "Infinite scroll"
+#: mod/profiles.php:719
+msgid ""
+"The XMPP address will be propagated to your contacts so that they can follow "
+"you."
 msgstr ""
 
-#: mod/settings.php:974
-msgid "Automatic updates only at the top of the network page"
+#: mod/profiles.php:720
+msgid "Homepage URL:"
 msgstr ""
 
-#: mod/settings.php:974
-msgid ""
-"When disabled, the network page is updated all the time, which could be "
-"confusing while reading."
+#: mod/profiles.php:721 src/Model/Profile.php:790
+msgid "Hometown:"
 msgstr ""
 
-#: mod/settings.php:975
-msgid "Bandwith Saver Mode"
+#: mod/profiles.php:722 src/Model/Profile.php:798
+msgid "Political Views:"
 msgstr ""
 
-#: mod/settings.php:975
-msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
+#: mod/profiles.php:723
+msgid "Religious Views:"
 msgstr ""
 
-#: mod/settings.php:976
-msgid "Smart Threading"
+#: mod/profiles.php:724
+msgid "Public Keywords:"
 msgstr ""
 
-#: mod/settings.php:976
-msgid ""
-"When enabled, suppress extraneous thread indentation while keeping it where "
-"it matters. Only works if threading is available and enabled."
+#: mod/profiles.php:724
+msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr ""
 
-#: mod/settings.php:978
-msgid "General Theme Settings"
+#: mod/profiles.php:725
+msgid "Private Keywords:"
 msgstr ""
 
-#: mod/settings.php:979
-msgid "Custom Theme Settings"
+#: mod/profiles.php:725
+msgid "(Used for searching profiles, never shown to others)"
 msgstr ""
 
-#: mod/settings.php:980
-msgid "Content Settings"
+#: mod/profiles.php:726 src/Model/Profile.php:814
+msgid "Likes:"
 msgstr ""
 
-#: mod/settings.php:981 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"
+#: mod/profiles.php:727 src/Model/Profile.php:818
+msgid "Dislikes:"
 msgstr ""
 
-#: mod/settings.php:1000
-msgid "Unable to find your profile. Please contact your admin."
+#: mod/profiles.php:728
+msgid "Musical interests"
 msgstr ""
 
-#: mod/settings.php:1042
-msgid "Account Types"
+#: mod/profiles.php:729
+msgid "Books, literature"
 msgstr ""
 
-#: mod/settings.php:1043
-msgid "Personal Page Subtypes"
+#: mod/profiles.php:730
+msgid "Television"
 msgstr ""
 
-#: mod/settings.php:1044
-msgid "Community Forum Subtypes"
+#: mod/profiles.php:731
+msgid "Film/dance/culture/entertainment"
 msgstr ""
 
-#: mod/settings.php:1051
-msgid "Personal Page"
+#: mod/profiles.php:732
+msgid "Hobbies/Interests"
 msgstr ""
 
-#: mod/settings.php:1052
-msgid "Account for a personal profile."
+#: mod/profiles.php:733
+msgid "Love/romance"
 msgstr ""
 
-#: mod/settings.php:1055
-msgid "Organisation Page"
+#: mod/profiles.php:734
+msgid "Work/employment"
 msgstr ""
 
-#: mod/settings.php:1056
-msgid ""
-"Account for an organisation that automatically approves contact requests as "
-"\"Followers\"."
+#: mod/profiles.php:735
+msgid "School/education"
 msgstr ""
 
-#: mod/settings.php:1059
-msgid "News Page"
+#: mod/profiles.php:736
+msgid "Contact information and Social Networks"
 msgstr ""
 
-#: mod/settings.php:1060
-msgid ""
-"Account for a news reflector that automatically approves contact requests as "
-"\"Followers\"."
+#: mod/profiles.php:767 src/Model/Profile.php:389
+msgid "Profile Image"
 msgstr ""
 
-#: mod/settings.php:1063
-msgid "Community Forum"
+#: mod/profiles.php:769 src/Model/Profile.php:392
+msgid "visible to everybody"
 msgstr ""
 
-#: mod/settings.php:1064
-msgid "Account for community discussions."
+#: mod/profiles.php:776
+msgid "Edit/Manage Profiles"
 msgstr ""
 
-#: mod/settings.php:1067
-msgid "Normal Account Page"
+#: mod/profiles.php:777 src/Model/Profile.php:379 src/Model/Profile.php:401
+msgid "Change profile photo"
 msgstr ""
 
-#: mod/settings.php:1068
-msgid ""
-"Account for a regular personal profile that requires manual approval of "
-"\"Friends\" and \"Followers\"."
+#: mod/profiles.php:778 src/Model/Profile.php:380
+msgid "Create New Profile"
 msgstr ""
 
-#: mod/settings.php:1071
-msgid "Soapbox Page"
-msgstr ""
+#: mod/contacts.php:157
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/settings.php:1072
-msgid ""
-"Account for a public profile that automatically approves contact requests as "
-"\"Followers\"."
+#: mod/contacts.php:184 mod/contacts.php:400
+msgid "Could not access contact record."
 msgstr ""
 
-#: mod/settings.php:1075
-msgid "Public Forum"
+#: mod/contacts.php:194
+msgid "Could not locate selected profile."
 msgstr ""
 
-#: mod/settings.php:1076
-msgid "Automatically approves all contact requests."
+#: mod/contacts.php:228
+msgid "Contact updated."
 msgstr ""
 
-#: mod/settings.php:1079
-msgid "Automatic Friend Page"
+#: mod/contacts.php:421
+msgid "Contact has been blocked"
 msgstr ""
 
-#: mod/settings.php:1080
-msgid ""
-"Account for a popular profile that automatically approves contact requests "
-"as \"Friends\"."
+#: mod/contacts.php:421
+msgid "Contact has been unblocked"
 msgstr ""
 
-#: mod/settings.php:1083
-msgid "Private Forum [Experimental]"
+#: mod/contacts.php:432
+msgid "Contact has been ignored"
 msgstr ""
 
-#: mod/settings.php:1084
-msgid "Requires manual approval of contact requests."
+#: mod/contacts.php:432
+msgid "Contact has been unignored"
 msgstr ""
 
-#: mod/settings.php:1095
-msgid "OpenID:"
+#: mod/contacts.php:443
+msgid "Contact has been archived"
 msgstr ""
 
-#: mod/settings.php:1095
-msgid "(Optional) Allow this OpenID to login to this account."
+#: mod/contacts.php:443
+msgid "Contact has been unarchived"
 msgstr ""
 
-#: mod/settings.php:1103
-msgid "Publish your default profile in your local site directory?"
+#: mod/contacts.php:467
+msgid "Drop contact"
 msgstr ""
 
-#: mod/settings.php:1103
-#, php-format
-msgid ""
-"Your profile will be published in the global friendica directories (e.g. <a "
-"href=\"%s\">%s</a>). Your profile will be visible in public."
+#: mod/contacts.php:470 mod/contacts.php:823
+msgid "Do you really want to delete this contact?"
 msgstr ""
 
-#: mod/settings.php:1109
-msgid "Publish your default profile in the global social directory?"
+#: mod/contacts.php:488
+msgid "Contact has been removed."
 msgstr ""
 
-#: mod/settings.php:1109
+#: mod/contacts.php:519
 #, php-format
-msgid ""
-"Your profile will be published in this node's <a href=\"%s\">local "
-"directory</a>. Your profile details may be publicly visible depending on the "
-"system settings."
-msgstr ""
-
-#: mod/settings.php:1116
-msgid "Hide your contact/friend list from viewers of your default profile?"
+msgid "You are mutual friends with %s"
 msgstr ""
 
-#: mod/settings.php:1116
-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"
+#: mod/contacts.php:523
+#, php-format
+msgid "You are sharing with %s"
 msgstr ""
 
-#: mod/settings.php:1120
-msgid "Hide your profile details from anonymous viewers?"
+#: mod/contacts.php:527
+#, php-format
+msgid "%s is sharing with you"
 msgstr ""
 
-#: mod/settings.php:1120
-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."
+#: mod/contacts.php:547
+msgid "Private communications are not available for this contact."
 msgstr ""
 
-#: mod/settings.php:1124
-msgid "Allow friends to post to your profile page?"
+#: mod/contacts.php:549
+msgid "Never"
 msgstr ""
 
-#: mod/settings.php:1124
-msgid ""
-"Your contacts may write posts on your profile wall. These posts will be "
-"distributed to your contacts"
+#: mod/contacts.php:552
+msgid "(Update was successful)"
 msgstr ""
 
-#: mod/settings.php:1128
-msgid "Allow friends to tag your posts?"
+#: mod/contacts.php:552
+msgid "(Update was not successful)"
 msgstr ""
 
-#: mod/settings.php:1128
-msgid "Your contacts can add additional tags to your posts."
+#: mod/contacts.php:554 mod/contacts.php:992
+msgid "Suggest friends"
 msgstr ""
 
-#: mod/settings.php:1132
-msgid "Allow us to suggest you as a potential friend to new members?"
+#: mod/contacts.php:558
+#, php-format
+msgid "Network type: %s"
 msgstr ""
 
-#: mod/settings.php:1132
-msgid "If you like, Friendica may suggest new members to add you as a contact."
+#: mod/contacts.php:563
+msgid "Communications lost with this contact!"
 msgstr ""
 
-#: mod/settings.php:1136
-msgid "Permit unknown people to send you private mail?"
+#: mod/contacts.php:569
+msgid "Fetch further information for feeds"
 msgstr ""
 
-#: mod/settings.php:1136
+#: mod/contacts.php:571
 msgid ""
-"Friendica network users may send you private messages even if they are not "
-"in your contact list."
+"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/settings.php:1140
-msgid "Profile is <strong>not published</strong>."
+#: mod/contacts.php:572 mod/admin.php:1272 mod/admin.php:1435
+#: mod/admin.php:1445
+msgid "Disabled"
 msgstr ""
 
-#: mod/settings.php:1146
-#, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+#: mod/contacts.php:573
+msgid "Fetch information"
 msgstr ""
 
-#: mod/settings.php:1153
-msgid "Automatically expire posts after this many days:"
+#: mod/contacts.php:574
+msgid "Fetch keywords"
 msgstr ""
 
-#: mod/settings.php:1153
-msgid "If empty, posts will not expire. Expired posts will be deleted"
+#: mod/contacts.php:575
+msgid "Fetch information and keywords"
 msgstr ""
 
-#: mod/settings.php:1154
-msgid "Advanced expiration settings"
+#: mod/contacts.php:608
+msgid "Contact"
 msgstr ""
 
-#: mod/settings.php:1155
-msgid "Advanced Expiration"
+#: mod/contacts.php:611
+msgid "Profile Visibility"
 msgstr ""
 
-#: mod/settings.php:1156
-msgid "Expire posts:"
+#: 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/settings.php:1157
-msgid "Expire personal notes:"
+#: mod/contacts.php:613
+msgid "Contact Information / Notes"
 msgstr ""
 
-#: mod/settings.php:1158
-msgid "Expire starred posts:"
+#: mod/contacts.php:614
+msgid "Their personal note"
 msgstr ""
 
-#: mod/settings.php:1159
-msgid "Expire photos:"
+#: mod/contacts.php:616
+msgid "Edit contact notes"
 msgstr ""
 
-#: mod/settings.php:1160
-msgid "Only expire posts by others:"
+#: mod/contacts.php:620
+msgid "Block/Unblock contact"
 msgstr ""
 
-#: mod/settings.php:1190
-msgid "Account Settings"
+#: mod/contacts.php:621
+msgid "Ignore contact"
 msgstr ""
 
-#: mod/settings.php:1198
-msgid "Password Settings"
+#: mod/contacts.php:622
+msgid "Repair URL settings"
 msgstr ""
 
-#: mod/settings.php:1199 mod/register.php:273
-msgid "New Password:"
+#: mod/contacts.php:623
+msgid "View conversations"
 msgstr ""
 
-#: mod/settings.php:1200 mod/register.php:274
-msgid "Confirm:"
+#: mod/contacts.php:628
+msgid "Last update:"
 msgstr ""
 
-#: mod/settings.php:1200
-msgid "Leave password fields blank unless changing"
+#: mod/contacts.php:630
+msgid "Update public posts"
 msgstr ""
 
-#: mod/settings.php:1201
-msgid "Current Password:"
+#: mod/contacts.php:632 mod/contacts.php:1002
+msgid "Update now"
 msgstr ""
 
-#: mod/settings.php:1201 mod/settings.php:1202
-msgid "Your current password to confirm the changes"
+#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
+#: mod/admin.php:485 mod/admin.php:1800
+msgid "Unblock"
 msgstr ""
 
-#: mod/settings.php:1202
-msgid "Password:"
+#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
+#: mod/admin.php:484 mod/admin.php:1799
+msgid "Block"
 msgstr ""
 
-#: mod/settings.php:1206
-msgid "Basic Settings"
+#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
+msgid "Unignore"
 msgstr ""
 
-#: mod/settings.php:1207 src/Model/Profile.php:738
-msgid "Full Name:"
+#: mod/contacts.php:642
+msgid "Currently blocked"
 msgstr ""
 
-#: mod/settings.php:1208
-msgid "Email Address:"
+#: mod/contacts.php:643
+msgid "Currently ignored"
 msgstr ""
 
-#: mod/settings.php:1209
-msgid "Your Timezone:"
+#: mod/contacts.php:644
+msgid "Currently archived"
 msgstr ""
 
-#: mod/settings.php:1210
-msgid "Your Language:"
+#: mod/contacts.php:645
+msgid "Awaiting connection acknowledge"
 msgstr ""
 
-#: mod/settings.php:1210
+#: mod/contacts.php:646
 msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
-msgstr ""
-
-#: mod/settings.php:1211
-msgid "Default Post Location:"
+"Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr ""
 
-#: mod/settings.php:1212
-msgid "Use Browser Location:"
+#: mod/contacts.php:647
+msgid "Notification for new posts"
 msgstr ""
 
-#: mod/settings.php:1215
-msgid "Security and Privacy Settings"
+#: mod/contacts.php:647
+msgid "Send a notification of every new post of this contact"
 msgstr ""
 
-#: mod/settings.php:1217
-msgid "Maximum Friend Requests/Day:"
+#: mod/contacts.php:650
+msgid "Blacklisted keywords"
 msgstr ""
 
-#: mod/settings.php:1217 mod/settings.php:1246
-msgid "(to prevent spam abuse)"
+#: 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/settings.php:1218
-msgid "Default Post Permissions"
+#: mod/contacts.php:662 src/Model/Profile.php:424
+msgid "XMPP:"
 msgstr ""
 
-#: mod/settings.php:1219
-msgid "(click to open/close)"
+#: mod/contacts.php:667
+msgid "Actions"
 msgstr ""
 
-#: mod/settings.php:1229
-msgid "Default Private Post"
+#: mod/contacts.php:669 mod/contacts.php:855 src/Content/Nav.php:100
+#: src/Model/Profile.php:888 view/theme/frio/theme.php:259
+msgid "Status"
 msgstr ""
 
-#: mod/settings.php:1230
-msgid "Default Public Post"
+#: mod/contacts.php:670
+msgid "Contact Settings"
 msgstr ""
 
-#: mod/settings.php:1234
-msgid "Default Permissions for New Posts"
+#: mod/contacts.php:711
+msgid "Suggestions"
 msgstr ""
 
-#: mod/settings.php:1246
-msgid "Maximum private messages per day from unknown people:"
+#: mod/contacts.php:714
+msgid "Suggest potential friends"
 msgstr ""
 
-#: mod/settings.php:1249
-msgid "Notification Settings"
+#: mod/contacts.php:722
+msgid "Show all contacts"
 msgstr ""
 
-#: mod/settings.php:1250
-msgid "By default post a status message when:"
+#: mod/contacts.php:727
+msgid "Unblocked"
 msgstr ""
 
-#: mod/settings.php:1251
-msgid "accepting a friend request"
+#: mod/contacts.php:730
+msgid "Only show unblocked contacts"
 msgstr ""
 
-#: mod/settings.php:1252
-msgid "joining a forum/community"
+#: mod/contacts.php:735
+msgid "Blocked"
 msgstr ""
 
-#: mod/settings.php:1253
-msgid "making an <em>interesting</em> profile change"
+#: mod/contacts.php:738
+msgid "Only show blocked contacts"
 msgstr ""
 
-#: mod/settings.php:1254
-msgid "Send a notification email when:"
+#: mod/contacts.php:743
+msgid "Ignored"
 msgstr ""
 
-#: mod/settings.php:1255
-msgid "You receive an introduction"
+#: mod/contacts.php:746
+msgid "Only show ignored contacts"
 msgstr ""
 
-#: mod/settings.php:1256
-msgid "Your introductions are confirmed"
+#: mod/contacts.php:751
+msgid "Archived"
 msgstr ""
 
-#: mod/settings.php:1257
-msgid "Someone writes on your profile wall"
+#: mod/contacts.php:754
+msgid "Only show archived contacts"
 msgstr ""
 
-#: mod/settings.php:1258
-msgid "Someone writes a followup comment"
+#: mod/contacts.php:759
+msgid "Hidden"
 msgstr ""
 
-#: mod/settings.php:1259
-msgid "You receive a private message"
+#: mod/contacts.php:762
+msgid "Only show hidden contacts"
 msgstr ""
 
-#: mod/settings.php:1260
-msgid "You receive a friend suggestion"
+#: mod/contacts.php:818
+msgid "Search your contacts"
 msgstr ""
 
-#: mod/settings.php:1261
-msgid "You are tagged in a post"
+#: mod/contacts.php:826 mod/settings.php:170 mod/settings.php:701
+msgid "Update"
 msgstr ""
 
-#: mod/settings.php:1262
-msgid "You are poked/prodded/etc. in a post"
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Archive"
 msgstr ""
 
-#: mod/settings.php:1264
-msgid "Activate desktop notifications"
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Unarchive"
 msgstr ""
 
-#: mod/settings.php:1264
-msgid "Show desktop popup on new notifications"
+#: mod/contacts.php:832
+msgid "Batch Actions"
 msgstr ""
 
-#: mod/settings.php:1266
-msgid "Text-only notification emails"
+#: mod/contacts.php:866 src/Model/Profile.php:899
+msgid "Profile Details"
 msgstr ""
 
-#: mod/settings.php:1268
-msgid "Send text only notification emails, without the html part"
+#: mod/contacts.php:878
+msgid "View all contacts"
 msgstr ""
 
-#: mod/settings.php:1270
-msgid "Show detailled notifications"
+#: mod/contacts.php:889
+msgid "View all common friends"
 msgstr ""
 
-#: mod/settings.php:1272
-msgid ""
-"Per default, notifications are condensed to a single notification per item. "
-"When enabled every notification is displayed."
+#: mod/contacts.php:898
+msgid "Advanced Contact Settings"
 msgstr ""
 
-#: mod/settings.php:1274
-msgid "Advanced Account/Page Type Settings"
+#: mod/contacts.php:930
+msgid "Mutual Friendship"
 msgstr ""
 
-#: mod/settings.php:1275
-msgid "Change the behaviour of this account for special situations"
+#: mod/contacts.php:934
+msgid "is a fan of yours"
 msgstr ""
 
-#: mod/settings.php:1278
-msgid "Relocate"
+#: mod/contacts.php:938
+msgid "you are a fan of"
 msgstr ""
 
-#: mod/settings.php:1279
-msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
+#: mod/contacts.php:1013
+msgid "Toggle Blocked status"
 msgstr ""
 
-#: mod/settings.php:1280
-msgid "Resend relocate message to contacts"
+#: mod/contacts.php:1021
+msgid "Toggle Ignored status"
 msgstr ""
 
-#: mod/directory.php:152 src/Model/Profile.php:421 src/Model/Profile.php:769
-msgid "Status:"
+#: mod/contacts.php:1029
+msgid "Toggle Archive status"
 msgstr ""
 
-#: mod/directory.php:153 src/Model/Profile.php:422 src/Model/Profile.php:786
-msgid "Homepage:"
+#: mod/contacts.php:1037
+msgid "Delete contact"
 msgstr ""
 
-#: mod/directory.php:202 view/theme/vier/theme.php:201
-msgid "Global Directory"
+#: mod/_tos.php:48 mod/register.php:288 mod/admin.php:188 mod/admin.php:302
+#: src/Module/Tos.php:48
+msgid "Terms of Service"
 msgstr ""
 
-#: mod/directory.php:204
-msgid "Find on this site"
+#: mod/_tos.php:51 src/Module/Tos.php:51
+msgid "Privacy Statement"
 msgstr ""
 
-#: mod/directory.php:206
-msgid "Results for:"
+#: mod/_tos.php:52 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 ""
 
-#: mod/directory.php:208
-msgid "Site Directory"
+#: mod/_tos.php:53 src/Module/Tos.php:53
+#, php-format
+msgid ""
+"At any point in time a logged in user can export their account data from the "
+"<a href=\"%1$s/settings/uexport\">account settings</a>. If the user wants to "
+"delete their account they can do so at <a href=\"%1$s/removeme\">%1$s/"
+"removeme</a>. The deletion of the account will be permanent."
 msgstr ""
 
-#: mod/directory.php:209 mod/contacts.php:820 src/Content/Widget.php:63
-msgid "Find"
+#: mod/friendica.php:77
+msgid "This is Friendica, version"
 msgstr ""
 
-#: mod/directory.php:213
-msgid "No entries (some entries may be hidden)."
+#: mod/friendica.php:78
+msgid "running at web location"
 msgstr ""
 
-#: mod/babel.php:22
-msgid "Source input"
+#: mod/friendica.php:82
+msgid ""
+"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
+"about the Friendica project."
 msgstr ""
 
-#: mod/babel.php:28
-msgid "BBCode::convert (raw HTML)"
+#: mod/friendica.php:86
+msgid "Bug reports and issues: please visit"
 msgstr ""
 
-#: mod/babel.php:33
-msgid "BBCode::convert"
+#: mod/friendica.php:86
+msgid "the bugtracker at github"
 msgstr ""
 
-#: mod/babel.php:39
-msgid "BBCode::convert => HTML::toBBCode"
+#: mod/friendica.php:89
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
 msgstr ""
 
-#: mod/babel.php:45
-msgid "BBCode::toMarkdown"
+#: mod/friendica.php:103
+msgid "Installed addons/apps:"
 msgstr ""
 
-#: mod/babel.php:51
-msgid "BBCode::toMarkdown => Markdown::convert"
+#: mod/friendica.php:117
+msgid "No installed addons/apps"
 msgstr ""
 
-#: mod/babel.php:57
-msgid "BBCode::toMarkdown => Markdown::toBBCode"
+#: mod/friendica.php:122
+#, php-format
+msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
 msgstr ""
 
-#: mod/babel.php:63
-msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
+#: mod/friendica.php:127
+msgid "On this server the following remote servers are blocked."
 msgstr ""
 
-#: mod/babel.php:70
-msgid "Source input \\x28Diaspora format\\x29"
+#: mod/friendica.php:128 mod/admin.php:354 mod/admin.php:372
+msgid "Reason for the block"
 msgstr ""
 
-#: mod/babel.php:76
-msgid "Markdown::toBBCode"
+#: mod/lostpass.php:27
+msgid "No valid account found."
 msgstr ""
 
-#: mod/babel.php:83
-msgid "Raw HTML input"
+#: mod/lostpass.php:39
+msgid "Password reset request issued. Check your email."
 msgstr ""
 
-#: mod/babel.php:88
-msgid "HTML Input"
+#: 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/babel.php:94
-msgid "HTML::toBBCode"
+#: 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/babel.php:100
-msgid "HTML::toPlaintext"
+#: mod/lostpass.php:73
+#, php-format
+msgid "Password reset requested at %s"
 msgstr ""
 
-#: mod/babel.php:108
-msgid "Source text"
+#: mod/lostpass.php:89
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
 msgstr ""
 
-#: mod/babel.php:109
-msgid "BBCode"
+#: mod/lostpass.php:102
+msgid "Request has expired, please make a new one."
 msgstr ""
 
-#: mod/babel.php:110
-msgid "Markdown"
+#: mod/lostpass.php:117
+msgid "Forgot your Password?"
 msgstr ""
 
-#: mod/babel.php:111
-msgid "HTML"
+#: 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/follow.php:45
-msgid "The contact could not be added."
+#: mod/lostpass.php:119 src/Module/Login.php:314
+msgid "Nickname or Email: "
 msgstr ""
 
-#: mod/follow.php:73
-msgid "You already added this contact."
+#: mod/lostpass.php:120
+msgid "Reset"
 msgstr ""
 
-#: mod/follow.php:83
-msgid "Diaspora support isn't enabled. Contact can't be added."
+#: mod/lostpass.php:136 src/Module/Login.php:326
+msgid "Password Reset"
 msgstr ""
 
-#: mod/follow.php:90
-msgid "OStatus support is disabled. Contact can't be added."
+#: mod/lostpass.php:137
+msgid "Your password has been reset as requested."
 msgstr ""
 
-#: mod/follow.php:97
-msgid "The network type couldn't be detected. Contact can't be added."
+#: mod/lostpass.php:138
+msgid "Your new password is"
 msgstr ""
 
-#: mod/profiles.php:58
-msgid "Profile deleted."
+#: mod/lostpass.php:139
+msgid "Save or copy your new password - and then"
 msgstr ""
 
-#: mod/profiles.php:74 mod/profiles.php:110
-msgid "Profile-"
+#: mod/lostpass.php:140
+msgid "click here to login"
 msgstr ""
 
-#: mod/profiles.php:93 mod/profiles.php:132
-msgid "New profile created."
+#: mod/lostpass.php:141
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
 msgstr ""
 
-#: mod/profiles.php:116
-msgid "Profile unavailable to clone."
+#: 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/profiles.php:206
-msgid "Profile Name is required."
+#: 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 ""
 
-#: mod/profiles.php:347
-msgid "Marital Status"
+#: mod/lostpass.php:169
+#, php-format
+msgid "Your password has been changed at %s"
 msgstr ""
 
-#: mod/profiles.php:351
-msgid "Romantic Partner"
+#: mod/register.php:99
+msgid ""
+"Registration successful. Please check your email for further instructions."
 msgstr ""
 
-#: mod/profiles.php:363
-msgid "Work/Employment"
+#: mod/register.php:103
+#, php-format
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
 msgstr ""
 
-#: mod/profiles.php:366
-msgid "Religion"
+#: mod/register.php:110
+msgid "Registration successful."
 msgstr ""
 
-#: mod/profiles.php:370
-msgid "Political Views"
+#: mod/register.php:115
+msgid "Your registration can not be processed."
 msgstr ""
 
-#: mod/profiles.php:374
-msgid "Gender"
+#: mod/register.php:162
+msgid "Your registration is pending approval by the site owner."
 msgstr ""
 
-#: mod/profiles.php:378
-msgid "Sexual Preference"
+#: mod/register.php:220
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
 msgstr ""
 
-#: mod/profiles.php:382
-msgid "XMPP"
+#: mod/register.php:221
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
 msgstr ""
 
-#: mod/profiles.php:386
-msgid "Homepage"
+#: mod/register.php:222
+msgid "Your OpenID (optional): "
 msgstr ""
 
-#: mod/profiles.php:390 mod/profiles.php:686
-msgid "Interests"
+#: mod/register.php:234
+msgid "Include your profile in member directory?"
 msgstr ""
 
-#: mod/profiles.php:394 mod/admin.php:490
-msgid "Address"
+#: mod/register.php:259
+msgid "Note for the admin"
 msgstr ""
 
-#: mod/profiles.php:401 mod/profiles.php:682
-msgid "Location"
+#: mod/register.php:259
+msgid "Leave a message for the admin, why you want to join this node"
 msgstr ""
 
-#: mod/profiles.php:486
-msgid "Profile updated."
+#: mod/register.php:260
+msgid "Membership on this site is by invitation only."
 msgstr ""
 
-#: mod/profiles.php:564
-msgid " and "
+#: mod/register.php:261
+msgid "Your invitation code: "
 msgstr ""
 
-#: mod/profiles.php:573
-msgid "public profile"
+#: mod/register.php:264 mod/admin.php:1348
+msgid "Registration"
 msgstr ""
 
-#: mod/profiles.php:576
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+#: mod/register.php:270
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
 msgstr ""
 
-#: mod/profiles.php:577
-#, php-format
-msgid " - Visit %1$s's %2$s"
+#: mod/register.php:271
+msgid ""
+"Your Email Address: (Initial information will be send there, so this has to "
+"be an existing address.)"
 msgstr ""
 
-#: mod/profiles.php:579
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
+#: mod/register.php:273 mod/settings.php:1201
+msgid "New Password:"
 msgstr ""
 
-#: mod/profiles.php:633
-msgid "Hide contacts and friends:"
+#: mod/register.php:273
+msgid "Leave empty for an auto generated password."
 msgstr ""
 
-#: mod/profiles.php:638
-msgid "Hide your contact/friend list from viewers of this profile?"
+#: mod/register.php:274 mod/settings.php:1202
+msgid "Confirm:"
 msgstr ""
 
-#: mod/profiles.php:658
-msgid "Show more profile fields:"
+#: mod/register.php:275
+#, php-format
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be '<strong>nickname@%s</strong>'."
 msgstr ""
 
-#: mod/profiles.php:670
-msgid "Profile Actions"
+#: mod/register.php:276
+msgid "Choose a nickname: "
 msgstr ""
 
-#: mod/profiles.php:671
-msgid "Edit Profile Details"
+#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283
+msgid "Register"
 msgstr ""
 
-#: mod/profiles.php:673
-msgid "Change Profile Photo"
+#: mod/register.php:286
+msgid "Import your profile to this friendica instance"
 msgstr ""
 
-#: mod/profiles.php:674
-msgid "View this profile"
+#: mod/admin.php:106
+msgid "Theme settings updated."
 msgstr ""
 
-#: mod/profiles.php:675 mod/profiles.php:770 src/Model/Profile.php:393
-msgid "Edit visibility"
+#: mod/admin.php:179 src/Content/Nav.php:174
+msgid "Information"
 msgstr ""
 
-#: mod/profiles.php:676
-msgid "Create a new profile using these settings"
+#: mod/admin.php:180
+msgid "Overview"
 msgstr ""
 
-#: mod/profiles.php:677
-msgid "Clone this profile"
+#: mod/admin.php:181 mod/admin.php:718
+msgid "Federation Statistics"
 msgstr ""
 
-#: mod/profiles.php:678
-msgid "Delete this profile"
+#: mod/admin.php:182
+msgid "Configuration"
 msgstr ""
 
-#: mod/profiles.php:680
-msgid "Basic information"
+#: mod/admin.php:183 mod/admin.php:1345
+msgid "Site"
 msgstr ""
 
-#: mod/profiles.php:681
-msgid "Profile picture"
+#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1788 mod/admin.php:1804
+msgid "Users"
 msgstr ""
 
-#: mod/profiles.php:683
-msgid "Preferences"
+#: mod/admin.php:185 mod/admin.php:1904 mod/admin.php:1964 mod/settings.php:86
+msgid "Addons"
 msgstr ""
 
-#: mod/profiles.php:684
-msgid "Status information"
+#: mod/admin.php:186 mod/admin.php:2173 mod/admin.php:2217
+msgid "Themes"
 msgstr ""
 
-#: mod/profiles.php:685
-msgid "Additional information"
+#: mod/admin.php:187 mod/settings.php:64
+msgid "Additional features"
 msgstr ""
 
-#: mod/profiles.php:688
-msgid "Relation"
+#: mod/admin.php:189
+msgid "Database"
 msgstr ""
 
-#: mod/profiles.php:689 src/Util/Temporal.php:81 src/Util/Temporal.php:83
-msgid "Miscellaneous"
+#: mod/admin.php:190
+msgid "DB updates"
 msgstr ""
 
-#: mod/profiles.php:692
-msgid "Your Gender:"
+#: mod/admin.php:191 mod/admin.php:753
+msgid "Inspect Queue"
 msgstr ""
 
-#: mod/profiles.php:693
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+#: mod/admin.php:192
+msgid "Tools"
 msgstr ""
 
-#: mod/profiles.php:694 src/Model/Profile.php:782
-msgid "Sexual Preference:"
+#: mod/admin.php:193
+msgid "Contact Blocklist"
 msgstr ""
 
-#: mod/profiles.php:695
-msgid "Example: fishing photography software"
+#: mod/admin.php:194 mod/admin.php:362
+msgid "Server Blocklist"
 msgstr ""
 
-#: mod/profiles.php:700
-msgid "Profile Name:"
+#: mod/admin.php:195 mod/admin.php:521
+msgid "Delete Item"
 msgstr ""
 
-#: mod/profiles.php:702
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
+#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2291
+msgid "Logs"
 msgstr ""
 
-#: mod/profiles.php:703
-msgid "Your Full Name:"
+#: mod/admin.php:198 mod/admin.php:2358
+msgid "View Logs"
 msgstr ""
 
-#: mod/profiles.php:704
-msgid "Title/Description:"
+#: mod/admin.php:200
+msgid "Diagnostics"
 msgstr ""
 
-#: mod/profiles.php:707
-msgid "Street Address:"
+#: mod/admin.php:201
+msgid "PHP Info"
 msgstr ""
 
-#: mod/profiles.php:708
-msgid "Locality/City:"
+#: mod/admin.php:202
+msgid "probe address"
 msgstr ""
 
-#: mod/profiles.php:709
-msgid "Region/State:"
+#: mod/admin.php:203
+msgid "check webfinger"
 msgstr ""
 
-#: mod/profiles.php:710
-msgid "Postal/Zip Code:"
+#: mod/admin.php:222 src/Content/Nav.php:217
+msgid "Admin"
 msgstr ""
 
-#: mod/profiles.php:711
-msgid "Country:"
+#: mod/admin.php:223
+msgid "Addon Features"
 msgstr ""
 
-#: mod/profiles.php:712 src/Util/Temporal.php:149
-msgid "Age: "
+#: mod/admin.php:224
+msgid "User registrations waiting for confirmation"
 msgstr ""
 
-#: mod/profiles.php:715
-msgid "Who: (if applicable)"
+#: 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 ""
 
-#: mod/profiles.php:715
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+#: mod/admin.php:303
+msgid "Display Terms of Service"
 msgstr ""
 
-#: mod/profiles.php:716
-msgid "Since [date]:"
+#: 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/profiles.php:718
-msgid "Tell us about yourself..."
+#: mod/admin.php:304
+msgid "Display Privacy Statement"
 msgstr ""
 
-#: mod/profiles.php:719
-msgid "XMPP (Jabber) address:"
+#: mod/admin.php:304
+#, php-format
+msgid ""
+"Show some informations regarding the needed information to operate the node "
+"according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
 msgstr ""
 
-#: mod/profiles.php:719
-msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow "
-"you."
+#: mod/admin.php:305
+msgid "The Terms of Service"
 msgstr ""
 
-#: mod/profiles.php:720
-msgid "Homepage URL:"
+#: 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/profiles.php:721 src/Model/Profile.php:790
-msgid "Hometown:"
+#: mod/admin.php:353
+msgid "The blocked domain"
 msgstr ""
 
-#: mod/profiles.php:722 src/Model/Profile.php:798
-msgid "Political Views:"
+#: mod/admin.php:354 mod/admin.php:367
+msgid "The reason why you blocked this domain."
 msgstr ""
 
-#: mod/profiles.php:723
-msgid "Religious Views:"
+#: mod/admin.php:355
+msgid "Delete domain"
 msgstr ""
 
-#: mod/profiles.php:724
-msgid "Public Keywords:"
+#: mod/admin.php:355
+msgid "Check to delete this entry from the blocklist"
 msgstr ""
 
-#: mod/profiles.php:724
-msgid "(Used for suggesting potential friends, can be seen by others)"
+#: 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/profiles.php:725
-msgid "Private Keywords:"
+#: 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/profiles.php:725
-msgid "(Used for searching profiles, never shown to others)"
+#: mod/admin.php:365
+msgid "Add new entry to block list"
 msgstr ""
 
-#: mod/profiles.php:726 src/Model/Profile.php:814
-msgid "Likes:"
+#: mod/admin.php:366
+msgid "Server Domain"
 msgstr ""
 
-#: mod/profiles.php:727 src/Model/Profile.php:818
-msgid "Dislikes:"
+#: mod/admin.php:366
+msgid ""
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
 msgstr ""
 
-#: mod/profiles.php:728
-msgid "Musical interests"
+#: mod/admin.php:367
+msgid "Block reason"
 msgstr ""
 
-#: mod/profiles.php:729
-msgid "Books, literature"
+#: mod/admin.php:368
+msgid "Add Entry"
 msgstr ""
 
-#: mod/profiles.php:730
-msgid "Television"
+#: mod/admin.php:369
+msgid "Save changes to the blocklist"
 msgstr ""
 
-#: mod/profiles.php:731
-msgid "Film/dance/culture/entertainment"
+#: mod/admin.php:370
+msgid "Current Entries in the Blocklist"
 msgstr ""
 
-#: mod/profiles.php:732
-msgid "Hobbies/Interests"
+#: mod/admin.php:373
+msgid "Delete entry from blocklist"
 msgstr ""
 
-#: mod/profiles.php:733
-msgid "Love/romance"
+#: mod/admin.php:376
+msgid "Delete entry from blocklist?"
 msgstr ""
 
-#: mod/profiles.php:734
-msgid "Work/employment"
+#: mod/admin.php:402
+msgid "Server added to blocklist."
 msgstr ""
 
-#: mod/profiles.php:735
-msgid "School/education"
-msgstr ""
-
-#: mod/profiles.php:736
-msgid "Contact information and Social Networks"
-msgstr ""
-
-#: mod/profiles.php:767 src/Model/Profile.php:389
-msgid "Profile Image"
-msgstr ""
-
-#: mod/profiles.php:769 src/Model/Profile.php:392
-msgid "visible to everybody"
-msgstr ""
-
-#: mod/profiles.php:776
-msgid "Edit/Manage Profiles"
+#: mod/admin.php:418
+msgid "Site blocklist updated."
 msgstr ""
 
-#: mod/profiles.php:777 src/Model/Profile.php:379 src/Model/Profile.php:401
-msgid "Change profile photo"
+#: mod/admin.php:441 src/Core/Console/GlobalCommunityBlock.php:72
+msgid "The contact has been blocked from the node"
 msgstr ""
 
-#: mod/profiles.php:778 src/Model/Profile.php:380
-msgid "Create New Profile"
+#: 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/contacts.php:157
+#: mod/admin.php:450
 #, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
+msgid "%s contact unblocked"
+msgid_plural "%s contacts unblocked"
 msgstr[0] ""
 msgstr[1] ""
 
-#: mod/contacts.php:184 mod/contacts.php:400
-msgid "Could not access contact record."
+#: mod/admin.php:479
+msgid "Remote Contact Blocklist"
 msgstr ""
 
-#: mod/contacts.php:194
-msgid "Could not locate selected profile."
+#: mod/admin.php:480
+msgid ""
+"This page allows you to prevent any message from a remote contact to reach "
+"your node."
 msgstr ""
 
-#: mod/contacts.php:228
-msgid "Contact updated."
+#: mod/admin.php:481
+msgid "Block Remote Contact"
 msgstr ""
 
-#: mod/contacts.php:421
-msgid "Contact has been blocked"
+#: mod/admin.php:482 mod/admin.php:1790
+msgid "select all"
 msgstr ""
 
-#: mod/contacts.php:421
-msgid "Contact has been unblocked"
+#: mod/admin.php:483
+msgid "select none"
 msgstr ""
 
-#: mod/contacts.php:432
-msgid "Contact has been ignored"
+#: mod/admin.php:486
+msgid "No remote contact is blocked from this node."
 msgstr ""
 
-#: mod/contacts.php:432
-msgid "Contact has been unignored"
+#: mod/admin.php:488
+msgid "Blocked Remote Contacts"
 msgstr ""
 
-#: mod/contacts.php:443
-msgid "Contact has been archived"
+#: mod/admin.php:489
+msgid "Block New Remote Contact"
 msgstr ""
 
-#: mod/contacts.php:443
-msgid "Contact has been unarchived"
+#: mod/admin.php:490
+msgid "Photo"
 msgstr ""
 
-#: mod/contacts.php:467
-msgid "Drop contact"
-msgstr ""
+#: mod/admin.php:498
+#, php-format
+msgid "%s total blocked contact"
+msgid_plural "%s total blocked contacts"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/contacts.php:470 mod/contacts.php:823
-msgid "Do you really want to delete this contact?"
+#: mod/admin.php:500
+msgid "URL of the remote contact to block."
 msgstr ""
 
-#: mod/contacts.php:488
-msgid "Contact has been removed."
+#: mod/admin.php:522
+msgid "Delete this Item"
 msgstr ""
 
-#: mod/contacts.php:519
-#, php-format
-msgid "You are mutual friends with %s"
+#: 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/contacts.php:523
-#, php-format
-msgid "You are sharing with %s"
+#: 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/contacts.php:527
-#, php-format
-msgid "%s is sharing with you"
+#: mod/admin.php:525
+msgid "GUID"
 msgstr ""
 
-#: mod/contacts.php:547
-msgid "Private communications are not available for this contact."
+#: mod/admin.php:525
+msgid "The GUID of the item you want to delete."
 msgstr ""
 
-#: mod/contacts.php:549
-msgid "Never"
+#: mod/admin.php:564
+msgid "Item marked for deletion."
 msgstr ""
 
-#: mod/contacts.php:552
-msgid "(Update was successful)"
+#: mod/admin.php:635
+msgid "unknown"
 msgstr ""
 
-#: mod/contacts.php:552
-msgid "(Update was not successful)"
+#: 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/contacts.php:554 mod/contacts.php:992
-msgid "Suggest friends"
+#: mod/admin.php:712
+msgid ""
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
 msgstr ""
 
-#: mod/contacts.php:558
+#: mod/admin.php:724
 #, php-format
-msgid "Network type: %s"
+msgid ""
+"Currently this node is aware of %d nodes with %d registered users from the "
+"following platforms:"
 msgstr ""
 
-#: mod/contacts.php:563
-msgid "Communications lost with this contact!"
+#: mod/admin.php:755
+msgid "ID"
 msgstr ""
 
-#: mod/contacts.php:569
-msgid "Fetch further information for feeds"
+#: mod/admin.php:756
+msgid "Recipient Name"
 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."
+#: mod/admin.php:757
+msgid "Recipient Profile"
 msgstr ""
 
-#: mod/contacts.php:572 mod/admin.php:1272 mod/admin.php:1435
-#: mod/admin.php:1445
-msgid "Disabled"
+#: mod/admin.php:758 src/Core/NotificationsManager.php:178
+#: src/Content/Nav.php:178 view/theme/frio/theme.php:266
+msgid "Network"
 msgstr ""
 
-#: mod/contacts.php:573
-msgid "Fetch information"
+#: mod/admin.php:759
+msgid "Created"
 msgstr ""
 
-#: mod/contacts.php:574
-msgid "Fetch keywords"
+#: mod/admin.php:760
+msgid "Last Tried"
 msgstr ""
 
-#: mod/contacts.php:575
-msgid "Fetch information and keywords"
+#: 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/contacts.php:608
-msgid "Contact"
+#: 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 <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php bin/"
+"console.php dbstructure toinnodb</tt> of your Friendica installation for an "
+"automatic conversion.<br />"
 msgstr ""
 
-#: mod/contacts.php:611
-msgid "Profile Visibility"
+#: 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/contacts.php:612
-#, php-format
+#: mod/admin.php:802
 msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
+"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/contacts.php:613
-msgid "Contact Information / Notes"
+#: mod/admin.php:808
+msgid "The worker was never executed. Please check your database structure!"
 msgstr ""
 
-#: mod/contacts.php:614
-msgid "Their personal note"
+#: 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/contacts.php:616
-msgid "Edit contact notes"
+#: mod/admin.php:816 mod/admin.php:1739
+msgid "Normal Account"
 msgstr ""
 
-#: mod/contacts.php:620
-msgid "Block/Unblock contact"
+#: mod/admin.php:817 mod/admin.php:1740
+msgid "Automatic Follower Account"
 msgstr ""
 
-#: mod/contacts.php:621
-msgid "Ignore contact"
+#: mod/admin.php:818 mod/admin.php:1741
+msgid "Public Forum Account"
 msgstr ""
 
-#: mod/contacts.php:622
-msgid "Repair URL settings"
+#: mod/admin.php:819 mod/admin.php:1742
+msgid "Automatic Friend Account"
 msgstr ""
 
-#: mod/contacts.php:623
-msgid "View conversations"
+#: mod/admin.php:820
+msgid "Blog Account"
 msgstr ""
 
-#: mod/contacts.php:628
-msgid "Last update:"
+#: mod/admin.php:821
+msgid "Private Forum Account"
 msgstr ""
 
-#: mod/contacts.php:630
-msgid "Update public posts"
+#: mod/admin.php:843
+msgid "Message queues"
 msgstr ""
 
-#: mod/contacts.php:632 mod/contacts.php:1002
-msgid "Update now"
+#: mod/admin.php:849
+msgid "Summary"
 msgstr ""
 
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:485 mod/admin.php:1800
-msgid "Unblock"
+#: mod/admin.php:851
+msgid "Registered users"
 msgstr ""
 
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:484 mod/admin.php:1799
-msgid "Block"
+#: mod/admin.php:853
+msgid "Pending registrations"
 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"
+#: mod/admin.php:854
+msgid "Version"
 msgstr ""
 
-#: mod/contacts.php:644
-msgid "Currently archived"
+#: mod/admin.php:859
+msgid "Active addons"
 msgstr ""
 
-#: mod/contacts.php:645
-msgid "Awaiting connection acknowledge"
+#: mod/admin.php:890
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr ""
 
-#: mod/contacts.php:646
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
+#: mod/admin.php:1209
+msgid "Site settings updated."
 msgstr ""
 
-#: mod/contacts.php:647
-msgid "Notification for new posts"
+#: mod/admin.php:1236 mod/settings.php:905
+msgid "No special theme for mobile devices"
 msgstr ""
 
-#: mod/contacts.php:647
-msgid "Send a notification of every new post of this contact"
+#: mod/admin.php:1265
+msgid "No community page"
 msgstr ""
 
-#: mod/contacts.php:650
-msgid "Blacklisted keywords"
+#: mod/admin.php:1266
+msgid "Public postings from users of this site"
 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"
+#: mod/admin.php:1267
+msgid "Public postings from the federated network"
 msgstr ""
 
-#: mod/contacts.php:662 src/Model/Profile.php:424
-msgid "XMPP:"
+#: mod/admin.php:1268
+msgid "Public postings from local users and the federated network"
 msgstr ""
 
-#: mod/contacts.php:667
-msgid "Actions"
+#: mod/admin.php:1274
+msgid "Users, Global Contacts"
 msgstr ""
 
-#: mod/contacts.php:669 mod/contacts.php:855 src/Content/Nav.php:100
-#: src/Model/Profile.php:888 view/theme/frio/theme.php:259
-msgid "Status"
+#: mod/admin.php:1275
+msgid "Users, Global Contacts/fallback"
 msgstr ""
 
-#: mod/contacts.php:670
-msgid "Contact Settings"
+#: mod/admin.php:1279
+msgid "One month"
 msgstr ""
 
-#: mod/contacts.php:711
-msgid "Suggestions"
+#: mod/admin.php:1280
+msgid "Three months"
 msgstr ""
 
-#: mod/contacts.php:714
-msgid "Suggest potential friends"
+#: mod/admin.php:1281
+msgid "Half a year"
 msgstr ""
 
-#: mod/contacts.php:722
-msgid "Show all contacts"
+#: mod/admin.php:1282
+msgid "One year"
 msgstr ""
 
-#: mod/contacts.php:727
-msgid "Unblocked"
+#: mod/admin.php:1287
+msgid "Multi user instance"
 msgstr ""
 
-#: mod/contacts.php:730
-msgid "Only show unblocked contacts"
+#: mod/admin.php:1310
+msgid "Closed"
 msgstr ""
 
-#: mod/contacts.php:735
-msgid "Blocked"
+#: mod/admin.php:1311
+msgid "Requires approval"
 msgstr ""
 
-#: mod/contacts.php:738
-msgid "Only show blocked contacts"
+#: mod/admin.php:1312
+msgid "Open"
 msgstr ""
 
-#: mod/contacts.php:743
-msgid "Ignored"
+#: mod/admin.php:1316
+msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: mod/contacts.php:746
-msgid "Only show ignored contacts"
+#: mod/admin.php:1317
+msgid "Force all links to use SSL"
 msgstr ""
 
-#: mod/contacts.php:751
-msgid "Archived"
+#: mod/admin.php:1318
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: mod/contacts.php:754
-msgid "Only show archived contacts"
+#: mod/admin.php:1322
+msgid "Don't check"
 msgstr ""
 
-#: mod/contacts.php:759
-msgid "Hidden"
+#: mod/admin.php:1323
+msgid "check the stable version"
 msgstr ""
 
-#: mod/contacts.php:762
-msgid "Only show hidden contacts"
+#: mod/admin.php:1324
+msgid "check the development version"
 msgstr ""
 
-#: mod/contacts.php:818
-msgid "Search your contacts"
+#: mod/admin.php:1347
+msgid "Republish users to directory"
 msgstr ""
 
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Archive"
+#: mod/admin.php:1349
+msgid "File upload"
 msgstr ""
 
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Unarchive"
+#: mod/admin.php:1350
+msgid "Policies"
 msgstr ""
 
-#: mod/contacts.php:832
-msgid "Batch Actions"
+#: mod/admin.php:1352
+msgid "Auto Discovered Contact Directory"
 msgstr ""
 
-#: mod/contacts.php:866 src/Model/Profile.php:899
-msgid "Profile Details"
+#: mod/admin.php:1353
+msgid "Performance"
 msgstr ""
 
-#: mod/contacts.php:878
-msgid "View all contacts"
+#: mod/admin.php:1354
+msgid "Worker"
 msgstr ""
 
-#: mod/contacts.php:889
-msgid "View all common friends"
+#: mod/admin.php:1355
+msgid "Message Relay"
 msgstr ""
 
-#: mod/contacts.php:898
-msgid "Advanced Contact Settings"
+#: mod/admin.php:1356
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: mod/contacts.php:930
-msgid "Mutual Friendship"
+#: mod/admin.php:1359
+msgid "Site name"
 msgstr ""
 
-#: mod/contacts.php:934
-msgid "is a fan of yours"
+#: mod/admin.php:1360
+msgid "Host name"
 msgstr ""
 
-#: mod/contacts.php:938
-msgid "you are a fan of"
+#: mod/admin.php:1361
+msgid "Sender Email"
 msgstr ""
 
-#: mod/contacts.php:1013
-msgid "Toggle Blocked status"
+#: mod/admin.php:1361
+msgid ""
+"The email address your server shall use to send notification emails from."
 msgstr ""
 
-#: mod/contacts.php:1021
-msgid "Toggle Ignored status"
+#: mod/admin.php:1362
+msgid "Banner/Logo"
 msgstr ""
 
-#: mod/contacts.php:1029
-msgid "Toggle Archive status"
+#: mod/admin.php:1363
+msgid "Shortcut icon"
 msgstr ""
 
-#: mod/contacts.php:1037
-msgid "Delete contact"
+#: mod/admin.php:1363
+msgid "Link to an icon that will be used for browsers."
 msgstr ""
 
-#: mod/_tos.php:48 mod/register.php:288 mod/admin.php:188 mod/admin.php:302
-#: src/Module/Tos.php:48
-msgid "Terms of Service"
+#: mod/admin.php:1364
+msgid "Touch icon"
 msgstr ""
 
-#: mod/_tos.php:51 src/Module/Tos.php:51
-msgid "Privacy Statement"
+#: mod/admin.php:1364
+msgid "Link to an icon that will be used for tablets and mobiles."
 msgstr ""
 
-#: mod/_tos.php:52 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."
+#: mod/admin.php:1365
+msgid "Additional Info"
 msgstr ""
 
-#: mod/_tos.php:53 src/Module/Tos.php:53
+#: mod/admin.php:1365
 #, php-format
 msgid ""
-"At any point in time a logged in user can export their account data from the "
-"<a href=\"%1$s/settings/uexport\">account settings</a>. If the user wants to "
-"delete their account they can do so at <a href=\"%1$s/removeme\">%1$s/"
-"removeme</a>. The deletion of the account will be permanent."
+"For public servers: you can add additional information here that will be "
+"listed at %s/servers."
 msgstr ""
 
-#: mod/friendica.php:77
-msgid "This is Friendica, version"
+#: mod/admin.php:1366
+msgid "System language"
 msgstr ""
 
-#: mod/friendica.php:78
-msgid "running at web location"
+#: mod/admin.php:1367
+msgid "System theme"
 msgstr ""
 
-#: mod/friendica.php:82
+#: mod/admin.php:1367
 msgid ""
-"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
-"about the Friendica project."
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: mod/friendica.php:86
-msgid "Bug reports and issues: please visit"
+#: mod/admin.php:1368
+msgid "Mobile system theme"
 msgstr ""
 
-#: mod/friendica.php:86
-msgid "the bugtracker at github"
+#: mod/admin.php:1368
+msgid "Theme for mobile devices"
 msgstr ""
 
-#: mod/friendica.php:89
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
+#: mod/admin.php:1369
+msgid "SSL link policy"
 msgstr ""
 
-#: mod/friendica.php:103
-msgid "Installed addons/apps:"
+#: mod/admin.php:1369
+msgid "Determines whether generated links should be forced to use SSL"
 msgstr ""
 
-#: mod/friendica.php:117
-msgid "No installed addons/apps"
+#: mod/admin.php:1370
+msgid "Force SSL"
 msgstr ""
 
-#: mod/friendica.php:122
-#, php-format
-msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
+#: mod/admin.php:1370
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
+"to endless loops."
 msgstr ""
 
-#: mod/friendica.php:127
-msgid "On this server the following remote servers are blocked."
+#: mod/admin.php:1371
+msgid "Hide help entry from navigation menu"
 msgstr ""
 
-#: mod/friendica.php:128 mod/admin.php:354 mod/admin.php:372
-msgid "Reason for the block"
+#: 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/lostpass.php:27
-msgid "No valid account found."
+#: mod/admin.php:1372
+msgid "Single user instance"
 msgstr ""
 
-#: mod/lostpass.php:39
-msgid "Password reset request issued. Check your email."
+#: mod/admin.php:1372
+msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: mod/lostpass.php:45
-#, php-format
+#: mod/admin.php:1373
+msgid "Maximum image size"
+msgstr ""
+
+#: mod/admin.php:1373
 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."
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
 msgstr ""
 
-#: mod/lostpass.php:56
-#, php-format
+#: mod/admin.php:1374
+msgid "Maximum image length"
+msgstr ""
+
+#: mod/admin.php:1374
 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"
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
 msgstr ""
 
-#: mod/lostpass.php:73
-#, php-format
-msgid "Password reset requested at %s"
+#: mod/admin.php:1375
+msgid "JPEG image quality"
 msgstr ""
 
-#: mod/lostpass.php:89
+#: mod/admin.php:1375
 msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
 msgstr ""
 
-#: mod/lostpass.php:102
-msgid "Request has expired, please make a new one."
+#: mod/admin.php:1377
+msgid "Register policy"
 msgstr ""
 
-#: mod/lostpass.php:117
-msgid "Forgot your Password?"
+#: mod/admin.php:1378
+msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: mod/lostpass.php:118
+#: mod/admin.php:1378
 msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
+"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/lostpass.php:119 src/Module/Login.php:314
-msgid "Nickname or Email: "
+#: mod/admin.php:1379
+msgid "Register text"
 msgstr ""
 
-#: mod/lostpass.php:120
-msgid "Reset"
+#: mod/admin.php:1379
+msgid ""
+"Will be displayed prominently on the registration page. You can use BBCode "
+"here."
 msgstr ""
 
-#: mod/lostpass.php:136 src/Module/Login.php:326
-msgid "Password Reset"
+#: mod/admin.php:1380
+msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: mod/lostpass.php:137
-msgid "Your password has been reset as requested."
+#: mod/admin.php:1380
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: mod/lostpass.php:138
-msgid "Your new password is"
+#: mod/admin.php:1381
+msgid "Allowed friend domains"
 msgstr ""
 
-#: mod/lostpass.php:139
-msgid "Save or copy your new password - and then"
+#: 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/lostpass.php:140
-msgid "click here to login"
+#: mod/admin.php:1382
+msgid "Allowed email domains"
 msgstr ""
 
-#: mod/lostpass.php:141
+#: mod/admin.php:1382
 msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
+"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/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"
+#: mod/admin.php:1383
+msgid "No OEmbed rich content"
 msgstr ""
 
-#: mod/lostpass.php:155
-#, php-format
+#: mod/admin.php:1383
 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"
+"Don't show the rich content (e.g. embedded PDF), except from the domains "
+"listed below."
 msgstr ""
 
-#: mod/lostpass.php:169
-#, php-format
-msgid "Your password has been changed at %s"
+#: mod/admin.php:1384
+msgid "Allowed OEmbed domains"
 msgstr ""
 
-#: mod/register.php:99
+#: mod/admin.php:1384
 msgid ""
-"Registration successful. Please check your email for further instructions."
+"Comma separated list of domains which oembed content is allowed to be "
+"displayed. Wildcards are accepted."
 msgstr ""
 
-#: mod/register.php:103
-#, php-format
+#: mod/admin.php:1385
+msgid "Block public"
+msgstr ""
+
+#: mod/admin.php:1385
 msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
 msgstr ""
 
-#: mod/register.php:110
-msgid "Registration successful."
+#: mod/admin.php:1386
+msgid "Force publish"
 msgstr ""
 
-#: mod/register.php:115
-msgid "Your registration can not be processed."
+#: mod/admin.php:1386
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: mod/register.php:162
-msgid "Your registration is pending approval by the site owner."
+#: mod/admin.php:1387
+msgid "Global directory URL"
 msgstr ""
 
-#: mod/register.php:220
+#: mod/admin.php:1387
 msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
 msgstr ""
 
-#: mod/register.php:221
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
+#: mod/admin.php:1388
+msgid "Private posts by default for new users"
 msgstr ""
 
-#: mod/register.php:222
-msgid "Your OpenID (optional): "
+#: mod/admin.php:1388
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
 msgstr ""
 
-#: mod/register.php:234
-msgid "Include your profile in member directory?"
+#: mod/admin.php:1389
+msgid "Don't include post content in email notifications"
 msgstr ""
 
-#: mod/register.php:259
-msgid "Note for the admin"
+#: 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/register.php:259
-msgid "Leave a message for the admin, why you want to join this node"
+#: mod/admin.php:1390
+msgid "Disallow public access to addons listed in the apps menu."
 msgstr ""
 
-#: mod/register.php:260
-msgid "Membership on this site is by invitation only."
+#: mod/admin.php:1390
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
 msgstr ""
 
-#: mod/register.php:261
-msgid "Your invitation code: "
+#: mod/admin.php:1391
+msgid "Don't embed private images in posts"
 msgstr ""
 
-#: mod/register.php:264 mod/admin.php:1348
-msgid "Registration"
+#: 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/register.php:270
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+#: mod/admin.php:1392
+msgid "Allow Users to set remote_self"
 msgstr ""
 
-#: mod/register.php:271
+#: mod/admin.php:1392
 msgid ""
-"Your Email Address: (Initial information will be send there, so this has to "
-"be an existing address.)"
+"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/register.php:273
-msgid "Leave empty for an auto generated password."
+#: mod/admin.php:1393
+msgid "Block multiple registrations"
 msgstr ""
 
-#: mod/register.php:275
-#, php-format
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be '<strong>nickname@%s</strong>'."
+#: mod/admin.php:1393
+msgid "Disallow users to register additional accounts for use as pages."
 msgstr ""
 
-#: mod/register.php:276
-msgid "Choose a nickname: "
+#: mod/admin.php:1394
+msgid "OpenID support"
 msgstr ""
 
-#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283
-msgid "Register"
+#: mod/admin.php:1394
+msgid "OpenID support for registration and logins."
 msgstr ""
 
-#: mod/register.php:286
-msgid "Import your profile to this friendica instance"
+#: mod/admin.php:1395
+msgid "Fullname check"
 msgstr ""
 
-#: mod/admin.php:106
-msgid "Theme settings updated."
+#: 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:179 src/Content/Nav.php:174
-msgid "Information"
+#: mod/admin.php:1396
+msgid "Community pages for visitors"
+msgstr ""
+
+#: 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:180
-msgid "Overview"
+#: 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:181 mod/admin.php:718
-msgid "Federation Statistics"
+#: mod/admin.php:1398
+msgid "Enable OStatus support"
 msgstr ""
 
-#: mod/admin.php:182
-msgid "Configuration"
+#: 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:183 mod/admin.php:1345
-msgid "Site"
+#: mod/admin.php:1399
+msgid "Only import OStatus threads from our contacts"
 msgstr ""
 
-#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1788 mod/admin.php:1804
-msgid "Users"
+#: 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:186 mod/admin.php:2173 mod/admin.php:2217
-msgid "Themes"
+#: mod/admin.php:1400
+msgid "OStatus support can only be enabled if threading is enabled."
 msgstr ""
 
-#: mod/admin.php:189
-msgid "Database"
+#: mod/admin.php:1402
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub "
+"directory."
 msgstr ""
 
-#: mod/admin.php:190
-msgid "DB updates"
+#: mod/admin.php:1403
+msgid "Enable Diaspora support"
 msgstr ""
 
-#: mod/admin.php:191 mod/admin.php:753
-msgid "Inspect Queue"
+#: mod/admin.php:1403
+msgid "Provide built-in Diaspora network compatibility."
 msgstr ""
 
-#: mod/admin.php:192
-msgid "Tools"
+#: mod/admin.php:1404
+msgid "Only allow Friendica contacts"
 msgstr ""
 
-#: mod/admin.php:193
-msgid "Contact Blocklist"
+#: mod/admin.php:1404
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
 msgstr ""
 
-#: mod/admin.php:194 mod/admin.php:362
-msgid "Server Blocklist"
+#: mod/admin.php:1405
+msgid "Verify SSL"
 msgstr ""
 
-#: mod/admin.php:195 mod/admin.php:521
-msgid "Delete Item"
+#: 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:196 mod/admin.php:197 mod/admin.php:2291
-msgid "Logs"
+#: mod/admin.php:1406
+msgid "Proxy user"
 msgstr ""
 
-#: mod/admin.php:198 mod/admin.php:2358
-msgid "View Logs"
+#: mod/admin.php:1407
+msgid "Proxy URL"
 msgstr ""
 
-#: mod/admin.php:200
-msgid "Diagnostics"
+#: mod/admin.php:1408
+msgid "Network timeout"
 msgstr ""
 
-#: mod/admin.php:201
-msgid "PHP Info"
+#: mod/admin.php:1408
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: mod/admin.php:202
-msgid "probe address"
+#: mod/admin.php:1409
+msgid "Maximum Load Average"
 msgstr ""
 
-#: mod/admin.php:203
-msgid "check webfinger"
+#: mod/admin.php:1409
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
 msgstr ""
 
-#: mod/admin.php:222 src/Content/Nav.php:217
-msgid "Admin"
+#: mod/admin.php:1410
+msgid "Maximum Load Average (Frontend)"
 msgstr ""
 
-#: mod/admin.php:223
-msgid "Addon Features"
+#: mod/admin.php:1410
+msgid "Maximum system load before the frontend quits service - default 50."
 msgstr ""
 
-#: mod/admin.php:224
-msgid "User registrations waiting for confirmation"
+#: mod/admin.php:1411
+msgid "Minimal Memory"
 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
-msgid "Administration"
+#: 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:303
-msgid "Display Terms of Service"
+#: mod/admin.php:1412
+msgid "Maximum table size for optimization"
 msgstr ""
 
-#: mod/admin.php:303
+#: mod/admin.php:1412
 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."
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
 msgstr ""
 
-#: mod/admin.php:304
-msgid "Display Privacy Statement"
+#: mod/admin.php:1413
+msgid "Minimum level of fragmentation"
 msgstr ""
 
-#: mod/admin.php:304
-#, php-format
+#: mod/admin.php:1413
 msgid ""
-"Show some informations regarding the needed information to operate the node "
-"according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
 msgstr ""
 
-#: mod/admin.php:305
-msgid "The Terms of Service"
+#: mod/admin.php:1415
+msgid "Periodical check of global contacts"
 msgstr ""
 
-#: mod/admin.php:305
+#: mod/admin.php:1415
 msgid ""
-"Enter the Terms of Service for your node here. You can use BBCode. Headers "
-"of sections should be [h2] and below."
+"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:353
-msgid "The blocked domain"
+#: mod/admin.php:1416
+msgid "Days between requery"
 msgstr ""
 
-#: mod/admin.php:354 mod/admin.php:367
-msgid "The reason why you blocked this domain."
+#: mod/admin.php:1416
+msgid "Number of days after which a server is requeried for his contacts."
 msgstr ""
 
-#: mod/admin.php:355
-msgid "Delete domain"
+#: mod/admin.php:1417
+msgid "Discover contacts from other servers"
 msgstr ""
 
-#: mod/admin.php:355
-msgid "Check to delete this entry from the blocklist"
+#: 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: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."
+#: mod/admin.php:1418
+msgid "Timeframe for fetching global contacts"
 msgstr ""
 
-#: mod/admin.php:364
+#: mod/admin.php:1418
 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."
+"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:365
-msgid "Add new entry to block list"
+#: mod/admin.php:1419
+msgid "Search the local directory"
 msgstr ""
 
-#: mod/admin.php:366
-msgid "Server Domain"
+#: 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:366
-msgid ""
-"The domain of the new server to add to the block list. Do not include the "
-"protocol."
+#: mod/admin.php:1421
+msgid "Publish server information"
 msgstr ""
 
-#: mod/admin.php:367
-msgid "Block reason"
+#: 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 <a "
+"href='http://the-federation.info/'>the-federation.info</a> for details."
 msgstr ""
 
-#: mod/admin.php:368
-msgid "Add Entry"
+#: mod/admin.php:1423
+msgid "Check upstream version"
 msgstr ""
 
-#: mod/admin.php:369
-msgid "Save changes to the blocklist"
+#: 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:370
-msgid "Current Entries in the Blocklist"
+#: mod/admin.php:1424
+msgid "Suppress Tags"
 msgstr ""
 
-#: mod/admin.php:373
-msgid "Delete entry from blocklist"
+#: mod/admin.php:1424
+msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr ""
 
-#: mod/admin.php:376
-msgid "Delete entry from blocklist?"
+#: mod/admin.php:1425
+msgid "Path to item cache"
 msgstr ""
 
-#: mod/admin.php:402
-msgid "Server added to blocklist."
+#: mod/admin.php:1425
+msgid "The item caches buffers generated bbcode and external images."
 msgstr ""
 
-#: mod/admin.php:418
-msgid "Site blocklist updated."
+#: mod/admin.php:1426
+msgid "Cache duration in seconds"
 msgstr ""
 
-#: mod/admin.php:441 src/Core/Console/GlobalCommunityBlock.php:72
-msgid "The contact has been blocked from the node"
+#: 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:443 src/Core/Console/GlobalCommunityBlock.php:69
-#, php-format
-msgid "Could not find any contact entry for this URL (%s)"
+#: mod/admin.php:1427
+msgid "Maximum numbers of comments per post"
 msgstr ""
 
-#: mod/admin.php:450
-#, php-format
-msgid "%s contact unblocked"
-msgid_plural "%s contacts unblocked"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/admin.php:1427
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr ""
 
-#: mod/admin.php:479
-msgid "Remote Contact Blocklist"
+#: mod/admin.php:1428
+msgid "Temp path"
 msgstr ""
 
-#: mod/admin.php:480
+#: mod/admin.php:1428
 msgid ""
-"This page allows you to prevent any message from a remote contact to reach "
-"your node."
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
 msgstr ""
 
-#: mod/admin.php:481
-msgid "Block Remote Contact"
+#: mod/admin.php:1429
+msgid "Base path to installation"
 msgstr ""
 
-#: mod/admin.php:482 mod/admin.php:1790
-msgid "select all"
+#: 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:483
-msgid "select none"
+#: mod/admin.php:1430
+msgid "Disable picture proxy"
 msgstr ""
 
-#: mod/admin.php:486
-msgid "No remote contact is blocked from this node."
+#: 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:488
-msgid "Blocked Remote Contacts"
+#: mod/admin.php:1431
+msgid "Only search in tags"
 msgstr ""
 
-#: mod/admin.php:489
-msgid "Block New Remote Contact"
+#: mod/admin.php:1431
+msgid "On large systems the text search can slow down the system extremely."
 msgstr ""
 
-#: mod/admin.php:490
-msgid "Photo"
+#: mod/admin.php:1433
+msgid "New base url"
 msgstr ""
 
-#: mod/admin.php:498
-#, php-format
-msgid "%s total blocked contact"
-msgid_plural "%s total blocked contacts"
-msgstr[0] ""
-msgstr[1] ""
+#: 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:500
-msgid "URL of the remote contact to block."
+#: mod/admin.php:1435
+msgid "RINO Encryption"
 msgstr ""
 
-#: mod/admin.php:522
-msgid "Delete this Item"
+#: mod/admin.php:1435
+msgid "Encryption layer between nodes."
 msgstr ""
 
-#: 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."
+#: mod/admin.php:1435
+msgid "Enabled"
 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."
+#: mod/admin.php:1437
+msgid "Maximum number of parallel workers"
 msgstr ""
 
-#: mod/admin.php:525
-msgid "GUID"
+#: 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:525
-msgid "The GUID of the item you want to delete."
+#: mod/admin.php:1438
+msgid "Don't use 'proc_open' with the worker"
 msgstr ""
 
-#: mod/admin.php:564
-msgid "Item marked for deletion."
+#: 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:635
-msgid "unknown"
+#: mod/admin.php:1439
+msgid "Enable fastlane"
 msgstr ""
 
-#: mod/admin.php:711
+#: mod/admin.php:1439
 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."
+"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:712
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
+#: mod/admin.php:1440
+msgid "Enable frontend worker"
 msgstr ""
 
-#: mod/admin.php:724
+#: mod/admin.php:1440
 #, php-format
 msgid ""
-"Currently this node is aware of %d nodes with %d registered users from the "
-"following platforms:"
+"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:755
-msgid "ID"
+#: mod/admin.php:1442
+msgid "Subscribe to relay"
 msgstr ""
 
-#: mod/admin.php:756
-msgid "Recipient Name"
+#: 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:757
-msgid "Recipient Profile"
+#: mod/admin.php:1443
+msgid "Relay server"
 msgstr ""
 
-#: mod/admin.php:758 src/Core/NotificationsManager.php:178
-#: src/Content/Nav.php:178 view/theme/frio/theme.php:266
-msgid "Network"
+#: 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:759
-msgid "Created"
+#: mod/admin.php:1444
+msgid "Direct relay transfer"
 msgstr ""
 
-#: mod/admin.php:760
-msgid "Last Tried"
+#: mod/admin.php:1444
+msgid ""
+"Enables the direct transfer to other servers without using the relay servers"
 msgstr ""
 
-#: 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."
+#: mod/admin.php:1445
+msgid "Relay scope"
 msgstr ""
 
-#: mod/admin.php:785
-#, php-format
+#: mod/admin.php:1445
 msgid ""
-"Your DB still runs with MyISAM tables. You should change the engine type to "
-"InnoDB. As Friendica will use InnoDB only features in the future, you should "
-"change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the command <tt>php bin/"
-"console.php dbstructure toinnodb</tt> of your Friendica installation for an "
-"automatic conversion.<br />"
+"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: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"
+#: mod/admin.php:1445
+msgid "all"
 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."
+#: mod/admin.php:1445
+msgid "tags"
 msgstr ""
 
-#: mod/admin.php:808
-msgid "The worker was never executed. Please check your database structure!"
+#: mod/admin.php:1446
+msgid "Server tags"
 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."
+#: mod/admin.php:1446
+msgid "Comma separated list of tags for the 'tags' subscription."
 msgstr ""
 
-#: mod/admin.php:816 mod/admin.php:1739
-msgid "Normal Account"
+#: mod/admin.php:1447
+msgid "Allow user tags"
 msgstr ""
 
-#: mod/admin.php:817 mod/admin.php:1740
-msgid "Automatic Follower Account"
+#: 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:818 mod/admin.php:1741
-msgid "Public Forum Account"
+#: mod/admin.php:1475
+msgid "Update has been marked successful"
 msgstr ""
 
-#: mod/admin.php:819 mod/admin.php:1742
-msgid "Automatic Friend Account"
+#: mod/admin.php:1482
+#, php-format
+msgid "Database structure update %s was successfully applied."
 msgstr ""
 
-#: mod/admin.php:820
-msgid "Blog Account"
+#: mod/admin.php:1485
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
 msgstr ""
 
-#: mod/admin.php:821
-msgid "Private Forum Account"
+#: mod/admin.php:1498
+#, php-format
+msgid "Executing %s failed with error: %s"
 msgstr ""
 
-#: mod/admin.php:843
-msgid "Message queues"
+#: mod/admin.php:1500
+#, php-format
+msgid "Update %s was successfully applied."
 msgstr ""
 
-#: mod/admin.php:849
-msgid "Summary"
+#: mod/admin.php:1503
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: mod/admin.php:851
-msgid "Registered users"
+#: mod/admin.php:1506
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
 msgstr ""
 
-#: mod/admin.php:853
-msgid "Pending registrations"
+#: mod/admin.php:1526
+msgid "No failed updates."
 msgstr ""
 
-#: mod/admin.php:854
-msgid "Version"
+#: mod/admin.php:1527
+msgid "Check database structure"
 msgstr ""
 
-#: mod/admin.php:859
-msgid "Active addons"
+#: mod/admin.php:1532
+msgid "Failed Updates"
 msgstr ""
 
-#: mod/admin.php:890
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+#: mod/admin.php:1533
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: mod/admin.php:1209
-msgid "Site settings updated."
+#: mod/admin.php:1534
+msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: mod/admin.php:1265
-msgid "No community page"
+#: mod/admin.php:1535
+msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: mod/admin.php:1266
-msgid "Public postings from users of this site"
+#: 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:1267
-msgid "Public postings from the federated network"
+#: 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:1268
-msgid "Public postings from local users and the federated network"
+#: mod/admin.php:1611 src/Model/User.php:649
+#, php-format
+msgid "Registration details for %s"
 msgstr ""
 
-#: mod/admin.php:1274
-msgid "Users, Global Contacts"
-msgstr ""
+#: mod/admin.php:1621
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/admin.php:1275
-msgid "Users, Global Contacts/fallback"
+#: mod/admin.php:1627
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/admin.php:1674
+#, php-format
+msgid "User '%s' deleted"
 msgstr ""
 
-#: mod/admin.php:1279
-msgid "One month"
+#: mod/admin.php:1682
+#, php-format
+msgid "User '%s' unblocked"
 msgstr ""
 
-#: mod/admin.php:1280
-msgid "Three months"
+#: mod/admin.php:1682
+#, php-format
+msgid "User '%s' blocked"
 msgstr ""
 
-#: mod/admin.php:1281
-msgid "Half a year"
+#: mod/admin.php:1781 mod/admin.php:1793 mod/admin.php:1806 mod/admin.php:1824
+#: src/Content/ContactSelector.php:82
+msgid "Email"
 msgstr ""
 
-#: mod/admin.php:1282
-msgid "One year"
+#: mod/admin.php:1781 mod/admin.php:1806
+msgid "Register date"
 msgstr ""
 
-#: mod/admin.php:1287
-msgid "Multi user instance"
+#: mod/admin.php:1781 mod/admin.php:1806
+msgid "Last login"
 msgstr ""
 
-#: mod/admin.php:1310
-msgid "Closed"
+#: mod/admin.php:1781 mod/admin.php:1806
+msgid "Last item"
 msgstr ""
 
-#: mod/admin.php:1311
-msgid "Requires approval"
+#: mod/admin.php:1781 mod/settings.php:55
+msgid "Account"
 msgstr ""
 
-#: mod/admin.php:1312
-msgid "Open"
+#: mod/admin.php:1789
+msgid "Add User"
 msgstr ""
 
-#: mod/admin.php:1316
-msgid "No SSL policy, links will track page SSL state"
+#: mod/admin.php:1791
+msgid "User registrations waiting for confirm"
 msgstr ""
 
-#: mod/admin.php:1317
-msgid "Force all links to use SSL"
+#: mod/admin.php:1792
+msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: mod/admin.php:1318
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+#: mod/admin.php:1793
+msgid "Request date"
 msgstr ""
 
-#: mod/admin.php:1322
-msgid "Don't check"
+#: mod/admin.php:1794
+msgid "No registrations."
 msgstr ""
 
-#: mod/admin.php:1323
-msgid "check the stable version"
+#: mod/admin.php:1795
+msgid "Note from the user"
 msgstr ""
 
-#: mod/admin.php:1324
-msgid "check the development version"
+#: mod/admin.php:1797
+msgid "Deny"
 msgstr ""
 
-#: mod/admin.php:1347
-msgid "Republish users to directory"
+#: mod/admin.php:1801
+msgid "Site admin"
 msgstr ""
 
-#: mod/admin.php:1349
-msgid "File upload"
+#: mod/admin.php:1802
+msgid "Account expired"
 msgstr ""
 
-#: mod/admin.php:1350
-msgid "Policies"
+#: mod/admin.php:1805
+msgid "New User"
 msgstr ""
 
-#: mod/admin.php:1352
-msgid "Auto Discovered Contact Directory"
+#: mod/admin.php:1806
+msgid "Deleted since"
 msgstr ""
 
-#: mod/admin.php:1353
-msgid "Performance"
+#: 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:1354
-msgid "Worker"
+#: 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:1355
-msgid "Message Relay"
+#: mod/admin.php:1822
+msgid "Name of the new user."
 msgstr ""
 
-#: mod/admin.php:1356
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
+#: mod/admin.php:1823
+msgid "Nickname"
 msgstr ""
 
-#: mod/admin.php:1359
-msgid "Site name"
+#: mod/admin.php:1823
+msgid "Nickname of the new user."
 msgstr ""
 
-#: mod/admin.php:1360
-msgid "Host name"
+#: mod/admin.php:1824
+msgid "Email address of the new user."
 msgstr ""
 
-#: mod/admin.php:1361
-msgid "Sender Email"
+#: mod/admin.php:1866
+#, php-format
+msgid "Addon %s disabled."
 msgstr ""
 
-#: mod/admin.php:1361
-msgid ""
-"The email address your server shall use to send notification emails from."
+#: mod/admin.php:1870
+#, php-format
+msgid "Addon %s enabled."
 msgstr ""
 
-#: mod/admin.php:1362
-msgid "Banner/Logo"
+#: mod/admin.php:1880 mod/admin.php:2129
+msgid "Disable"
 msgstr ""
 
-#: mod/admin.php:1363
-msgid "Shortcut icon"
+#: mod/admin.php:1883 mod/admin.php:2132
+msgid "Enable"
 msgstr ""
 
-#: mod/admin.php:1363
-msgid "Link to an icon that will be used for browsers."
+#: mod/admin.php:1905 mod/admin.php:2174
+msgid "Toggle"
 msgstr ""
 
-#: mod/admin.php:1364
-msgid "Touch icon"
+#: mod/admin.php:1913 mod/admin.php:2183
+msgid "Author: "
 msgstr ""
 
-#: mod/admin.php:1364
-msgid "Link to an icon that will be used for tablets and mobiles."
+#: mod/admin.php:1914 mod/admin.php:2184
+msgid "Maintainer: "
 msgstr ""
 
-#: mod/admin.php:1365
-msgid "Additional Info"
+#: mod/admin.php:1966
+msgid "Reload active addons"
 msgstr ""
 
-#: mod/admin.php:1365
+#: mod/admin.php:1971
 #, php-format
 msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/servers."
+"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:1366
-msgid "System language"
+#: mod/admin.php:2091
+msgid "No themes found."
 msgstr ""
 
-#: mod/admin.php:1367
-msgid "System theme"
+#: mod/admin.php:2165
+msgid "Screenshot"
 msgstr ""
 
-#: mod/admin.php:1367
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
+#: mod/admin.php:2219
+msgid "Reload active themes"
 msgstr ""
 
-#: mod/admin.php:1368
-msgid "Mobile system theme"
+#: mod/admin.php:2224
+#, php-format
+msgid "No themes found on the system. They should be placed in %1$s"
 msgstr ""
 
-#: mod/admin.php:1368
-msgid "Theme for mobile devices"
+#: mod/admin.php:2225
+msgid "[Experimental]"
 msgstr ""
 
-#: mod/admin.php:1369
-msgid "SSL link policy"
+#: mod/admin.php:2226
+msgid "[Unsupported]"
 msgstr ""
 
-#: mod/admin.php:1369
-msgid "Determines whether generated links should be forced to use SSL"
+#: mod/admin.php:2250
+msgid "Log settings updated."
+msgstr ""
+
+#: mod/admin.php:2282
+msgid "PHP log currently enabled."
 msgstr ""
 
-#: mod/admin.php:1370
-msgid "Force SSL"
+#: mod/admin.php:2284
+msgid "PHP log currently disabled."
 msgstr ""
 
-#: mod/admin.php:1370
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
-"to endless loops."
+#: mod/admin.php:2293
+msgid "Clear"
 msgstr ""
 
-#: mod/admin.php:1371
-msgid "Hide help entry from navigation menu"
+#: mod/admin.php:2297
+msgid "Enable Debugging"
 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."
+#: mod/admin.php:2298
+msgid "Log file"
 msgstr ""
 
-#: mod/admin.php:1372
-msgid "Single user instance"
+#: mod/admin.php:2298
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
 msgstr ""
 
-#: mod/admin.php:1372
-msgid "Make this instance multi-user or single-user for the named user"
+#: mod/admin.php:2299
+msgid "Log level"
 msgstr ""
 
-#: mod/admin.php:1373
-msgid "Maximum image size"
+#: mod/admin.php:2301
+msgid "PHP logging"
 msgstr ""
 
-#: mod/admin.php:1373
+#: mod/admin.php:2302
 msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
+"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:1374
-msgid "Maximum image length"
+#: mod/admin.php:2333
+#, php-format
+msgid ""
+"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
+"if file %1$s exist and is readable."
 msgstr ""
 
-#: mod/admin.php:1374
+#: mod/admin.php:2337
+#, php-format
 msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
+"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file "
+"%1$s is readable."
 msgstr ""
 
-#: mod/admin.php:1375
-msgid "JPEG image quality"
+#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775
+msgid "Off"
 msgstr ""
 
-#: mod/admin.php:1375
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
+#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775
+msgid "On"
 msgstr ""
 
-#: mod/admin.php:1377
-msgid "Register policy"
+#: mod/admin.php:2429
+#, php-format
+msgid "Lock feature %s"
 msgstr ""
 
-#: mod/admin.php:1378
-msgid "Maximum Daily Registrations"
+#: mod/admin.php:2437
+msgid "Manage Additional Features"
 msgstr ""
 
-#: 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."
+#: mod/settings.php:72
+msgid "Display"
 msgstr ""
 
-#: mod/admin.php:1379
-msgid "Register text"
+#: mod/settings.php:79 mod/settings.php:842
+msgid "Social Networks"
 msgstr ""
 
-#: mod/admin.php:1379
-msgid ""
-"Will be displayed prominently on the registration page. You can use BBCode "
-"here."
+#: mod/settings.php:93 src/Content/Nav.php:204
+msgid "Delegations"
 msgstr ""
 
-#: mod/admin.php:1380
-msgid "Accounts abandoned after x days"
+#: mod/settings.php:100
+msgid "Connected apps"
 msgstr ""
 
-#: mod/admin.php:1380
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
+#: mod/settings.php:114
+msgid "Remove account"
 msgstr ""
 
-#: mod/admin.php:1381
-msgid "Allowed friend domains"
+#: mod/settings.php:168
+msgid "Missing some important data!"
 msgstr ""
 
-#: 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"
+#: mod/settings.php:279
+msgid "Failed to connect with email account using the settings provided."
 msgstr ""
 
-#: mod/admin.php:1382
-msgid "Allowed email domains"
+#: mod/settings.php:284
+msgid "Email settings updated."
 msgstr ""
 
-#: 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"
+#: mod/settings.php:300
+msgid "Features updated"
 msgstr ""
 
-#: mod/admin.php:1383
-msgid "No OEmbed rich content"
+#: mod/settings.php:372
+msgid "Relocate message has been send to your contacts"
 msgstr ""
 
-#: mod/admin.php:1383
-msgid ""
-"Don't show the rich content (e.g. embedded PDF), except from the domains "
-"listed below."
+#: mod/settings.php:384 src/Model/User.php:325
+msgid "Passwords do not match. Password unchanged."
 msgstr ""
 
-#: mod/admin.php:1384
-msgid "Allowed OEmbed domains"
+#: mod/settings.php:389
+msgid "Empty passwords are not allowed. Password unchanged."
 msgstr ""
 
-#: mod/admin.php:1384
+#: mod/settings.php:394 src/Core/Console/NewPassword.php:78
 msgid ""
-"Comma separated list of domains which oembed content is allowed to be "
-"displayed. Wildcards are accepted."
+"The new password has been exposed in a public data dump, please choose "
+"another."
 msgstr ""
 
-#: mod/admin.php:1385
-msgid "Block public"
+#: mod/settings.php:400
+msgid "Wrong password."
 msgstr ""
 
-#: 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."
+#: mod/settings.php:407 src/Core/Console/NewPassword.php:85
+msgid "Password changed."
 msgstr ""
 
-#: mod/admin.php:1386
-msgid "Force publish"
+#: mod/settings.php:409 src/Core/Console/NewPassword.php:82
+msgid "Password update failed. Please try again."
 msgstr ""
 
-#: mod/admin.php:1386
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
+#: mod/settings.php:496
+msgid " Please use a shorter name."
 msgstr ""
 
-#: mod/admin.php:1387
-msgid "Global directory URL"
+#: mod/settings.php:499
+msgid " Name too short."
 msgstr ""
 
-#: mod/admin.php:1387
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
+#: mod/settings.php:507
+msgid "Wrong Password"
 msgstr ""
 
-#: mod/admin.php:1388
-msgid "Private posts by default for new users"
+#: mod/settings.php:512
+msgid "Invalid email."
 msgstr ""
 
-#: mod/admin.php:1388
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
+#: mod/settings.php:519
+msgid "Cannot change to that email."
 msgstr ""
 
-#: mod/admin.php:1389
-msgid "Don't include post content in email notifications"
+#: mod/settings.php:572
+msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr ""
 
-#: 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."
+#: mod/settings.php:575
+msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr ""
 
-#: mod/admin.php:1390
-msgid "Disallow public access to addons listed in the apps menu."
+#: mod/settings.php:615
+msgid "Settings updated."
 msgstr ""
 
-#: mod/admin.php:1390
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
+#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
+msgid "Add application"
 msgstr ""
 
-#: mod/admin.php:1391
-msgid "Don't embed private images in posts"
+#: mod/settings.php:678 mod/settings.php:704
+msgid "Consumer Key"
 msgstr ""
 
-#: 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."
+#: mod/settings.php:679 mod/settings.php:705
+msgid "Consumer Secret"
 msgstr ""
 
-#: mod/admin.php:1392
-msgid "Allow Users to set remote_self"
+#: mod/settings.php:680 mod/settings.php:706
+msgid "Redirect"
 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."
+#: mod/settings.php:681 mod/settings.php:707
+msgid "Icon url"
 msgstr ""
 
-#: mod/admin.php:1393
-msgid "Block multiple registrations"
+#: mod/settings.php:692
+msgid "You can't edit this application."
 msgstr ""
 
-#: mod/admin.php:1393
-msgid "Disallow users to register additional accounts for use as pages."
+#: mod/settings.php:735
+msgid "Connected Apps"
 msgstr ""
 
-#: mod/admin.php:1394
-msgid "OpenID support"
+#: mod/settings.php:737 src/Object/Post.php:155 src/Object/Post.php:157
+msgid "Edit"
 msgstr ""
 
-#: mod/admin.php:1394
-msgid "OpenID support for registration and logins."
+#: mod/settings.php:739
+msgid "Client key starts with"
 msgstr ""
 
-#: mod/admin.php:1395
-msgid "Fullname check"
+#: mod/settings.php:740
+msgid "No name"
 msgstr ""
 
-#: mod/admin.php:1395
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
+#: mod/settings.php:741
+msgid "Remove authorization"
 msgstr ""
 
-#: mod/admin.php:1396
-msgid "Community pages for visitors"
+#: mod/settings.php:752
+msgid "No Addon settings configured"
 msgstr ""
 
-#: mod/admin.php:1396
-msgid ""
-"Which community pages should be available for visitors. Local users always "
-"see both pages."
+#: mod/settings.php:761
+msgid "Addon Settings"
 msgstr ""
 
-#: mod/admin.php:1397
-msgid "Posts per user on community page"
+#: mod/settings.php:782
+msgid "Additional Features"
 msgstr ""
 
-#: mod/admin.php:1397
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
+#: mod/settings.php:805 src/Content/ContactSelector.php:83
+msgid "Diaspora"
 msgstr ""
 
-#: mod/admin.php:1398
-msgid "Enable OStatus support"
+#: mod/settings.php:805 mod/settings.php:806
+msgid "enabled"
 msgstr ""
 
-#: 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."
+#: mod/settings.php:805 mod/settings.php:806
+msgid "disabled"
 msgstr ""
 
-#: mod/admin.php:1399
-msgid "Only import OStatus threads from our contacts"
+#: mod/settings.php:805 mod/settings.php:806
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
 msgstr ""
 
-#: 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."
+#: mod/settings.php:806
+msgid "GNU Social (OStatus)"
 msgstr ""
 
-#: mod/admin.php:1400
-msgid "OStatus support can only be enabled if threading is enabled."
+#: mod/settings.php:837
+msgid "Email access is disabled on this site."
 msgstr ""
 
-#: mod/admin.php:1402
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub "
-"directory."
+#: mod/settings.php:847
+msgid "General Social Media Settings"
 msgstr ""
 
-#: mod/admin.php:1403
-msgid "Enable Diaspora support"
+#: mod/settings.php:848
+msgid "Disable Content Warning"
 msgstr ""
 
-#: mod/admin.php:1403
-msgid "Provide built-in Diaspora network compatibility."
+#: 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/admin.php:1404
-msgid "Only allow Friendica contacts"
+#: mod/settings.php:849
+msgid "Disable intelligent shortening"
 msgstr ""
 
-#: mod/admin.php:1404
+#: mod/settings.php:849
 msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
+"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/admin.php:1405
-msgid "Verify SSL"
+#: mod/settings.php:850
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
 msgstr ""
 
-#: mod/admin.php:1405
+#: mod/settings.php:850
 msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you "
-"cannot connect (at all) to self-signed SSL sites."
+"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/admin.php:1406
-msgid "Proxy user"
+#: mod/settings.php:851
+msgid "Default group for OStatus contacts"
 msgstr ""
 
-#: mod/admin.php:1407
-msgid "Proxy URL"
+#: mod/settings.php:852
+msgid "Your legacy GNU Social account"
 msgstr ""
 
-#: mod/admin.php:1408
-msgid "Network timeout"
+#: 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/admin.php:1408
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+#: mod/settings.php:855
+msgid "Repair OStatus subscriptions"
 msgstr ""
 
-#: mod/admin.php:1409
-msgid "Maximum Load Average"
+#: mod/settings.php:859
+msgid "Email/Mailbox Setup"
 msgstr ""
 
-#: mod/admin.php:1409
+#: mod/settings.php:860
 msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
 msgstr ""
 
-#: mod/admin.php:1410
-msgid "Maximum Load Average (Frontend)"
+#: mod/settings.php:861
+msgid "Last successful email check:"
 msgstr ""
 
-#: mod/admin.php:1410
-msgid "Maximum system load before the frontend quits service - default 50."
+#: mod/settings.php:863
+msgid "IMAP server name:"
 msgstr ""
 
-#: mod/admin.php:1411
-msgid "Minimal Memory"
+#: mod/settings.php:864
+msgid "IMAP port:"
 msgstr ""
 
-#: mod/admin.php:1411
-msgid ""
-"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
-"default 0 (deactivated)."
+#: mod/settings.php:865
+msgid "Security:"
 msgstr ""
 
-#: mod/admin.php:1412
-msgid "Maximum table size for optimization"
+#: mod/settings.php:865 mod/settings.php:870
+msgid "None"
 msgstr ""
 
-#: mod/admin.php:1412
-msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
+#: mod/settings.php:866
+msgid "Email login name:"
 msgstr ""
 
-#: mod/admin.php:1413
-msgid "Minimum level of fragmentation"
+#: mod/settings.php:867
+msgid "Email password:"
 msgstr ""
 
-#: mod/admin.php:1413
-msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
+#: mod/settings.php:868
+msgid "Reply-to address:"
 msgstr ""
 
-#: mod/admin.php:1415
-msgid "Periodical check of global contacts"
+#: mod/settings.php:869
+msgid "Send public posts to all email 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."
+#: mod/settings.php:870
+msgid "Action after import:"
 msgstr ""
 
-#: mod/admin.php:1416
-msgid "Days between requery"
+#: mod/settings.php:870 src/Content/Nav.php:191
+msgid "Mark as seen"
 msgstr ""
 
-#: mod/admin.php:1416
-msgid "Number of days after which a server is requeried for his contacts."
+#: mod/settings.php:870
+msgid "Move to folder"
 msgstr ""
 
-#: mod/admin.php:1417
-msgid "Discover contacts from other servers"
+#: mod/settings.php:871
+msgid "Move to folder:"
 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'."
+#: mod/settings.php:914
+#, php-format
+msgid "%s - (Unsupported)"
 msgstr ""
 
-#: mod/admin.php:1418
-msgid "Timeframe for fetching global contacts"
+#: mod/settings.php:916
+#, php-format
+msgid "%s - (Experimental)"
 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."
+#: mod/settings.php:959
+msgid "Display Settings"
 msgstr ""
 
-#: mod/admin.php:1419
-msgid "Search the local directory"
+#: mod/settings.php:965 mod/settings.php:989
+msgid "Display Theme:"
 msgstr ""
 
-#: 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."
+#: mod/settings.php:966
+msgid "Mobile Theme:"
 msgstr ""
 
-#: mod/admin.php:1421
-msgid "Publish server information"
+#: mod/settings.php:967
+msgid "Suppress warning of insecure networks"
 msgstr ""
 
-#: mod/admin.php:1421
+#: mod/settings.php:967
 msgid ""
-"If enabled, general server and usage data will be published. The data "
-"contains the name and version of the server, number of users with public "
-"profiles, number of posts and the activated protocols and connectors. See <a "
-"href='http://the-federation.info/'>the-federation.info</a> for details."
+"Should the system suppress the warning that the current group contains "
+"members of networks that can't receive non public postings."
 msgstr ""
 
-#: mod/admin.php:1423
-msgid "Check upstream version"
+#: mod/settings.php:968
+msgid "Update browser every xx seconds"
 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."
+#: mod/settings.php:968
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr ""
 
-#: mod/admin.php:1424
-msgid "Suppress Tags"
+#: mod/settings.php:969
+msgid "Number of items to display per page:"
 msgstr ""
 
-#: mod/admin.php:1424
-msgid "Suppress showing a list of hashtags at the end of the posting."
+#: mod/settings.php:969 mod/settings.php:970
+msgid "Maximum of 100 items"
 msgstr ""
 
-#: mod/admin.php:1425
-msgid "Path to item cache"
+#: mod/settings.php:970
+msgid "Number of items to display per page when viewed from mobile device:"
 msgstr ""
 
-#: mod/admin.php:1425
-msgid "The item caches buffers generated bbcode and external images."
+#: mod/settings.php:971
+msgid "Don't show emoticons"
 msgstr ""
 
-#: mod/admin.php:1426
-msgid "Cache duration in seconds"
+#: mod/settings.php:972
+msgid "Calendar"
 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."
+#: mod/settings.php:973
+msgid "Beginning of week:"
 msgstr ""
 
-#: mod/admin.php:1427
-msgid "Maximum numbers of comments per post"
+#: mod/settings.php:974
+msgid "Don't show notices"
 msgstr ""
 
-#: mod/admin.php:1427
-msgid "How much comments should be shown for each post? Default value is 100."
+#: mod/settings.php:975
+msgid "Infinite scroll"
 msgstr ""
 
-#: mod/admin.php:1428
-msgid "Temp path"
+#: mod/settings.php:976
+msgid "Automatic updates only at the top of the network page"
 msgstr ""
 
-#: mod/admin.php:1428
+#: mod/settings.php:976
 msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
+"When disabled, the network page is updated all the time, which could be "
+"confusing while reading."
 msgstr ""
 
-#: mod/admin.php:1429
-msgid "Base path to installation"
+#: mod/settings.php:977
+msgid "Bandwith Saver Mode"
 msgstr ""
 
-#: mod/admin.php:1429
+#: mod/settings.php:977
 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."
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
 msgstr ""
 
-#: mod/admin.php:1430
-msgid "Disable picture proxy"
+#: 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/admin.php:1430
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on "
-"systems with very low bandwith."
+#: mod/settings.php:980
+msgid "General Theme Settings"
 msgstr ""
 
-#: mod/admin.php:1431
-msgid "Only search in tags"
+#: mod/settings.php:981
+msgid "Custom Theme Settings"
 msgstr ""
 
-#: mod/admin.php:1431
-msgid "On large systems the text search can slow down the system extremely."
+#: mod/settings.php:982
+msgid "Content Settings"
 msgstr ""
 
-#: mod/admin.php:1433
-msgid "New base url"
+#: 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/admin.php:1433
-msgid ""
-"Change base url for this server. Sends relocate message to all Friendica and "
-"Diaspora* contacts of all users."
+#: mod/settings.php:1002
+msgid "Unable to find your profile. Please contact your admin."
 msgstr ""
 
-#: mod/admin.php:1435
-msgid "RINO Encryption"
+#: mod/settings.php:1044
+msgid "Account Types"
 msgstr ""
 
-#: mod/admin.php:1435
-msgid "Encryption layer between nodes."
+#: mod/settings.php:1045
+msgid "Personal Page Subtypes"
 msgstr ""
 
-#: mod/admin.php:1435
-msgid "Enabled"
+#: mod/settings.php:1046
+msgid "Community Forum Subtypes"
 msgstr ""
 
-#: mod/admin.php:1437
-msgid "Maximum number of parallel workers"
+#: mod/settings.php:1053
+msgid "Personal Page"
 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."
+#: mod/settings.php:1054
+msgid "Account for a personal profile."
 msgstr ""
 
-#: mod/admin.php:1438
-msgid "Don't use 'proc_open' with the worker"
+#: mod/settings.php:1057
+msgid "Organisation Page"
 msgstr ""
 
-#: mod/admin.php:1438
+#: mod/settings.php:1058
 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."
+"Account for an organisation that automatically approves contact requests as "
+"\"Followers\"."
 msgstr ""
 
-#: mod/admin.php:1439
-msgid "Enable fastlane"
+#: mod/settings.php:1061
+msgid "News Page"
 msgstr ""
 
-#: mod/admin.php:1439
+#: mod/settings.php:1062
 msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes "
-"with higher priority are blocked by processes of lower priority."
+"Account for a news reflector that automatically approves contact requests as "
+"\"Followers\"."
 msgstr ""
 
-#: mod/admin.php:1440
-msgid "Enable frontend worker"
+#: mod/settings.php:1065
+msgid "Community Forum"
 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."
+#: mod/settings.php:1066
+msgid "Account for community discussions."
 msgstr ""
 
-#: mod/admin.php:1442
-msgid "Subscribe to relay"
+#: mod/settings.php:1069
+msgid "Normal Account Page"
 msgstr ""
 
-#: mod/admin.php:1442
+#: mod/settings.php:1070
 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."
+"Account for a regular personal profile that requires manual approval of "
+"\"Friends\" and \"Followers\"."
 msgstr ""
 
-#: mod/admin.php:1443
-msgid "Relay server"
+#: mod/settings.php:1073
+msgid "Soapbox Page"
 msgstr ""
 
-#: mod/admin.php:1443
+#: mod/settings.php:1074
 msgid ""
-"Address of the relay server where public posts should be send to. For "
-"example https://relay.diasp.org"
+"Account for a public profile that automatically approves contact requests as "
+"\"Followers\"."
 msgstr ""
 
-#: mod/admin.php:1444
-msgid "Direct relay transfer"
+#: mod/settings.php:1077
+msgid "Public Forum"
 msgstr ""
 
-#: mod/admin.php:1444
-msgid ""
-"Enables the direct transfer to other servers without using the relay servers"
+#: mod/settings.php:1078
+msgid "Automatically approves all contact requests."
 msgstr ""
 
-#: mod/admin.php:1445
-msgid "Relay scope"
+#: mod/settings.php:1081
+msgid "Automatic Friend Page"
 msgstr ""
 
-#: mod/admin.php:1445
+#: mod/settings.php:1082
 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."
+"Account for a popular profile that automatically approves contact requests "
+"as \"Friends\"."
 msgstr ""
 
-#: mod/admin.php:1445
-msgid "all"
+#: mod/settings.php:1085
+msgid "Private Forum [Experimental]"
 msgstr ""
 
-#: mod/admin.php:1445
-msgid "tags"
+#: mod/settings.php:1086
+msgid "Requires manual approval of contact requests."
 msgstr ""
 
-#: mod/admin.php:1446
-msgid "Server tags"
+#: mod/settings.php:1097
+msgid "OpenID:"
 msgstr ""
 
-#: mod/admin.php:1446
-msgid "Comma separated list of tags for the 'tags' subscription."
+#: mod/settings.php:1097
+msgid "(Optional) Allow this OpenID to login to this account."
 msgstr ""
 
-#: mod/admin.php:1447
-msgid "Allow user tags"
+#: mod/settings.php:1105
+msgid "Publish your default profile in your local site directory?"
 msgstr ""
 
-#: mod/admin.php:1447
+#: mod/settings.php:1105
+#, php-format
 msgid ""
-"If enabled, the tags from the saved searches will used for the 'tags' "
-"subscription in addition to the 'relay_server_tags'."
+"Your profile will be published in the global friendica directories (e.g. <a "
+"href=\"%s\">%s</a>). Your profile will be visible in public."
 msgstr ""
 
-#: mod/admin.php:1475
-msgid "Update has been marked successful"
+#: mod/settings.php:1111
+msgid "Publish your default profile in the global social directory?"
 msgstr ""
 
-#: mod/admin.php:1482
+#: mod/settings.php:1111
 #, php-format
-msgid "Database structure update %s was successfully applied."
+msgid ""
+"Your profile will be published in this node's <a href=\"%s\">local "
+"directory</a>. Your profile details may be publicly visible depending on the "
+"system settings."
 msgstr ""
 
-#: mod/admin.php:1485
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
+#: mod/settings.php:1118
+msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr ""
 
-#: mod/admin.php:1498
-#, php-format
-msgid "Executing %s failed with error: %s"
+#: 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/admin.php:1500
-#, php-format
-msgid "Update %s was successfully applied."
+#: mod/settings.php:1122
+msgid "Hide your profile details from anonymous viewers?"
 msgstr ""
 
-#: mod/admin.php:1503
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
+#: 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/admin.php:1506
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
+#: mod/settings.php:1126
+msgid "Allow friends to post to your profile page?"
 msgstr ""
 
-#: mod/admin.php:1526
-msgid "No failed updates."
+#: mod/settings.php:1126
+msgid ""
+"Your contacts may write posts on your profile wall. These posts will be "
+"distributed to your contacts"
 msgstr ""
 
-#: mod/admin.php:1527
-msgid "Check database structure"
+#: mod/settings.php:1130
+msgid "Allow friends to tag your posts?"
 msgstr ""
 
-#: mod/admin.php:1532
-msgid "Failed Updates"
+#: mod/settings.php:1130
+msgid "Your contacts can add additional tags to your posts."
 msgstr ""
 
-#: mod/admin.php:1533
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
+#: mod/settings.php:1134
+msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr ""
 
-#: mod/admin.php:1534
-msgid "Mark success (if update was manually applied)"
+#: mod/settings.php:1134
+msgid "If you like, Friendica may suggest new members to add you as a contact."
 msgstr ""
 
-#: mod/admin.php:1535
-msgid "Attempt to execute this update step automatically"
+#: mod/settings.php:1138
+msgid "Permit unknown people to send you private mail?"
 msgstr ""
 
-#: mod/admin.php:1574
-#, php-format
+#: mod/settings.php:1138
 msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
+"Friendica network users may send you private messages even if they are not "
+"in your contact list."
 msgstr ""
 
-#: mod/admin.php:1577 src/Model/User.php:615
-#, 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."
+#: mod/settings.php:1142
+msgid "Profile is <strong>not published</strong>."
 msgstr ""
 
-#: mod/admin.php:1611 src/Model/User.php:649
+#: mod/settings.php:1148
 #, php-format
-msgid "Registration details for %s"
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
 msgstr ""
 
-#: mod/admin.php:1621
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/settings.php:1155
+msgid "Automatically expire posts after this many days:"
+msgstr ""
 
-#: mod/admin.php:1627
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/settings.php:1155
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr ""
 
-#: mod/admin.php:1674
-#, php-format
-msgid "User '%s' deleted"
+#: mod/settings.php:1156
+msgid "Advanced expiration settings"
 msgstr ""
 
-#: mod/admin.php:1682
-#, php-format
-msgid "User '%s' unblocked"
+#: mod/settings.php:1157
+msgid "Advanced Expiration"
+msgstr ""
+
+#: mod/settings.php:1158
+msgid "Expire posts:"
 msgstr ""
 
-#: mod/admin.php:1682
-#, php-format
-msgid "User '%s' blocked"
+#: mod/settings.php:1159
+msgid "Expire personal notes:"
 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/settings.php:1160
+msgid "Expire starred posts:"
 msgstr ""
 
-#: mod/admin.php:1781 mod/admin.php:1806
-msgid "Register date"
+#: mod/settings.php:1161
+msgid "Expire photos:"
 msgstr ""
 
-#: mod/admin.php:1781 mod/admin.php:1806
-msgid "Last login"
+#: mod/settings.php:1162
+msgid "Only expire posts by others:"
 msgstr ""
 
-#: mod/admin.php:1781 mod/admin.php:1806
-msgid "Last item"
+#: mod/settings.php:1192
+msgid "Account Settings"
 msgstr ""
 
-#: mod/admin.php:1789
-msgid "Add User"
+#: mod/settings.php:1200
+msgid "Password Settings"
 msgstr ""
 
-#: mod/admin.php:1791
-msgid "User registrations waiting for confirm"
+#: mod/settings.php:1202
+msgid "Leave password fields blank unless changing"
 msgstr ""
 
-#: mod/admin.php:1792
-msgid "User waiting for permanent deletion"
+#: mod/settings.php:1203
+msgid "Current Password:"
 msgstr ""
 
-#: mod/admin.php:1793
-msgid "Request date"
+#: mod/settings.php:1203 mod/settings.php:1204
+msgid "Your current password to confirm the changes"
 msgstr ""
 
-#: mod/admin.php:1794
-msgid "No registrations."
+#: mod/settings.php:1204
+msgid "Password:"
 msgstr ""
 
-#: mod/admin.php:1795
-msgid "Note from the user"
+#: mod/settings.php:1208
+msgid "Basic Settings"
 msgstr ""
 
-#: mod/admin.php:1797
-msgid "Deny"
+#: mod/settings.php:1209 src/Model/Profile.php:738
+msgid "Full Name:"
 msgstr ""
 
-#: mod/admin.php:1801
-msgid "Site admin"
+#: mod/settings.php:1210
+msgid "Email Address:"
 msgstr ""
 
-#: mod/admin.php:1802
-msgid "Account expired"
+#: mod/settings.php:1211
+msgid "Your Timezone:"
 msgstr ""
 
-#: mod/admin.php:1805
-msgid "New User"
+#: mod/settings.php:1212
+msgid "Your Language:"
 msgstr ""
 
-#: mod/admin.php:1806
-msgid "Deleted since"
+#: mod/settings.php:1212
+msgid ""
+"Set the language we use to show you friendica interface and to send you "
+"emails"
 msgstr ""
 
-#: 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?"
+#: mod/settings.php:1213
+msgid "Default Post Location:"
 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?"
+#: mod/settings.php:1214
+msgid "Use Browser Location:"
 msgstr ""
 
-#: mod/admin.php:1822
-msgid "Name of the new user."
+#: mod/settings.php:1217
+msgid "Security and Privacy Settings"
 msgstr ""
 
-#: mod/admin.php:1823
-msgid "Nickname"
+#: mod/settings.php:1219
+msgid "Maximum Friend Requests/Day:"
 msgstr ""
 
-#: mod/admin.php:1823
-msgid "Nickname of the new user."
+#: mod/settings.php:1219 mod/settings.php:1248
+msgid "(to prevent spam abuse)"
 msgstr ""
 
-#: mod/admin.php:1824
-msgid "Email address of the new user."
+#: mod/settings.php:1220
+msgid "Default Post Permissions"
 msgstr ""
 
-#: mod/admin.php:1866
-#, php-format
-msgid "Addon %s disabled."
+#: mod/settings.php:1221
+msgid "(click to open/close)"
 msgstr ""
 
-#: mod/admin.php:1870
-#, php-format
-msgid "Addon %s enabled."
+#: mod/settings.php:1231
+msgid "Default Private Post"
 msgstr ""
 
-#: mod/admin.php:1880 mod/admin.php:2129
-msgid "Disable"
+#: mod/settings.php:1232
+msgid "Default Public Post"
 msgstr ""
 
-#: mod/admin.php:1883 mod/admin.php:2132
-msgid "Enable"
+#: mod/settings.php:1236
+msgid "Default Permissions for New Posts"
 msgstr ""
 
-#: mod/admin.php:1905 mod/admin.php:2174
-msgid "Toggle"
+#: mod/settings.php:1248
+msgid "Maximum private messages per day from unknown people:"
 msgstr ""
 
-#: mod/admin.php:1913 mod/admin.php:2183
-msgid "Author: "
+#: mod/settings.php:1251
+msgid "Notification Settings"
 msgstr ""
 
-#: mod/admin.php:1914 mod/admin.php:2184
-msgid "Maintainer: "
+#: mod/settings.php:1252
+msgid "By default post a status message when:"
 msgstr ""
 
-#: mod/admin.php:1966
-msgid "Reload active addons"
+#: mod/settings.php:1253
+msgid "accepting a friend request"
 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"
+#: mod/settings.php:1254
+msgid "joining a forum/community"
 msgstr ""
 
-#: mod/admin.php:2091
-msgid "No themes found."
+#: mod/settings.php:1255
+msgid "making an <em>interesting</em> profile change"
 msgstr ""
 
-#: mod/admin.php:2165
-msgid "Screenshot"
+#: mod/settings.php:1256
+msgid "Send a notification email when:"
 msgstr ""
 
-#: mod/admin.php:2219
-msgid "Reload active themes"
+#: mod/settings.php:1257
+msgid "You receive an introduction"
 msgstr ""
 
-#: mod/admin.php:2224
-#, php-format
-msgid "No themes found on the system. They should be placed in %1$s"
+#: mod/settings.php:1258
+msgid "Your introductions are confirmed"
 msgstr ""
 
-#: mod/admin.php:2225
-msgid "[Experimental]"
+#: mod/settings.php:1259
+msgid "Someone writes on your profile wall"
 msgstr ""
 
-#: mod/admin.php:2226
-msgid "[Unsupported]"
+#: mod/settings.php:1260
+msgid "Someone writes a followup comment"
 msgstr ""
 
-#: mod/admin.php:2250
-msgid "Log settings updated."
+#: mod/settings.php:1261
+msgid "You receive a private message"
 msgstr ""
 
-#: mod/admin.php:2282
-msgid "PHP log currently enabled."
+#: mod/settings.php:1262
+msgid "You receive a friend suggestion"
 msgstr ""
 
-#: mod/admin.php:2284
-msgid "PHP log currently disabled."
+#: mod/settings.php:1263
+msgid "You are tagged in a post"
 msgstr ""
 
-#: mod/admin.php:2293
-msgid "Clear"
+#: mod/settings.php:1264
+msgid "You are poked/prodded/etc. in a post"
 msgstr ""
 
-#: mod/admin.php:2297
-msgid "Enable Debugging"
+#: mod/settings.php:1266
+msgid "Activate desktop notifications"
 msgstr ""
 
-#: mod/admin.php:2298
-msgid "Log file"
+#: mod/settings.php:1266
+msgid "Show desktop popup on new notifications"
 msgstr ""
 
-#: mod/admin.php:2298
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
+#: mod/settings.php:1268
+msgid "Text-only notification emails"
 msgstr ""
 
-#: mod/admin.php:2299
-msgid "Log level"
+#: mod/settings.php:1270
+msgid "Send text only notification emails, without the html part"
 msgstr ""
 
-#: mod/admin.php:2301
-msgid "PHP logging"
+#: mod/settings.php:1272
+msgid "Show detailled notifications"
 msgstr ""
 
-#: mod/admin.php:2302
+#: mod/settings.php:1274
 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."
+"Per default, notifications are condensed to a single notification per item. "
+"When enabled every notification is displayed."
 msgstr ""
 
-#: mod/admin.php:2333
-#, php-format
-msgid ""
-"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
-"if file %1$s exist and is readable."
+#: mod/settings.php:1276
+msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: mod/admin.php:2337
-#, php-format
-msgid ""
-"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file "
-"%1$s is readable."
+#: mod/settings.php:1277
+msgid "Change the behaviour of this account for special situations"
 msgstr ""
 
-#: mod/admin.php:2429
-#, php-format
-msgid "Lock feature %s"
+#: mod/settings.php:1280
+msgid "Relocate"
 msgstr ""
 
-#: mod/admin.php:2437
-msgid "Manage Additional Features"
+#: 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 ""
 
 #: src/Core/UserImport.php:104
@@ -7743,33 +7764,33 @@ msgstr ""
 msgid "%1$d %2$s ago"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:552
+#: src/Content/Text/BBCode.php:555
 msgid "view full size"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:978 src/Content/Text/BBCode.php:1739
-#: src/Content/Text/BBCode.php:1740
+#: 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:1116
+#: src/Content/Text/BBCode.php:1119
 #, php-format
 msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1674 src/Content/Text/BBCode.php:1696
+#: src/Content/Text/BBCode.php:1677 src/Content/Text/BBCode.php:1699
 msgid "$1 wrote:"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1748 src/Content/Text/BBCode.php:1749
+#: src/Content/Text/BBCode.php:1759 src/Content/Text/BBCode.php:1760
 msgid "Encrypted content"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1866
+#: src/Content/Text/BBCode.php:1879
 msgid "Invalid source protocol"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1877
+#: src/Content/Text/BBCode.php:1890
 msgid "Invalid link protocol"
 msgstr ""
 
@@ -9034,6 +9055,45 @@ msgid ""
 "\t\t"
 msgstr ""
 
+#: src/Model/User.php:615
+#, 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."
@@ -9061,7 +9121,7 @@ msgstr ""
 msgid "Sharing notification from Diaspora network"
 msgstr ""
 
-#: src/Protocol/Diaspora.php:3736
+#: src/Protocol/Diaspora.php:3738
 msgid "Attachments:"
 msgstr ""
 
@@ -9137,58 +9197,58 @@ msgstr ""
 msgid "share"
 msgstr ""
 
-#: src/Object/Post.php:359
+#: src/Object/Post.php:365
 msgid "to"
 msgstr ""
 
-#: src/Object/Post.php:360
+#: src/Object/Post.php:366
 msgid "via"
 msgstr ""
 
-#: src/Object/Post.php:361
+#: src/Object/Post.php:367
 msgid "Wall-to-Wall"
 msgstr ""
 
-#: src/Object/Post.php:362
+#: src/Object/Post.php:368
 msgid "via Wall-To-Wall:"
 msgstr ""
 
-#: src/Object/Post.php:421
+#: src/Object/Post.php:427
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Object/Post.php:791
+#: src/Object/Post.php:797
 msgid "Bold"
 msgstr ""
 
-#: src/Object/Post.php:792
+#: src/Object/Post.php:798
 msgid "Italic"
 msgstr ""
 
-#: src/Object/Post.php:793
+#: src/Object/Post.php:799
 msgid "Underline"
 msgstr ""
 
-#: src/Object/Post.php:794
+#: src/Object/Post.php:800
 msgid "Quote"
 msgstr ""
 
-#: src/Object/Post.php:795
+#: src/Object/Post.php:801
 msgid "Code"
 msgstr ""
 
-#: src/Object/Post.php:796
+#: src/Object/Post.php:802
 msgid "Image"
 msgstr ""
 
-#: src/Object/Post.php:797
+#: src/Object/Post.php:803
 msgid "Link"
 msgstr ""
 
-#: src/Object/Post.php:798
+#: src/Object/Post.php:804
 msgid "Video"
 msgstr ""
 
diff --git a/view/lang/fi-fi/messages.po b/view/lang/fi-fi/messages.po
new file mode 100644 (file)
index 0000000..14becee
--- /dev/null
@@ -0,0 +1,9443 @@
+# FRIENDICA Distributed Social Network
+# Copyright (C) 2010, 2011, 2012, 2013 the Friendica Project
+# This file is distributed under the same license as the Friendica package.
+# 
+# Translators:
+# Ilmari <ei@mitaan.fi>, 2013
+# Kris, 2018
+# Kris, 2018
+# Beluga, 2012-2013
+# Beluga, 2013
+# Beluga, 2012
+# teho, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: friendica\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-04-04 07:01+0200\n"
+"PO-Revision-Date: 2018-04-05 14:18+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"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: fi_FI\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: include/security.php:81
+msgid "Welcome "
+msgstr "Tervetuloa"
+
+#: include/security.php:82
+msgid "Please upload a profile photo."
+msgstr "Lataa profiilikuva."
+
+#: include/security.php:84
+msgid "Welcome back "
+msgstr "Tervetuloa takaisin"
+
+#: include/security.php:431
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr ""
+
+#: include/dba.php:57
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "'%s' tietokantapalvelimen DNS-tieto ei löydy"
+
+#: include/api.php:1199
+#, php-format
+msgid "Daily posting limit of %d post reached. The post was rejected."
+msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/api.php:1223
+#, php-format
+msgid "Weekly posting limit of %d post reached. The post was rejected."
+msgid_plural ""
+"Weekly posting limit of %d posts reached. The post was rejected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/api.php:1247
+#, php-format
+msgid "Monthly posting limit of %d post reached. The post was rejected."
+msgstr ""
+
+#: include/api.php:4400 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:539
+#: src/Model/User.php:547 src/Model/User.php:555
+msgid "Profile Photos"
+msgstr "Profiilin valokuvat"
+
+#: include/conversation.php:144 include/conversation.php:282
+#: include/text.php:1724 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:2010
+msgid "status"
+msgstr "tila"
+
+#: include/conversation.php:152 include/conversation.php:290
+#: include/text.php:1726 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:2006
+#, 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:2481
+#, 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:1680
+#: 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:744 mod/photos.php:1569 src/Object/Post.php:178
+msgid "Select"
+msgstr "Valitse"
+
+#: include/conversation.php:745 mod/photos.php:1570 mod/settings.php:738
+#: mod/contacts.php:830 mod/contacts.php:1035 mod/admin.php:1798
+#: src/Object/Post.php:179
+msgid "Delete"
+msgstr "Poista"
+
+#: include/conversation.php:777 src/Object/Post.php:357
+#: src/Object/Post.php:358
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr ""
+
+#: include/conversation.php:789 src/Object/Post.php:345
+msgid "Categories:"
+msgstr "Luokat:"
+
+#: include/conversation.php:790 src/Object/Post.php:346
+msgid "Filed under:"
+msgstr ""
+
+#: include/conversation.php:797 src/Object/Post.php:371
+#, php-format
+msgid "%s from %s"
+msgstr ""
+
+#: include/conversation.php:812
+msgid "View in context"
+msgstr "Näytä kontekstissa"
+
+#: include/conversation.php:814 include/conversation.php:1353
+#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:264
+#: mod/message.php:433 mod/photos.php:1473 src/Object/Post.php:396
+msgid "Please wait"
+msgstr "Odota"
+
+#: include/conversation.php:885
+msgid "remove"
+msgstr "poista"
+
+#: include/conversation.php:889
+msgid "Delete Selected Items"
+msgstr "Poista valitut kohteet"
+
+#: include/conversation.php:1059 view/theme/frio/theme.php:352
+msgid "Follow Thread"
+msgstr "Seuraa ketjua"
+
+#: include/conversation.php:1060 src/Model/Contact.php:640
+msgid "View Status"
+msgstr "Näytä tila"
+
+#: include/conversation.php:1061 include/conversation.php:1077
+#: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89
+#: mod/dirfind.php:217 mod/directory.php:159 src/Model/Contact.php:580
+#: src/Model/Contact.php:593 src/Model/Contact.php:641
+msgid "View Profile"
+msgstr "Näytä profiilia"
+
+#: include/conversation.php:1062 src/Model/Contact.php:642
+msgid "View Photos"
+msgstr "Näytä kuvia"
+
+#: include/conversation.php:1063 src/Model/Contact.php:643
+msgid "Network Posts"
+msgstr "Verkkojulkaisut"
+
+#: include/conversation.php:1064 src/Model/Contact.php:644
+msgid "View Contact"
+msgstr "Näytä kontaktia"
+
+#: include/conversation.php:1065 src/Model/Contact.php:646
+msgid "Send PM"
+msgstr "Lähetä yksityisviesti"
+
+#: include/conversation.php:1069 src/Model/Contact.php:647
+msgid "Poke"
+msgstr "Tökkää"
+
+#: include/conversation.php:1074 mod/allfriends.php:74 mod/suggest.php:83
+#: mod/match.php:90 mod/dirfind.php:218 mod/follow.php:143
+#: mod/contacts.php:596 src/Content/Widget.php:61 src/Model/Contact.php:594
+msgid "Connect/Follow"
+msgstr "Yhdistä/Seuraa"
+
+#: include/conversation.php:1193
+#, php-format
+msgid "%s likes this."
+msgstr "%s tykkää tästä."
+
+#: include/conversation.php:1196
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s ei tykkää tästä."
+
+#: include/conversation.php:1199
+#, php-format
+msgid "%s attends."
+msgstr "%s osallistuu."
+
+#: include/conversation.php:1202
+#, php-format
+msgid "%s doesn't attend."
+msgstr "%s ei osallistu."
+
+#: include/conversation.php:1205
+#, php-format
+msgid "%s attends maybe."
+msgstr "%s ehkä osallistuu."
+
+#: include/conversation.php:1216
+msgid "and"
+msgstr "ja"
+
+#: include/conversation.php:1222
+#, php-format
+msgid "and %d other people"
+msgstr "ja %d muuta ihmistä"
+
+#: include/conversation.php:1231
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d ihmistä</span> tykkää tästä"
+
+#: include/conversation.php:1232
+#, php-format
+msgid "%s like this."
+msgstr "%s tykkää tästä."
+
+#: include/conversation.php:1235
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d ihmistä</span> ei tykkää tästä."
+
+#: include/conversation.php:1236
+#, php-format
+msgid "%s don't like this."
+msgstr "%s ei tykkää tästä."
+
+#: include/conversation.php:1239
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
+msgstr "<span  %1$s>%2$d ihmistä</span> osallistuu"
+
+#: include/conversation.php:1240
+#, php-format
+msgid "%s attend."
+msgstr "%s osallistuu."
+
+#: include/conversation.php:1243
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr "<span  %1$s>%2$d ihmistä</span> ei osallistu"
+
+#: include/conversation.php:1244
+#, php-format
+msgid "%s don't attend."
+msgstr "%s ei osallistu."
+
+#: include/conversation.php:1247
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr "<span  %1$s>%2$d ihmistä</span> ehkä osallistuu"
+
+#: include/conversation.php:1248
+#, php-format
+msgid "%s attend maybe."
+msgstr "%s ehkä osallistuu."
+
+#: include/conversation.php:1278 include/conversation.php:1294
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Näkyy <strong>kaikille</strong>"
+
+#: include/conversation.php:1279 include/conversation.php:1295
+#: 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:1280 include/conversation.php:1296
+msgid "Please enter a video link/URL:"
+msgstr "Lisää video URL-linkki:"
+
+#: include/conversation.php:1281 include/conversation.php:1297
+msgid "Please enter an audio link/URL:"
+msgstr "Lisää ääni URL-linkki:"
+
+#: include/conversation.php:1282 include/conversation.php:1298
+msgid "Tag term:"
+msgstr ""
+
+#: include/conversation.php:1283 include/conversation.php:1299
+#: mod/filer.php:34
+msgid "Save to Folder:"
+msgstr "Tallenna kansioon:"
+
+#: include/conversation.php:1284 include/conversation.php:1300
+msgid "Where are you right now?"
+msgstr "Mikä on sijaintisi?"
+
+#: include/conversation.php:1285
+msgid "Delete item(s)?"
+msgstr "Poista kohde/kohteet?"
+
+#: include/conversation.php:1334
+msgid "Share"
+msgstr "Jaa"
+
+#: include/conversation.php:1335 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:1336 mod/editpost.php:112
+msgid "upload photo"
+msgstr "lähetä kuva"
+
+#: include/conversation.php:1337 mod/editpost.php:113
+msgid "Attach file"
+msgstr "Liitä tiedosto"
+
+#: include/conversation.php:1338 mod/editpost.php:114
+msgid "attach file"
+msgstr "liitä tiedosto"
+
+#: include/conversation.php:1339 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:1340 mod/editpost.php:116
+msgid "web link"
+msgstr "WWW-linkki"
+
+#: include/conversation.php:1341 mod/editpost.php:117
+msgid "Insert video link"
+msgstr "Lisää videolinkki"
+
+#: include/conversation.php:1342 mod/editpost.php:118
+msgid "video link"
+msgstr "videolinkki"
+
+#: include/conversation.php:1343 mod/editpost.php:119
+msgid "Insert audio link"
+msgstr "Lisää äänilinkki"
+
+#: include/conversation.php:1344 mod/editpost.php:120
+msgid "audio link"
+msgstr "äänilinkki"
+
+#: include/conversation.php:1345 mod/editpost.php:121
+msgid "Set your location"
+msgstr "Aseta sijaintisi"
+
+#: include/conversation.php:1346 mod/editpost.php:122
+msgid "set location"
+msgstr "aseta sijainti"
+
+#: include/conversation.php:1347 mod/editpost.php:123
+msgid "Clear browser location"
+msgstr "Tyhjennä selaimen sijainti"
+
+#: include/conversation.php:1348 mod/editpost.php:124
+msgid "clear location"
+msgstr "tyhjennä sijainti"
+
+#: include/conversation.php:1350 mod/editpost.php:138
+msgid "Set title"
+msgstr "Aseta otsikko"
+
+#: include/conversation.php:1352 mod/editpost.php:140
+msgid "Categories (comma-separated list)"
+msgstr "Luokat (pilkuilla eroteltu luettelo)"
+
+#: include/conversation.php:1354 mod/editpost.php:126
+msgid "Permission settings"
+msgstr "Käyttöoikeusasetukset"
+
+#: include/conversation.php:1355 mod/editpost.php:155
+msgid "permissions"
+msgstr "käyttöoikeudet"
+
+#: include/conversation.php:1363 mod/editpost.php:135
+msgid "Public post"
+msgstr "Julkinen viesti"
+
+#: include/conversation.php:1367 mod/editpost.php:146 mod/photos.php:1492
+#: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528
+#: src/Object/Post.php:799
+msgid "Preview"
+msgstr "Esikatselu"
+
+#: include/conversation.php:1371 include/items.php:387 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/unfollow.php:117 mod/settings.php:676 mod/settings.php:702
+#: mod/follow.php:161 mod/contacts.php:475
+msgid "Cancel"
+msgstr "Peru"
+
+#: include/conversation.php:1376
+msgid "Post to Groups"
+msgstr "Lähetä ryhmiin"
+
+#: include/conversation.php:1377
+msgid "Post to Contacts"
+msgstr "Lähetä kontakteille"
+
+#: include/conversation.php:1378
+msgid "Private post"
+msgstr "Yksityinen julkaisu"
+
+#: include/conversation.php:1383 mod/editpost.php:153
+#: src/Model/Profile.php:342
+msgid "Message"
+msgstr "Viesti"
+
+#: include/conversation.php:1384 mod/editpost.php:154
+msgid "Browser"
+msgstr "Selain"
+
+#: include/conversation.php:1651
+msgid "View all"
+msgstr "Näytä kaikki"
+
+#: include/conversation.php:1674
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Tykkäys"
+msgstr[1] "Tykkäyksiä"
+
+#: include/conversation.php:1677
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "Inhokki"
+msgstr[1] "Inhokit"
+
+#: include/conversation.php:1683
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "Ei osallistu"
+msgstr[1] "Ei osallistu"
+
+#: include/conversation.php:1686 src/Content/ContactSelector.php:125
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/enotify.php:31
+msgid "Friendica Notification"
+msgstr "Friendica-huomautus"
+
+#: include/enotify.php:34
+msgid "Thank You,"
+msgstr "Kiitos,"
+
+#: include/enotify.php:37
+#, php-format
+msgid "%s Administrator"
+msgstr "%s Ylläpitäjä"
+
+#: include/enotify.php:39
+#, php-format
+msgid "%1$s, %2$s Administrator"
+msgstr "%1$s, %2$s Ylläpitäjä"
+
+#: include/enotify.php:50 src/Worker/Delivery.php:404
+msgid "noreply"
+msgstr "eivast"
+
+#: include/enotify.php:98
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notify] Uusi viesti, katso %s"
+
+#: include/enotify.php:100
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr ""
+
+#: include/enotify.php:101
+msgid "a private message"
+msgstr "yksityisviesti"
+
+#: include/enotify.php:101
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s lähetti sinulle %2$s."
+
+#: include/enotify.php:103
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr ""
+
+#: include/enotify.php:141
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr ""
+
+#: include/enotify.php:149
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr ""
+
+#: include/enotify.php:159
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr ""
+
+#: include/enotify.php:171
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr ""
+
+#: include/enotify.php:173
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr ""
+
+#: include/enotify.php:176 include/enotify.php:191 include/enotify.php:206
+#: include/enotify.php:221 include/enotify.php:240 include/enotify.php:255
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr ""
+
+#: include/enotify.php:183
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr ""
+
+#: include/enotify.php:185
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr ""
+
+#: include/enotify.php:186
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr ""
+
+#: include/enotify.php:198
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notify] %s merkitsi sinut"
+
+#: include/enotify.php:200
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr ""
+
+#: include/enotify.php:201
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]merkitsi sinut[/url]."
+
+#: include/enotify.php:213
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr ""
+
+#: include/enotify.php:215
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr ""
+
+#: include/enotify.php:216
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr ""
+
+#: include/enotify.php:228
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s tökkäsi sinua."
+
+#: include/enotify.php:230
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr ""
+
+#: include/enotify.php:231
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]tökkasi sinua[/url]."
+
+#: include/enotify.php:247
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notify] %s merkitsi julkaisusi"
+
+#: include/enotify.php:249
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr ""
+
+#: include/enotify.php:250
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s merkitsi [url=%2$s]julkaisusi[/url]"
+
+#: include/enotify.php:262
+msgid "[Friendica:Notify] Introduction received"
+msgstr ""
+
+#: include/enotify.php:264
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr ""
+
+#: include/enotify.php:265
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr ""
+
+#: include/enotify.php:270 include/enotify.php:316
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Voit vierailla hänen profiilissaan kohteessa %s"
+
+#: include/enotify.php:272
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr ""
+
+#: include/enotify.php:280
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr ""
+
+#: include/enotify.php:282 include/enotify.php:283
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr ""
+
+#: include/enotify.php:290
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica:Notify] Sinulla on uusi seuraaja"
+
+#: include/enotify.php:292 include/enotify.php:293
+#, php-format
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Sinulla on uusi seuraaja sivustolla %2$s : %1$s"
+
+#: include/enotify.php:305
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notify] Kaveripyyntö vastaanotettu"
+
+#: include/enotify.php:307
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr ""
+
+#: include/enotify.php:308
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr ""
+
+#: include/enotify.php:314
+msgid "Name:"
+msgstr "Nimi:"
+
+#: include/enotify.php:315
+msgid "Photo:"
+msgstr "Kuva:"
+
+#: include/enotify.php:318
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Hyväksy tai hylkää ehdotus %s-sivustossa"
+
+#: include/enotify.php:326 include/enotify.php:341
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica:Notify] Yhteys hyväksytty"
+
+#: include/enotify.php:328 include/enotify.php:343
+#, php-format
+msgid "'%1$s' has accepted your connection request at %2$s"
+msgstr ""
+
+#: include/enotify.php:329 include/enotify.php:344
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr ""
+
+#: include/enotify.php:334
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
+msgstr ""
+
+#: include/enotify.php:336
+#, php-format
+msgid "Please visit %s if you wish to make any changes to this relationship."
+msgstr ""
+
+#: include/enotify.php:349
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a fan, which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr ""
+
+#: include/enotify.php:351
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future."
+msgstr ""
+
+#: include/enotify.php:353
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr ""
+
+#: include/enotify.php:363
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Friendica System:Notify] rekisteröitymispyyntö"
+
+#: include/enotify.php:365
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr ""
+
+#: include/enotify.php:366
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr ""
+
+#: include/enotify.php:371
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr ""
+
+#: include/enotify.php:377
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr ""
+
+#: 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/settings.php:1103
+#: mod/settings.php:1109 mod/settings.php:1116 mod/settings.php:1120
+#: mod/settings.php:1124 mod/settings.php:1128 mod/settings.php:1132
+#: mod/settings.php:1136 mod/settings.php:1156 mod/settings.php:1157
+#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
+#: mod/follow.php:150 mod/profiles.php:636 mod/profiles.php:639
+#: mod/profiles.php:661 mod/contacts.php:472 mod/register.php:237
+msgid "Yes"
+msgstr "Kyllä"
+
+#: 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/invite.php:20
+#: mod/invite.php:106 mod/wall_attach.php:74 mod/wall_attach.php:77
+#: mod/manage.php:131 mod/regmod.php:108 mod/viewcontacts.php:57
+#: mod/wallmessage.php:16 mod/wallmessage.php:40 mod/wallmessage.php:79
+#: mod/wallmessage.php:103 mod/poke.php:150 mod/wall_upload.php:103
+#: mod/wall_upload.php:106 mod/editpost.php:18 mod/fsuggest.php:80
+#: mod/group.php:26 mod/item.php:160 mod/message.php:59 mod/message.php:104
+#: mod/network.php:32 mod/notes.php:30 mod/photos.php:174 mod/photos.php:1051
+#: mod/delegate.php:25 mod/delegate.php:43 mod/delegate.php:54
+#: mod/dirfind.php:25 mod/ostatus_subscribe.php:16 mod/unfollow.php:15
+#: mod/unfollow.php:57 mod/unfollow.php:90 mod/cal.php:304 mod/events.php:194
+#: mod/profile_photo.php:30 mod/profile_photo.php:176
+#: mod/profile_photo.php:187 mod/profile_photo.php:200 mod/settings.php:43
+#: mod/settings.php:142 mod/settings.php:665 mod/follow.php:17
+#: mod/follow.php:54 mod/follow.php:118 mod/profiles.php:182
+#: mod/profiles.php:606 mod/contacts.php:386 mod/register.php:53 index.php:416
+msgid "Permission denied."
+msgstr "Käyttöoikeus evätty."
+
+#: include/items.php:471
+msgid "Archives"
+msgstr "Arkisto"
+
+#: include/items.php:477 src/Content/ForumManager.php:130
+#: src/Content/Widget.php:312 src/Object/Post.php:424 src/App.php:512
+#: view/theme/vier/theme.php:259
+msgid "show more"
+msgstr "näytä lisää"
+
+#: include/text.php:302
+msgid "newer"
+msgstr "uudempi"
+
+#: include/text.php:303
+msgid "older"
+msgstr "vanhempi"
+
+#: include/text.php:308
+msgid "first"
+msgstr "ensimmäinen"
+
+#: include/text.php:309
+msgid "prev"
+msgstr "edellinen"
+
+#: include/text.php:343
+msgid "next"
+msgstr "seuraava"
+
+#: include/text.php:344
+msgid "last"
+msgstr "viimeinen"
+
+#: include/text.php:398
+msgid "Loading more entries..."
+msgstr "Merkinnät ladataan..."
+
+#: include/text.php:399
+msgid "The end"
+msgstr "Loppu"
+
+#: include/text.php:884
+msgid "No contacts"
+msgstr "Ei kontakteja"
+
+#: include/text.php:908
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d kontakti"
+msgstr[1] "%d kontakteja"
+
+#: include/text.php:921
+msgid "View Contacts"
+msgstr "Näytä kontaktit"
+
+#: include/text.php:1010 mod/filer.php:35 mod/editpost.php:110
+#: mod/notes.php:67
+msgid "Save"
+msgstr "Tallenna"
+
+#: include/text.php:1010
+msgid "Follow"
+msgstr "Seuraa"
+
+#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142
+msgid "Search"
+msgstr "Haku"
+
+#: include/text.php:1019 src/Content/Nav.php:58
+msgid "@name, !forum, #tags, content"
+msgstr "@nimi, !foorumi, #tunnisteet, sisältö"
+
+#: include/text.php:1025 src/Content/Nav.php:145
+msgid "Full Text"
+msgstr "Koko teksti"
+
+#: include/text.php:1026 src/Content/Nav.php:146
+#: src/Content/Widget/TagCloud.php:54
+msgid "Tags"
+msgstr "Tunnisteet"
+
+#: include/text.php:1027 mod/viewcontacts.php:131 mod/contacts.php:814
+#: mod/contacts.php:875 src/Content/Nav.php:147 src/Content/Nav.php:212
+#: src/Model/Profile.php:957 src/Model/Profile.php:960
+#: view/theme/frio/theme.php:270
+msgid "Contacts"
+msgstr "Yhteystiedot"
+
+#: include/text.php:1030 src/Content/ForumManager.php:125
+#: src/Content/Nav.php:151 view/theme/vier/theme.php:254
+msgid "Forums"
+msgstr "Foorumit"
+
+#: include/text.php:1074
+msgid "poke"
+msgstr "töki"
+
+#: include/text.php:1074
+msgid "poked"
+msgstr "tökkäsi"
+
+#: include/text.php:1075
+msgid "ping"
+msgstr ""
+
+#: include/text.php:1075
+msgid "pinged"
+msgstr ""
+
+#: include/text.php:1076
+msgid "prod"
+msgstr "töki"
+
+#: include/text.php:1076
+msgid "prodded"
+msgstr "tökkäsi"
+
+#: include/text.php:1077
+msgid "slap"
+msgstr ""
+
+#: include/text.php:1077
+msgid "slapped"
+msgstr ""
+
+#: include/text.php:1078
+msgid "finger"
+msgstr ""
+
+#: include/text.php:1078
+msgid "fingered"
+msgstr ""
+
+#: include/text.php:1079
+msgid "rebuff"
+msgstr ""
+
+#: include/text.php:1079
+msgid "rebuffed"
+msgstr ""
+
+#: include/text.php:1093 mod/settings.php:941 src/Model/Event.php:379
+msgid "Monday"
+msgstr "Maanantai"
+
+#: include/text.php:1093 src/Model/Event.php:380
+msgid "Tuesday"
+msgstr "Tiistai"
+
+#: include/text.php:1093 src/Model/Event.php:381
+msgid "Wednesday"
+msgstr "Keskiviikko"
+
+#: include/text.php:1093 src/Model/Event.php:382
+msgid "Thursday"
+msgstr "Torstai"
+
+#: include/text.php:1093 src/Model/Event.php:383
+msgid "Friday"
+msgstr "Perjantai"
+
+#: include/text.php:1093 src/Model/Event.php:384
+msgid "Saturday"
+msgstr "Lauantai"
+
+#: include/text.php:1093 mod/settings.php:941 src/Model/Event.php:378
+msgid "Sunday"
+msgstr "Sunnuntai"
+
+#: include/text.php:1097 src/Model/Event.php:399
+msgid "January"
+msgstr "Tammikuu"
+
+#: include/text.php:1097 src/Model/Event.php:400
+msgid "February"
+msgstr "Helmikuu"
+
+#: include/text.php:1097 src/Model/Event.php:401
+msgid "March"
+msgstr "Maaliskuu"
+
+#: include/text.php:1097 src/Model/Event.php:402
+msgid "April"
+msgstr "Huhtikuu"
+
+#: include/text.php:1097 include/text.php:1114 src/Model/Event.php:390
+#: src/Model/Event.php:403
+msgid "May"
+msgstr "Toukokuu"
+
+#: include/text.php:1097 src/Model/Event.php:404
+msgid "June"
+msgstr "Kesäkuu"
+
+#: include/text.php:1097 src/Model/Event.php:405
+msgid "July"
+msgstr "Heinäkuu"
+
+#: include/text.php:1097 src/Model/Event.php:406
+msgid "August"
+msgstr "Elokuu"
+
+#: include/text.php:1097 src/Model/Event.php:407
+msgid "September"
+msgstr "Syyskuu"
+
+#: include/text.php:1097 src/Model/Event.php:408
+msgid "October"
+msgstr "Lokakuu"
+
+#: include/text.php:1097 src/Model/Event.php:409
+msgid "November"
+msgstr "Marraskuu"
+
+#: include/text.php:1097 src/Model/Event.php:410
+msgid "December"
+msgstr "Joulukuu"
+
+#: include/text.php:1111 src/Model/Event.php:371
+msgid "Mon"
+msgstr "Ma"
+
+#: include/text.php:1111 src/Model/Event.php:372
+msgid "Tue"
+msgstr "Ti"
+
+#: include/text.php:1111 src/Model/Event.php:373
+msgid "Wed"
+msgstr "Ke"
+
+#: include/text.php:1111 src/Model/Event.php:374
+msgid "Thu"
+msgstr "To"
+
+#: include/text.php:1111 src/Model/Event.php:375
+msgid "Fri"
+msgstr "Pe"
+
+#: include/text.php:1111 src/Model/Event.php:376
+msgid "Sat"
+msgstr "La"
+
+#: include/text.php:1111 src/Model/Event.php:370
+msgid "Sun"
+msgstr "Su"
+
+#: include/text.php:1114 src/Model/Event.php:386
+msgid "Jan"
+msgstr "Tam."
+
+#: include/text.php:1114 src/Model/Event.php:387
+msgid "Feb"
+msgstr "Hel."
+
+#: include/text.php:1114 src/Model/Event.php:388
+msgid "Mar"
+msgstr "Maa."
+
+#: include/text.php:1114 src/Model/Event.php:389
+msgid "Apr"
+msgstr "Huh."
+
+#: include/text.php:1114 src/Model/Event.php:392
+msgid "Jul"
+msgstr "Tou."
+
+#: include/text.php:1114 src/Model/Event.php:393
+msgid "Aug"
+msgstr "Elo."
+
+#: include/text.php:1114
+msgid "Sep"
+msgstr "Syy."
+
+#: include/text.php:1114 src/Model/Event.php:395
+msgid "Oct"
+msgstr "Lok."
+
+#: include/text.php:1114 src/Model/Event.php:396
+msgid "Nov"
+msgstr "Mar."
+
+#: include/text.php:1114 src/Model/Event.php:397
+msgid "Dec"
+msgstr "Jou."
+
+#: include/text.php:1324 mod/videos.php:380
+msgid "View Video"
+msgstr "Katso video"
+
+#: include/text.php:1341
+msgid "bytes"
+msgstr "tavua"
+
+#: include/text.php:1374 include/text.php:1385
+msgid "Click to open/close"
+msgstr "Klikkaa auki/kiinni"
+
+#: include/text.php:1509
+msgid "View on separate page"
+msgstr "Katso erillisellä sivulla"
+
+#: include/text.php:1510
+msgid "view on separate page"
+msgstr "katso erillisellä sivulla"
+
+#: include/text.php:1515 include/text.php:1522 src/Model/Event.php:594
+msgid "link to source"
+msgstr "linkki lähteeseen"
+
+#: include/text.php:1728
+msgid "activity"
+msgstr "toiminta"
+
+#: include/text.php:1730 src/Object/Post.php:423 src/Object/Post.php:435
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] "kommentoi"
+msgstr[1] "kommentoi"
+
+#: include/text.php:1733
+msgid "post"
+msgstr "julkaisu"
+
+#: include/text.php:1890
+msgid "Item filed"
+msgstr ""
+
+#: mod/allfriends.php:51
+msgid "No friends to display."
+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
+msgid "Connect"
+msgstr "Yhdistä"
+
+#: 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/api.php:111 mod/dfrn_request.php:653 mod/settings.php:1103
+#: mod/settings.php:1109 mod/settings.php:1116 mod/settings.php:1120
+#: mod/settings.php:1124 mod/settings.php:1128 mod/settings.php:1132
+#: mod/settings.php:1136 mod/settings.php:1156 mod/settings.php:1157
+#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
+#: mod/follow.php:150 mod/profiles.php:636 mod/profiles.php:640
+#: mod/profiles.php:661 mod/register.php:238
+msgid "No"
+msgstr "Ei"
+
+#: mod/apps.php:14 index.php:245
+msgid "You must be logged in to use addons. "
+msgstr ""
+
+#: mod/apps.php:19
+msgid "Applications"
+msgstr "Sovellukset"
+
+#: mod/apps.php:22
+msgid "No installed applications."
+msgstr "Ei asennettuja sovelluksia."
+
+#: 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/common.php:91
+msgid "No contacts in common."
+msgstr "Ei yhteisiä kontakteja."
+
+#: mod/common.php:140 mod/contacts.php:886
+msgid "Common Friends"
+msgstr "Yhteisiä kavereita"
+
+#: mod/credits.php:18
+msgid "Credits"
+msgstr "Lopputekstit"
+
+#: 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/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 ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>VAROITUS: Tämä on erittäin vaativaa</strong> 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 <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta <strong>nyt</strong>, jos olet epävarma tämän sivun toiminnoista."
+
+#: 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 "Palaa kontaktin muokkaamiseen"
+
+#: mod/crepair.php:146
+msgid "Refetch contact data"
+msgstr ""
+
+#: mod/crepair.php:148 mod/invite.php:150 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/install.php:251
+#: mod/install.php:290 mod/events.php:530 mod/profiles.php:672
+#: mod/contacts.php:610 src/Object/Post.php:790
+#: view/theme/duepuntozero/config.php:71 view/theme/frio/config.php:113
+#: view/theme/quattro/config.php:73 view/theme/vier/config.php:119
+msgid "Submit"
+msgstr "Lähetä"
+
+#: 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/settings.php:677 mod/settings.php:703
+#: mod/admin.php:490 mod/admin.php:1781 mod/admin.php:1793 mod/admin.php:1806
+#: mod/admin.php:1822
+msgid "Name"
+msgstr "Nimi"
+
+#: 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/fbrowser.php:34 src/Content/Nav.php:102 src/Model/Profile.php:904
+#: view/theme/frio/theme.php:261
+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:292
+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 src/Content/Nav.php:134 view/theme/vier/theme.php:298
+msgid "Help"
+msgstr "Ohje"
+
+#: mod/help.php:63 index.php:297
+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 <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr ""
+
+#: mod/newmember.php:19 mod/settings.php:124 mod/admin.php:1906
+#: mod/admin.php:2175 src/Content/Nav.php:206 view/theme/frio/theme.php:269
+msgid "Settings"
+msgstr "Asetukset"
+
+#: mod/newmember.php:21
+msgid "Go to Your Settings"
+msgstr "Omat Asetukset"
+
+#: mod/newmember.php:21
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr ""
+
+#: mod/newmember.php: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 src/Content/Nav.php:101 src/Model/Profile.php:730
+#: src/Model/Profile.php:863 src/Model/Profile.php:896
+#: 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"
+
+#: 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 <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr ""
+
+#: mod/newmember.php: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 <em>Add New Contact</em> 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 <em>Connect</em> or <em>Follow</em> 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:43 src/Model/Group.php:401
+msgid "Groups"
+msgstr "Ryhmät"
+
+#: 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 ""
+
+#: mod/newmember.php:54
+msgid ""
+"Our <strong>help</strong> 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
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr ""
+
+#: mod/nogroup.php:43 mod/contacts.php:960
+msgid "Edit contact"
+msgstr "Muokkaa kontaktia"
+
+#: mod/nogroup.php:63
+msgid "Contacts who are not members of a group"
+msgstr "Kontaktit jotka eivät kuulu ryhmään"
+
+#: mod/p.php:14
+msgid "Not Extended"
+msgstr "Ei laajennettu"
+
+#: mod/repair_ostatus.php:18
+msgid "Resubscribing to OStatus contacts"
+msgstr ""
+
+#: mod/repair_ostatus.php:34
+msgid "Error"
+msgstr "Virhe"
+
+#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64
+msgid "Done"
+msgstr "Valmis"
+
+#: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88
+msgid "Keep this window open until done."
+msgstr ""
+
+#: mod/suggest.php:36
+msgid "Do you really want to delete this suggestion?"
+msgstr "Haluatko varmasti poistaa ehdotuksen?"
+
+#: mod/suggest.php:73
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr ""
+
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
+msgstr "Jätä huomiotta/piilota"
+
+#: mod/suggest.php:114 src/Content/Widget.php:64 view/theme/vier/theme.php:203
+msgid "Friend Suggestions"
+msgstr "Ystäväehdotukset"
+
+#: mod/uimport.php:55 mod/register.php:191
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr ""
+
+#: mod/uimport.php:70 mod/register.php:285
+msgid "Import"
+msgstr "Tuo"
+
+#: mod/uimport.php:72
+msgid "Move account"
+msgstr "Siirrä tili"
+
+#: mod/uimport.php:73
+msgid "You can import an account from another Friendica server."
+msgstr "Voit tuoda käyttäjätilin toiselta Friendica -palvelimelta."
+
+#: mod/uimport.php:74
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr ""
+
+#: mod/uimport.php:75
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (GNU Social/Statusnet) or from Diaspora"
+msgstr ""
+
+#: mod/uimport.php:76
+msgid "Account file"
+msgstr "Tilitiedosto"
+
+#: mod/uimport.php:76
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+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
+msgid "[Embedded content - reload page to view]"
+msgstr "[Upotettu sisältö - näet sen päivittämällä sivun]"
+
+#: 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/match.php:48
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr ""
+
+#: mod/match.php:104
+msgid "is interested in:"
+msgstr ""
+
+#: 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
+#, 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: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 ""
+
+#: 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:247 mod/events.php:518 mod/directory.php:148
+#: mod/contacts.php:660 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
+msgid "Location:"
+msgstr "Sijainti:"
+
+#: mod/notifications.php:249 mod/directory.php:154 mod/contacts.php:664
+#: src/Model/Profile.php:423 src/Model/Profile.php:806
+msgid "About:"
+msgstr "Lisätietoja:"
+
+#: mod/notifications.php:251 mod/follow.php:174 mod/contacts.php:666
+#: src/Model/Profile.php:794
+msgid "Tags:"
+msgstr "Tunnisteet:"
+
+#: mod/notifications.php:253 mod/directory.php:151 src/Model/Profile.php:420
+#: src/Model/Profile.php:745
+msgid "Gender:"
+msgstr "Sukupuoli:"
+
+#: mod/notifications.php:258 mod/unfollow.php:122 mod/follow.php:166
+#: mod/contacts.php:656 mod/admin.php:490 mod/admin.php:500
+msgid "Profile URL"
+msgstr "Profiilin URL"
+
+#: mod/notifications.php:261 mod/contacts.php:71 src/Model/Profile.php:518
+msgid "Network:"
+msgstr "Verkko:"
+
+#: mod/notifications.php:275
+msgid "No introductions."
+msgstr ""
+
+#: 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 ""
+
+#: mod/openid.php:29
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID -protokollavirhe. Tunnusta ei vastaanotettu."
+
+#: mod/openid.php:66
+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."
+msgstr "Kirjautuminen epäonnistui"
+
+#: 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/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 "Vahvistus onnistui."
+
+#: 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:1520
+msgid "[Name Withheld]"
+msgstr "[Nimi jätetty pois]"
+
+#: mod/dfrn_confirm.php:694
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr ""
+
+#: mod/invite.php:33
+msgid "Total invitation limit exceeded."
+msgstr "Kutsuraja ylitetty."
+
+#: mod/invite.php:55
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Virheellinen sähköpostiosoite."
+
+#: mod/invite.php:80
+msgid "Please join us on Friendica"
+msgstr "Tervetuloa Friendicaan"
+
+#: mod/invite.php:91
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr ""
+
+#: mod/invite.php:95
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Viestin toimitus epäonnistui."
+
+#: mod/invite.php:99
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d viesti lähetetty."
+msgstr[1] "%d viestiä lähetetty."
+
+#: mod/invite.php:117
+msgid "You have no more invitations available"
+msgstr ""
+
+#: mod/invite.php:125
+#, php-format
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr ""
+
+#: mod/invite.php:127
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr ""
+
+#: mod/invite.php:128
+#, 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:132
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr ""
+
+#: mod/invite.php:136
+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:135
+#, php-format
+msgid "To accept this invitation, please visit and register at %s."
+msgstr ""
+
+#: mod/invite.php:142
+msgid "Send invitations"
+msgstr "Lähetä kutsut"
+
+#: mod/invite.php:143
+msgid "Enter email addresses, one per line:"
+msgstr "Syötä sähköpostiosoitteet, yksi riviä kohden:"
+
+#: mod/invite.php:144 mod/wallmessage.php:141 mod/message.php:259
+#: mod/message.php:426
+msgid "Your message:"
+msgstr "Viestisi:"
+
+#: mod/invite.php:145
+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:147
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr ""
+
+#: mod/invite.php:147
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr ""
+
+#: mod/invite.php:149
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendi.ca"
+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 "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/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 ""
+
+#: 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:345 src/Model/Contact.php:1223
+msgid "Disallowed profile URL."
+msgstr "Kielletty profiiliosoite."
+
+#: mod/dfrn_request.php:351 mod/friendica.php:128 mod/admin.php:353
+#: mod/admin.php:371 src/Model/Contact.php:1228
+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."
+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 "
+"<strong>this</strong> profile."
+msgstr "Väärä identiteetti kirjautuneena sisään. Kirjaudu <strong>tähän</strong> 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:607 mod/probe.php:13 mod/viewcontacts.php:45
+#: mod/webfinger.php:16 mod/search.php:98 mod/search.php:104
+#: 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/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, <a href=\"%s\">follow "
+"this link to find a public Friendica site and join us today</a>."
+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 ""
+
+#: 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: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 " - ä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/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 "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 ""
+
+#: mod/localtime.php:52
+msgid "Please select your timezone:"
+msgstr "Valitse aikavyöhykkeesi:"
+
+#: 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:415
+msgid "Permission denied"
+msgstr "Käyttöoikeus evätty"
+
+#: 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 "Näkyvyys"
+
+#: mod/profperm.php:140
+msgid "All Contacts (with secure profile access)"
+msgstr ""
+
+#: mod/regmod.php:68
+msgid "Account approved."
+msgstr "Tili hyväksytty."
+
+#: mod/regmod.php:93
+#, php-format
+msgid "Registration revoked for %s"
+msgstr ""
+
+#: mod/regmod.php:102
+msgid "Please login."
+msgstr "Ole hyvä ja kirjaudu."
+
+#: mod/removeme.php:55 mod/removeme.php:58
+msgid "Remove My Account"
+msgstr "Poista tilini"
+
+#: mod/removeme.php:56
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr ""
+
+#: mod/removeme.php:57
+msgid "Please enter your password for verification:"
+msgstr ""
+
+#: mod/viewcontacts.php:87
+msgid "No contacts."
+msgstr "Ei kontakteja."
+
+#: mod/viewsrc.php:12
+msgid "Access denied."
+msgstr "Käyttö estetty."
+
+#: mod/wallmessage.php:49 mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+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 "Viestiä ei voitu lähettää."
+
+#: 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 "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/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:108
+msgid "Export personal data"
+msgstr "Vie henkilökohtaiset tiedot"
+
+#: mod/filer.php:34
+msgid "- select -"
+msgstr "- valitse -"
+
+#: 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 "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 ""
+
+#: mod/poke.php:198
+msgid "Make this post private"
+msgstr "Muuta julkaisu yksityiseksi"
+
+#: 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/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 ""
+
+#: 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/search.php:37 mod/network.php:194
+msgid "Remove term"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: mod/community.php:87
+msgid "Global Community"
+msgstr "Maailmanlaajuinen yhteisö"
+
+#: mod/community.php:90
+msgid "Posts from users of the whole federated network"
+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/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/feedtest.php:20
+msgid "You must be logged in to use this module"
+msgstr ""
+
+#: mod/feedtest.php:48
+msgid "Source URL"
+msgstr "Lähde URL"
+
+#: 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."
+
+#: mod/group.php:42
+msgid "Could not create group."
+msgstr "Ryhmää ei voitu luoda."
+
+#: mod/group.php:56 mod/group.php:157
+msgid "Group not found."
+msgstr "Ryhmää ei löytynyt."
+
+#: mod/group.php:70
+msgid "Group name changed."
+msgstr "Ryhmän nimi muutettu."
+
+#: mod/group.php:97
+msgid "Save Group"
+msgstr "Tallenna ryhmä"
+
+#: mod/group.php:102
+msgid "Create a group of contacts/friends."
+msgstr "Luo kontakti/kaveriryhmä"
+
+#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:408
+msgid "Group Name: "
+msgstr "Ryhmän nimi:"
+
+#: mod/group.php:127
+msgid "Group removed."
+msgstr "Ryhmä poistettu."
+
+#: mod/group.php:129
+msgid "Unable to remove group."
+msgstr "Ryhmää ei voida poistaa."
+
+#: mod/group.php:192
+msgid "Delete Group"
+msgstr "Poista ryhmä"
+
+#: mod/group.php:198
+msgid "Group Editor"
+msgstr "Ryhmien muokkausta"
+
+#: mod/group.php:203
+msgid "Edit Group Name"
+msgstr "Muokkaa ryhmän nimeä"
+
+#: mod/group.php:213
+msgid "Members"
+msgstr "Jäsenet"
+
+#: mod/group.php:215 mod/contacts.php:719
+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"
+
+#: mod/group.php:253
+msgid "Add Contact"
+msgstr "Lisää kontakti"
+
+#: 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/message.php:30 src/Content/Nav.php:198
+msgid "New Message"
+msgstr "Uusi viesti"
+
+#: mod/message.php:77
+msgid "Unable to locate contact information."
+msgstr "Kontaktin tiedot ei löydy."
+
+#: mod/message.php:112 src/Content/Nav.php:195 view/theme/frio/theme.php:268
+msgid "Messages"
+msgstr "Viestit"
+
+#: 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: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 <strong>may</strong> 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 "Unknown sender - %s"
+msgstr "Tuntematon lähettäjä - %s"
+
+#: mod/message.php:473
+#, php-format
+msgid "You and %s"
+msgstr "Sinä ja %s"
+
+#: mod/message.php:475
+#, php-format
+msgid "%s and You"
+msgstr "%s ja sinä"
+
+#: mod/message.php:503
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d viesti"
+msgstr[1] "%d viestiä"
+
+#: mod/network.php:202 src/Model/Group.php:400
+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:921
+msgid "Commented Order"
+msgstr ""
+
+#: mod/network.php:924
+msgid "Sort by Comment Date"
+msgstr ""
+
+#: mod/network.php:929
+msgid "Posted Order"
+msgstr ""
+
+#: mod/network.php:932
+msgid "Sort by Post Date"
+msgstr ""
+
+#: mod/network.php:940 mod/profiles.php:687
+#: src/Core/NotificationsManager.php:185
+msgid "Personal"
+msgstr "Henkilökohtainen"
+
+#: mod/network.php:943
+msgid "Posts that mention or involve you"
+msgstr ""
+
+#: mod/network.php:951
+msgid "New"
+msgstr "Uusi"
+
+#: mod/network.php:954
+msgid "Activity Stream - by date"
+msgstr ""
+
+#: mod/network.php:962
+msgid "Shared Links"
+msgstr "Jaetut linkit"
+
+#: mod/network.php:965
+msgid "Interesting Links"
+msgstr "Kiinnostavat linkit"
+
+#: mod/network.php:973
+msgid "Starred"
+msgstr "Tähtimerkitty"
+
+#: mod/network.php:976
+msgid "Favourite Posts"
+msgstr "Lempijulkaisut"
+
+#: mod/notes.php:52 src/Model/Profile.php:946
+msgid "Personal Notes"
+msgstr "Henkilökohtaiset tiedot"
+
+#: mod/oexchange.php:30
+msgid "Post successful."
+msgstr "Viestin lähetys onnistui."
+
+#: mod/photos.php:108 src/Model/Profile.php:907
+msgid "Photo Albums"
+msgstr "Valokuva-albumit"
+
+#: mod/photos.php:109 mod/photos.php:1713
+msgid "Recent Photos"
+msgstr "Viimeaikaisia kuvia"
+
+#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
+msgid "Upload New Photos"
+msgstr "Lähetä uusia kuvia"
+
+#: mod/photos.php:126 mod/settings.php:51
+msgid "everybody"
+msgstr "kaikki"
+
+#: mod/photos.php:184
+msgid "Contact information unavailable"
+msgstr "Kontaktin tietoja ei saatavilla"
+
+#: mod/photos.php:204
+msgid "Album not found."
+msgstr "Albumia ei ole."
+
+#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
+msgid "Delete Album"
+msgstr "Poista albumi"
+
+#: mod/photos.php:243
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Haluatko varmasti poistaa tämän albumin ja kaikki sen kuvat?"
+
+#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
+msgid "Delete Photo"
+msgstr "Poista valokuva"
+
+#: mod/photos.php:319
+msgid "Do you really want to delete this photo?"
+msgstr "Haluatko varmasti poistaa kuvan?"
+
+#: mod/photos.php:667
+msgid "a photo"
+msgstr "valokuva"
+
+#: mod/photos.php:667
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s merkattiin kuvaan %2$s ystävän %3$s toimesta"
+
+#: mod/photos.php:769
+msgid "Image upload didn't complete, please try again"
+msgstr "Kuvan lataus ei onnistunut, yritä uudelleen"
+
+#: mod/photos.php:772
+msgid "Image file is missing"
+msgstr "Kuvatiedosto puuttuu"
+
+#: 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 "Kuvatiedosto on tyhjä."
+
+#: mod/photos.php:940
+msgid "No photos selected"
+msgstr "Ei valittuja kuvia"
+
+#: mod/photos.php:1036 mod/videos.php:309
+msgid "Access to this item is restricted."
+msgstr "Pääsy kohteeseen on rajoitettu."
+
+#: mod/photos.php:1090
+msgid "Upload Photos"
+msgstr "Lähetä kuvia"
+
+#: mod/photos.php:1094 mod/photos.php:1156
+msgid "New album name: "
+msgstr "Albumin uusi nimi: "
+
+#: mod/photos.php:1095
+msgid "or existing album name: "
+msgstr "tai olemassaolevan albumin nimi: "
+
+#: mod/photos.php:1096
+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:1227
+msgid "Show to Groups"
+msgstr "Näytä ryhmille"
+
+#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1228
+msgid "Show to Contacts"
+msgstr "Näytä kontakteille"
+
+#: mod/photos.php:1167
+msgid "Edit Album"
+msgstr "Muokkaa albumia"
+
+#: mod/photos.php:1172
+msgid "Show Newest First"
+msgstr "Näytä uusin ensin"
+
+#: mod/photos.php:1174
+msgid "Show Oldest First"
+msgstr "Näytä vanhin ensin"
+
+#: mod/photos.php:1195 mod/photos.php:1698
+msgid "View Photo"
+msgstr "Näytä kuva"
+
+#: mod/photos.php:1236
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Estetty. Tämän kohteen käyttöä on saatettu rajoittaa."
+
+#: mod/photos.php:1238
+msgid "Photo not available"
+msgstr "Kuva ei ole saatavilla"
+
+#: mod/photos.php:1301
+msgid "View photo"
+msgstr "Näytä kuva"
+
+#: mod/photos.php:1301
+msgid "Edit photo"
+msgstr "Muokkaa kuvaa"
+
+#: mod/photos.php:1302
+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"
+
+#: mod/photos.php:1414
+msgid "Tags: "
+msgstr "Merkinnät:"
+
+#: mod/photos.php:1417
+msgid "[Remove any tag]"
+msgstr "[Poista mikä tahansa merkintä]"
+
+#: mod/photos.php:1432
+msgid "New album name"
+msgstr "Uusi nimi albumille"
+
+#: mod/photos.php:1433
+msgid "Caption"
+msgstr "Kuvateksti"
+
+#: mod/photos.php:1434
+msgid "Add a Tag"
+msgstr "Lisää merkintä"
+
+#: mod/photos.php:1434
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Esimerkki: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+
+#: mod/photos.php:1435
+msgid "Do not rotate"
+msgstr "Älä kierrä"
+
+#: mod/photos.php:1436
+msgid "Rotate CW (right)"
+msgstr "Käännä oikealle"
+
+#: mod/photos.php:1437
+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:787
+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:393 src/Object/Post.php:789
+msgid "Comment"
+msgstr "Kommentti"
+
+#: mod/photos.php:1634
+msgid "Map"
+msgstr "Kartta"
+
+#: mod/photos.php:1704 mod/videos.php:387
+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/profile.php:78 src/Protocol/OStatus.php:1252
+#, php-format
+msgid "%s's posts"
+msgstr "%s: julkaisut"
+
+#: mod/profile.php:79 src/Protocol/OStatus.php:1253
+#, php-format
+msgid "%s's comments"
+msgstr "%s: kommentit"
+
+#: mod/profile.php:80 src/Protocol/OStatus.php:1251
+#, php-format
+msgid "%s's timeline"
+msgstr "%s: aikajana"
+
+#: mod/profile.php:173 mod/display.php:313 mod/cal.php:142
+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/videos.php:139
+msgid "Do you really want to delete this video?"
+msgstr "Haluatko varmasti poistaa tämän videon?"
+
+#: mod/videos.php:144
+msgid "Delete Video"
+msgstr "Poista video"
+
+#: mod/videos.php:207
+msgid "No videos selected"
+msgstr "Ei videoita valittuna"
+
+#: mod/videos.php:396
+msgid "Recent Videos"
+msgstr "Viimeisimmät videot"
+
+#: mod/videos.php:398
+msgid "Upload New Videos"
+msgstr "Lataa uusia videoita"
+
+#: 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/settings.php:675 mod/settings.php:784
+#: mod/settings.php:870 mod/settings.php:959 mod/settings.php:1192
+#: mod/admin.php:307 mod/admin.php:1346 mod/admin.php:1965 mod/admin.php:2218
+#: mod/admin.php:2292 mod/admin.php:2439
+msgid "Save Settings"
+msgstr "Tallenna asetukset"
+
+#: 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 "Lisää"
+
+#: mod/delegate.php:179
+msgid "No entries."
+msgstr ""
+
+#: mod/dirfind.php:49
+#, php-format
+msgid "People Search - %s"
+msgstr ""
+
+#: mod/dirfind.php:60
+#, php-format
+msgid "Forum Search - %s"
+msgstr "Foorumihaku - %s"
+
+#: mod/install.php:114
+msgid "Friendica Communications Server - Setup"
+msgstr ""
+
+#: mod/install.php:120
+msgid "Could not connect to database."
+msgstr "Tietokantaan ei saada yhteyttä."
+
+#: mod/install.php:124
+msgid "Could not create table."
+msgstr "Taulun luominen epäonnistui."
+
+#: mod/install.php:130
+msgid "Your Friendica site database has been installed."
+msgstr "Friendica-sivustosi tietokanta on asennettu."
+
+#: mod/install.php:135
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Sinun on ehkä tuotava tiedosto \"database.sql\" manuaalisesti käyttämällä phpMyAdminia tai MySQL:ää."
+
+#: mod/install.php:136 mod/install.php:208 mod/install.php:558
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Lue tiedosto \"INSTALL.txt\"."
+
+#: mod/install.php:148
+msgid "Database already in use."
+msgstr "Tietokanta on jo käytössä."
+
+#: mod/install.php:205
+msgid "System check"
+msgstr "Järjestelmän tarkistus"
+
+#: mod/install.php:209 mod/cal.php:277 mod/events.php:395
+msgid "Next"
+msgstr "Seuraava"
+
+#: mod/install.php:210
+msgid "Check again"
+msgstr "Tarkista uudelleen"
+
+#: mod/install.php:230
+msgid "Database connection"
+msgstr "Tietokantayhteys"
+
+#: mod/install.php:231
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Jotta voit asentaa Friendican, tarvitaan tieto siitä, miten tietokantaasi saa yhteyden."
+
+#: mod/install.php:232
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Ota yhteyttä web-palveluntarjoajaasi tai sivuston ylläpitäjään, jos sinulla on näihin asetuksiin liittyviä kysymyksiä."
+
+#: mod/install.php:233
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Alla määritetyn tietokannan tulisi olla jo olemassa. Jos se ei ole, luo se ennen kuin jatkat."
+
+#: mod/install.php:237
+msgid "Database Server Name"
+msgstr "Tietokannan palvelimen nimi"
+
+#: mod/install.php:238
+msgid "Database Login Name"
+msgstr "Tietokannan käyttäjän nimi"
+
+#: mod/install.php:239
+msgid "Database Login Password"
+msgstr "Tietokannan käyttäjän salasana"
+
+#: mod/install.php:239
+msgid "For security reasons the password must not be empty"
+msgstr ""
+
+#: mod/install.php:240
+msgid "Database Name"
+msgstr "Tietokannan nimi"
+
+#: mod/install.php:241 mod/install.php:281
+msgid "Site administrator email address"
+msgstr "Sivuston ylläpitäjän sähköpostiosoite"
+
+#: 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 "Tilisi sähköpostiosoitteen on vastattava tätä, jotta voit käyttää ylläpitokäyttöliittymää."
+
+#: mod/install.php:245 mod/install.php:284
+msgid "Please select a default timezone for your website"
+msgstr "Valitse oletusaikavyöhyke sivustollesi"
+
+#: mod/install.php:271
+msgid "Site settings"
+msgstr "Sivuston asetukset"
+
+#: mod/install.php:285
+msgid "System Language:"
+msgstr "Järjestelmän kieli:"
+
+#: 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 "Komentoriviversiota PHP:stä ei löytynyt web-palvelimen PATH:ista."
+
+#: 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 <a "
+"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-worker'>'Setup the worker'</a>"
+msgstr ""
+
+#: mod/install.php:330
+msgid "PHP executable path"
+msgstr "Polku PHP-ohjelmaan"
+
+#: mod/install.php:330
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Kirjoita koko polku PHP-ohjelmaan. Voit jättää sen tyhjäksi, jos haluat jatkaa asennusta."
+
+#: mod/install.php:335
+msgid "Command line PHP"
+msgstr "Komentorivi-PHP"
+
+#: 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 "PHP-versio löydetty:"
+
+#: mod/install.php:347
+msgid "PHP cli binary"
+msgstr "PHP cli -binääritiedosto"
+
+#: mod/install.php:358
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Järjestelmäsi komentorivi-PHP:ssä ei ole käytössä asetusta \"register_argc_argv\"."
+
+#: mod/install.php:359
+msgid "This is required for message delivery to work."
+msgstr "Asetus vaaditaan viestien lähettämiseen."
+
+#: 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 "Virhe: järjestelmäsi \"openssl_pkey_new\" -funktio ei pysty generoimaan salausavaimia."
+
+#: mod/install.php:385
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Jos on kyse Windows-pavelimesta, katso \"http://www.php.net/manual/en/openssl.installation.php\"."
+
+#: mod/install.php:387
+msgid "Generate encryption keys"
+msgstr "Luo salausavaimet"
+
+#: mod/install.php:394
+msgid "libCurl PHP module"
+msgstr "PHP-moduuli libCurl"
+
+#: mod/install.php:395
+msgid "GD graphics PHP module"
+msgstr "PHP-moduuli GD graphics"
+
+#: mod/install.php:396
+msgid "OpenSSL PHP module"
+msgstr "PHP-moduuli OpenSSL"
+
+#: mod/install.php:397
+msgid "PDO or MySQLi PHP module"
+msgstr "PDO tai MySQLi PHP-moduuli"
+
+#: mod/install.php:398
+msgid "mb_string PHP module"
+msgstr "PHP-moduuli mb_string"
+
+#: mod/install.php:399
+msgid "XML PHP module"
+msgstr "XML PHP-moduuli"
+
+#: mod/install.php:400
+msgid "iconv PHP module"
+msgstr "iconv PHP-moduuli"
+
+#: mod/install.php:401
+msgid "POSIX PHP module"
+msgstr "POSIX PHP-moduuli"
+
+#: mod/install.php:405 mod/install.php:407
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite -moduuli"
+
+#: mod/install.php:405
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Virhe: Apache-palvelimen mod-rewrite -moduuli vaaditaan, mutta sitä ei ole asennettu."
+
+#: mod/install.php:413
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Virhe: libCURL PHP -moduuli vaaditaan, mutta sitä ei ole asennettu."
+
+#: mod/install.php:417
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Virhe: GD graphics PHP -moduuli JPEG-tuella vaaditaan, mutta sitä ei ole asennettu."
+
+#: mod/install.php:421
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Virhe: openssl PHP -moduuli vaaditaan, mutta sitä ei ole asennettu."
+
+#: mod/install.php:425
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr "Virhe: PDO tai MySQLi PHP-moduuli vaaditaan, mutta sitä ei ole asennettu."
+
+#: mod/install.php:429
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr "Virhe: PDO:n MySQL-ajuri ei ole asennettu"
+
+#: mod/install.php:433
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Virhe: PHP-moduuli mb_string vaaditaan, mutta sitä ei ole asennettu."
+
+#: mod/install.php:437
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Virhe: iconv PHP-moduuli vaaditaan, mutta sitä ei ole asennettu."
+
+#: mod/install.php:441
+msgid "Error: POSIX PHP module required but not installed."
+msgstr "Virhe: POSIX PHP-moduuli vaadittaan, mutta sitä ei ole asennettu."
+
+#: mod/install.php:451
+msgid "Error, XML PHP module required but not installed."
+msgstr "Virhe: XML PHP-moduuli vaaditaan, mutta sitä ei ole asennettu."
+
+#: 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 "Web-asennuksen pitäisi pystyä luomaan tiedosto nimeltä \".htconfig.php\" palvelimesi ylimpään kansioon, mutta se ei nyt onnistu."
+
+#: 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 "Tämän menettelyn lopussa annamme sinulle tekstin tallennettavaksi tiedostoon nimeltä .htconfig.php Friendican ylätason kansiossa."
+
+#: 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 ".htconfig.php on kirjoitettava"
+
+#: 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 "view/smarty3 on kirjoitettava"
+
+#: 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 "ImageMagick PHP-laajennus ei ole asetettu"
+
+#: mod/install.php:524
+msgid "ImageMagick PHP extension is installed"
+msgstr "ImageMagick PHP-laajennus on asetettu"
+
+#: mod/install.php:526
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagik tukee GIF-formaattia"
+
+#: 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 "Tietokannan asetustiedostoa \".htconfig.php\" ei pystytty kirjoittamaan. Käytä mukaanliitettyä tekstiä luomaan asetustiedosto web-palvelimesi juureen."
+
+#: mod/install.php:556
+msgid "<h1>What next</h1>"
+msgstr "<h1>Mitä seuraavaksi</h1>"
+
+#: 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 <a href=\"%s/register\">registration page</a> "
+"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/ostatus_subscribe.php:21
+msgid "Subscribing to OStatus contacts"
+msgstr ""
+
+#: 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 ""
+
+#: 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 "epäonnistui"
+
+#: mod/ostatus_subscribe.php:83 src/Object/Post.php:279
+msgid "ignored"
+msgstr "ohitettu"
+
+#: 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."
+msgstr ""
+
+#: mod/unfollow.php:100 mod/contacts.php:599
+msgid "Disconnect/Unfollow"
+msgstr "Katkaise / Lopeta seuraaminen"
+
+#: mod/unfollow.php:132 mod/follow.php:186 mod/contacts.php:858
+#: src/Model/Profile.php:891
+msgid "Status Messages and Posts"
+msgstr "Statusviestit ja postaukset"
+
+#: mod/cal.php:274 mod/events.php:391 src/Content/Nav.php:104
+#: src/Content/Nav.php:169 src/Model/Profile.php:924 src/Model/Profile.php:935
+#: view/theme/frio/theme.php:263 view/theme/frio/theme.php:267
+msgid "Events"
+msgstr "Tapahtumat"
+
+#: mod/cal.php:275 mod/events.php:392
+msgid "View"
+msgstr "Katso"
+
+#: mod/cal.php:276 mod/events.php:394
+msgid "Previous"
+msgstr "Edellinen"
+
+#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
+msgid "today"
+msgstr "tänään"
+
+#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
+#: src/Model/Event.php:413
+msgid "month"
+msgstr "kuukausi"
+
+#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
+#: src/Model/Event.php:414
+msgid "week"
+msgstr "viikko"
+
+#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
+#: src/Model/Event.php:415
+msgid "day"
+msgstr "päivä"
+
+#: mod/cal.php:284 mod/events.php:404
+msgid "list"
+msgstr "luettelo"
+
+#: mod/cal.php:297 src/Core/Console/NewPassword.php:74 src/Model/User.php:204
+msgid "User not found"
+msgstr "Käyttäjää ei löydy"
+
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
+msgstr "Tätä kalenteriformaattia ei tueta"
+
+#: mod/cal.php:315
+msgid "No exportable data found"
+msgstr ""
+
+#: mod/cal.php:332
+msgid "calendar"
+msgstr "kalenteri"
+
+#: 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 ""
+
+#: 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:864
+msgid "Basic"
+msgstr ""
+
+#: mod/events.php:532 mod/contacts.php:895 mod/admin.php:1351
+#: src/Model/Profile.php:865
+msgid "Advanced"
+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/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 "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 ""
+
+#: 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/settings.php:56 mod/admin.php:1781
+msgid "Account"
+msgstr "Tili"
+
+#: mod/settings.php:65 mod/admin.php:187
+msgid "Additional features"
+msgstr "Lisäominaisuuksia"
+
+#: mod/settings.php:73
+msgid "Display"
+msgstr ""
+
+#: mod/settings.php:80 mod/settings.php:841
+msgid "Social Networks"
+msgstr "Sosiaalinen media"
+
+#: mod/settings.php:87 mod/admin.php:185 mod/admin.php:1904 mod/admin.php:1964
+msgid "Addons"
+msgstr "Lisäosat"
+
+#: mod/settings.php:94 src/Content/Nav.php:204
+msgid "Delegations"
+msgstr ""
+
+#: mod/settings.php:101
+msgid "Connected apps"
+msgstr "Yhdistetyt sovellukset"
+
+#: mod/settings.php:115
+msgid "Remove account"
+msgstr "Poista tili"
+
+#: mod/settings.php:169
+msgid "Missing some important data!"
+msgstr ""
+
+#: mod/settings.php:171 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/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:325
+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:78
+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:85
+msgid "Password changed."
+msgstr "Salasana vaihdettu."
+
+#: mod/settings.php:409 src/Core/Console/NewPassword.php:82
+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 ""
+
+#: mod/settings.php:679 mod/settings.php:705
+msgid "Consumer Secret"
+msgstr ""
+
+#: mod/settings.php:680 mod/settings.php:706
+msgid "Redirect"
+msgstr "Uudelleenohjaus"
+
+#: 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 "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 ""
+
+#: 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 ""
+
+#: mod/settings.php:761
+msgid "Addon Settings"
+msgstr "Lisäosa-asetukset"
+
+#: mod/settings.php:775 mod/admin.php:2428 mod/admin.php:2429
+msgid "Off"
+msgstr "Pois päältä"
+
+#: mod/settings.php:775 mod/admin.php:2428 mod/admin.php:2429
+msgid "On"
+msgstr "Päällä"
+
+#: mod/settings.php:782
+msgid "Additional Features"
+msgstr "Lisäominaisuuksia"
+
+#: mod/settings.php:804 src/Content/ContactSelector.php:83
+msgid "Diaspora"
+msgstr "Diaspora"
+
+#: mod/settings.php:804 mod/settings.php:805
+msgid "enabled"
+msgstr "käytössä"
+
+#: mod/settings.php:804 mod/settings.php:805
+msgid "disabled"
+msgstr "pois käytöstä"
+
+#: mod/settings.php:804 mod/settings.php:805
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr ""
+
+#: mod/settings.php:805
+msgid "GNU Social (OStatus)"
+msgstr "GNU Social (OStatus)"
+
+#: mod/settings.php:836
+msgid "Email access is disabled on this site."
+msgstr ""
+
+#: mod/settings.php:846
+msgid "General Social Media Settings"
+msgstr "Yleiset some asetukset"
+
+#: mod/settings.php:847
+msgid "Disable intelligent shortening"
+msgstr ""
+
+#: mod/settings.php:847
+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:848
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+msgstr ""
+
+#: mod/settings.php:848
+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:849
+msgid "Default group for OStatus contacts"
+msgstr "Oletusryhmä OStatus kontakteille"
+
+#: mod/settings.php:850
+msgid "Your legacy GNU Social account"
+msgstr ""
+
+#: mod/settings.php:850
+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:853
+msgid "Repair OStatus subscriptions"
+msgstr "Korjaa OStatus tilaukset"
+
+#: mod/settings.php:857
+msgid "Email/Mailbox Setup"
+msgstr "Sähköpostin asennus"
+
+#: mod/settings.php:858
+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:859
+msgid "Last successful email check:"
+msgstr "Viimeisin onnistunut sähköpostitarkistus:"
+
+#: mod/settings.php:861
+msgid "IMAP server name:"
+msgstr "IMAP-palvelimen nimi:"
+
+#: mod/settings.php:862
+msgid "IMAP port:"
+msgstr "IMAP-porttti:"
+
+#: mod/settings.php:863
+msgid "Security:"
+msgstr ""
+
+#: mod/settings.php:863 mod/settings.php:868
+msgid "None"
+msgstr "Ei mitään"
+
+#: mod/settings.php:864
+msgid "Email login name:"
+msgstr "Sähköpostitilin käyttäjätunnus:"
+
+#: mod/settings.php:865
+msgid "Email password:"
+msgstr "Sähköpostin salasana:"
+
+#: mod/settings.php:866
+msgid "Reply-to address:"
+msgstr "Vastausosoite:"
+
+#: mod/settings.php:867
+msgid "Send public posts to all email contacts:"
+msgstr ""
+
+#: mod/settings.php:868
+msgid "Action after import:"
+msgstr ""
+
+#: mod/settings.php:868 src/Content/Nav.php:191
+msgid "Mark as seen"
+msgstr "Merkitse luetuksi"
+
+#: mod/settings.php:868
+msgid "Move to folder"
+msgstr "Siirrä kansioon"
+
+#: mod/settings.php:869
+msgid "Move to folder:"
+msgstr "Siirrä kansioon:"
+
+#: mod/settings.php:903 mod/admin.php:1236
+msgid "No special theme for mobile devices"
+msgstr ""
+
+#: mod/settings.php:912
+#, php-format
+msgid "%s - (Unsupported)"
+msgstr "%s - (Ei tueta)"
+
+#: mod/settings.php:914
+#, php-format
+msgid "%s - (Experimental)"
+msgstr "%s - (Kokeellinen)"
+
+#: mod/settings.php:957
+msgid "Display Settings"
+msgstr "Näyttöasetukset"
+
+#: mod/settings.php:963 mod/settings.php:987
+msgid "Display Theme:"
+msgstr ""
+
+#: mod/settings.php:964
+msgid "Mobile Theme:"
+msgstr "Mobiiliteema:"
+
+#: mod/settings.php:965
+msgid "Suppress warning of insecure networks"
+msgstr ""
+
+#: mod/settings.php:965
+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:966
+msgid "Update browser every xx seconds"
+msgstr "Päivitä selain xx sekunnin välein"
+
+#: mod/settings.php:966
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
+msgstr ""
+
+#: mod/settings.php:967
+msgid "Number of items to display per page:"
+msgstr ""
+
+#: mod/settings.php:967 mod/settings.php:968
+msgid "Maximum of 100 items"
+msgstr "Enintään 100 kohdetta"
+
+#: mod/settings.php:968
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr ""
+
+#: mod/settings.php:969
+msgid "Don't show emoticons"
+msgstr "Piilota hymiöt"
+
+#: mod/settings.php:970
+msgid "Calendar"
+msgstr "Kalenteri"
+
+#: mod/settings.php:971
+msgid "Beginning of week:"
+msgstr "Viikon alku:"
+
+#: mod/settings.php:972
+msgid "Don't show notices"
+msgstr ""
+
+#: mod/settings.php:973
+msgid "Infinite scroll"
+msgstr ""
+
+#: mod/settings.php:974
+msgid "Automatic updates only at the top of the network page"
+msgstr ""
+
+#: mod/settings.php:974
+msgid ""
+"When disabled, the network page is updated all the time, which could be "
+"confusing while reading."
+msgstr ""
+
+#: mod/settings.php:975
+msgid "Bandwith Saver Mode"
+msgstr "Kaistanleveyssäästömoodi"
+
+#: mod/settings.php:975
+msgid ""
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
+msgstr ""
+
+#: mod/settings.php:976
+msgid "Smart Threading"
+msgstr ""
+
+#: mod/settings.php:976
+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:978
+msgid "General Theme Settings"
+msgstr "Yleiset teeman asetukset"
+
+#: mod/settings.php:979
+msgid "Custom Theme Settings"
+msgstr ""
+
+#: mod/settings.php:980
+msgid "Content Settings"
+msgstr "Sisältöasetukset"
+
+#: mod/settings.php:981 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:1000
+msgid "Unable to find your profile. Please contact your admin."
+msgstr ""
+
+#: mod/settings.php:1042
+msgid "Account Types"
+msgstr "Tilityypit"
+
+#: mod/settings.php:1043
+msgid "Personal Page Subtypes"
+msgstr "Henkilökohtaisen sivun alatyypit"
+
+#: mod/settings.php:1044
+msgid "Community Forum Subtypes"
+msgstr "Yhteisöfoorumin alatyypit"
+
+#: mod/settings.php:1051
+msgid "Personal Page"
+msgstr "Henkilökohtainen sivu"
+
+#: mod/settings.php:1052
+msgid "Account for a personal profile."
+msgstr ""
+
+#: mod/settings.php:1055
+msgid "Organisation Page"
+msgstr "Järjestön sivu"
+
+#: mod/settings.php:1056
+msgid ""
+"Account for an organisation that automatically approves contact requests as "
+"\"Followers\"."
+msgstr ""
+
+#: mod/settings.php:1059
+msgid "News Page"
+msgstr "Uutissivu"
+
+#: mod/settings.php:1060
+msgid ""
+"Account for a news reflector that automatically approves contact requests as"
+" \"Followers\"."
+msgstr ""
+
+#: mod/settings.php:1063
+msgid "Community Forum"
+msgstr "Yhteisöfoorumi"
+
+#: mod/settings.php:1064
+msgid "Account for community discussions."
+msgstr ""
+
+#: mod/settings.php:1067
+msgid "Normal Account Page"
+msgstr ""
+
+#: mod/settings.php:1068
+msgid ""
+"Account for a regular personal profile that requires manual approval of "
+"\"Friends\" and \"Followers\"."
+msgstr ""
+
+#: mod/settings.php:1071
+msgid "Soapbox Page"
+msgstr "Saarnatuoli sivu"
+
+#: mod/settings.php:1072
+msgid ""
+"Account for a public profile that automatically approves contact requests as"
+" \"Followers\"."
+msgstr ""
+
+#: mod/settings.php:1075
+msgid "Public Forum"
+msgstr "Julkinen foorumi"
+
+#: mod/settings.php:1076
+msgid "Automatically approves all contact requests."
+msgstr "Automaattisesti hyväksyy kaikki kontaktipyynnöt"
+
+#: mod/settings.php:1079
+msgid "Automatic Friend Page"
+msgstr ""
+
+#: mod/settings.php:1080
+msgid ""
+"Account for a popular profile that automatically approves contact requests "
+"as \"Friends\"."
+msgstr ""
+
+#: mod/settings.php:1083
+msgid "Private Forum [Experimental]"
+msgstr "Yksityisfoorumi [kokeellinen]"
+
+#: mod/settings.php:1084
+msgid "Requires manual approval of contact requests."
+msgstr ""
+
+#: mod/settings.php:1095
+msgid "OpenID:"
+msgstr "OpenID:"
+
+#: mod/settings.php:1095
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr ""
+
+#: mod/settings.php:1103
+msgid "Publish your default profile in your local site directory?"
+msgstr ""
+
+#: mod/settings.php:1103
+#, php-format
+msgid ""
+"Your profile will be published in the global friendica directories (e.g. <a "
+"href=\"%s\">%s</a>). Your profile will be visible in public."
+msgstr ""
+
+#: mod/settings.php:1109
+msgid "Publish your default profile in the global social directory?"
+msgstr ""
+
+#: mod/settings.php:1109
+#, php-format
+msgid ""
+"Your profile will be published in this node's <a href=\"%s\">local "
+"directory</a>. Your profile details may be publicly visible depending on the"
+" system settings."
+msgstr ""
+
+#: mod/settings.php:1116
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr ""
+
+#: mod/settings.php:1116
+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:1120
+msgid "Hide your profile details from anonymous viewers?"
+msgstr ""
+
+#: mod/settings.php:1120
+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:1124
+msgid "Allow friends to post to your profile page?"
+msgstr ""
+
+#: mod/settings.php:1124
+msgid ""
+"Your contacts may write posts on your profile wall. These posts will be "
+"distributed to your contacts"
+msgstr ""
+
+#: mod/settings.php:1128
+msgid "Allow friends to tag your posts?"
+msgstr ""
+
+#: mod/settings.php:1128
+msgid "Your contacts can add additional tags to your posts."
+msgstr ""
+
+#: mod/settings.php:1132
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr ""
+
+#: mod/settings.php:1132
+msgid ""
+"If you like, Friendica may suggest new members to add you as a contact."
+msgstr ""
+
+#: mod/settings.php:1136
+msgid "Permit unknown people to send you private mail?"
+msgstr "Salli yksityisviesit tuntemattomilta?"
+
+#: mod/settings.php:1136
+msgid ""
+"Friendica network users may send you private messages even if they are not "
+"in your contact list."
+msgstr ""
+
+#: mod/settings.php:1140
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profiili <strong>ei ole julkaistu</strong>."
+
+#: mod/settings.php:1146
+#, php-format
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+msgstr ""
+
+#: mod/settings.php:1153
+msgid "Automatically expire posts after this many days:"
+msgstr ""
+
+#: mod/settings.php:1153
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr ""
+
+#: mod/settings.php:1154
+msgid "Advanced expiration settings"
+msgstr ""
+
+#: mod/settings.php:1155
+msgid "Advanced Expiration"
+msgstr ""
+
+#: mod/settings.php:1156
+msgid "Expire posts:"
+msgstr ""
+
+#: mod/settings.php:1157
+msgid "Expire personal notes:"
+msgstr ""
+
+#: mod/settings.php:1158
+msgid "Expire starred posts:"
+msgstr ""
+
+#: mod/settings.php:1159
+msgid "Expire photos:"
+msgstr ""
+
+#: mod/settings.php:1160
+msgid "Only expire posts by others:"
+msgstr ""
+
+#: mod/settings.php:1190
+msgid "Account Settings"
+msgstr "Tiliasetukset"
+
+#: mod/settings.php:1198
+msgid "Password Settings"
+msgstr "Salasana-asetukset"
+
+#: mod/settings.php:1199 mod/register.php:273
+msgid "New Password:"
+msgstr "Uusi salasana:"
+
+#: mod/settings.php:1200 mod/register.php:274
+msgid "Confirm:"
+msgstr "Vahvista:"
+
+#: mod/settings.php:1200
+msgid "Leave password fields blank unless changing"
+msgstr ""
+
+#: mod/settings.php:1201
+msgid "Current Password:"
+msgstr "Nykyinen salasana:"
+
+#: mod/settings.php:1201 mod/settings.php:1202
+msgid "Your current password to confirm the changes"
+msgstr ""
+
+#: mod/settings.php:1202
+msgid "Password:"
+msgstr "Salasana:"
+
+#: mod/settings.php:1206
+msgid "Basic Settings"
+msgstr "Perusasetukset"
+
+#: mod/settings.php:1207 src/Model/Profile.php:738
+msgid "Full Name:"
+msgstr "Koko nimi:"
+
+#: mod/settings.php:1208
+msgid "Email Address:"
+msgstr "Sähköpostiosoite:"
+
+#: mod/settings.php:1209
+msgid "Your Timezone:"
+msgstr "Aikavyöhyke:"
+
+#: mod/settings.php:1210
+msgid "Your Language:"
+msgstr "Kieli:"
+
+#: mod/settings.php:1210
+msgid ""
+"Set the language we use to show you friendica interface and to send you "
+"emails"
+msgstr ""
+
+#: mod/settings.php:1211
+msgid "Default Post Location:"
+msgstr ""
+
+#: mod/settings.php:1212
+msgid "Use Browser Location:"
+msgstr "Käytä selaimen sijainti:"
+
+#: mod/settings.php:1215
+msgid "Security and Privacy Settings"
+msgstr "Turvallisuus ja tietosuoja-asetukset"
+
+#: mod/settings.php:1217
+msgid "Maximum Friend Requests/Day:"
+msgstr ""
+
+#: mod/settings.php:1217 mod/settings.php:1246
+msgid "(to prevent spam abuse)"
+msgstr ""
+
+#: mod/settings.php:1218
+msgid "Default Post Permissions"
+msgstr ""
+
+#: mod/settings.php:1219
+msgid "(click to open/close)"
+msgstr "(klikkaa auki/kiinni)"
+
+#: mod/settings.php:1229
+msgid "Default Private Post"
+msgstr ""
+
+#: mod/settings.php:1230
+msgid "Default Public Post"
+msgstr ""
+
+#: mod/settings.php:1234
+msgid "Default Permissions for New Posts"
+msgstr ""
+
+#: mod/settings.php:1246
+msgid "Maximum private messages per day from unknown people:"
+msgstr ""
+
+#: mod/settings.php:1249
+msgid "Notification Settings"
+msgstr "Huomautusasetukset"
+
+#: mod/settings.php:1250
+msgid "By default post a status message when:"
+msgstr ""
+
+#: mod/settings.php:1251
+msgid "accepting a friend request"
+msgstr "hyväksyt kaveripyynnön"
+
+#: mod/settings.php:1252
+msgid "joining a forum/community"
+msgstr "liityt foorumiin/yhteisöön"
+
+#: mod/settings.php:1253
+msgid "making an <em>interesting</em> profile change"
+msgstr ""
+
+#: mod/settings.php:1254
+msgid "Send a notification email when:"
+msgstr "Lähetä sähköposti-ilmoitus kun:"
+
+#: mod/settings.php:1255
+msgid "You receive an introduction"
+msgstr ""
+
+#: mod/settings.php:1256
+msgid "Your introductions are confirmed"
+msgstr ""
+
+#: mod/settings.php:1257
+msgid "Someone writes on your profile wall"
+msgstr ""
+
+#: mod/settings.php:1258
+msgid "Someone writes a followup comment"
+msgstr ""
+
+#: mod/settings.php:1259
+msgid "You receive a private message"
+msgstr "Vastaanotat yksityisviestin"
+
+#: mod/settings.php:1260
+msgid "You receive a friend suggestion"
+msgstr "Vastaanotat kaveriehdotuksen"
+
+#: mod/settings.php:1261
+msgid "You are tagged in a post"
+msgstr "Sinut on merkitty julkaisuun"
+
+#: mod/settings.php:1262
+msgid "You are poked/prodded/etc. in a post"
+msgstr ""
+
+#: mod/settings.php:1264
+msgid "Activate desktop notifications"
+msgstr "Ota työpöytäilmoitukset käyttöön"
+
+#: mod/settings.php:1264
+msgid "Show desktop popup on new notifications"
+msgstr ""
+
+#: mod/settings.php:1266
+msgid "Text-only notification emails"
+msgstr ""
+
+#: mod/settings.php:1268
+msgid "Send text only notification emails, without the html part"
+msgstr ""
+
+#: mod/settings.php:1270
+msgid "Show detailled notifications"
+msgstr ""
+
+#: mod/settings.php:1272
+msgid ""
+"Per default, notifications are condensed to a single notification per item. "
+"When enabled every notification is displayed."
+msgstr ""
+
+#: mod/settings.php:1274
+msgid "Advanced Account/Page Type Settings"
+msgstr "Käyttäjätili/sivutyyppi lisäasetuksia"
+
+#: mod/settings.php:1275
+msgid "Change the behaviour of this account for special situations"
+msgstr ""
+
+#: mod/settings.php:1278
+msgid "Relocate"
+msgstr ""
+
+#: mod/settings.php:1279
+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:1280
+msgid "Resend relocate message to contacts"
+msgstr ""
+
+#: mod/directory.php:152 src/Model/Profile.php:421 src/Model/Profile.php:769
+msgid "Status:"
+msgstr "Tila:"
+
+#: mod/directory.php:153 src/Model/Profile.php:422 src/Model/Profile.php:786
+msgid "Homepage:"
+msgstr "Kotisivu:"
+
+#: 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:209 mod/contacts.php:820 src/Content/Widget.php:63
+msgid "Find"
+msgstr "Etsi"
+
+#: mod/directory.php:213
+msgid "No entries (some entries may be hidden)."
+msgstr ""
+
+#: mod/babel.php:22
+msgid "Source input"
+msgstr ""
+
+#: mod/babel.php:28
+msgid "BBCode::convert (raw HTML)"
+msgstr "BBCode::convert (raaka HTML)"
+
+#: mod/babel.php:33
+msgid "BBCode::convert"
+msgstr "BBCode::convert"
+
+#: mod/babel.php:39
+msgid "BBCode::convert => HTML::toBBCode"
+msgstr "BBCode::convert => HTML::toBBCode"
+
+#: mod/babel.php:45
+msgid "BBCode::toMarkdown"
+msgstr "BBCode::toMarkdown"
+
+#: mod/babel.php:51
+msgid "BBCode::toMarkdown => Markdown::convert"
+msgstr "BBCode::toMarkdown => Markdown::convert"
+
+#: mod/babel.php:57
+msgid "BBCode::toMarkdown => Markdown::toBBCode"
+msgstr "BBCode::toMarkdown => Markdown::toBBCode"
+
+#: mod/babel.php:63
+msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
+msgstr "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
+
+#: mod/babel.php:70
+msgid "Source input \\x28Diaspora format\\x29"
+msgstr ""
+
+#: mod/babel.php:76
+msgid "Markdown::toBBCode"
+msgstr "Markdown::toBBCode"
+
+#: mod/babel.php:83
+msgid "Raw HTML input"
+msgstr "Raaka HTML-syöte"
+
+#: mod/babel.php:88
+msgid "HTML Input"
+msgstr "HTML-syöte"
+
+#: mod/babel.php:94
+msgid "HTML::toBBCode"
+msgstr "HTML::toBBCode"
+
+#: mod/babel.php:100
+msgid "HTML::toPlaintext"
+msgstr "HTML::toPlaintext"
+
+#: mod/babel.php:108
+msgid "Source text"
+msgstr "Lähdeteksti"
+
+#: mod/babel.php:109
+msgid "BBCode"
+msgstr "BBCode"
+
+#: mod/babel.php:110
+msgid "Markdown"
+msgstr ""
+
+#: mod/babel.php:111
+msgid "HTML"
+msgstr "HTML"
+
+#: 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 ""
+
+#: mod/follow.php:83
+msgid "Diaspora support isn't enabled. Contact can't be added."
+msgstr ""
+
+#: mod/follow.php:90
+msgid "OStatus support is disabled. Contact can't be added."
+msgstr ""
+
+#: mod/follow.php:97
+msgid "The network type couldn't be detected. Contact can't be added."
+msgstr ""
+
+#: 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 ""
+
+#: 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 &ldquo;%3$s&rdquo;"
+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 ""
+
+#: 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 "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 ""
+
+#: 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 ""
+
+#: mod/profiles.php:685
+msgid "Additional information"
+msgstr "Lisätietoja"
+
+#: mod/profiles.php:688
+msgid "Relation"
+msgstr ""
+
+#: 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 "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr ""
+
+#: mod/profiles.php:694 src/Model/Profile.php:782
+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 <strong>public</strong> profile.<br />It <strong>may</strong> "
+"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 ""
+
+#: 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:790
+msgid "Hometown:"
+msgstr "Kotikaupunki:"
+
+#: mod/profiles.php:722 src/Model/Profile.php:798
+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 ""
+
+#: mod/profiles.php:725
+msgid "Private Keywords:"
+msgstr "Yksityiset avainsanat:"
+
+#: mod/profiles.php:725
+msgid "(Used for searching profiles, never shown to others)"
+msgstr ""
+
+#: mod/profiles.php:726 src/Model/Profile.php:814
+msgid "Likes:"
+msgstr "Tykkäykset:"
+
+#: mod/profiles.php:727 src/Model/Profile.php:818
+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/contacts.php:157
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d kontakti muokattu"
+msgstr[1] "%d kontakteja muokattu"
+
+#: mod/contacts.php:184 mod/contacts.php:400
+msgid "Could not access contact record."
+msgstr "Yhteystietoon ei päästä käsiksi."
+
+#: mod/contacts.php:194
+msgid "Could not locate selected profile."
+msgstr "Valittua profiilia ei löydy."
+
+#: mod/contacts.php:228
+msgid "Contact updated."
+msgstr "Yhteystietopäivitys onnistui."
+
+#: mod/contacts.php:421
+msgid "Contact has been blocked"
+msgstr "Henkilö on estetty"
+
+#: mod/contacts.php:421
+msgid "Contact has been unblocked"
+msgstr "Henkilö on jälleen sallittu"
+
+#: mod/contacts.php:432
+msgid "Contact has been ignored"
+msgstr "Henkilöä ei enää huomioida"
+
+#: mod/contacts.php:432
+msgid "Contact has been unignored"
+msgstr "Henkilö on jälleen huomioituna."
+
+#: mod/contacts.php:443
+msgid "Contact has been archived"
+msgstr "Henkilö on arkistoitu."
+
+#: mod/contacts.php:443
+msgid "Contact has been unarchived"
+msgstr "Henkilö on otettu pois arkistosta."
+
+#: 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 "Haluatko todella poistaa tämän yhteystiedon?"
+
+#: mod/contacts.php:488
+msgid "Contact has been removed."
+msgstr "Yhteystieto on poistettu."
+
+#: mod/contacts.php:519
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Olet kaveri %s kanssa."
+
+#: mod/contacts.php:523
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Olet jakanut jotakin %s:n kanssa"
+
+#: mod/contacts.php:527
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s jakaa sinulle jotakin."
+
+#: mod/contacts.php:547
+msgid "Private communications are not available for this contact."
+msgstr "Yksityiskeskustelu ei ole käytettävissä tälle henkilölle."
+
+#: mod/contacts.php:549
+msgid "Never"
+msgstr "Ei koskaan"
+
+#: mod/contacts.php:552
+msgid "(Update was successful)"
+msgstr "(Päivitys onnistui)"
+
+#: mod/contacts.php:552
+msgid "(Update was not successful)"
+msgstr "(Päivitys epäonnistui)"
+
+#: mod/contacts.php:554 mod/contacts.php:992
+msgid "Suggest friends"
+msgstr "Ehdota ystäviä"
+
+#: mod/contacts.php:558
+#, php-format
+msgid "Network type: %s"
+msgstr "Verkkotyyppi: %s"
+
+#: mod/contacts.php:563
+msgid "Communications lost with this contact!"
+msgstr "Yhteys tähän henkilöön menetettiin!"
+
+#: 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 "Pois käytöstä"
+
+#: mod/contacts.php:573
+msgid "Fetch information"
+msgstr "Nouda tiedot"
+
+#: mod/contacts.php:574
+msgid "Fetch keywords"
+msgstr "Nouda avainsanat"
+
+#: mod/contacts.php:575
+msgid "Fetch information and keywords"
+msgstr "Nouda tiedot ja avainsanat"
+
+#: mod/contacts.php:608
+msgid "Contact"
+msgstr "Kontakti"
+
+#: mod/contacts.php:611
+msgid "Profile Visibility"
+msgstr "Profiilin näkyvyys"
+
+#: mod/contacts.php:612
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Valitse profiili, jonka haluat näyttää %s:lle, kun hän haluaa katsoa profiiliasi turvallisesti."
+
+#: mod/contacts.php:613
+msgid "Contact Information / Notes"
+msgstr "Yhteystiedot / Muistiinpanot"
+
+#: mod/contacts.php:614
+msgid "Their personal note"
+msgstr ""
+
+#: mod/contacts.php:616
+msgid "Edit contact notes"
+msgstr "Muokkaa yhteystietojen muistiinpanoja"
+
+#: mod/contacts.php:620
+msgid "Block/Unblock contact"
+msgstr "Estä/salli henkilö"
+
+#: mod/contacts.php:621
+msgid "Ignore contact"
+msgstr "Jätä henkilö huomiotta"
+
+#: mod/contacts.php:622
+msgid "Repair URL settings"
+msgstr "Korjaa URL-asetukset"
+
+#: mod/contacts.php:623
+msgid "View conversations"
+msgstr "Katso keskusteluja"
+
+#: mod/contacts.php:628
+msgid "Last update:"
+msgstr "Viimeksi päivitetty:"
+
+#: mod/contacts.php:630
+msgid "Update public posts"
+msgstr "Päivitä julkiset postaukset"
+
+#: mod/contacts.php:632 mod/contacts.php:1002
+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"
+
+#: mod/contacts.php:642
+msgid "Currently blocked"
+msgstr "Estetty tällä hetkellä"
+
+#: mod/contacts.php:643
+msgid "Currently ignored"
+msgstr "Jätetty huomiotta tällä hetkellä"
+
+#: mod/contacts.php:644
+msgid "Currently archived"
+msgstr "Arkistoitu tällä hetkellä"
+
+#: mod/contacts.php:645
+msgid "Awaiting connection acknowledge"
+msgstr ""
+
+#: mod/contacts.php:646
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr ""
+
+#: mod/contacts.php:647
+msgid "Notification for new posts"
+msgstr "Uusien postausten ilmoitus"
+
+#: mod/contacts.php:647
+msgid "Send a notification of every new post of this contact"
+msgstr "Lähetä ilmoitus tälle henkilölle kaikista uusista postauksista"
+
+#: mod/contacts.php:650
+msgid "Blacklisted keywords"
+msgstr "Kielletyt avainsanat"
+
+#: 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 "XMPP:"
+
+#: mod/contacts.php:667
+msgid "Actions"
+msgstr "Toimenpiteet"
+
+#: mod/contacts.php:669 mod/contacts.php:855 src/Content/Nav.php:100
+#: src/Model/Profile.php:888 view/theme/frio/theme.php:259
+msgid "Status"
+msgstr "Tila"
+
+#: mod/contacts.php:670
+msgid "Contact Settings"
+msgstr "Yhteystietoasetukset"
+
+#: mod/contacts.php:711
+msgid "Suggestions"
+msgstr "Ehdotukset"
+
+#: mod/contacts.php:714
+msgid "Suggest potential friends"
+msgstr "Ehdota mahdollisille ystäville"
+
+#: mod/contacts.php:722
+msgid "Show all contacts"
+msgstr "Näytä kaikki yhteystiedot"
+
+#: mod/contacts.php:727
+msgid "Unblocked"
+msgstr "Sallittu"
+
+#: mod/contacts.php:730
+msgid "Only show unblocked contacts"
+msgstr "Näytä vain sallitut henkilöt"
+
+#: mod/contacts.php:735
+msgid "Blocked"
+msgstr "Estetty"
+
+#: mod/contacts.php:738
+msgid "Only show blocked contacts"
+msgstr "Näytä vain estetyt henkilöt"
+
+#: mod/contacts.php:743
+msgid "Ignored"
+msgstr "Jätetty huomiotta"
+
+#: mod/contacts.php:746
+msgid "Only show ignored contacts"
+msgstr "Näytä vain henkilöt, jotka jätetty huomiotta"
+
+#: mod/contacts.php:751
+msgid "Archived"
+msgstr "Arkistoitu"
+
+#: mod/contacts.php:754
+msgid "Only show archived contacts"
+msgstr "Näytä vain arkistoidut henkilöt"
+
+#: mod/contacts.php:759
+msgid "Hidden"
+msgstr "Piilotettu"
+
+#: mod/contacts.php:762
+msgid "Only show hidden contacts"
+msgstr "Näytä vain piilotetut henkilöt"
+
+#: mod/contacts.php:818
+msgid "Search your contacts"
+msgstr "Etsi henkilöitä"
+
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Archive"
+msgstr "Arkistoi"
+
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Unarchive"
+msgstr "Poista arkistosta"
+
+#: mod/contacts.php:832
+msgid "Batch Actions"
+msgstr ""
+
+#: mod/contacts.php:866 src/Model/Profile.php:899
+msgid "Profile Details"
+msgstr "Profiilitiedot"
+
+#: mod/contacts.php:878
+msgid "View all contacts"
+msgstr "Näytä kaikki kontaktit"
+
+#: mod/contacts.php:889
+msgid "View all common friends"
+msgstr "Näytä kaikki yhteiset kaverit"
+
+#: mod/contacts.php:898
+msgid "Advanced Contact Settings"
+msgstr "Kontakti-lisäasetukset"
+
+#: mod/contacts.php:930
+msgid "Mutual Friendship"
+msgstr ""
+
+#: mod/contacts.php:934
+msgid "is a fan of yours"
+msgstr "on fanisi"
+
+#: mod/contacts.php:938
+msgid "you are a fan of"
+msgstr "fanitat"
+
+#: mod/contacts.php:1013
+msgid "Toggle Blocked status"
+msgstr "Estetty tila päälle/pois"
+
+#: mod/contacts.php:1021
+msgid "Toggle Ignored status"
+msgstr ""
+
+#: mod/contacts.php:1029
+msgid "Toggle Archive status"
+msgstr "Arkistotila päälle/pois"
+
+#: mod/contacts.php:1037
+msgid "Delete contact"
+msgstr "Poista kontakti"
+
+#: mod/_tos.php:48 mod/register.php:288 mod/admin.php:188 mod/admin.php:302
+#: src/Module/Tos.php:48
+msgid "Terms of Service"
+msgstr "Käyttöehdot"
+
+#: mod/_tos.php:51 src/Module/Tos.php:51
+msgid "Privacy Statement"
+msgstr "Tietosuojalausunto"
+
+#: mod/_tos.php:52 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 ""
+
+#: mod/_tos.php:53 src/Module/Tos.php:53
+#, php-format
+msgid ""
+"At any point in time a logged in user can export their account data from the"
+" <a href=\"%1$s/settings/uexport\">account settings</a>. If the user wants "
+"to delete their account they can do so at <a "
+"href=\"%1$s/removeme\">%1$s/removeme</a>. The deletion of the account will "
+"be permanent."
+msgstr ""
+
+#: 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 <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
+"about the Friendica project."
+msgstr ""
+
+#: mod/friendica.php:86
+msgid "Bug reports and issues: please visit"
+msgstr "Bugiraportit ja kysymykset: vieraile osoitteessa"
+
+#: mod/friendica.php:86
+msgid "the bugtracker at github"
+msgstr "githubin bugtrackeri"
+
+#: mod/friendica.php:89
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Ehdotuksia, kiitoksia, lahjoituksia, jne. voi lähettää osoitteeseen \"Info\" at Friendica - piste com"
+
+#: 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 "Read about the <a href=\"%1$s/tos\">Terms of Service</a> 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 "Eston syy"
+
+#: mod/lostpass.php:27
+msgid "No valid account found."
+msgstr ""
+
+#: mod/lostpass.php:39
+msgid "Password reset request issued. Check your email."
+msgstr ""
+
+#: 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 ""
+
+#: mod/lostpass.php:89
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr ""
+
+#: mod/lostpass.php:102
+msgid "Request has expired, please make a new one."
+msgstr ""
+
+#: 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 ""
+
+#: 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 <em>Settings</em> page after "
+"successful login."
+msgstr ""
+
+#: 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 ""
+
+#: mod/lostpass.php:169
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Salasanasi on vaihdettu sivustolla %s"
+
+#: mod/register.php:99
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr ""
+
+#: mod/register.php:103
+#, php-format
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr ""
+
+#: mod/register.php:110
+msgid "Registration successful."
+msgstr "Rekisteröityminen onnistui."
+
+#: mod/register.php:115
+msgid "Your registration can not be processed."
+msgstr ""
+
+#: mod/register.php:162
+msgid "Your registration is pending approval by the site owner."
+msgstr ""
+
+#: mod/register.php:220
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr ""
+
+#: mod/register.php:221
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr ""
+
+#: mod/register.php:222
+msgid "Your OpenID (optional): "
+msgstr "OpenID -tunnus (valinnainen):"
+
+#: mod/register.php:234
+msgid "Include your profile in member directory?"
+msgstr ""
+
+#: mod/register.php:259
+msgid "Note for the admin"
+msgstr "Viesti ylläpidolle"
+
+#: mod/register.php:259
+msgid "Leave a message for the admin, why you want to join this node"
+msgstr ""
+
+#: mod/register.php:260
+msgid "Membership on this site is by invitation only."
+msgstr ""
+
+#: mod/register.php:261
+msgid "Your invitation code: "
+msgstr "Kutsukoodisi:"
+
+#: mod/register.php:264 mod/admin.php:1348
+msgid "Registration"
+msgstr "Rekisteröityminen"
+
+#: mod/register.php:270
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+msgstr ""
+
+#: mod/register.php:271
+msgid ""
+"Your Email Address: (Initial information will be send there, so this has to "
+"be an existing address.)"
+msgstr ""
+
+#: mod/register.php:273
+msgid "Leave empty for an auto generated password."
+msgstr ""
+
+#: mod/register.php:275
+#, php-format
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be '<strong>nickname@%s</strong>'."
+msgstr ""
+
+#: mod/register.php:276
+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/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:186 mod/admin.php:2173 mod/admin.php:2217
+msgid "Themes"
+msgstr "Teemat"
+
+#: 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 ""
+
+#: mod/admin.php:194 mod/admin.php:362
+msgid "Server Blocklist"
+msgstr ""
+
+#: 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 ""
+
+#: mod/admin.php:224
+msgid "User registrations waiting for confirmation"
+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
+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 <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
+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:367
+msgid "The reason why you blocked this domain."
+msgstr ""
+
+#: mod/admin.php:355
+msgid "Delete domain"
+msgstr "Poista verkkotunnus"
+
+#: mod/admin.php:355
+msgid "Check to delete this entry from the blocklist"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: mod/admin.php:368
+msgid "Add Entry"
+msgstr "Lisää merkintä"
+
+#: mod/admin.php:369
+msgid "Save changes to the blocklist"
+msgstr ""
+
+#: mod/admin.php:370
+msgid "Current Entries in the Blocklist"
+msgstr ""
+
+#: mod/admin.php:373
+msgid "Delete entry from blocklist"
+msgstr ""
+
+#: mod/admin.php:376
+msgid "Delete entry from blocklist?"
+msgstr ""
+
+#: mod/admin.php:402
+msgid "Server added to blocklist."
+msgstr ""
+
+#: mod/admin.php:418
+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"
+msgid_plural "%s contacts unblocked"
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/admin.php:479
+msgid "Remote Contact Blocklist"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: mod/admin.php:489
+msgid "Block New Remote Contact"
+msgstr ""
+
+#: mod/admin.php:490
+msgid "Photo"
+msgstr "Kuva"
+
+#: mod/admin.php:498
+#, php-format
+msgid "%s total blocked contact"
+msgid_plural "%s total blocked contacts"
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/admin.php:500
+msgid "URL of the remote contact to block."
+msgstr ""
+
+#: 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 ""
+
+#: mod/admin.php:564
+msgid "Item marked for deletion."
+msgstr ""
+
+#: 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 <em>Auto Discovered Contact Directory</em> 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 src/Core/NotificationsManager.php:178
+#: src/Content/Nav.php:178 view/theme/frio/theme.php:266
+msgid "Network"
+msgstr "Verkko"
+
+#: mod/admin.php:759
+msgid "Created"
+msgstr "Luotu"
+
+#: mod/admin.php:760
+msgid "Last Tried"
+msgstr ""
+
+#: 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 <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php "
+"bin/console.php dbstructure toinnodb</tt> of your Friendica installation for"
+" an automatic conversion.<br />"
+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 ""
+
+#: mod/admin.php:818 mod/admin.php:1741
+msgid "Public Forum Account"
+msgstr ""
+
+#: mod/admin.php:819 mod/admin.php:1742
+msgid "Automatic Friend Account"
+msgstr ""
+
+#: mod/admin.php:820
+msgid "Blog Account"
+msgstr ""
+
+#: mod/admin.php:821
+msgid "Private Forum Account"
+msgstr ""
+
+#: 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 ""
+
+#: mod/admin.php:853
+msgid "Pending registrations"
+msgstr ""
+
+#: mod/admin.php:854
+msgid "Version"
+msgstr "Versio"
+
+#: mod/admin.php:859
+msgid "Active addons"
+msgstr ""
+
+#: mod/admin.php:890
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr ""
+
+#: mod/admin.php:1209
+msgid "Site settings updated."
+msgstr "Sivuston asetukset päivitettiin."
+
+#: mod/admin.php:1265
+msgid "No community page"
+msgstr ""
+
+#: mod/admin.php:1266
+msgid "Public postings from users of this site"
+msgstr ""
+
+#: mod/admin.php:1267
+msgid "Public postings from the federated network"
+msgstr ""
+
+#: mod/admin.php:1268
+msgid "Public postings from local users and the federated network"
+msgstr ""
+
+#: mod/admin.php:1274
+msgid "Users, Global Contacts"
+msgstr ""
+
+#: 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 ""
+
+#: mod/admin.php:1310
+msgid "Closed"
+msgstr "Suljettu"
+
+#: mod/admin.php:1311
+msgid "Requires approval"
+msgstr ""
+
+#: 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 ""
+
+#: 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:1349
+msgid "File upload"
+msgstr "Tiedoston lataus"
+
+#: mod/admin.php:1350
+msgid "Policies"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: mod/admin.php:1363
+msgid "Shortcut icon"
+msgstr ""
+
+#: mod/admin.php:1363
+msgid "Link to an icon that will be used for browsers."
+msgstr ""
+
+#: mod/admin.php:1364
+msgid "Touch icon"
+msgstr ""
+
+#: 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 ""
+
+#: mod/admin.php:1367
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr ""
+
+#: mod/admin.php:1368
+msgid "Mobile system theme"
+msgstr ""
+
+#: mod/admin.php:1368
+msgid "Theme for mobile devices"
+msgstr ""
+
+#: mod/admin.php:1369
+msgid "SSL link policy"
+msgstr ""
+
+#: mod/admin.php:1369
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr ""
+
+#: mod/admin.php:1370
+msgid "Force SSL"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: mod/admin.php:1379
+msgid ""
+"Will be displayed prominently on the registration page. You can use BBCode "
+"here."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 <a"
+" href='http://the-federation.info/'>the-federation.info</a> 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 src/Model/User.php:615
+#, 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:649
+#, 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] ""
+msgstr[1] ""
+
+#: 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 ""
+
+#: mod/admin.php:1682
+#, php-format
+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"
+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: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 ""
+
+#: 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 ""
+
+#: 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 <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
+"if file %1$s exist and is readable."
+msgstr ""
+
+#: mod/admin.php:2337
+#, php-format
+msgid ""
+"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file"
+" %1$s is readable."
+msgstr ""
+
+#: mod/admin.php:2429
+#, php-format
+msgid "Lock feature %s"
+msgstr ""
+
+#: mod/admin.php:2437
+msgid "Manage Additional Features"
+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/NotificationsManager.php:171
+msgid "System"
+msgstr ""
+
+#: 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 ""
+
+#: 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 "%s loi uuden julkaisun"
+
+#: 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 "Kaveriehdotus"
+
+#: src/Core/NotificationsManager.php:851
+msgid "Friend/Connect Request"
+msgstr "Ystävä/yhteyspyyntö"
+
+#: src/Core/NotificationsManager.php:851
+msgid "New Follower"
+msgstr ""
+
+#: 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 ""
+
+#: 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:319
+msgid "Close"
+msgstr "Sulje"
+
+#: src/Util/Temporal.php:147 src/Model/Profile.php:758
+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 ""
+
+#: src/Content/Text/BBCode.php:552
+msgid "view full size"
+msgstr "näytä täysikokoisena"
+
+#: src/Content/Text/BBCode.php:978 src/Content/Text/BBCode.php:1739
+#: src/Content/Text/BBCode.php:1740
+msgid "Image/photo"
+msgstr "Kuva/valokuva"
+
+#: src/Content/Text/BBCode.php:1116
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr ""
+
+#: src/Content/Text/BBCode.php:1674 src/Content/Text/BBCode.php:1696
+msgid "$1 wrote:"
+msgstr "$1 kirjoitti:"
+
+#: src/Content/Text/BBCode.php:1748 src/Content/Text/BBCode.php:1749
+msgid "Encrypted content"
+msgstr "Salattu sisältö"
+
+#: src/Content/Text/BBCode.php:1866
+msgid "Invalid source protocol"
+msgstr ""
+
+#: src/Content/Text/BBCode.php:1877
+msgid "Invalid link protocol"
+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 "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 src/Model/Profile.php:912 src/Model/Profile.php:915
+#: view/theme/frio/theme.php:262
+msgid "Videos"
+msgstr "Videot"
+
+#: 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
+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 ""
+
+#: 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 ""
+
+#: 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:169 src/Model/Profile.php:927 src/Model/Profile.php:938
+#: view/theme/frio/theme.php:267
+msgid "Events and Calendar"
+msgstr "Tapahtumat ja kalenteri"
+
+#: 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 ""
+
+#: 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 "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:195 view/theme/frio/theme.php:268
+msgid "Private mail"
+msgstr "Yksityinen posti"
+
+#: 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:206 view/theme/frio/theme.php:269
+msgid "Account settings"
+msgstr "Tiliasetukset"
+
+#: 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:212 view/theme/frio/theme.php:270
+msgid "Manage/edit friends and contacts"
+msgstr "Hallitse/muokkaa kaverit ja kontaktit"
+
+#: src/Content/Nav.php:217
+msgid "Site setup and configuration"
+msgstr ""
+
+#: src/Content/Nav.php:220
+msgid "Navigation"
+msgstr "Navigointi"
+
+#: src/Content/Nav.php:220
+msgid "Site map"
+msgstr "Sivustokartta"
+
+#: src/Content/OEmbed.php:253
+msgid "Embedding disabled"
+msgstr ""
+
+#: 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/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 ""
+
+#: 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 ""
+
+#: 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 "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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: src/Content/Feature.php:129
+msgid "Display membership date in profile"
+msgstr ""
+
+#: 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 ""
+
+#: 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] ""
+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:65 view/theme/vier/theme.php:202
+msgid "Similar Interests"
+msgstr ""
+
+#: 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 ""
+
+#: 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] ""
+msgstr[1] ""
+
+#: 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 ""
+
+#: src/Content/ContactSelector.php:93
+msgid "GNU Social Connector"
+msgstr ""
+
+#: 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 ""
+
+#: 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 "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 ""
+
+#: 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 "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 ""
+
+#: 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 "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 ""
+
+#: 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:505
+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 ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Common law"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ": 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/Profile.php:97
+msgid "Requested account is not available."
+msgstr ""
+
+#: src/Model/Profile.php:168 src/Model/Profile.php:399
+#: src/Model/Profile.php:859
+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:548 src/Model/Profile.php:641
+msgid "g A l F d"
+msgstr ""
+
+#: src/Model/Profile.php:549
+msgid "F d"
+msgstr ""
+
+#: src/Model/Profile.php:606 src/Model/Profile.php:703
+msgid "[today]"
+msgstr "[tänään]"
+
+#: src/Model/Profile.php:617
+msgid "Birthday Reminders"
+msgstr "Syntymäpäivämuistutukset"
+
+#: src/Model/Profile.php:618
+msgid "Birthdays this week:"
+msgstr "Syntymäpäiviä tällä viikolla:"
+
+#: src/Model/Profile.php:690
+msgid "[No description]"
+msgstr "[Ei kuvausta]"
+
+#: src/Model/Profile.php:717
+msgid "Event Reminders"
+msgstr "Tapahtumamuistutukset"
+
+#: src/Model/Profile.php:718
+msgid "Events this week:"
+msgstr "Tapahtumia tällä viikolla:"
+
+#: src/Model/Profile.php:741
+msgid "Member since:"
+msgstr ""
+
+#: src/Model/Profile.php:749
+msgid "j F, Y"
+msgstr ""
+
+#: src/Model/Profile.php:750
+msgid "j F"
+msgstr ""
+
+#: src/Model/Profile.php:765
+msgid "Age:"
+msgstr "Ikä:"
+
+#: src/Model/Profile.php:778
+#, php-format
+msgid "for %1$d %2$s"
+msgstr ""
+
+#: src/Model/Profile.php:802
+msgid "Religion:"
+msgstr "Uskonto:"
+
+#: src/Model/Profile.php:810
+msgid "Hobbies/Interests:"
+msgstr "Harrastukset:"
+
+#: src/Model/Profile.php:822
+msgid "Contact information and Social Networks:"
+msgstr "Yhteystiedot ja sosiaalinen media:"
+
+#: src/Model/Profile.php:826
+msgid "Musical interests:"
+msgstr "Musiikki:"
+
+#: src/Model/Profile.php:830
+msgid "Books, literature:"
+msgstr "Kirjat, kirjallisuus:"
+
+#: src/Model/Profile.php:834
+msgid "Television:"
+msgstr "Televisio:"
+
+#: src/Model/Profile.php:838
+msgid "Film/dance/culture/entertainment:"
+msgstr "Elokuvat/tanssit/kulttuuri/viihde:"
+
+#: src/Model/Profile.php:842
+msgid "Love/Romance:"
+msgstr "Rakkaus/romanssi:"
+
+#: src/Model/Profile.php:846
+msgid "Work/employment:"
+msgstr "Työ:"
+
+#: src/Model/Profile.php:850
+msgid "School/education:"
+msgstr "Koulutus:"
+
+#: src/Model/Profile.php:855
+msgid "Forums:"
+msgstr "Foorumit:"
+
+#: src/Model/Profile.php:949
+msgid "Only You Can See This"
+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/Group.php:44
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr ""
+
+#: src/Model/Group.php:328
+msgid "Default privacy group for new contacts"
+msgstr ""
+
+#: src/Model/Group.php:361
+msgid "Everybody"
+msgstr "Kaikki"
+
+#: src/Model/Group.php:381
+msgid "edit"
+msgstr "muokkaa"
+
+#: src/Model/Group.php:405
+msgid "Edit group"
+msgstr "Muokkaa ryhmää"
+
+#: src/Model/Group.php:406
+msgid "Contacts not in any group"
+msgstr ""
+
+#: src/Model/Group.php:407
+msgid "Create a new group"
+msgstr "Luo uusi ryhmä"
+
+#: src/Model/Group.php:409
+msgid "Edit groups"
+msgstr "Muokkaa ryhmiä"
+
+#: src/Model/Contact.php:645
+msgid "Drop Contact"
+msgstr ""
+
+#: src/Model/Contact.php:1048
+msgid "Organisation"
+msgstr "Järjestö"
+
+#: src/Model/Contact.php:1051
+msgid "News"
+msgstr "Uutiset"
+
+#: src/Model/Contact.php:1054
+msgid "Forum"
+msgstr "Keskustelupalsta"
+
+#: src/Model/Contact.php:1233
+msgid "Connect URL missing."
+msgstr ""
+
+#: src/Model/Contact.php:1242
+msgid ""
+"The contact could not be added. Please check the relevant network "
+"credentials in your Settings -> Social Networks page."
+msgstr ""
+
+#: src/Model/Contact.php:1289
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr ""
+
+#: src/Model/Contact.php:1290 src/Model/Contact.php:1304
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr ""
+
+#: src/Model/Contact.php:1302
+msgid "The profile address specified does not provide adequate information."
+msgstr ""
+
+#: src/Model/Contact.php:1307
+msgid "An author or name was not found."
+msgstr ""
+
+#: src/Model/Contact.php:1310
+msgid "No browser URL could be matched to this address."
+msgstr ""
+
+#: src/Model/Contact.php:1313
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr ""
+
+#: src/Model/Contact.php:1314
+msgid "Use mailto: in front of address to force email check."
+msgstr ""
+
+#: src/Model/Contact.php:1320
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr ""
+
+#: src/Model/Contact.php:1325
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr ""
+
+#: src/Model/Contact.php:1376
+msgid "Unable to retrieve contact information."
+msgstr ""
+
+#: src/Model/Contact.php:1588
+#, php-format
+msgid "%s's birthday"
+msgstr "%s: syntymäpäivä"
+
+#: src/Model/Contact.php:1589 src/Protocol/DFRN.php:1478
+#, 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 ""
+
+#: 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/User.php:144
+msgid "Login failed"
+msgstr "Kirjautuminen epäonnistui"
+
+#: src/Model/User.php:175
+msgid "Not enough information to authenticate"
+msgstr ""
+
+#: src/Model/User.php:332
+msgid "An invitation is required."
+msgstr ""
+
+#: src/Model/User.php:336
+msgid "Invitation could not be verified."
+msgstr "Kutsua ei voitu vahvistaa."
+
+#: src/Model/User.php:343
+msgid "Invalid OpenID url"
+msgstr "Virheellinen OpenID url-osoite"
+
+#: src/Model/User.php:356 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:356 src/Module/Login.php:100
+msgid "The error message was:"
+msgstr "Virheviesti oli:"
+
+#: src/Model/User.php:362
+msgid "Please enter the required information."
+msgstr ""
+
+#: src/Model/User.php:375
+msgid "Please use a shorter name."
+msgstr ""
+
+#: src/Model/User.php:378
+msgid "Name too short."
+msgstr "Nimi on liian lyhyt."
+
+#: src/Model/User.php:386
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr ""
+
+#: src/Model/User.php:391
+msgid "Your email domain is not among those allowed on this site."
+msgstr ""
+
+#: src/Model/User.php:395
+msgid "Not a valid email address."
+msgstr "Virheellinen sähköpostiosoite."
+
+#: src/Model/User.php:399 src/Model/User.php:407
+msgid "Cannot use that email."
+msgstr ""
+
+#: src/Model/User.php:414
+msgid "Your nickname can only contain a-z, 0-9 and _."
+msgstr ""
+
+#: src/Model/User.php:421 src/Model/User.php:477
+msgid "Nickname is already registered. Please choose another."
+msgstr ""
+
+#: src/Model/User.php:431
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr ""
+
+#: src/Model/User.php:464 src/Model/User.php:468
+msgid "An error occurred during registration. Please try again."
+msgstr ""
+
+#: src/Model/User.php:488 view/theme/duepuntozero/config.php:54
+msgid "default"
+msgstr "oletus"
+
+#: src/Model/User.php:493
+msgid "An error occurred creating your default profile. Please try again."
+msgstr ""
+
+#: src/Model/User.php:500
+msgid "An error occurred creating your self contact. Please try again."
+msgstr ""
+
+#: src/Model/User.php:509
+msgid ""
+"An error occurred creating your default contact group. Please try again."
+msgstr ""
+
+#: src/Model/User.php:583
+#, 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:593
+#, php-format
+msgid "Registration at %s"
+msgstr ""
+
+#: src/Model/User.php:611
+#, 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/Protocol/OStatus.php:1799
+#, php-format
+msgid "%s is now following %s."
+msgstr ""
+
+#: src/Protocol/OStatus.php:1800
+msgid "following"
+msgstr "seuraa"
+
+#: 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:1477
+#, php-format
+msgid "%s\\'s birthday"
+msgstr ""
+
+#: src/Protocol/Diaspora.php:2651
+msgid "Sharing notification from Diaspora network"
+msgstr ""
+
+#: src/Protocol/Diaspora.php:3736
+msgid "Attachments:"
+msgstr "Liitteitä:"
+
+#: src/Worker/Delivery.php:392
+msgid "(no subject)"
+msgstr "(ei aihetta)"
+
+#: src/Object/Post.php:128
+msgid "This entry was edited"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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:359
+msgid "to"
+msgstr ""
+
+#: src/Object/Post.php:360
+msgid "via"
+msgstr "kautta"
+
+#: src/Object/Post.php:361
+msgid "Wall-to-Wall"
+msgstr ""
+
+#: src/Object/Post.php:362
+msgid "via Wall-To-Wall:"
+msgstr ""
+
+#: src/Object/Post.php:421
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d kommentti"
+msgstr[1] "%d kommentteja"
+
+#: src/Object/Post.php:791
+msgid "Bold"
+msgstr "Lihavoitu"
+
+#: src/Object/Post.php:792
+msgid "Italic"
+msgstr "Kursivoitu"
+
+#: src/Object/Post.php:793
+msgid "Underline"
+msgstr "Alleviivaus"
+
+#: src/Object/Post.php:794
+msgid "Quote"
+msgstr "Lainaus"
+
+#: src/Object/Post.php:795
+msgid "Code"
+msgstr "Koodi"
+
+#: src/Object/Post.php:796
+msgid "Image"
+msgstr "Kuva"
+
+#: src/Object/Post.php:797
+msgid "Link"
+msgstr "Linkki"
+
+#: src/Object/Post.php:798
+msgid "Video"
+msgstr "Video"
+
+#: 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 ""
+
+#: 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"
+
+#: 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 ""
+
+#: view/theme/frio/php/Image.php:25
+msgid "Repeat the image"
+msgstr "Toista kuva"
+
+#: view/theme/frio/php/Image.php:25
+msgid "Will repeat your image to fill the background."
+msgstr ""
+
+#: view/theme/frio/php/Image.php:27
+msgid "Stretch"
+msgstr "Venytä"
+
+#: view/theme/frio/php/Image.php:27
+msgid "Will stretch to width/height of the image."
+msgstr ""
+
+#: view/theme/frio/php/Image.php:29
+msgid "Resize fill and-clip"
+msgstr ""
+
+#: view/theme/frio/php/Image.php:29
+msgid "Resize to fill and retain aspect ratio."
+msgstr ""
+
+#: view/theme/frio/php/Image.php:31
+msgid "Resize best fit"
+msgstr ""
+
+#: view/theme/frio/php/Image.php:31
+msgid "Resize to best fit and retain aspect ratio."
+msgstr ""
+
+#: view/theme/frio/config.php:97
+msgid "Default"
+msgstr "Oletus"
+
+#: view/theme/frio/config.php:109
+msgid "Note"
+msgstr ""
+
+#: view/theme/frio/config.php:109
+msgid "Check image permissions if all users are allowed to visit the image"
+msgstr ""
+
+#: view/theme/frio/config.php:116
+msgid "Select scheme"
+msgstr "Valitse malli"
+
+#: view/theme/frio/config.php:117
+msgid "Navigation bar background color"
+msgstr "Navigointipalkin taustaväri"
+
+#: view/theme/frio/config.php:118
+msgid "Navigation bar icon color "
+msgstr "Navigointipalkin kuvakkeiden väri"
+
+#: view/theme/frio/config.php:119
+msgid "Link color"
+msgstr "Linkin väri"
+
+#: view/theme/frio/config.php:120
+msgid "Set the background color"
+msgstr "Valitse taustaväri"
+
+#: view/theme/frio/config.php:121
+msgid "Content background opacity"
+msgstr "Sisällön taustasameus"
+
+#: view/theme/frio/config.php:122
+msgid "Set the background image"
+msgstr "Valitse taustakuva"
+
+#: view/theme/frio/config.php:127
+msgid "Login page background image"
+msgstr "Sisäänkirjautumissivun taustakuva"
+
+#: view/theme/frio/config.php:130
+msgid "Login page background color"
+msgstr "Sisäänkirjautumissivun taustaväri"
+
+#: view/theme/frio/config.php:130
+msgid "Leave background image and color empty for theme defaults"
+msgstr ""
+
+#: view/theme/frio/theme.php:238
+msgid "Guest"
+msgstr "Vieras"
+
+#: view/theme/frio/theme.php:243
+msgid "Visitor"
+msgstr "Vierailija"
+
+#: 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 ""
+
+#: 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:122
+msgid "Set style"
+msgstr ""
+
+#: view/theme/vier/config.php:123
+msgid "Community Pages"
+msgstr "Yhteisösivut"
+
+#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150
+msgid "Community Profiles"
+msgstr "Yhteisöprofiilit"
+
+#: view/theme/vier/config.php:125
+msgid "Help or @NewHere ?"
+msgstr ""
+
+#: view/theme/vier/config.php:126 view/theme/vier/theme.php:389
+msgid "Connect Services"
+msgstr ""
+
+#: view/theme/vier/config.php:127 view/theme/vier/theme.php:199
+msgid "Find Friends"
+msgstr ""
+
+#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181
+msgid "Last users"
+msgstr ""
+
+#: view/theme/vier/theme.php:200
+msgid "Local Directory"
+msgstr "Paikallinen hakemisto"
+
+#: view/theme/vier/theme.php:292
+msgid "Quick Start"
+msgstr "Pika-aloitus"
+
+#: index.php:444
+msgid "toggle mobile"
+msgstr "Mobiilisivusto päälle/pois"
+
+#: boot.php:791
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr ""
diff --git a/view/lang/fi-fi/strings.php b/view/lang/fi-fi/strings.php
new file mode 100644 (file)
index 0000000..8b00444
--- /dev/null
@@ -0,0 +1,2170 @@
+<?php
+
+if(! function_exists("string_plural_select_fi_fi")) {
+function string_plural_select_fi_fi($n){
+       return ($n != 1);;
+}}
+;
+$a->strings["Welcome "] = "Tervetuloa";
+$a->strings["Please upload a profile photo."] = "Lataa profiilikuva.";
+$a->strings["Welcome back "] = "Tervetuloa takaisin";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "'%s' tietokantapalvelimen DNS-tieto ei löydy";
+$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [
+       0 => "",
+       1 => "",
+];
+$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [
+       0 => "",
+       1 => "",
+];
+$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "";
+$a->strings["Profile Photos"] = "Profiilin valokuvat";
+$a->strings["event"] = "tapahtuma";
+$a->strings["status"] = "tila";
+$a->strings["photo"] = "kuva";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s tykkää käyttäjän %2\$s %3\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "";
+$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s osallistuu tapahtumaan %3\$s, jonka järjestää %2\$s";
+$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s ei osallistu tapahtumaan %3\$s, jonka järjestää %2\$s";
+$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s ehkä osallistuu tapahtumaan %3\$s, jonka järjestää %2\$s";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ja %2\$s ovat kavereita";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s tökkäsi %2\$s";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "";
+$a->strings["post/item"] = "julkaisu/kohde";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "";
+$a->strings["Likes"] = "Tykkäyksiä";
+$a->strings["Dislikes"] = "Inhokit";
+$a->strings["Attending"] = [
+       0 => "Osallistuu",
+       1 => "Osallistuu",
+];
+$a->strings["Not attending"] = "Ei osallistu";
+$a->strings["Might attend"] = "Ehkä";
+$a->strings["Select"] = "Valitse";
+$a->strings["Delete"] = "Poista";
+$a->strings["View %s's profile @ %s"] = "";
+$a->strings["Categories:"] = "Luokat:";
+$a->strings["Filed under:"] = "";
+$a->strings["%s from %s"] = "";
+$a->strings["View in context"] = "Näytä kontekstissa";
+$a->strings["Please wait"] = "Odota";
+$a->strings["remove"] = "poista";
+$a->strings["Delete Selected Items"] = "Poista valitut kohteet";
+$a->strings["Follow Thread"] = "Seuraa ketjua";
+$a->strings["View Status"] = "Näytä tila";
+$a->strings["View Profile"] = "Näytä profiilia";
+$a->strings["View Photos"] = "Näytä kuvia";
+$a->strings["Network Posts"] = "Verkkojulkaisut";
+$a->strings["View Contact"] = "Näytä kontaktia";
+$a->strings["Send PM"] = "Lähetä yksityisviesti";
+$a->strings["Poke"] = "Tökkää";
+$a->strings["Connect/Follow"] = "Yhdistä/Seuraa";
+$a->strings["%s likes this."] = "%s tykkää tästä.";
+$a->strings["%s doesn't like this."] = "%s ei tykkää tästä.";
+$a->strings["%s attends."] = "%s osallistuu.";
+$a->strings["%s doesn't attend."] = "%s ei osallistu.";
+$a->strings["%s attends maybe."] = "%s ehkä osallistuu.";
+$a->strings["and"] = "ja";
+$a->strings["and %d other people"] = "ja %d muuta ihmistä";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d ihmistä</span> tykkää tästä";
+$a->strings["%s like this."] = "%s tykkää tästä.";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d ihmistä</span> ei tykkää tästä.";
+$a->strings["%s don't like this."] = "%s ei tykkää tästä.";
+$a->strings["<span  %1\$s>%2\$d people</span> attend"] = "<span  %1\$s>%2\$d ihmistä</span> osallistuu";
+$a->strings["%s attend."] = "%s osallistuu.";
+$a->strings["<span  %1\$s>%2\$d people</span> don't attend"] = "<span  %1\$s>%2\$d ihmistä</span> ei osallistu";
+$a->strings["%s don't attend."] = "%s ei osallistu.";
+$a->strings["<span  %1\$s>%2\$d people</span> attend maybe"] = "<span  %1\$s>%2\$d ihmistä</span> ehkä osallistuu";
+$a->strings["%s attend maybe."] = "%s ehkä osallistuu.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Näkyy <strong>kaikille</strong>";
+$a->strings["Please enter a link URL:"] = "Lisää URL-linkki:";
+$a->strings["Please enter a video link/URL:"] = "Lisää video URL-linkki:";
+$a->strings["Please enter an audio link/URL:"] = "Lisää ääni URL-linkki:";
+$a->strings["Tag term:"] = "";
+$a->strings["Save to Folder:"] = "Tallenna kansioon:";
+$a->strings["Where are you right now?"] = "Mikä on sijaintisi?";
+$a->strings["Delete item(s)?"] = "Poista kohde/kohteet?";
+$a->strings["Share"] = "Jaa";
+$a->strings["Upload photo"] = "Lähetä kuva";
+$a->strings["upload photo"] = "lähetä kuva";
+$a->strings["Attach file"] = "Liitä tiedosto";
+$a->strings["attach file"] = "liitä tiedosto";
+$a->strings["Insert web link"] = "Lisää linkki";
+$a->strings["web link"] = "WWW-linkki";
+$a->strings["Insert video link"] = "Lisää videolinkki";
+$a->strings["video link"] = "videolinkki";
+$a->strings["Insert audio link"] = "Lisää äänilinkki";
+$a->strings["audio link"] = "äänilinkki";
+$a->strings["Set your location"] = "Aseta sijaintisi";
+$a->strings["set location"] = "aseta sijainti";
+$a->strings["Clear browser location"] = "Tyhjennä selaimen sijainti";
+$a->strings["clear location"] = "tyhjennä sijainti";
+$a->strings["Set title"] = "Aseta otsikko";
+$a->strings["Categories (comma-separated list)"] = "Luokat (pilkuilla eroteltu luettelo)";
+$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";
+$a->strings["Message"] = "Viesti";
+$a->strings["Browser"] = "Selain";
+$a->strings["View all"] = "Näytä kaikki";
+$a->strings["Like"] = [
+       0 => "Tykkäys",
+       1 => "Tykkäyksiä",
+];
+$a->strings["Dislike"] = [
+       0 => "Inhokki",
+       1 => "Inhokit",
+];
+$a->strings["Not Attending"] = [
+       0 => "Ei osallistu",
+       1 => "Ei osallistu",
+];
+$a->strings["Undecided"] = [
+       0 => "",
+       1 => "",
+];
+$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["noreply"] = "eivast";
+$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."] = "";
+$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."] = "";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
+$a->strings["%s commented on an item/conversation you have been following."] = "";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[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"] = "";
+$a->strings["%1\$s shared a new post at %2\$s"] = "";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s tökkäsi sinua.";
+$a->strings["%1\$s poked you at %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"] = "";
+$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."] = "";
+$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"] = "";
+$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"] = "";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "";
+$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "";
+$a->strings["'%1\$s' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "";
+$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Notify] rekisteröitymispyyntö";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "";
+$a->strings["Please visit %s to approve or reject the request."] = "";
+$a->strings["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["newer"] = "uudempi";
+$a->strings["older"] = "vanhempi";
+$a->strings["first"] = "ensimmäinen";
+$a->strings["prev"] = "edellinen";
+$a->strings["next"] = "seuraava";
+$a->strings["last"] = "viimeinen";
+$a->strings["Loading more entries..."] = "Merkinnät ladataan...";
+$a->strings["The end"] = "Loppu";
+$a->strings["No contacts"] = "Ei kontakteja";
+$a->strings["%d Contact"] = [
+       0 => "%d kontakti",
+       1 => "%d kontakteja",
+];
+$a->strings["View Contacts"] = "Näytä kontaktit";
+$a->strings["Save"] = "Tallenna";
+$a->strings["Follow"] = "Seuraa";
+$a->strings["Search"] = "Haku";
+$a->strings["@name, !forum, #tags, content"] = "@nimi, !foorumi, #tunnisteet, sisältö";
+$a->strings["Full Text"] = "Koko teksti";
+$a->strings["Tags"] = "Tunnisteet";
+$a->strings["Contacts"] = "Yhteystiedot";
+$a->strings["Forums"] = "Foorumit";
+$a->strings["poke"] = "töki";
+$a->strings["poked"] = "tökkäsi";
+$a->strings["ping"] = "";
+$a->strings["pinged"] = "";
+$a->strings["prod"] = "töki";
+$a->strings["prodded"] = "tökkäsi";
+$a->strings["slap"] = "";
+$a->strings["slapped"] = "";
+$a->strings["finger"] = "";
+$a->strings["fingered"] = "";
+$a->strings["rebuff"] = "";
+$a->strings["rebuffed"] = "";
+$a->strings["Monday"] = "Maanantai";
+$a->strings["Tuesday"] = "Tiistai";
+$a->strings["Wednesday"] = "Keskiviikko";
+$a->strings["Thursday"] = "Torstai";
+$a->strings["Friday"] = "Perjantai";
+$a->strings["Saturday"] = "Lauantai";
+$a->strings["Sunday"] = "Sunnuntai";
+$a->strings["January"] = "Tammikuu";
+$a->strings["February"] = "Helmikuu";
+$a->strings["March"] = "Maaliskuu";
+$a->strings["April"] = "Huhtikuu";
+$a->strings["May"] = "Toukokuu";
+$a->strings["June"] = "Kesäkuu";
+$a->strings["July"] = "Heinäkuu";
+$a->strings["August"] = "Elokuu";
+$a->strings["September"] = "Syyskuu";
+$a->strings["October"] = "Lokakuu";
+$a->strings["November"] = "Marraskuu";
+$a->strings["December"] = "Joulukuu";
+$a->strings["Mon"] = "Ma";
+$a->strings["Tue"] = "Ti";
+$a->strings["Wed"] = "Ke";
+$a->strings["Thu"] = "To";
+$a->strings["Fri"] = "Pe";
+$a->strings["Sat"] = "La";
+$a->strings["Sun"] = "Su";
+$a->strings["Jan"] = "Tam.";
+$a->strings["Feb"] = "Hel.";
+$a->strings["Mar"] = "Maa.";
+$a->strings["Apr"] = "Huh.";
+$a->strings["Jul"] = "Tou.";
+$a->strings["Aug"] = "Elo.";
+$a->strings["Sep"] = "Syy.";
+$a->strings["Oct"] = "Lok.";
+$a->strings["Nov"] = "Mar.";
+$a->strings["Dec"] = "Jou.";
+$a->strings["View Video"] = "Katso video";
+$a->strings["bytes"] = "tavua";
+$a->strings["Click to open/close"] = "Klikkaa auki/kiinni";
+$a->strings["View on separate page"] = "Katso erillisellä sivulla";
+$a->strings["view on separate page"] = "katso erillisellä sivulla";
+$a->strings["link to source"] = "linkki lähteeseen";
+$a->strings["activity"] = "toiminta";
+$a->strings["comment"] = [
+       0 => "kommentoi",
+       1 => "kommentoi",
+];
+$a->strings["post"] = "julkaisu";
+$a->strings["Item filed"] = "";
+$a->strings["No friends to display."] = "";
+$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. "] = "";
+$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["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>VAROITUS: Tämä on erittäin vaativaa</strong> ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta <strong>nyt</strong>, jos olet epävarma tämän sivun toiminnoista.";
+$a->strings["No mirroring"] = "";
+$a->strings["Mirror as forwarded posting"] = "";
+$a->strings["Mirror as my own posting"] = "";
+$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"] = "";
+$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 <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "";
+$a->strings["Settings"] = "Asetukset";
+$a->strings["Go to Your Settings"] = "Omat Asetukset";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "";
+$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["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 <strong>default</strong> 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 <em>Add New Contact</em> dialog."] = "";
+$a->strings["Go to Your Site's Directory"] = "";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> 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["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"] = "";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "";
+$a->strings["Visit %s's profile [%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["Resubscribing to OStatus contacts"] = "";
+$a->strings["Error"] = "Virhe";
+$a->strings["Done"] = "Valmis";
+$a->strings["Keep this window open until done."] = "";
+$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."] = "";
+$a->strings["Ignore/Hide"] = "Jätä huomiotta/piilota";
+$a->strings["Friend Suggestions"] = "Ystäväehdotukset";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
+$a->strings["Import"] = "Tuo";
+$a->strings["Move account"] = "Siirrä tili";
+$a->strings["You can import an account from another Friendica server."] = "Voit tuoda käyttäjätilin toiselta Friendica -palvelimelta.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "";
+$a->strings["Account file"] = "Tilitiedosto";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "";
+$a->strings["[Embedded content - reload page to view]"] = "[Upotettu sisältö - näet sen päivittämällä sivun]";
+$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."] = "";
+$a->strings["is interested in:"] = "";
+$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: "] = "";
+$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."] = "";
+$a->strings["Show unread"] = "Näytä lukemattomat";
+$a->strings["Show all"] = "Näytä kaikki";
+$a->strings["No more %s notifications."] = "";
+$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."] = "";
+$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."] = "";
+$a->strings["Unexpected response from remote site: "] = "";
+$a->strings["Confirmation completed successfully."] = "Vahvistus onnistui.";
+$a->strings["Temporary failure. Please wait and try again."] = "";
+$a->strings["Introduction failed or was revoked."] = "";
+$a->strings["Remote site reported: "] = "";
+$a->strings["Unable to set contact photo."] = "";
+$a->strings["No user record found for '%s' "] = "";
+$a->strings["Our site encryption key is apparently messed up."] = "";
+$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"] = "";
+$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."] = "";
+$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"] = "";
+$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:"] = "";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "";
+$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["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: "] = "";
+$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["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 <strong>this</strong> profile."] = "Väärä identiteetti kirjautuneena sisään. Kirjaudu <strong>tähän</strong> 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, <a href=\"%s\">follow this link to find a public Friendica site and join us today</a>."] = "";
+$a->strings["Friend/Connection Request"] = "Ystävä/yhteyspyyntö";
+$a->strings["Examples: 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["l F d, Y \\@ g:i A"] = "";
+$a->strings["Time Conversion"] = "";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "";
+$a->strings["UTC time: %s"] = "UTC-aika: %s";
+$a->strings["Current timezone: %s"] = "Aikavyöhyke: %s";
+$a->strings["Converted localtime: %s"] = "";
+$a->strings["Please select your timezone:"] = "Valitse aikavyöhykkeesi:";
+$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."] = "";
+$a->strings["Profile Visibility Editor"] = "";
+$a->strings["Click on a contact to add or remove."] = "";
+$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 My Account"] = "Poista tilini";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "";
+$a->strings["Please enter your password for verification:"] = "";
+$a->strings["No contacts."] = "Ei kontakteja.";
+$a->strings["Access denied."] = "Käyttö estetty.";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
+$a->strings["No recipient selected."] = "";
+$a->strings["Unable to check your home location."] = "";
+$a->strings["Message could not be sent."] = "Viestiä ei voitu lähettää.";
+$a->strings["Message collection failure."] = "";
+$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["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["- select -"] = "- valitse -";
+$a->strings["No more system notifications."] = "";
+$a->strings["{0} wants to be your friend"] = "";
+$a->strings["{0} sent you a message"] = "";
+$a->strings["{0} requested registration"] = "";
+$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["%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["Image exceeds size limit of %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["Remove term"] = "";
+$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"] = "";
+$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"] = "";
+$a->strings["Global Community"] = "Maailmanlaajuinen yhteisö";
+$a->strings["Posts from users of the whole federated network"] = "";
+$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["You must be logged in to use this module"] = "";
+$a->strings["Source URL"] = "Lähde URL";
+$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["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["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ä";
+$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["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["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 <strong>may</strong> 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["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"] = "";
+$a->strings["Sort by Comment Date"] = "";
+$a->strings["Posted Order"] = "";
+$a->strings["Sort by Post Date"] = "";
+$a->strings["Personal"] = "Henkilökohtainen";
+$a->strings["Posts that mention or involve you"] = "";
+$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["Personal Notes"] = "Henkilökohtaiset tiedot";
+$a->strings["Post successful."] = "Viestin lähetys onnistui.";
+$a->strings["Photo Albums"] = "Valokuva-albumit";
+$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";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Haluatko varmasti poistaa tämän albumin ja kaikki sen kuvat?";
+$a->strings["Delete Photo"] = "Poista valokuva";
+$a->strings["Do you really want to delete this photo?"] = "Haluatko varmasti poistaa kuvan?";
+$a->strings["a photo"] = "valokuva";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s merkattiin kuvaan %2\$s ystävän %3\$s toimesta";
+$a->strings["Image upload didn't complete, please try again"] = "Kuvan lataus ei onnistunut, yritä uudelleen";
+$a->strings["Image file is missing"] = "Kuvatiedosto puuttuu";
+$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "";
+$a->strings["Image file is empty."] = "Kuvatiedosto on tyhjä.";
+$a->strings["No photos selected"] = "Ei valittuja kuvia";
+$a->strings["Access to this item is restricted."] = "Pääsy kohteeseen on rajoitettu.";
+$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";
+$a->strings["View Photo"] = "Näytä kuva";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Estetty. Tämän kohteen käyttöä on saatettu rajoittaa.";
+$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ä]";
+$a->strings["New album name"] = "Uusi nimi albumille";
+$a->strings["Caption"] = "Kuvateksti";
+$a->strings["Add a Tag"] = "Lisää merkintä";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esimerkki: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$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["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["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["People Search - %s"] = "";
+$a->strings["Forum Search - %s"] = "Foorumihaku - %s";
+$a->strings["Friendica Communications Server - Setup"] = "";
+$a->strings["Could not connect to database."] = "Tietokantaan ei saada yhteyttä.";
+$a->strings["Could not create table."] = "Taulun luominen epäonnistui.";
+$a->strings["Your Friendica site database has been installed."] = "Friendica-sivustosi tietokanta on asennettu.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Sinun on ehkä tuotava tiedosto \"database.sql\" manuaalisesti käyttämällä phpMyAdminia tai MySQL:ää.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Lue tiedosto \"INSTALL.txt\".";
+$a->strings["Database already in use."] = "Tietokanta on jo käytössä.";
+$a->strings["System check"] = "Järjestelmän tarkistus";
+$a->strings["Next"] = "Seuraava";
+$a->strings["Check again"] = "Tarkista uudelleen";
+$a->strings["Database connection"] = "Tietokantayhteys";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Jotta voit asentaa Friendican, tarvitaan tieto siitä, miten tietokantaasi saa yhteyden.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Ota yhteyttä web-palveluntarjoajaasi tai sivuston ylläpitäjään, jos sinulla on näihin asetuksiin liittyviä kysymyksiä.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Alla määritetyn tietokannan tulisi olla jo olemassa. Jos se ei ole, luo se ennen kuin jatkat.";
+$a->strings["Database Server Name"] = "Tietokannan palvelimen nimi";
+$a->strings["Database Login Name"] = "Tietokannan käyttäjän nimi";
+$a->strings["Database Login Password"] = "Tietokannan käyttäjän salasana";
+$a->strings["For security reasons the password must not be empty"] = "";
+$a->strings["Database Name"] = "Tietokannan nimi";
+$a->strings["Site administrator email address"] = "Sivuston ylläpitäjän sähköpostiosoite";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Tilisi sähköpostiosoitteen on vastattava tätä, jotta voit käyttää ylläpitokäyttöliittymää.";
+$a->strings["Please select a default timezone for your website"] = "Valitse oletusaikavyöhyke sivustollesi";
+$a->strings["Site settings"] = "Sivuston asetukset";
+$a->strings["System Language:"] = "Järjestelmän kieli:";
+$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Komentoriviversiota PHP:stä ei löytynyt web-palvelimen PATH:ista.";
+$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 <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Setup the worker'</a>"] = "";
+$a->strings["PHP executable path"] = "Polku PHP-ohjelmaan";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Kirjoita koko polku PHP-ohjelmaan. Voit jättää sen tyhjäksi, jos haluat jatkaa asennusta.";
+$a->strings["Command line PHP"] = "Komentorivi-PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
+$a->strings["Found PHP version: "] = "PHP-versio löydetty:";
+$a->strings["PHP cli binary"] = "PHP cli -binääritiedosto";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Järjestelmäsi komentorivi-PHP:ssä ei ole käytössä asetusta \"register_argc_argv\".";
+$a->strings["This is required for message delivery to work."] = "Asetus vaaditaan viestien lähettämiseen.";
+$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"] = "Virhe: järjestelmäsi \"openssl_pkey_new\" -funktio ei pysty generoimaan salausavaimia.";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Jos on kyse Windows-pavelimesta, katso \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Luo salausavaimet";
+$a->strings["libCurl PHP module"] = "PHP-moduuli libCurl";
+$a->strings["GD graphics PHP module"] = "PHP-moduuli GD graphics";
+$a->strings["OpenSSL PHP module"] = "PHP-moduuli OpenSSL";
+$a->strings["PDO or MySQLi PHP module"] = "PDO tai MySQLi PHP-moduuli";
+$a->strings["mb_string PHP module"] = "PHP-moduuli mb_string";
+$a->strings["XML PHP module"] = "XML PHP-moduuli";
+$a->strings["iconv PHP module"] = "iconv PHP-moduuli";
+$a->strings["POSIX PHP module"] = "POSIX PHP-moduuli";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite -moduuli";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Virhe: Apache-palvelimen mod-rewrite -moduuli vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Virhe: libCURL PHP -moduuli vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Virhe: GD graphics PHP -moduuli JPEG-tuella vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Virhe: openssl PHP -moduuli vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Virhe: PDO tai MySQLi PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: The MySQL driver for PDO is not installed."] = "Virhe: PDO:n MySQL-ajuri ei ole asennettu";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Virhe: PHP-moduuli mb_string vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: iconv PHP module required but not installed."] = "Virhe: iconv PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: POSIX PHP module required but not installed."] = "Virhe: POSIX PHP-moduuli vaadittaan, mutta sitä ei ole asennettu.";
+$a->strings["Error, XML PHP module required but not installed."] = "Virhe: XML PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Web-asennuksen pitäisi pystyä luomaan tiedosto nimeltä \".htconfig.php\" palvelimesi ylimpään kansioon, mutta se ei nyt onnistu.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Tämän menettelyn lopussa annamme sinulle tekstin tallennettavaksi tiedostoon nimeltä .htconfig.php Friendican ylätason kansiossa.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php on kirjoitettava";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 on kirjoitettava";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
+$a->strings["Url rewrite is working"] = "";
+$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagick PHP-laajennus ei ole asetettu";
+$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP-laajennus on asetettu";
+$a->strings["ImageMagick supports GIF"] = "ImageMagik tukee GIF-formaattia";
+$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."] = "Tietokannan asetustiedostoa \".htconfig.php\" ei pystytty kirjoittamaan. Käytä mukaanliitettyä tekstiä luomaan asetustiedosto web-palvelimesi juureen.";
+$a->strings["<h1>What next</h1>"] = "<h1>Mitä seuraavaksi</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "";
+$a->strings["Go to your new Friendica node <a href=\"%s/register\">registration page</a> 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["Subscribing to OStatus contacts"] = "";
+$a->strings["No contact provided."] = "Kontakti puuttuu.";
+$a->strings["Couldn't fetch information for contact."] = "";
+$a->strings["Couldn't fetch friends for contact."] = "";
+$a->strings["success"] = "";
+$a->strings["failed"] = "epäonnistui";
+$a->strings["ignored"] = "ohitettu";
+$a->strings["Contact wasn't found or can't be unfollowed."] = "";
+$a->strings["Contact unfollowed"] = "";
+$a->strings["You aren't a friend of this contact."] = "";
+$a->strings["Unfollowing is currently not supported by your network."] = "";
+$a->strings["Disconnect/Unfollow"] = "Katkaise / Lopeta seuraaminen";
+$a->strings["Status Messages and Posts"] = "Statusviestit ja postaukset";
+$a->strings["Events"] = "Tapahtumat";
+$a->strings["View"] = "Katso";
+$a->strings["Previous"] = "Edellinen";
+$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["This calendar format is not supported"] = "Tätä kalenteriformaattia ei tueta";
+$a->strings["No exportable data found"] = "";
+$a->strings["calendar"] = "kalenteri";
+$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."] = "";
+$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["Advanced"] = "";
+$a->strings["Failed to remove event"] = "Tapahtuman poisto epäonnistui";
+$a->strings["Event removed"] = "Tapahtuma poistettu";
+$a->strings["Image uploaded but image cropping failed."] = "";
+$a->strings["Image size reduction [%s] failed."] = "";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "";
+$a->strings["Unable to process image"] = "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."] = "";
+$a->strings["Done Editing"] = "Lopeta muokkaus";
+$a->strings["Image uploaded successfully."] = "Kuvan lähettäminen onnistui.";
+$a->strings["Account"] = "Tili";
+$a->strings["Additional features"] = "Lisäominaisuuksia";
+$a->strings["Display"] = "";
+$a->strings["Social Networks"] = "Sosiaalinen media";
+$a->strings["Addons"] = "Lisäosat";
+$a->strings["Delegations"] = "";
+$a->strings["Connected apps"] = "Yhdistetyt sovellukset";
+$a->strings["Remove account"] = "Poista tili";
+$a->strings["Missing some important data!"] = "";
+$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["Passwords do not match. Password unchanged."] = "";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "";
+$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"] = "";
+$a->strings["Consumer Secret"] = "";
+$a->strings["Redirect"] = "Uudelleenohjaus";
+$a->strings["Icon url"] = "";
+$a->strings["You can't edit this application."] = "";
+$a->strings["Connected Apps"] = "Yhdistetyt sovellukset";
+$a->strings["Edit"] = "Muokkaa";
+$a->strings["Client key starts with"] = "";
+$a->strings["No name"] = "Ei nimeä";
+$a->strings["Remove authorization"] = "Poista lupa";
+$a->strings["No Addon settings configured"] = "";
+$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["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 intelligent shortening"] = "";
+$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "";
+$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "";
+$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "";
+$a->strings["Default group for OStatus contacts"] = "Oletusryhmä OStatus kontakteille";
+$a->strings["Your legacy GNU Social account"] = "";
+$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "";
+$a->strings["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:"] = "";
+$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:"] = "";
+$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["No special theme for mobile devices"] = "";
+$a->strings["%s - (Unsupported)"] = "%s - (Ei tueta)";
+$a->strings["%s - (Experimental)"] = "%s - (Kokeellinen)";
+$a->strings["Display Settings"] = "Näyttöasetukset";
+$a->strings["Display Theme:"] = "";
+$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"] = "";
+$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"] = "";
+$a->strings["Content Settings"] = "Sisältöasetukset";
+$a->strings["Theme settings"] = "Teeman asetukset";
+$a->strings["Unable to find your profile. Please contact your admin."] = "";
+$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"] = "";
+$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?"] = "";
+$a->strings["Your profile will be published in the global friendica directories (e.g. <a href=\"%s\">%s</a>). Your profile will be visible in public."] = "";
+$a->strings["Publish your default profile in the global social directory?"] = "";
+$a->strings["Your profile will be published in this node's <a href=\"%s\">local directory</a>. 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 <strong>not published</strong>."] = "Profiili <strong>ei ole julkaistu</strong>.";
+$a->strings["Your Identity Address is <strong>'%s'</strong> or '%s'."] = "";
+$a->strings["Automatically expire posts after this many days:"] = "";
+$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "";
+$a->strings["Advanced expiration settings"] = "";
+$a->strings["Advanced Expiration"] = "";
+$a->strings["Expire posts:"] = "";
+$a->strings["Expire personal notes:"] = "";
+$a->strings["Expire starred posts:"] = "";
+$a->strings["Expire photos:"] = "";
+$a->strings["Only expire posts by others:"] = "";
+$a->strings["Account Settings"] = "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"] = "";
+$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:"] = "";
+$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:"] = "";
+$a->strings["(to prevent spam abuse)"] = "";
+$a->strings["Default Post Permissions"] = "";
+$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"] = "";
+$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 <em>interesting</em> profile change"] = "";
+$a->strings["Send a notification email when:"] = "Lähetä sähköposti-ilmoitus kun:";
+$a->strings["You receive an introduction"] = "";
+$a->strings["Your introductions are confirmed"] = "";
+$a->strings["Someone writes on your profile wall"] = "";
+$a->strings["Someone writes a followup comment"] = "";
+$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"] = "";
+$a->strings["Send text only notification emails, without the html part"] = "";
+$a->strings["Show detailled notifications"] = "";
+$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"] = "";
+$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["Status:"] = "Tila:";
+$a->strings["Homepage:"] = "Kotisivu:";
+$a->strings["Global Directory"] = "";
+$a->strings["Find on this site"] = "";
+$a->strings["Results for:"] = "";
+$a->strings["Site Directory"] = "";
+$a->strings["Find"] = "Etsi";
+$a->strings["No entries (some entries may be hidden)."] = "";
+$a->strings["Source input"] = "";
+$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";
+$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown";
+$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::convert";
+$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode";
+$a->strings["BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode";
+$a->strings["Source input \\x28Diaspora format\\x29"] = "";
+$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode";
+$a->strings["Raw HTML input"] = "Raaka HTML-syöte";
+$a->strings["HTML Input"] = "HTML-syöte";
+$a->strings["HTML::toBBCode"] = "HTML::toBBCode";
+$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext";
+$a->strings["Source text"] = "Lähdeteksti";
+$a->strings["BBCode"] = "BBCode";
+$a->strings["Markdown"] = "";
+$a->strings["HTML"] = "HTML";
+$a->strings["The contact could not be added."] = "Kontaktia ei voitu lisätä.";
+$a->strings["You already added this contact."] = "";
+$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "";
+$a->strings["OStatus support is disabled. Contact can't be added."] = "";
+$a->strings["The network type couldn't be detected. Contact can't be added."] = "";
+$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."] = "";
+$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 &ldquo;%3\$s&rdquo;"] = "";
+$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?"] = "";
+$a->strings["Show more profile fields:"] = "";
+$a->strings["Profile Actions"] = "";
+$a->strings["Edit Profile Details"] = "";
+$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"] = "";
+$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"] = "";
+$a->strings["Additional information"] = "Lisätietoja";
+$a->strings["Relation"] = "";
+$a->strings["Miscellaneous"] = "Sekalaista";
+$a->strings["Your Gender:"] = "Sukupuoli:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "";
+$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 <strong>public</strong> profile.<br />It <strong>may</strong> 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)"] = "";
+$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)"] = "";
+$a->strings["Private Keywords:"] = "Yksityiset avainsanat:";
+$a->strings["(Used for searching profiles, never shown to others)"] = "";
+$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["%d contact edited."] = [
+       0 => "%d kontakti muokattu",
+       1 => "%d kontakteja muokattu",
+];
+$a->strings["Could not access contact record."] = "Yhteystietoon ei päästä käsiksi.";
+$a->strings["Could not locate selected profile."] = "Valittua profiilia ei löydy.";
+$a->strings["Contact updated."] = "Yhteystietopäivitys onnistui.";
+$a->strings["Contact has been blocked"] = "Henkilö on estetty";
+$a->strings["Contact has been unblocked"] = "Henkilö on jälleen sallittu";
+$a->strings["Contact has been ignored"] = "Henkilöä ei enää huomioida";
+$a->strings["Contact has been unignored"] = "Henkilö on jälleen huomioituna.";
+$a->strings["Contact has been archived"] = "Henkilö on arkistoitu.";
+$a->strings["Contact has been unarchived"] = "Henkilö on otettu pois arkistosta.";
+$a->strings["Drop contact"] = "";
+$a->strings["Do you really want to delete this contact?"] = "Haluatko todella poistaa tämän yhteystiedon?";
+$a->strings["Contact has been removed."] = "Yhteystieto on poistettu.";
+$a->strings["You are mutual friends with %s"] = "Olet kaveri %s kanssa.";
+$a->strings["You are sharing with %s"] = "Olet jakanut jotakin %s:n kanssa";
+$a->strings["%s is sharing with you"] = "%s jakaa sinulle jotakin.";
+$a->strings["Private communications are not available for this contact."] = "Yksityiskeskustelu ei ole käytettävissä tälle henkilölle.";
+$a->strings["Never"] = "Ei koskaan";
+$a->strings["(Update was successful)"] = "(Päivitys onnistui)";
+$a->strings["(Update was not successful)"] = "(Päivitys epäonnistui)";
+$a->strings["Suggest friends"] = "Ehdota ystäviä";
+$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["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.";
+$a->strings["Contact Information / Notes"] = "Yhteystiedot / Muistiinpanot";
+$a->strings["Their personal note"] = "";
+$a->strings["Edit contact notes"] = "Muokkaa yhteystietojen muistiinpanoja";
+$a->strings["Block/Unblock contact"] = "Estä/salli henkilö";
+$a->strings["Ignore contact"] = "Jätä henkilö huomiotta";
+$a->strings["Repair URL settings"] = "Korjaa URL-asetukset";
+$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ä";
+$a->strings["Currently archived"] = "Arkistoitu tällä hetkellä";
+$a->strings["Awaiting connection acknowledge"] = "";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
+$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";
+$a->strings["Show all contacts"] = "Näytä kaikki yhteystiedot";
+$a->strings["Unblocked"] = "Sallittu";
+$a->strings["Only show unblocked contacts"] = "Näytä vain sallitut henkilöt";
+$a->strings["Blocked"] = "Estetty";
+$a->strings["Only show blocked contacts"] = "Näytä vain estetyt henkilöt";
+$a->strings["Ignored"] = "Jätetty huomiotta";
+$a->strings["Only show ignored contacts"] = "Näytä vain henkilöt, jotka jätetty huomiotta";
+$a->strings["Archived"] = "Arkistoitu";
+$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["Archive"] = "Arkistoi";
+$a->strings["Unarchive"] = "Poista arkistosta";
+$a->strings["Batch Actions"] = "";
+$a->strings["Profile Details"] = "Profiilitiedot";
+$a->strings["View all contacts"] = "Näytä kaikki kontaktit";
+$a->strings["View all common friends"] = "Näytä kaikki yhteiset kaverit";
+$a->strings["Advanced Contact Settings"] = "Kontakti-lisäasetukset";
+$a->strings["Mutual Friendship"] = "";
+$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 Archive status"] = "Arkistotila päälle/pois";
+$a->strings["Delete contact"] = "Poista kontakti";
+$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["At any point in time a logged in user can export their account data from the <a href=\"%1\$s/settings/uexport\">account settings</a>. If the user wants to delete their account they can do so at <a href=\"%1\$s/removeme\">%1\$s/removeme</a>. The deletion of the account will be permanent."] = "";
+$a->strings["This is Friendica, version"] = "Tämä on Friendica, versio";
+$a->strings["running at web location"] = "käynnissä osoitteessa";
+$a->strings["Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "";
+$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, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Ehdotuksia, kiitoksia, lahjoituksia, jne. voi lähettää osoitteeseen \"Info\" at Friendica - piste com";
+$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 <a href=\"%1\$s/tos\">Terms of Service</a> of this node."] = "";
+$a->strings["On this server the following remote servers are blocked."] = "";
+$a->strings["Reason for the block"] = "Eston syy";
+$a->strings["No valid account found."] = "";
+$a->strings["Password reset request issued. Check your email."] = "";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, 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"] = "";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "";
+$a->strings["Request has expired, please make a new one."] = "";
+$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"] = "";
+$a->strings["click here to login"] = "kirjaudu klikkaamalla tästä";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "";
+$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"] = "";
+$a->strings["Your password has been changed at %s"] = "Salasanasi on vaihdettu sivustolla %s";
+$a->strings["Registration successful. Please check your email for further instructions."] = "";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "";
+$a->strings["Registration successful."] = "Rekisteröityminen onnistui.";
+$a->strings["Your registration can not be processed."] = "";
+$a->strings["Your registration is pending approval by the site owner."] = "";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "";
+$a->strings["Your OpenID (optional): "] = "OpenID -tunnus (valinnainen):";
+$a->strings["Include your profile in member directory?"] = "";
+$a->strings["Note for the admin"] = "Viesti ylläpidolle";
+$a->strings["Leave a message for the admin, why you want to join this node"] = "";
+$a->strings["Membership on this site is by invitation only."] = "";
+$a->strings["Your invitation code: "] = "Kutsukoodisi:";
+$a->strings["Registration"] = "Rekisteröityminen";
+$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "";
+$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "";
+$a->strings["Leave empty for an auto generated password."] = "";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@%s</strong>'."] = "";
+$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["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["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"] = "";
+$a->strings["Server Blocklist"] = "";
+$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"] = "";
+$a->strings["User registrations waiting for confirmation"] = "";
+$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 <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."] = "";
+$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."] = "";
+$a->strings["Delete domain"] = "Poista verkkotunnus";
+$a->strings["Check to delete this entry from the blocklist"] = "";
+$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"] = "";
+$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"] = "";
+$a->strings["Add Entry"] = "Lisää merkintä";
+$a->strings["Save changes to the blocklist"] = "";
+$a->strings["Current Entries in the Blocklist"] = "";
+$a->strings["Delete entry from blocklist"] = "";
+$a->strings["Delete entry from blocklist?"] = "";
+$a->strings["Server added to blocklist."] = "";
+$a->strings["Site blocklist updated."] = "";
+$a->strings["The contact has been blocked from the node"] = "";
+$a->strings["Could not find any contact entry for this URL (%s)"] = "";
+$a->strings["%s contact unblocked"] = [
+       0 => "",
+       1 => "",
+];
+$a->strings["Remote Contact Blocklist"] = "";
+$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "";
+$a->strings["Block Remote Contact"] = "";
+$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"] = "";
+$a->strings["Block New Remote Contact"] = "";
+$a->strings["Photo"] = "Kuva";
+$a->strings["%s total blocked contact"] = [
+       0 => "",
+       1 => "",
+];
+$a->strings["URL of the remote contact to block."] = "";
+$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."] = "";
+$a->strings["Item marked for deletion."] = "";
+$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 <em>Auto Discovered Contact Directory</em> 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"] = "";
+$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 <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php bin/console.php dbstructure toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "";
+$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"] = "";
+$a->strings["Public Forum Account"] = "";
+$a->strings["Automatic Friend Account"] = "";
+$a->strings["Blog Account"] = "";
+$a->strings["Private Forum Account"] = "";
+$a->strings["Message queues"] = "Viestijonot";
+$a->strings["Summary"] = "Yhteenveto";
+$a->strings["Registered users"] = "";
+$a->strings["Pending registrations"] = "";
+$a->strings["Version"] = "Versio";
+$a->strings["Active addons"] = "";
+$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "";
+$a->strings["Site settings updated."] = "Sivuston asetukset päivitettiin.";
+$a->strings["No community page"] = "";
+$a->strings["Public postings from users of this site"] = "";
+$a->strings["Public postings from the federated network"] = "";
+$a->strings["Public postings from local users and the federated network"] = "";
+$a->strings["Users, Global Contacts"] = "";
+$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"] = "";
+$a->strings["Closed"] = "Suljettu";
+$a->strings["Requires approval"] = "";
+$a->strings["Open"] = "Avoin";
+$a->strings["No SSL policy, links will track page SSL state"] = "";
+$a->strings["Force all links to use SSL"] = "";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
+$a->strings["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["File upload"] = "Tiedoston lataus";
+$a->strings["Policies"] = "";
+$a->strings["Auto Discovered Contact Directory"] = "";
+$a->strings["Performance"] = "Suoritus";
+$a->strings["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"] = "";
+$a->strings["Shortcut icon"] = "";
+$a->strings["Link to an icon that will be used for browsers."] = "";
+$a->strings["Touch icon"] = "";
+$a->strings["Link to an icon that will be used for tablets and mobiles."] = "";
+$a->strings["Additional Info"] = "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"] = "";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
+$a->strings["Mobile system theme"] = "";
+$a->strings["Theme for mobile devices"] = "";
+$a->strings["SSL link policy"] = "";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "";
+$a->strings["Force SSL"] = "";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "";
+$a->strings["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"] = "";
+$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"] = "";
+$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"] = "";
+$a->strings["Will be displayed prominently on the registration page. You can use BBCode here."] = "";
+$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"] = "";
+$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"] = "";
+$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"] = "";
+$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "";
+$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "";
+$a->strings["Don't embed private images in posts"] = "";
+$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "";
+$a->strings["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"] = "";
+$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"] = "";
+$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."] = "";
+$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."] = "";
+$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."] = "";
+$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"] = "";
+$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "";
+$a->strings["Publish server information"] = "";
+$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See <a href='http://the-federation.info/'>the-federation.info</a> 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"] = "";
+$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "";
+$a->strings["Path to item cache"] = "";
+$a->strings["The item caches buffers generated bbcode and external images."] = "";
+$a->strings["Cache duration in seconds"] = "";
+$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "";
+$a->strings["Maximum numbers of comments per post"] = "";
+$a->strings["How much comments should be shown for each post? Default value is 100."] = "";
+$a->strings["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."] = "";
+$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."] = "";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "";
+$a->strings["Executing %s failed with error: %s"] = "";
+$a->strings["Update %s was successfully applied."] = "";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
+$a->strings["There was no additional update function %s that needed to be called."] = "";
+$a->strings["No failed updates."] = "";
+$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 => "",
+       1 => "",
+];
+$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"] = "";
+$a->strings["User '%s' blocked"] = "";
+$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["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"] = "";
+$a->strings["Log file"] = "Lokitiedosto";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
+$a->strings["Log level"] = "";
+$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 <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s exist and is readable."] = "";
+$a->strings["Couldn't open <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s is readable."] = "";
+$a->strings["Lock feature %s"] = "";
+$a->strings["Manage Additional Features"] = "";
+$a->strings["Error decoding account file"] = "";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
+$a->strings["User '%s' already exists on this server!"] = "";
+$a->strings["User creation error"] = "";
+$a->strings["User profile creation error"] = "";
+$a->strings["%d contact not imported"] = [
+       0 => "",
+       1 => "",
+];
+$a->strings["Done. You can now login with your username and password"] = "";
+$a->strings["System"] = "";
+$a->strings["Home"] = "Koti";
+$a->strings["Introductions"] = "";
+$a->strings["%s commented on %s's post"] = "";
+$a->strings["%s created a new post"] = "%s loi uuden julkaisun";
+$a->strings["%s liked %s's post"] = "";
+$a->strings["%s disliked %s's post"] = "";
+$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"] = "";
+$a->strings["Friend Suggestion"] = "Kaveriehdotus";
+$a->strings["Friend/Connect Request"] = "Ystävä/yhteyspyyntö";
+$a->strings["New Follower"] = "";
+$a->strings["Post to Email"] = "Viesti sähköpostiin";
+$a->strings["Hide your profile details from unknown viewers?"] = "";
+$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["Close"] = "Sulje";
+$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"] = "";
+$a->strings["view full size"] = "näytä täysikokoisena";
+$a->strings["Image/photo"] = "Kuva/valokuva";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
+$a->strings["$1 wrote:"] = "$1 kirjoitti:";
+$a->strings["Encrypted content"] = "Salattu sisältö";
+$a->strings["Invalid source protocol"] = "";
+$a->strings["Invalid link protocol"] = "";
+$a->strings["External link to forum"] = "";
+$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["Videos"] = "Videot";
+$a->strings["Your videos"] = "Omat videot";
+$a->strings["Your events"] = "Omat tapahtumat";
+$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"] = "";
+$a->strings["Apps"] = "Sovellukset";
+$a->strings["Addon applications, utilities, games"] = "Lisäosa sovelluksia, apuohjelmia, pelejä";
+$a->strings["Search site content"] = "";
+$a->strings["Community"] = "Yhteisö";
+$a->strings["Conversations on this and other servers"] = "";
+$a->strings["Events and Calendar"] = "Tapahtumat ja kalenteri";
+$a->strings["Directory"] = "Luettelo";
+$a->strings["People directory"] = "";
+$a->strings["Information about this friendica instance"] = "";
+$a->strings["Conversations from your friends"] = "";
+$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["Private mail"] = "Yksityinen posti";
+$a->strings["Inbox"] = "Saapuneet";
+$a->strings["Outbox"] = "Lähtevät";
+$a->strings["Manage"] = "Hallitse";
+$a->strings["Manage other pages"] = "Hallitse muita sivuja";
+$a->strings["Account settings"] = "Tiliasetukset";
+$a->strings["Profiles"] = "Profiilit";
+$a->strings["Manage/Edit Profiles"] = "Hallitse/muokka profiilit";
+$a->strings["Manage/edit friends and contacts"] = "Hallitse/muokkaa kaverit ja kontaktit";
+$a->strings["Site setup and configuration"] = "";
+$a->strings["Navigation"] = "Navigointi";
+$a->strings["Site map"] = "Sivustokartta";
+$a->strings["Embedding disabled"] = "";
+$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["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"] = "";
+$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"] = "";
+$a->strings["Enable widget to display Network posts only from selected group"] = "";
+$a->strings["Network Filter"] = "";
+$a->strings["Enable widget to display Network posts only from selected network"] = "";
+$a->strings["Save search terms for re-use"] = "";
+$a->strings["Network Tabs"] = "";
+$a->strings["Network Personal Tab"] = "";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "";
+$a->strings["Network New Tab"] = "";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "";
+$a->strings["Network Shared Links Tab"] = "";
+$a->strings["Enable tab to display only Network posts with links in them"] = "";
+$a->strings["Post/Comment Tools"] = "Julkaisu/kommentti työkalut";
+$a->strings["Multiple Deletion"] = "";
+$a->strings["Select and delete multiple posts/comments at once"] = "";
+$a->strings["Edit Sent Posts"] = "Muokkaa lähetetyt julkaisut";
+$a->strings["Edit and correct posts and comments after sending"] = "";
+$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"] = "";
+$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"] = "";
+$a->strings["Display membership date in profile"] = "";
+$a->strings["Add New Contact"] = "Lisää uusi kontakti";
+$a->strings["Enter address or web location"] = "";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esimerkki: bob@example.com, http://example.com/barbara";
+$a->strings["%d invitation available"] = [
+       0 => "",
+       1 => "",
+];
+$a->strings["Find People"] = "";
+$a->strings["Enter name or interest"] = "";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "";
+$a->strings["Similar Interests"] = "";
+$a->strings["Random Profile"] = "Satunnainen profiili";
+$a->strings["Invite Friends"] = "Kutsu kavereita";
+$a->strings["View Global Directory"] = "";
+$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 => "",
+       1 => "",
+];
+$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"] = "";
+$a->strings["GNU Social Connector"] = "";
+$a->strings["pnut"] = "pnut";
+$a->strings["App.net"] = "App.net";
+$a->strings["Male"] = "Mies";
+$a->strings["Female"] = "Nainen";
+$a->strings["Currently Male"] = "";
+$a->strings["Currently Female"] = "";
+$a->strings["Mostly Male"] = "";
+$a->strings["Mostly Female"] = "";
+$a->strings["Transgender"] = "Transsukupuolinen";
+$a->strings["Intersex"] = "Intersukupuolinen";
+$a->strings["Transsexual"] = "Transsukupuolinen";
+$a->strings["Hermaphrodite"] = "";
+$a->strings["Neuter"] = "";
+$a->strings["Non-specific"] = "";
+$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"] = "";
+$a->strings["Virgin"] = "";
+$a->strings["Deviant"] = "";
+$a->strings["Fetish"] = "";
+$a->strings["Oodles"] = "";
+$a->strings["Nonsexual"] = "";
+$a->strings["Single"] = "Sinkku";
+$a->strings["Lonely"] = "Yksinäinen";
+$a->strings["Available"] = "";
+$a->strings["Unavailable"] = "";
+$a->strings["Has crush"] = "Ihastunut";
+$a->strings["Infatuated"] = "";
+$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"] = "";
+$a->strings["Common law"] = "";
+$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"] = "";
+$a->strings["Don't care"] = "";
+$a->strings["Ask me"] = "";
+$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]"] = "";
+$a->strings["\nError %d occurred during database update:\n%s\n"] = "";
+$a->strings["Errors encountered performing database changes: "] = "";
+$a->strings[": Database update"] = ": Tietokannan päivitys";
+$a->strings["%s: updating %s table."] = "";
+$a->strings["[no subject]"] = "[ei aihetta]";
+$a->strings["Requested account is not available."] = "";
+$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:"] = "";
+$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"] = "";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "";
+$a->strings["Default privacy group for new contacts"] = "";
+$a->strings["Everybody"] = "Kaikki";
+$a->strings["edit"] = "muokkaa";
+$a->strings["Edit group"] = "Muokkaa ryhmää";
+$a->strings["Contacts not in any group"] = "";
+$a->strings["Create a new group"] = "Luo uusi ryhmä";
+$a->strings["Edit groups"] = "Muokkaa ryhmiä";
+$a->strings["Drop Contact"] = "";
+$a->strings["Organisation"] = "Järjestö";
+$a->strings["News"] = "Uutiset";
+$a->strings["Forum"] = "Keskustelupalsta";
+$a->strings["Connect URL missing."] = "";
+$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"] = "";
+$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["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."] = "";
+$a->strings["Please use a shorter name."] = "";
+$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."] = "";
+$a->strings["Not a valid email address."] = "Virheellinen sähköpostiosoite.";
+$a->strings["Cannot use that email."] = "";
+$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "";
+$a->strings["Nickname is already registered. Please choose another."] = "";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "";
+$a->strings["An error occurred during registration. Please try again."] = "";
+$a->strings["default"] = "oletus";
+$a->strings["An error occurred creating your default profile. Please try again."] = "";
+$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"] = "";
+$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["%s is now following %s."] = "";
+$a->strings["following"] = "seuraa";
+$a->strings["%s stopped following %s."] = "";
+$a->strings["stopped following"] = "";
+$a->strings["%s\\'s birthday"] = "";
+$a->strings["Sharing notification from Diaspora network"] = "";
+$a->strings["Attachments:"] = "Liitteitä:";
+$a->strings["(no subject)"] = "(ei aihetta)";
+$a->strings["This entry was edited"] = "";
+$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"] = "";
+$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"] = "";
+$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["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."] = "";
+$a->strings["Delete this item?"] = "Poista tämä kohde?";
+$a->strings["show fewer"] = "näytä vähemmän";
+$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"] = "";
+$a->strings["Repeat the image"] = "Toista kuva";
+$a->strings["Will repeat your image to fill the background."] = "";
+$a->strings["Stretch"] = "Venytä";
+$a->strings["Will stretch to width/height of the image."] = "";
+$a->strings["Resize fill and-clip"] = "";
+$a->strings["Resize to fill and retain aspect ratio."] = "";
+$a->strings["Resize best fit"] = "";
+$a->strings["Resize to best fit and retain aspect ratio."] = "";
+$a->strings["Default"] = "Oletus";
+$a->strings["Note"] = "";
+$a->strings["Check image permissions if all users are allowed to visit the image"] = "";
+$a->strings["Select scheme"] = "Valitse malli";
+$a->strings["Navigation bar background color"] = "Navigointipalkin taustaväri";
+$a->strings["Navigation bar icon color "] = "Navigointipalkin kuvakkeiden väri";
+$a->strings["Link color"] = "Linkin väri";
+$a->strings["Set the background color"] = "Valitse taustaväri";
+$a->strings["Content background opacity"] = "Sisällön taustasameus";
+$a->strings["Set the background image"] = "Valitse taustakuva";
+$a->strings["Login page background image"] = "Sisäänkirjautumissivun taustakuva";
+$a->strings["Login page background color"] = "Sisäänkirjautumissivun taustaväri";
+$a->strings["Leave background image and color empty for theme defaults"] = "";
+$a->strings["Guest"] = "Vieras";
+$a->strings["Visitor"] = "Vierailija";
+$a->strings["Alignment"] = "Kohdistaminen";
+$a->strings["Left"] = "Vasemmalle";
+$a->strings["Center"] = "Keskelle";
+$a->strings["Color scheme"] = "Värimalli";
+$a->strings["Posts font size"] = "";
+$a->strings["Textareas font size"] = "";
+$a->strings["Comma separated list of helper forums"] = "";
+$a->strings["Set style"] = "";
+$a->strings["Community Pages"] = "Yhteisösivut";
+$a->strings["Community Profiles"] = "Yhteisöprofiilit";
+$a->strings["Help or @NewHere ?"] = "";
+$a->strings["Connect Services"] = "";
+$a->strings["Find Friends"] = "";
+$a->strings["Last users"] = "";
+$a->strings["Local Directory"] = "Paikallinen hakemisto";
+$a->strings["Quick Start"] = "Pika-aloitus";
+$a->strings["toggle mobile"] = "Mobiilisivusto päälle/pois";
+$a->strings["Update %s failed. See error logs."] = "";
index e00b82e8da3281ef10749f56c26f16ddf4dbce64..095972902f68d0ab136ff63499f5780e1b848ae7 100644 (file)
@@ -7,17 +7,18 @@
 # eddy2508 <eddy@naasthetnet.nl>, 2013
 # Gert Cauwenberg <gcauwenberg@gmail.com>, 2013
 # Gert Cauwenberg <gcauwenberg@gmail.com>, 2013
-# jeroenpraat <social@jeroenvanrietpaap.nl>, 2012-2014
-# jeroenpraat <social@jeroenvanrietpaap.nl>, 2012
-# Karel Vandecandelaere <karel@dasrakel.eu>, 2015-2016
+# jeroenpraat <jeroenpraat@disroot.org>, 2012-2014
+# jeroenpraat <jeroenpraat@disroot.org>, 2012
+# Karel <karel@dasrakel.eu>, 2018
+# Karel <karel@dasrakel.eu>, 2015-2016,2018
 # Ralph <pcbee4you@gmail.com>, 2015
 msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-12-19 07:46+0100\n"
-"PO-Revision-Date: 2016-12-19 10:01+0000\n"
-"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
+"POT-Creation-Date: 2018-04-04 07:01+0200\n"
+"PO-Revision-Date: 2018-04-05 13:36+0000\n"
+"Last-Translator: Karel <karel@dasrakel.eu>\n"
 "Language-Team: Dutch (http://www.transifex.com/Friendica/friendica/language/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -25,4737 +26,4926 @@ msgstr ""
 "Language: nl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Nieuw Contact toevoegen"
+#: include/security.php:81
+msgid "Welcome "
+msgstr "Welkom"
 
-#: include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Voeg een webadres of -locatie in:"
+#: include/security.php:82
+msgid "Please upload a profile photo."
+msgstr "Upload een profielfoto."
 
-#: include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara"
+#: include/security.php:84
+msgid "Welcome back "
+msgstr "Welkom terug "
 
-#: include/contact_widgets.php:10 include/identity.php:218
-#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87
-#: mod/suggest.php:101
-msgid "Connect"
-msgstr "Verbinden"
+#: include/security.php:431
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "De beveiligingstoken van het formulier was foutief. Dit gebeurde waarschijnlijk omdat het formulier te lang (> 3 uur)  is blijven open staan voor het werd verstuurd."
 
-#: include/contact_widgets.php:24
+#: include/dba.php:57
 #, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d uitnodiging beschikbaar"
-msgstr[1] "%d uitnodigingen beschikbaar"
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Kan de DNS informatie niet vinden voor server '%s'"
 
-#: include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Zoek mensen"
+#: include/api.php:1199
+#, php-format
+msgid "Daily posting limit of %d post reached. The post was rejected."
+msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
+msgstr[0] "De dagelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard."
+msgstr[1] "De dagelijkse limiet van %d berichten is bereikt.  Dit bericht werd niet aanvaard."
 
-#: include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Vul naam of interesse in"
+#: include/api.php:1223
+#, php-format
+msgid "Weekly posting limit of %d post reached. The post was rejected."
+msgid_plural ""
+"Weekly posting limit of %d posts reached. The post was rejected."
+msgstr[0] "De wekelijkse limiet van %d bericht is bereikt.  Dit bericht werd niet aanvaard."
+msgstr[1] "De wekelijkse limiet van %d berichten is bereikt.  Dit bericht werd niet aanvaard."
 
-#: include/contact_widgets.php:32 include/Contact.php:354
-#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204
-#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103
-msgid "Connect/Follow"
-msgstr "Verbind/Volg"
+#: include/api.php:1247
+#, php-format
+msgid "Monthly posting limit of %d post reached. The post was rejected."
+msgstr "De maandelijkse limiet van %d berichten is bereikt.  Dit bericht werd niet aanvaard."
 
-#: include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Voorbeelden: Jan Peeters, Vissen"
+#: include/api.php:4400 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:539
+#: src/Model/User.php:547 src/Model/User.php:555
+msgid "Profile Photos"
+msgstr "Profielfoto's"
 
-#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798
-msgid "Find"
-msgstr "Zoek"
+#: include/conversation.php:144 include/conversation.php:282
+#: include/text.php:1724 src/Model/Item.php:1795
+msgid "event"
+msgstr "gebeurtenis"
 
-#: include/contact_widgets.php:35 mod/suggest.php:114
-#: view/theme/vier/theme.php:203
-msgid "Friend Suggestions"
-msgstr "Vriendschapsvoorstellen"
+#: 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:2010
+msgid "status"
+msgstr "status"
 
-#: include/contact_widgets.php:36 view/theme/vier/theme.php:202
-msgid "Similar Interests"
-msgstr "Dezelfde interesses"
+#: include/conversation.php:152 include/conversation.php:290
+#: include/text.php:1726 mod/subthread.php:97 mod/tagger.php:72
+#: src/Model/Item.php:1793
+msgid "photo"
+msgstr "foto"
 
-#: include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "Willekeurig Profiel"
+#: include/conversation.php:164 src/Model/Item.php:1666
+#: src/Protocol/Diaspora.php:2006
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s vindt het %3$s van %2$s leuk"
 
-#: include/contact_widgets.php:38 view/theme/vier/theme.php:204
-msgid "Invite Friends"
-msgstr "Vrienden uitnodigen"
+#: 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 vindt het %3$s van %2$s niet leuk"
 
-#: include/contact_widgets.php:108
-msgid "Networks"
-msgstr "Netwerken"
+#: include/conversation.php:170
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$s neemt deel aan %2$ss %3$s deel"
 
-#: include/contact_widgets.php:111
-msgid "All Networks"
-msgstr "Alle netwerken"
+#: include/conversation.php:173
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr "%1$s neemt niet deel aan %2$ss %3$s"
 
-#: include/contact_widgets.php:141 include/features.php:110
-msgid "Saved Folders"
-msgstr "Bewaarde Mappen"
+#: include/conversation.php:176
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr "%1$s neemt misschien deel aan %2$ss %3$s"
 
-#: include/contact_widgets.php:144 include/contact_widgets.php:176
-msgid "Everything"
-msgstr "Alles"
+#: include/conversation.php:209 mod/dfrn_confirm.php:431
+#: src/Protocol/Diaspora.php:2481
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s is nu bevriend met %2$s"
 
-#: include/contact_widgets.php:173
-msgid "Categories"
-msgstr "Categorieën"
+#: include/conversation.php:250
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s porde %2$s aan"
 
-#: include/contact_widgets.php:237
+#: include/conversation.php:304 mod/tagger.php:110
 #, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d gedeeld contact"
-msgstr[1] "%d gedeelde contacten"
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s labelde %3$s van %2$s met %4$s"
 
-#: include/contact_widgets.php:242 include/ForumManager.php:119
-#: include/items.php:2245 mod/content.php:624 object/Item.php:432
-#: view/theme/vier/theme.php:260 boot.php:972
-msgid "show more"
-msgstr "toon meer"
+#: include/conversation.php:331
+msgid "post/item"
+msgstr "bericht/item"
 
-#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025
-#: view/theme/vier/theme.php:255
-msgid "Forums"
-msgstr ""
+#: include/conversation.php:332
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s markeerde %2$s's %3$s als favoriet"
 
-#: include/ForumManager.php:116 view/theme/vier/theme.php:257
-msgid "External link to forum"
-msgstr ""
+#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:355
+msgid "Likes"
+msgstr "Houdt van"
 
-#: include/profile_selectors.php:6
-msgid "Male"
-msgstr "Man"
+#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:359
+msgid "Dislikes"
+msgstr "Houdt niet van"
 
-#: include/profile_selectors.php:6
-msgid "Female"
-msgstr "Vrouw"
+#: include/conversation.php:606 include/conversation.php:1680
+#: mod/photos.php:1502
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Neemt deel"
+msgstr[1] "Nemen deel"
 
-#: include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Momenteel mannelijk"
+#: include/conversation.php:606 mod/photos.php:1502
+msgid "Not attending"
+msgstr "Nemen niet deel"
 
-#: include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Momenteel vrouwelijk"
+#: include/conversation.php:606 mod/photos.php:1502
+msgid "Might attend"
+msgstr "Nemen misschien deel"
 
-#: include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Meestal mannelijk"
+#: include/conversation.php:744 mod/photos.php:1569 src/Object/Post.php:178
+msgid "Select"
+msgstr "Kies"
 
-#: include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Meestal vrouwelijk"
+#: include/conversation.php:745 mod/photos.php:1570 mod/settings.php:738
+#: mod/contacts.php:830 mod/contacts.php:1035 mod/admin.php:1798
+#: src/Object/Post.php:179
+msgid "Delete"
+msgstr "Verwijder"
 
-#: include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: include/conversation.php:777 src/Object/Post.php:357
+#: src/Object/Post.php:358
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Bekijk het profiel van %s @ %s"
 
-#: include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Interseksueel"
+#: include/conversation.php:789 src/Object/Post.php:345
+msgid "Categories:"
+msgstr "Categorieën:"
 
-#: include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transseksueel"
+#: include/conversation.php:790 src/Object/Post.php:346
+msgid "Filed under:"
+msgstr "Bewaard onder:"
 
-#: include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermafrodiet"
+#: include/conversation.php:797 src/Object/Post.php:371
+#, php-format
+msgid "%s from %s"
+msgstr "%s van %s"
 
-#: include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Genderneutraal"
+#: include/conversation.php:812
+msgid "View in context"
+msgstr "In context bekijken"
 
-#: include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Niet-specifiek"
+#: include/conversation.php:814 include/conversation.php:1353
+#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:264
+#: mod/message.php:433 mod/photos.php:1473 src/Object/Post.php:396
+msgid "Please wait"
+msgstr "Even geduld"
 
-#: include/profile_selectors.php:6
-msgid "Other"
-msgstr "Anders"
+#: include/conversation.php:885
+msgid "remove"
+msgstr "verwijder"
 
-#: include/profile_selectors.php:6 include/conversation.php:1487
-msgid "Undecided"
-msgid_plural "Undecided"
-msgstr[0] ""
-msgstr[1] ""
+#: include/conversation.php:889
+msgid "Delete Selected Items"
+msgstr "Geselecteerde items verwijderen"
 
-#: include/profile_selectors.php:23
-msgid "Males"
-msgstr "Mannen"
+#: include/conversation.php:1059 view/theme/frio/theme.php:352
+msgid "Follow Thread"
+msgstr "Gesprek volgen"
 
-#: include/profile_selectors.php:23
-msgid "Females"
-msgstr "Vrouwen"
+#: include/conversation.php:1060 src/Model/Contact.php:640
+msgid "View Status"
+msgstr "Bekijk status"
 
-#: include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Homo"
+#: include/conversation.php:1061 include/conversation.php:1077
+#: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89
+#: mod/dirfind.php:217 mod/directory.php:159 src/Model/Contact.php:580
+#: src/Model/Contact.php:593 src/Model/Contact.php:641
+msgid "View Profile"
+msgstr "Bekijk profiel"
 
-#: include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbienne"
+#: include/conversation.php:1062 src/Model/Contact.php:642
+msgid "View Photos"
+msgstr "Bekijk foto's"
 
-#: include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Geen voorkeur"
+#: include/conversation.php:1063 src/Model/Contact.php:643
+msgid "Network Posts"
+msgstr "Netwerkberichten"
 
-#: include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Biseksueel"
+#: include/conversation.php:1064 src/Model/Contact.php:644
+msgid "View Contact"
+msgstr "Bekijk contact"
 
-#: include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autoseksueel"
+#: include/conversation.php:1065 src/Model/Contact.php:646
+msgid "Send PM"
+msgstr "Stuur een privébericht"
 
-#: include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Onthouder"
+#: include/conversation.php:1069 src/Model/Contact.php:647
+msgid "Poke"
+msgstr "Porren"
 
-#: include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Maagd"
+#: include/conversation.php:1074 mod/allfriends.php:74 mod/suggest.php:83
+#: mod/match.php:90 mod/dirfind.php:218 mod/follow.php:143
+#: mod/contacts.php:596 src/Content/Widget.php:61 src/Model/Contact.php:594
+msgid "Connect/Follow"
+msgstr "Verbind/Volg"
 
-#: include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Afwijkend"
+#: include/conversation.php:1193
+#, php-format
+msgid "%s likes this."
+msgstr "%s vindt dit leuk."
 
-#: include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetisj"
+#: include/conversation.php:1196
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s vindt dit niet leuk."
 
-#: include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Veel"
+#: include/conversation.php:1199
+#, php-format
+msgid "%s attends."
+msgstr "%s neemt deel"
 
-#: include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Niet seksueel"
+#: include/conversation.php:1202
+#, php-format
+msgid "%s doesn't attend."
+msgstr "%s neemt niet deel"
 
-#: include/profile_selectors.php:42
-msgid "Single"
-msgstr "Alleenstaand"
+#: include/conversation.php:1205
+#, php-format
+msgid "%s attends maybe."
+msgstr "%s neemt misschien deel"
 
-#: include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Eenzaam"
+#: include/conversation.php:1216
+msgid "and"
+msgstr "en"
 
-#: include/profile_selectors.php:42
-msgid "Available"
-msgstr "Beschikbaar"
+#: include/conversation.php:1222
+#, php-format
+msgid "and %d other people"
+msgstr "en %d anderen"
 
-#: include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Onbeschikbaar"
+#: include/conversation.php:1231
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d mensen</span> vinden dit leuk"
 
-#: include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Verliefd"
+#: include/conversation.php:1232
+#, php-format
+msgid "%s like this."
+msgstr "%s vinden dit leuk."
 
-#: include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Smoorverliefd"
+#: include/conversation.php:1235
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d people</span> vinden dit niet leuk"
 
-#: include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Aan het daten"
+#: include/conversation.php:1236
+#, php-format
+msgid "%s don't like this."
+msgstr "%s vinden dit niet leuk."
 
-#: include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Ontrouw"
+#: include/conversation.php:1239
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
+msgstr "<span %1$s>%2$d mensen</span> nemen deel"
 
-#: include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Seksverslaafd"
+#: include/conversation.php:1240
+#, php-format
+msgid "%s attend."
+msgstr "%s nemen deel."
 
-#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284
-msgid "Friends"
-msgstr "Vrienden"
+#: include/conversation.php:1243
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr "<span %1$s>%2$d mensen</span> nemen niet deel"
 
-#: include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Vriendschap plus"
+#: include/conversation.php:1244
+#, php-format
+msgid "%s don't attend."
+msgstr "%s nemen niet deel."
 
-#: include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Ongebonden/vluchtig"
+#: include/conversation.php:1247
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr "<span %1$s>%2$d mensen</span> nemen misschien deel"
 
-#: include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Verloofd"
+#: include/conversation.php:1248
+#, php-format
+msgid "%s attend maybe."
+msgstr "%s neemt misschien deel."
 
-#: include/profile_selectors.php:42
-msgid "Married"
-msgstr "Getrouwd"
+#: include/conversation.php:1278 include/conversation.php:1294
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Zichtbaar voor <strong>iedereen</strong>"
 
-#: include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Denkbeeldig getrouwd"
+#: include/conversation.php:1279 include/conversation.php:1295
+#: 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 "Vul een internetadres/URL in:"
 
-#: include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partners"
+#: include/conversation.php:1280 include/conversation.php:1296
+msgid "Please enter a video link/URL:"
+msgstr "Vul een videolink/URL in:"
 
-#: include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Samenwonend"
+#: include/conversation.php:1281 include/conversation.php:1297
+msgid "Please enter an audio link/URL:"
+msgstr "Vul een audiolink/URL in:"
 
-#: include/profile_selectors.php:42
-msgid "Common law"
-msgstr "getrouwd voor-de-wet"
+#: include/conversation.php:1282 include/conversation.php:1298
+msgid "Tag term:"
+msgstr "Label:"
 
-#: include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Blij"
+#: include/conversation.php:1283 include/conversation.php:1299
+#: mod/filer.php:34
+msgid "Save to Folder:"
+msgstr "Bewaren in map:"
 
-#: include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Niet op zoek"
+#: include/conversation.php:1284 include/conversation.php:1300
+msgid "Where are you right now?"
+msgstr "Waar ben je nu?"
 
-#: include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: include/conversation.php:1285
+msgid "Delete item(s)?"
+msgstr "Item(s) verwijderen?"
 
-#: include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Bedrogen"
+#: include/conversation.php:1334
+msgid "Share"
+msgstr "Delen"
 
-#: include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Uit elkaar"
+#: include/conversation.php:1335 mod/wallmessage.php:143 mod/editpost.php:111
+#: mod/message.php:262 mod/message.php:430
+msgid "Upload photo"
+msgstr "Foto uploaden"
 
-#: include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Onstabiel"
+#: include/conversation.php:1336 mod/editpost.php:112
+msgid "upload photo"
+msgstr "Foto uploaden"
 
-#: include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Gescheiden"
+#: include/conversation.php:1337 mod/editpost.php:113
+msgid "Attach file"
+msgstr "Bestand bijvoegen"
 
-#: include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Denkbeeldig gescheiden"
+#: include/conversation.php:1338 mod/editpost.php:114
+msgid "attach file"
+msgstr "bestand bijvoegen"
 
-#: include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Weduwnaar/weduwe"
+#: include/conversation.php:1339 mod/wallmessage.php:144 mod/editpost.php:115
+#: mod/message.php:263 mod/message.php:431
+msgid "Insert web link"
+msgstr "Voeg een webadres in"
 
-#: include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Onzeker"
+#: include/conversation.php:1340 mod/editpost.php:116
+msgid "web link"
+msgstr "webadres"
 
-#: include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Het is gecompliceerd"
+#: include/conversation.php:1341 mod/editpost.php:117
+msgid "Insert video link"
+msgstr "Voeg video toe"
 
-#: include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Kan me niet schelen"
+#: include/conversation.php:1342 mod/editpost.php:118
+msgid "video link"
+msgstr "video adres"
 
-#: include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Vraag me"
+#: include/conversation.php:1343 mod/editpost.php:119
+msgid "Insert audio link"
+msgstr "Voeg audio adres toe"
 
-#: include/dba_pdo.php:72 include/dba.php:56
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr ""
+#: include/conversation.php:1344 mod/editpost.php:120
+msgid "audio link"
+msgstr "audio adres"
 
-#: include/auth.php:45
-msgid "Logged out."
-msgstr "Uitgelogd."
+#: include/conversation.php:1345 mod/editpost.php:121
+msgid "Set your location"
+msgstr "Stel uw locatie in"
 
-#: include/auth.php:116 include/auth.php:178 mod/openid.php:100
-msgid "Login failed."
-msgstr "Login mislukt."
+#: include/conversation.php:1346 mod/editpost.php:122
+msgid "set location"
+msgstr "Stel uw locatie in"
 
-#: include/auth.php:132 include/user.php:75
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr ""
+#: include/conversation.php:1347 mod/editpost.php:123
+msgid "Clear browser location"
+msgstr "Verwijder locatie uit uw webbrowser"
 
-#: include/auth.php:132 include/user.php:75
-msgid "The error message was:"
-msgstr "De foutboodschap was:"
+#: include/conversation.php:1348 mod/editpost.php:124
+msgid "clear location"
+msgstr "Verwijder locatie uit uw webbrowser"
 
-#: include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "
+#: include/conversation.php:1350 mod/editpost.php:138
+msgid "Set title"
+msgstr "Titel plaatsen"
 
-#: include/group.php:209
-msgid "Default privacy group for new contacts"
-msgstr ""
+#: include/conversation.php:1352 mod/editpost.php:140
+msgid "Categories (comma-separated list)"
+msgstr "Categorieën (komma-gescheiden lijst)"
 
-#: include/group.php:242
-msgid "Everybody"
-msgstr "Iedereen"
+#: include/conversation.php:1354 mod/editpost.php:126
+msgid "Permission settings"
+msgstr "Instellingen van rechten"
 
-#: include/group.php:265
-msgid "edit"
-msgstr "verander"
+#: include/conversation.php:1355 mod/editpost.php:155
+msgid "permissions"
+msgstr "rechten"
 
-#: include/group.php:286 mod/newmember.php:61
-msgid "Groups"
-msgstr "Groepen"
+#: include/conversation.php:1363 mod/editpost.php:135
+msgid "Public post"
+msgstr "Openbare post"
 
-#: include/group.php:288
-msgid "Edit groups"
-msgstr ""
+#: include/conversation.php:1367 mod/editpost.php:146 mod/photos.php:1492
+#: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528
+#: src/Object/Post.php:799
+msgid "Preview"
+msgstr "Voorvertoning"
 
-#: include/group.php:290
-msgid "Edit group"
-msgstr "Verander groep"
+#: include/conversation.php:1371 include/items.php:387 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/unfollow.php:117 mod/settings.php:676 mod/settings.php:702
+#: mod/follow.php:161 mod/contacts.php:475
+msgid "Cancel"
+msgstr "Annuleren"
 
-#: include/group.php:291
-msgid "Create a new group"
-msgstr "Maak nieuwe groep"
+#: include/conversation.php:1376
+msgid "Post to Groups"
+msgstr "Verzenden naar Groepen"
 
-#: include/group.php:292 mod/group.php:94 mod/group.php:178
-msgid "Group Name: "
-msgstr "Groepsnaam:"
+#: include/conversation.php:1377
+msgid "Post to Contacts"
+msgstr "Verzenden naar Contacten"
 
-#: include/group.php:294
-msgid "Contacts not in any group"
-msgstr ""
+#: include/conversation.php:1378
+msgid "Private post"
+msgstr "Privé verzending"
 
-#: include/group.php:296 mod/network.php:201
-msgid "add"
-msgstr "toevoegen"
+#: include/conversation.php:1383 mod/editpost.php:153
+#: src/Model/Profile.php:342
+msgid "Message"
+msgstr "Bericht"
 
-#: include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Onbekend | Niet "
+#: include/conversation.php:1384 mod/editpost.php:154
+msgid "Browser"
+msgstr "Browser"
 
-#: include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Onmiddellijk blokkeren"
+#: include/conversation.php:1651
+msgid "View all"
+msgstr "Toon alles"
 
-#: include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Onbetrouwbaar, spammer, zelfpromotor"
+#: include/conversation.php:1674
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Houdt van"
+msgstr[1] "Houdt van"
 
-#: include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Bekend, maar geen mening"
+#: include/conversation.php:1677
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "Houdt niet van"
+msgstr[1] "Houdt niet van"
 
-#: include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, waarschijnlijk onschadelijk"
+#: include/conversation.php:1683
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "Neemt niet deel"
+msgstr[1] "Nemen niet deel"
 
-#: include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Gerenommeerd, heeft mijn vertrouwen"
+#: include/conversation.php:1686 src/Content/ContactSelector.php:125
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] "Onbeslist"
+msgstr[1] "Onbeslist"
 
-#: include/contact_selectors.php:56 mod/admin.php:890
-msgid "Frequently"
-msgstr "Frequent"
+#: include/enotify.php:31
+msgid "Friendica Notification"
+msgstr "Friendica Notificatie"
 
-#: include/contact_selectors.php:57 mod/admin.php:891
-msgid "Hourly"
-msgstr "elk uur"
+#: include/enotify.php:34
+msgid "Thank You,"
+msgstr "Bedankt"
 
-#: include/contact_selectors.php:58 mod/admin.php:892
-msgid "Twice daily"
-msgstr "Twee keer per dag"
+#: include/enotify.php:37
+#, php-format
+msgid "%s Administrator"
+msgstr "%s Beheerder"
 
-#: include/contact_selectors.php:59 mod/admin.php:893
-msgid "Daily"
-msgstr "dagelijks"
+#: include/enotify.php:39
+#, php-format
+msgid "%1$s, %2$s Administrator"
+msgstr "%1$s, %2$s Beheerder"
 
-#: include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "wekelijks"
+#: include/enotify.php:50 src/Worker/Delivery.php:404
+msgid "noreply"
+msgstr "geen reactie"
 
-#: include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "maandelijks"
+#: include/enotify.php:98
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notificatie] Nieuw bericht ontvangen op %s"
 
-#: include/contact_selectors.php:76 mod/dfrn_request.php:868
-msgid "Friendica"
-msgstr "Friendica"
+#: include/enotify.php:100
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s sent you a new private message at %2$s."
 
-#: include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: include/enotify.php:101
+msgid "a private message"
+msgstr "een prive bericht"
 
-#: include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: include/enotify.php:101
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s stuurde jou %2$s."
 
-#: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440
-msgid "Email"
-msgstr "E-mail"
+#: include/enotify.php:103
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden."
 
-#: include/contact_selectors.php:80 mod/settings.php:842
-#: mod/dfrn_request.php:870
-msgid "Diaspora"
-msgstr "Diaspora"
+#: include/enotify.php:141
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s gaf een reactie op [url=%2$s]a %3$s[/url]"
 
-#: include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: include/enotify.php:149
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s gaf een reactie op [url=%2$s]%3$s's %4$s[/url]"
 
-#: include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: include/enotify.php:159
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s gaf een reactie op [url=%2$s]jouw %3$s[/url]"
 
-#: include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "Linkedln"
+#: include/enotify.php:171
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notificatie] Reactie op gesprek #%1$d door %2$s"
 
-#: include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: include/enotify.php:173
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s gaf een reactie op een bericht/gesprek die jij volgt."
 
-#: include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "Myspace"
+#: include/enotify.php:176 include/enotify.php:191 include/enotify.php:206
+#: include/enotify.php:221 include/enotify.php:240 include/enotify.php:255
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Bezoek %s om het gesprek te bekijken en/of te beantwoorden."
 
-#: include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: include/enotify.php:183
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Melding] %s plaatste een bericht op je tijdlijn"
 
-#: include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: include/enotify.php:185
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$splaatste een bericht op je tijdlijn op %2$s"
 
-#: include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: include/enotify.php:186
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s schreef op [url=%2$s]jouw tijdlijn[/url]"
 
-#: include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Diaspora-connector"
+#: include/enotify.php:198
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notificatie] %s heeft jou genoemd"
 
-#: include/contact_selectors.php:91
-msgid "GNU Social"
-msgstr ""
+#: include/enotify.php:200
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s heeft jou in %2$s genoemd"
 
-#: include/contact_selectors.php:92
-msgid "App.net"
-msgstr ""
-
-#: include/contact_selectors.php:103
-msgid "Hubzilla/Redmatrix"
-msgstr ""
-
-#: include/acl_selectors.php:327
-msgid "Post to Email"
-msgstr "Verzenden per e-mail"
-
-#: include/acl_selectors.php:332
+#: include/enotify.php:201
 #, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr ""
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]heeft jou genoemd[/url]."
 
-#: include/acl_selectors.php:333 mod/settings.php:1181
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Je profieldetails verbergen voor onbekende bezoekers?"
+#: include/enotify.php:213
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Melding] %s deelde een nieuw bericht"
 
-#: include/acl_selectors.php:338
-msgid "Visible to everybody"
-msgstr "Zichtbaar voor iedereen"
+#: include/enotify.php:215
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s deelde een nieuw bericht op %2$s"
 
-#: include/acl_selectors.php:339 view/theme/vier/config.php:103
-msgid "show"
-msgstr "tonen"
+#: include/enotify.php:216
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]deelde een bericht[/url]."
 
-#: include/acl_selectors.php:340 view/theme/vier/config.php:103
-msgid "don't show"
-msgstr "niet tonen"
+#: include/enotify.php:228
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Melding] %1$s heeft jou gepord"
 
-#: include/acl_selectors.php:346 mod/editpost.php:133
-msgid "CC: email addresses"
-msgstr "CC: e-mailadressen"
+#: include/enotify.php:230
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s heeft jou gepord op %2$s"
 
-#: include/acl_selectors.php:347 mod/editpost.php:140
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"
+#: include/enotify.php:231
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]porde jou[/url]"
 
-#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156
-#: mod/photos.php:1535
-msgid "Permissions"
-msgstr "Rechten"
+#: include/enotify.php:247
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld"
 
-#: include/acl_selectors.php:350
-msgid "Close"
-msgstr "Afsluiten"
+#: include/enotify.php:249
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s heeft jouw bericht gelabeld in %2$s"
 
-#: include/like.php:163 include/conversation.php:130
-#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87
-#: mod/tagger.php:62
-msgid "photo"
-msgstr "foto"
+#: include/enotify.php:250
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s labelde [url=%2$s]jouw bericht[/url]"
 
-#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125
-#: include/conversation.php:134 include/conversation.php:261
-#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62
-msgid "status"
-msgstr "status"
+#: include/enotify.php:262
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen"
 
-#: include/like.php:165 include/conversation.php:122
-#: include/conversation.php:258 include/text.php:1802
-msgid "event"
-msgstr "gebeurtenis"
+#: include/enotify.php:264
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s"
 
-#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141
+#: include/enotify.php:265
 #, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s vindt het %3$s van %2$s leuk"
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s."
 
-#: include/like.php:184 include/conversation.php:144
+#: include/enotify.php:270 include/enotify.php:316
 #, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s vindt het %3$s van %2$s niet leuk"
+msgid "You may visit their profile at %s"
+msgstr "U kunt hun profiel bezoeken op %s"
 
-#: include/like.php:186
+#: include/enotify.php:272
 #, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr ""
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Bezoek %s om het verzoek goed of af te keuren."
+
+#: include/enotify.php:280
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica:Melding]  Iemand nieuw deelt met jou."
 
-#: include/like.php:188
+#: include/enotify.php:282 include/enotify.php:283
 #, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr ""
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s deelt met jouw in %2$s"
+
+#: include/enotify.php:290
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica:Melding] Je hebt een nieuwe volger"
 
-#: include/like.php:190
+#: include/enotify.php:292 include/enotify.php:293
 #, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr ""
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Je hebt een nieuwe volger op %2$s: %1$s"
 
-#: include/message.php:15 include/message.php:173
-msgid "[no subject]"
-msgstr "[geen onderwerp]"
+#: include/enotify.php:305
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Melding] Vriendschapsvoorstel ontvangen"
 
-#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056
-#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218
-#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478
-msgid "Wall Photos"
-msgstr ""
+#: include/enotify.php:307
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Je kreeg een vriendschapssuggestie van '%1$s' op %2$s"
 
-#: include/plugin.php:526 include/plugin.php:528
-msgid "Click here to upgrade."
-msgstr ""
+#: include/enotify.php:308
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Je kreeg een [url=%1$s]vriendschapssuggestie[/url] voor %2$s op %3$s."
 
-#: include/plugin.php:534
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr ""
+#: include/enotify.php:314
+msgid "Name:"
+msgstr "Naam:"
 
-#: include/plugin.php:539
-msgid "This action is not available under your subscription plan."
-msgstr ""
+#: include/enotify.php:315
+msgid "Photo:"
+msgstr "Foto: "
 
-#: include/uimport.php:94
-msgid "Error decoding account file"
-msgstr ""
+#: include/enotify.php:318
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Bezoek %s om de suggestie goed of af te keuren."
 
-#: include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr ""
+#: include/enotify.php:326 include/enotify.php:341
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica:Melding] Verbinding aanvaard"
 
-#: include/uimport.php:116 include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr ""
+#: include/enotify.php:328 include/enotify.php:343
+#, php-format
+msgid "'%1$s' has accepted your connection request at %2$s"
+msgstr "'%1$s' aanvaarde je contactaanvraag op %2$s"
 
-#: include/uimport.php:120 include/uimport.php:131
+#: include/enotify.php:329 include/enotify.php:344
 #, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Gebruiker '%s' bestaat al op deze server!"
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$saanvaarde jouw [url=%1$s]contactaanvraag[/url]."
 
-#: include/uimport.php:153
-msgid "User creation error"
-msgstr "Fout bij het aanmaken van de gebruiker"
+#: include/enotify.php:334
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
+msgstr "Jullie zijn nu in contact met elkaar en kunnen statusberichten, foto's en email delen zonder beperkingen."
 
-#: include/uimport.php:173
-msgid "User profile creation error"
-msgstr "Fout bij het aanmaken van het gebruikersprofiel"
+#: include/enotify.php:336
+#, php-format
+msgid "Please visit %s if you wish to make any changes to this relationship."
+msgstr "Bezoek alstublieft %s als je deze relatie wil wijzigen."
 
-#: include/uimport.php:222
+#: include/enotify.php:349
 #, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d contact werd niet geïmporteerd"
-msgstr[1] "%d contacten werden niet geïmporteerd"
+msgid ""
+"'%1$s' has chosen to accept you a fan, which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr "'%1$s' koos om je te accepteren als fan, wat sommige communicatievormen beperkt - zoals privéberichten en sommige profielfuncties.  Als dit een beroemdheid- of groepspagina is, werd dit automatisch toegepast."
 
-#: include/uimport.php:292
-msgid "Done. You can now login with your username and password"
-msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"
+#: include/enotify.php:351
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future."
+msgstr "'%1$s' kan er later voor kiezen om deze beperkingen aan te passen."
 
-#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
-msgid "Miscellaneous"
-msgstr "Diversen"
+#: include/enotify.php:353
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Bezoek %s wanneer je deze relatie wil wijzigen."
 
-#: include/datetime.php:183 include/identity.php:629
-msgid "Birthday:"
-msgstr "Verjaardag:"
+#: include/enotify.php:363
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Friendica System:Melding] Registratieaanvraag"
 
-#: include/datetime.php:185 mod/profiles.php:728
-msgid "Age: "
-msgstr "Leeftijd:"
+#: include/enotify.php:365
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Je kreeg een registratieaanvraag van '%1$s' op %2$s"
 
-#: include/datetime.php:187
-msgid "YYYY-MM-DD or MM-DD"
-msgstr ""
+#: include/enotify.php:366
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Je kreeg een [url=%1$s]registratieaanvraag[/url] van %2$s."
 
-#: include/datetime.php:341
-msgid "never"
-msgstr "nooit"
+#: include/enotify.php:371
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Volledige naam:\t%1$s\\nAdres van de site\t%2$s\\nLoginnaam:\t%3$s (%4$s)"
 
-#: include/datetime.php:347
-msgid "less than a second ago"
-msgstr "minder dan een seconde geleden"
+#: include/enotify.php:377
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Bezoek %s om de aanvraag goed of af te keuren."
 
-#: include/datetime.php:350
-msgid "year"
-msgstr "jaar"
+#: 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 "Item niet gevonden."
 
-#: include/datetime.php:350
-msgid "years"
-msgstr "jaren"
+#: include/items.php:382
+msgid "Do you really want to delete this item?"
+msgstr "Wil je echt dit item verwijderen?"
 
-#: include/datetime.php:351 include/event.php:480 mod/cal.php:284
-#: mod/events.php:389
-msgid "month"
-msgstr "maand"
+#: include/items.php:384 mod/api.php:110 mod/suggest.php:38
+#: mod/dfrn_request.php:653 mod/message.php:138 mod/settings.php:1103
+#: mod/settings.php:1109 mod/settings.php:1116 mod/settings.php:1120
+#: mod/settings.php:1124 mod/settings.php:1128 mod/settings.php:1132
+#: mod/settings.php:1136 mod/settings.php:1156 mod/settings.php:1157
+#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
+#: mod/follow.php:150 mod/profiles.php:636 mod/profiles.php:639
+#: mod/profiles.php:661 mod/contacts.php:472 mod/register.php:237
+msgid "Yes"
+msgstr "Ja"
 
-#: include/datetime.php:351
-msgid "months"
-msgstr "maanden"
+#: 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/invite.php:20
+#: mod/invite.php:106 mod/wall_attach.php:74 mod/wall_attach.php:77
+#: mod/manage.php:131 mod/regmod.php:108 mod/viewcontacts.php:57
+#: mod/wallmessage.php:16 mod/wallmessage.php:40 mod/wallmessage.php:79
+#: mod/wallmessage.php:103 mod/poke.php:150 mod/wall_upload.php:103
+#: mod/wall_upload.php:106 mod/editpost.php:18 mod/fsuggest.php:80
+#: mod/group.php:26 mod/item.php:160 mod/message.php:59 mod/message.php:104
+#: mod/network.php:32 mod/notes.php:30 mod/photos.php:174 mod/photos.php:1051
+#: mod/delegate.php:25 mod/delegate.php:43 mod/delegate.php:54
+#: mod/dirfind.php:25 mod/ostatus_subscribe.php:16 mod/unfollow.php:15
+#: mod/unfollow.php:57 mod/unfollow.php:90 mod/cal.php:304 mod/events.php:194
+#: mod/profile_photo.php:30 mod/profile_photo.php:176
+#: mod/profile_photo.php:187 mod/profile_photo.php:200 mod/settings.php:43
+#: mod/settings.php:142 mod/settings.php:665 mod/follow.php:17
+#: mod/follow.php:54 mod/follow.php:118 mod/profiles.php:182
+#: mod/profiles.php:606 mod/contacts.php:386 mod/register.php:53 index.php:416
+msgid "Permission denied."
+msgstr "Toegang geweigerd"
 
-#: include/datetime.php:352 include/event.php:481 mod/cal.php:285
-#: mod/events.php:390
-msgid "week"
-msgstr "week"
+#: include/items.php:471
+msgid "Archives"
+msgstr "Archieven"
 
-#: include/datetime.php:352
-msgid "weeks"
-msgstr "weken"
+#: include/items.php:477 src/Content/ForumManager.php:130
+#: src/Content/Widget.php:312 src/Object/Post.php:424 src/App.php:512
+#: view/theme/vier/theme.php:259
+msgid "show more"
+msgstr "toon meer"
 
-#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
-#: mod/events.php:391
-msgid "day"
-msgstr "dag"
+#: include/text.php:302
+msgid "newer"
+msgstr "nieuwere berichten"
 
-#: include/datetime.php:353
-msgid "days"
-msgstr "dagen"
+#: include/text.php:303
+msgid "older"
+msgstr "oudere berichten"
 
-#: include/datetime.php:354
-msgid "hour"
-msgstr "uur"
+#: include/text.php:308
+msgid "first"
+msgstr "eerste"
 
-#: include/datetime.php:354
-msgid "hours"
-msgstr "uren"
+#: include/text.php:309
+msgid "prev"
+msgstr "vorige"
 
-#: include/datetime.php:355
-msgid "minute"
-msgstr "minuut"
+#: include/text.php:343
+msgid "next"
+msgstr "volgende"
 
-#: include/datetime.php:355
-msgid "minutes"
-msgstr "minuten"
+#: include/text.php:344
+msgid "last"
+msgstr "laatste"
 
-#: include/datetime.php:356
-msgid "second"
-msgstr "seconde"
+#: include/text.php:398
+msgid "Loading more entries..."
+msgstr ""
 
-#: include/datetime.php:356
-msgid "seconds"
-msgstr "secondes"
+#: include/text.php:399
+msgid "The end"
+msgstr "Het einde"
 
-#: include/datetime.php:365
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s geleden"
+#: include/text.php:884
+msgid "No contacts"
+msgstr "Geen contacten"
 
-#: include/datetime.php:572
+#: include/text.php:908
 #, php-format
-msgid "%s's birthday"
-msgstr "%s's verjaardag"
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d contact"
+msgstr[1] "%d contacten"
 
-#: include/datetime.php:573 include/dfrn.php:1109
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Gefeliciteerd %s"
+#: include/text.php:921
+msgid "View Contacts"
+msgstr "Bekijk contacten"
 
-#: include/enotify.php:24
-msgid "Friendica Notification"
-msgstr "Friendica Notificatie"
+#: include/text.php:1010 mod/filer.php:35 mod/editpost.php:110
+#: mod/notes.php:67
+msgid "Save"
+msgstr "Bewaren"
 
-#: include/enotify.php:27
-msgid "Thank You,"
-msgstr "Bedankt"
+#: include/text.php:1010
+msgid "Follow"
+msgstr "Volg"
 
-#: include/enotify.php:30
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Beheerder"
+#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142
+msgid "Search"
+msgstr "Zoeken"
 
-#: include/enotify.php:32
-#, php-format
-msgid "%1$s, %2$s Administrator"
-msgstr ""
+#: include/text.php:1019 src/Content/Nav.php:58
+msgid "@name, !forum, #tags, content"
+msgstr "@naam, !forum, #labels, inhoud"
 
-#: include/enotify.php:43 include/delivery.php:457
-msgid "noreply"
-msgstr "geen reactie"
+#: include/text.php:1025 src/Content/Nav.php:145
+msgid "Full Text"
+msgstr "Volledige tekst"
 
-#: include/enotify.php:70
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: include/text.php:1026 src/Content/Nav.php:146
+#: src/Content/Widget/TagCloud.php:54
+msgid "Tags"
+msgstr "Labels"
 
-#: include/enotify.php:83
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notificatie] Nieuw bericht ontvangen op %s"
+#: include/text.php:1027 mod/viewcontacts.php:131 mod/contacts.php:814
+#: mod/contacts.php:875 src/Content/Nav.php:147 src/Content/Nav.php:212
+#: src/Model/Profile.php:957 src/Model/Profile.php:960
+#: view/theme/frio/theme.php:270
+msgid "Contacts"
+msgstr "Contacten"
 
-#: include/enotify.php:85
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s sent you a new private message at %2$s."
+#: include/text.php:1030 src/Content/ForumManager.php:125
+#: src/Content/Nav.php:151 view/theme/vier/theme.php:254
+msgid "Forums"
+msgstr "Forums"
 
-#: include/enotify.php:86
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s stuurde jou %2$s."
+#: include/text.php:1074
+msgid "poke"
+msgstr "por"
 
-#: include/enotify.php:86
-msgid "a private message"
-msgstr "een prive bericht"
+#: include/text.php:1074
+msgid "poked"
+msgstr "porde"
 
-#: include/enotify.php:88
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden."
+#: include/text.php:1075
+msgid "ping"
+msgstr "ping"
 
-#: include/enotify.php:134
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s gaf een reactie op [url=%2$s]a %3$s[/url]"
+#: include/text.php:1075
+msgid "pinged"
+msgstr "gepingd"
 
-#: include/enotify.php:141
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s gaf een reactie op [url=%2$s]%3$s's %4$s[/url]"
+#: include/text.php:1076
+msgid "prod"
+msgstr "porren"
 
-#: include/enotify.php:149
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s gaf een reactie op [url=%2$s]jouw %3$s[/url]"
+#: include/text.php:1076
+msgid "prodded"
+msgstr "gepord"
 
-#: include/enotify.php:159
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr ""
+#: include/text.php:1077
+msgid "slap"
+msgstr "slaan"
 
-#: include/enotify.php:161
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s gaf een reactie op een bericht/conversatie die jij volgt."
+#: include/text.php:1077
+msgid "slapped"
+msgstr "geslagen"
 
-#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
-#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Bezoek %s om de conversatie te bekijken en/of te beantwoorden."
+#: include/text.php:1078
+msgid "finger"
+msgstr "finger"
 
-#: include/enotify.php:171
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr ""
+#: include/text.php:1078
+msgid "fingered"
+msgstr "gerfingerd"
 
-#: include/enotify.php:173
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr ""
+#: include/text.php:1079
+msgid "rebuff"
+msgstr "afpoeieren"
 
-#: include/enotify.php:174
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr ""
+#: include/text.php:1079
+msgid "rebuffed"
+msgstr "afgepoeierd"
 
-#: include/enotify.php:185
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notificatie] %s heeft jou genoemd"
+#: include/text.php:1093 mod/settings.php:941 src/Model/Event.php:379
+msgid "Monday"
+msgstr "Maandag"
 
-#: include/enotify.php:187
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s heeft jou in %2$s genoemd"
+#: include/text.php:1093 src/Model/Event.php:380
+msgid "Tuesday"
+msgstr "Dinsdag"
 
-#: include/enotify.php:188
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]heeft jou genoemd[/url]."
+#: include/text.php:1093 src/Model/Event.php:381
+msgid "Wednesday"
+msgstr "Woensdag"
 
-#: include/enotify.php:199
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr ""
+#: include/text.php:1093 src/Model/Event.php:382
+msgid "Thursday"
+msgstr "Donderdag"
 
-#: include/enotify.php:201
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr ""
+#: include/text.php:1093 src/Model/Event.php:383
+msgid "Friday"
+msgstr "Vrijdag"
 
-#: include/enotify.php:202
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr ""
+#: include/text.php:1093 src/Model/Event.php:384
+msgid "Saturday"
+msgstr "Zaterdag"
 
-#: include/enotify.php:213
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s heeft jou aangestoten"
+#: include/text.php:1093 mod/settings.php:941 src/Model/Event.php:378
+msgid "Sunday"
+msgstr "Zondag"
 
-#: include/enotify.php:215
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s heeft jou aangestoten op %2$s"
+#: include/text.php:1097 src/Model/Event.php:399
+msgid "January"
+msgstr "Januari"
 
-#: include/enotify.php:216
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr ""
+#: include/text.php:1097 src/Model/Event.php:400
+msgid "February"
+msgstr "Februari"
 
-#: include/enotify.php:231
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld"
+#: include/text.php:1097 src/Model/Event.php:401
+msgid "March"
+msgstr "Maart"
 
-#: include/enotify.php:233
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s heeft jouw bericht gelabeld in %2$s"
+#: include/text.php:1097 src/Model/Event.php:402
+msgid "April"
+msgstr "April"
 
-#: include/enotify.php:234
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s labelde [url=%2$s]jouw bericht[/url]"
+#: include/text.php:1097 include/text.php:1114 src/Model/Event.php:390
+#: src/Model/Event.php:403
+msgid "May"
+msgstr "Mei"
 
-#: include/enotify.php:245
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen"
+#: include/text.php:1097 src/Model/Event.php:404
+msgid "June"
+msgstr "Juni"
 
-#: include/enotify.php:247
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s"
+#: include/text.php:1097 src/Model/Event.php:405
+msgid "July"
+msgstr "Juli"
 
-#: include/enotify.php:248
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s."
+#: include/text.php:1097 src/Model/Event.php:406
+msgid "August"
+msgstr "Augustus"
 
-#: include/enotify.php:252 include/enotify.php:295
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "U kunt hun profiel bezoeken op %s"
+#: include/text.php:1097 src/Model/Event.php:407
+msgid "September"
+msgstr "September"
 
-#: include/enotify.php:254
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Bezoek %s om het verzoek goed of af te keuren."
+#: include/text.php:1097 src/Model/Event.php:408
+msgid "October"
+msgstr "Oktober"
 
-#: include/enotify.php:262
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr ""
+#: include/text.php:1097 src/Model/Event.php:409
+msgid "November"
+msgstr "November"
 
-#: include/enotify.php:264 include/enotify.php:265
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr ""
+#: include/text.php:1097 src/Model/Event.php:410
+msgid "December"
+msgstr "December"
 
-#: include/enotify.php:271
-msgid "[Friendica:Notify] You have a new follower"
-msgstr ""
+#: include/text.php:1111 src/Model/Event.php:371
+msgid "Mon"
+msgstr "Maa"
 
-#: include/enotify.php:273 include/enotify.php:274
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr ""
+#: include/text.php:1111 src/Model/Event.php:372
+msgid "Tue"
+msgstr "Din"
 
-#: include/enotify.php:285
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr ""
+#: include/text.php:1111 src/Model/Event.php:373
+msgid "Wed"
+msgstr "Woe"
 
-#: include/enotify.php:287
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr ""
+#: include/text.php:1111 src/Model/Event.php:374
+msgid "Thu"
+msgstr "Don"
 
-#: include/enotify.php:288
-#, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr ""
+#: include/text.php:1111 src/Model/Event.php:375
+msgid "Fri"
+msgstr "Vrij"
 
-#: include/enotify.php:293
-msgid "Name:"
-msgstr "Naam:"
+#: include/text.php:1111 src/Model/Event.php:376
+msgid "Sat"
+msgstr "Zat"
 
-#: include/enotify.php:294
-msgid "Photo:"
-msgstr "Foto: "
+#: include/text.php:1111 src/Model/Event.php:370
+msgid "Sun"
+msgstr "Zon"
 
-#: include/enotify.php:297
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr ""
+#: include/text.php:1114 src/Model/Event.php:386
+msgid "Jan"
+msgstr "Jan"
 
-#: include/enotify.php:305 include/enotify.php:319
-msgid "[Friendica:Notify] Connection accepted"
-msgstr ""
+#: include/text.php:1114 src/Model/Event.php:387
+msgid "Feb"
+msgstr "Feb"
 
-#: include/enotify.php:307 include/enotify.php:321
-#, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
-msgstr ""
+#: include/text.php:1114 src/Model/Event.php:388
+msgid "Mar"
+msgstr "Maa"
 
-#: include/enotify.php:308 include/enotify.php:322
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr ""
+#: include/text.php:1114 src/Model/Event.php:389
+msgid "Apr"
+msgstr "Apr"
 
-#: include/enotify.php:312
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email without restriction."
-msgstr ""
+#: include/text.php:1114 src/Model/Event.php:392
+msgid "Jul"
+msgstr "Jul"
 
-#: include/enotify.php:314
-#, php-format
-msgid "Please visit %s if you wish to make any changes to this relationship."
-msgstr ""
+#: include/text.php:1114 src/Model/Event.php:393
+msgid "Aug"
+msgstr "Aug"
 
-#: include/enotify.php:326
-#, php-format
-msgid ""
-"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr ""
+#: include/text.php:1114
+msgid "Sep"
+msgstr "Sep"
 
-#: include/enotify.php:328
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future."
-msgstr ""
+#: include/text.php:1114 src/Model/Event.php:395
+msgid "Oct"
+msgstr "Okt"
 
-#: include/enotify.php:330
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr ""
+#: include/text.php:1114 src/Model/Event.php:396
+msgid "Nov"
+msgstr "Nov"
 
-#: include/enotify.php:340
-msgid "[Friendica System:Notify] registration request"
-msgstr ""
+#: include/text.php:1114 src/Model/Event.php:397
+msgid "Dec"
+msgstr "Dec"
 
-#: include/enotify.php:342
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr ""
+#: include/text.php:1324 mod/videos.php:380
+msgid "View Video"
+msgstr "Bekijk Video"
 
-#: include/enotify.php:343
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr ""
+#: include/text.php:1341
+msgid "bytes"
+msgstr "bytes"
 
-#: include/enotify.php:347
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr ""
+#: include/text.php:1374 include/text.php:1385
+msgid "Click to open/close"
+msgstr "klik om te openen/sluiten"
 
-#: include/enotify.php:350
-#, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr ""
+#: include/text.php:1509
+msgid "View on separate page"
+msgstr "Bekijk op aparte pagina"
 
-#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: include/text.php:1510
+msgid "view on separate page"
+msgstr "bekijk op aparte pagina"
 
-#: include/event.php:33 include/event.php:51 include/event.php:487
-#: include/bb2diaspora.php:158
-msgid "Starts:"
-msgstr "Begint:"
+#: include/text.php:1515 include/text.php:1522 src/Model/Event.php:594
+msgid "link to source"
+msgstr "Verwijzing naar bron"
 
-#: include/event.php:36 include/event.php:57 include/event.php:488
-#: include/bb2diaspora.php:166
-msgid "Finishes:"
-msgstr "Eindigt:"
+#: include/text.php:1728
+msgid "activity"
+msgstr "activiteit"
 
-#: include/event.php:39 include/event.php:63 include/event.php:489
-#: include/bb2diaspora.php:174 include/identity.php:328
-#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494
-#: mod/contacts.php:628
-msgid "Location:"
-msgstr "Plaats:"
+#: include/text.php:1730 src/Object/Post.php:423 src/Object/Post.php:435
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] "reactie"
+msgstr[1] "reacties"
 
-#: include/event.php:441
-msgid "Sun"
-msgstr ""
+#: include/text.php:1733
+msgid "post"
+msgstr "bericht"
 
-#: include/event.php:442
-msgid "Mon"
-msgstr ""
+#: include/text.php:1890
+msgid "Item filed"
+msgstr "Item bewaard"
 
-#: include/event.php:443
-msgid "Tue"
-msgstr ""
+#: mod/allfriends.php:51
+msgid "No friends to display."
+msgstr "Geen vrienden om te laten zien."
 
-#: include/event.php:444
-msgid "Wed"
-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
+msgid "Connect"
+msgstr "Verbinden"
 
-#: include/event.php:445
-msgid "Thu"
-msgstr ""
+#: mod/api.php:85 mod/api.php:107
+msgid "Authorize application connection"
+msgstr "Verbinding met de applicatie goedkeuren"
 
-#: include/event.php:446
-msgid "Fri"
-msgstr ""
+#: mod/api.php:86
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Keer terug naar jouw app en voeg deze beveiligingscode in:"
 
-#: include/event.php:447
-msgid "Sat"
-msgstr ""
+#: mod/api.php:95
+msgid "Please login to continue."
+msgstr "Log in om verder te gaan."
 
-#: include/event.php:448 include/text.php:1130 mod/settings.php:972
-msgid "Sunday"
-msgstr "Zondag"
+#: 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 "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"
 
-#: include/event.php:449 include/text.php:1130 mod/settings.php:972
-msgid "Monday"
-msgstr "Maandag"
+#: mod/api.php:111 mod/dfrn_request.php:653 mod/settings.php:1103
+#: mod/settings.php:1109 mod/settings.php:1116 mod/settings.php:1120
+#: mod/settings.php:1124 mod/settings.php:1128 mod/settings.php:1132
+#: mod/settings.php:1136 mod/settings.php:1156 mod/settings.php:1157
+#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
+#: mod/follow.php:150 mod/profiles.php:636 mod/profiles.php:640
+#: mod/profiles.php:661 mod/register.php:238
+msgid "No"
+msgstr "Nee"
 
-#: include/event.php:450 include/text.php:1130
-msgid "Tuesday"
-msgstr "Dinsdag"
+#: mod/apps.php:14 index.php:245
+msgid "You must be logged in to use addons. "
+msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "
 
-#: include/event.php:451 include/text.php:1130
-msgid "Wednesday"
-msgstr "Woensdag"
+#: mod/apps.php:19
+msgid "Applications"
+msgstr "Toepassingen"
 
-#: include/event.php:452 include/text.php:1130
-msgid "Thursday"
-msgstr "Donderdag"
+#: mod/apps.php:22
+msgid "No installed applications."
+msgstr "Geen toepassingen geïnstalleerd"
 
-#: include/event.php:453 include/text.php:1130
-msgid "Friday"
-msgstr "Vrijdag"
+#: mod/attach.php:15
+msgid "Item not available."
+msgstr "Item niet beschikbaar"
 
-#: include/event.php:454 include/text.php:1130
-msgid "Saturday"
-msgstr "Zaterdag"
+#: mod/attach.php:25
+msgid "Item was not found."
+msgstr "Item niet gevonden"
 
-#: include/event.php:455
-msgid "Jan"
-msgstr ""
+#: mod/common.php:91
+msgid "No contacts in common."
+msgstr "Geen gedeelde contacten."
 
-#: include/event.php:456
-msgid "Feb"
-msgstr ""
+#: mod/common.php:140 mod/contacts.php:886
+msgid "Common Friends"
+msgstr "Gedeelde Vrienden"
 
-#: include/event.php:457
-msgid "Mar"
+#: mod/credits.php:18
+msgid "Credits"
 msgstr ""
 
-#: include/event.php:458
-msgid "Apr"
+#: 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 ""
 
-#: include/event.php:459 include/event.php:471 include/text.php:1134
-msgid "May"
-msgstr "Mei"
+#: mod/crepair.php:87
+msgid "Contact settings applied."
+msgstr "Contactinstellingen toegepast."
 
-#: include/event.php:460
-msgid "Jun"
-msgstr ""
+#: mod/crepair.php:89
+msgid "Contact update failed."
+msgstr "Aanpassen van contact mislukt."
 
-#: include/event.php:461
-msgid "Jul"
-msgstr ""
+#: mod/crepair.php:110 mod/dfrn_confirm.php:131 mod/fsuggest.php:30
+#: mod/fsuggest.php:96
+msgid "Contact not found."
+msgstr "Contact niet gevonden"
 
-#: include/event.php:462
-msgid "Aug"
+#: mod/crepair.php:114
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
 msgstr ""
 
-#: include/event.php:463
-msgid "Sept"
-msgstr ""
+#: mod/crepair.php:115
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."
 
-#: include/event.php:464
-msgid "Oct"
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "No mirroring"
 msgstr ""
 
-#: include/event.php:465
-msgid "Nov"
+#: mod/crepair.php:129
+msgid "Mirror as forwarded posting"
 msgstr ""
 
-#: include/event.php:466
-msgid "Dec"
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "Mirror as my own posting"
 msgstr ""
 
-#: include/event.php:467 include/text.php:1134
-msgid "January"
-msgstr "Januari"
-
-#: include/event.php:468 include/text.php:1134
-msgid "February"
-msgstr "Februari"
+#: mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr "Ga terug naar contactbewerker"
 
-#: include/event.php:469 include/text.php:1134
-msgid "March"
-msgstr "Maart"
+#: mod/crepair.php:146
+msgid "Refetch contact data"
+msgstr ""
 
-#: include/event.php:470 include/text.php:1134
-msgid "April"
-msgstr "April"
+#: mod/crepair.php:148 mod/invite.php:150 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/install.php:251
+#: mod/install.php:290 mod/events.php:530 mod/profiles.php:672
+#: mod/contacts.php:610 src/Object/Post.php:790
+#: view/theme/duepuntozero/config.php:71 view/theme/frio/config.php:113
+#: view/theme/quattro/config.php:73 view/theme/vier/config.php:119
+msgid "Submit"
+msgstr "Opslaan"
 
-#: include/event.php:472 include/text.php:1134
-msgid "June"
-msgstr "Juni"
+#: mod/crepair.php:149
+msgid "Remote Self"
+msgstr ""
 
-#: include/event.php:473 include/text.php:1134
-msgid "July"
-msgstr "Juli"
+#: mod/crepair.php:152
+msgid "Mirror postings from this contact"
+msgstr ""
 
-#: include/event.php:474 include/text.php:1134
-msgid "August"
-msgstr "Augustus"
+#: mod/crepair.php:154
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr ""
 
-#: include/event.php:475 include/text.php:1134
-msgid "September"
-msgstr "September"
+#: mod/crepair.php:158 mod/settings.php:677 mod/settings.php:703
+#: mod/admin.php:490 mod/admin.php:1781 mod/admin.php:1793 mod/admin.php:1806
+#: mod/admin.php:1822
+msgid "Name"
+msgstr "Naam"
 
-#: include/event.php:476 include/text.php:1134
-msgid "October"
-msgstr "Oktober"
+#: mod/crepair.php:159
+msgid "Account Nickname"
+msgstr "Bijnaam account"
 
-#: include/event.php:477 include/text.php:1134
-msgid "November"
-msgstr "November"
+#: mod/crepair.php:160
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam"
 
-#: include/event.php:478 include/text.php:1134
-msgid "December"
-msgstr "December"
+#: mod/crepair.php:161
+msgid "Account URL"
+msgstr "URL account"
 
-#: include/event.php:479 mod/cal.php:283 mod/events.php:388
-msgid "today"
-msgstr ""
+#: mod/crepair.php:162
+msgid "Friend Request URL"
+msgstr "URL vriendschapsverzoek"
 
-#: include/event.php:483
-msgid "all-day"
-msgstr ""
+#: mod/crepair.php:163
+msgid "Friend Confirm URL"
+msgstr "URL vriendschapsbevestiging"
 
-#: include/event.php:485
-msgid "No events to display"
+#: mod/crepair.php:164
+msgid "Notification Endpoint URL"
 msgstr ""
 
-#: include/event.php:574
-msgid "l, F j"
-msgstr "l j F"
+#: mod/crepair.php:165
+msgid "Poll/Feed URL"
+msgstr "URL poll/feed"
 
-#: include/event.php:593
-msgid "Edit event"
-msgstr "Gebeurtenis bewerken"
+#: mod/crepair.php:166
+msgid "New photo from this URL"
+msgstr "Nieuwe foto van deze URL"
 
-#: include/event.php:615 include/text.php:1532 include/text.php:1539
-msgid "link to source"
-msgstr "Verwijzing naar bron"
+#: mod/fbrowser.php:34 src/Content/Nav.php:102 src/Model/Profile.php:904
+#: view/theme/frio/theme.php:261
+msgid "Photos"
+msgstr "Foto's"
 
-#: include/event.php:850
-msgid "Export"
-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 "Contactfoto's"
 
-#: include/event.php:851
-msgid "Export calendar as ical"
-msgstr ""
+#: mod/fbrowser.php:105 mod/fbrowser.php:136 mod/profile_photo.php:250
+msgid "Upload"
+msgstr "Uploaden"
 
-#: include/event.php:852
-msgid "Export calendar as csv"
-msgstr ""
+#: mod/fbrowser.php:131
+msgid "Files"
+msgstr "Bestanden"
 
-#: include/nav.php:35 mod/navigation.php:19
-msgid "Nothing new here"
-msgstr "Niets nieuw hier"
+#: 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:292
+msgid "Not Found"
+msgstr "Niet gevonden"
 
-#: include/nav.php:39 mod/navigation.php:23
-msgid "Clear notifications"
-msgstr "Notificaties verwijderen"
+#: mod/hcard.php:18
+msgid "No profile"
+msgstr "Geen profiel"
 
-#: include/nav.php:40 include/text.php:1015
-msgid "@name, !forum, #tags, content"
-msgstr ""
+#: mod/help.php:48
+msgid "Help:"
+msgstr "Help:"
 
-#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792
-msgid "Logout"
-msgstr "Uitloggen"
+#: mod/help.php:54 src/Content/Nav.php:134 view/theme/vier/theme.php:298
+msgid "Help"
+msgstr "Help"
 
-#: include/nav.php:78 view/theme/frio/theme.php:246
-msgid "End this session"
-msgstr "Deze sessie beëindigen"
+#: mod/help.php:63 index.php:297
+msgid "Page not found."
+msgstr "Pagina niet gevonden"
 
-#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637
-#: mod/contacts.php:833 view/theme/frio/theme.php:249
-msgid "Status"
-msgstr "Tijdlijn"
+#: mod/home.php:39
+#, php-format
+msgid "Welcome to %s"
+msgstr "Welkom op %s"
 
-#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249
-msgid "Your posts and conversations"
-msgstr "Jouw berichten en conversaties"
+#: mod/lockview.php:38 mod/lockview.php:46
+msgid "Remote privacy information not available."
+msgstr "Privacyinformatie op afstand niet beschikbaar."
 
-#: include/nav.php:82 include/identity.php:605 include/identity.php:691
-#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32
-#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250
-msgid "Profile"
-msgstr "Profiel"
+#: mod/lockview.php:55
+msgid "Visible to:"
+msgstr "Zichtbaar voor:"
 
-#: include/nav.php:82 view/theme/frio/theme.php:250
-msgid "Your profile page"
-msgstr "Jouw profiel pagina"
+#: mod/maintenance.php:24
+msgid "System down for maintenance"
+msgstr "Systeem onbeschikbaar wegens onderhoud"
 
-#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32
-#: view/theme/frio/theme.php:251
-msgid "Photos"
-msgstr "Foto's"
+#: mod/newmember.php:11
+msgid "Welcome to Friendica"
+msgstr "Welkom bij Friendica"
 
-#: include/nav.php:83 view/theme/frio/theme.php:251
-msgid "Your photos"
-msgstr "Jouw foto's"
+#: mod/newmember.php:12
+msgid "New Member Checklist"
+msgstr "Checklist voor nieuwe leden"
 
-#: include/nav.php:84 include/identity.php:738 include/identity.php:741
-#: view/theme/frio/theme.php:252
-msgid "Videos"
-msgstr "Video's"
+#: 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 "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen."
 
-#: include/nav.php:84 view/theme/frio/theme.php:252
-msgid "Your videos"
-msgstr ""
+#: mod/newmember.php:15
+msgid "Getting Started"
+msgstr "Aan de slag"
 
-#: include/nav.php:85 include/nav.php:149 include/identity.php:750
-#: include/identity.php:761 mod/cal.php:275 mod/events.php:379
-#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257
-msgid "Events"
-msgstr "Gebeurtenissen"
+#: mod/newmember.php:17
+msgid "Friendica Walk-Through"
+msgstr "Doorloop Friendica"
 
-#: include/nav.php:85 view/theme/frio/theme.php:253
-msgid "Your events"
-msgstr "Jouw gebeurtenissen"
+#: mod/newmember.php:17
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden."
 
-#: include/nav.php:86
-msgid "Personal notes"
-msgstr "Persoonlijke nota's"
+#: mod/newmember.php:19 mod/settings.php:124 mod/admin.php:1906
+#: mod/admin.php:2175 src/Content/Nav.php:206 view/theme/frio/theme.php:269
+msgid "Settings"
+msgstr "Instellingen"
 
-#: include/nav.php:86
-msgid "Your personal notes"
-msgstr ""
+#: mod/newmember.php:21
+msgid "Go to Your Settings"
+msgstr "Ga naar je instellingen"
 
-#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793
-msgid "Login"
-msgstr "Login"
+#: mod/newmember.php:21
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Verander je initieel wachtwoord op je <em>instellingenpagina</em>. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web."
 
-#: include/nav.php:95
-msgid "Sign in"
-msgstr "Inloggen"
+#: 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 "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden."
 
-#: include/nav.php:105 include/nav.php:161
-#: include/NotificationsManager.php:174
-msgid "Home"
-msgstr "Tijdlijn"
+#: mod/newmember.php:24 mod/profperm.php:113 mod/contacts.php:671
+#: mod/contacts.php:863 src/Content/Nav.php:101 src/Model/Profile.php:730
+#: src/Model/Profile.php:863 src/Model/Profile.php:896
+#: view/theme/frio/theme.php:260
+msgid "Profile"
+msgstr "Profiel"
 
-#: include/nav.php:105
-msgid "Home Page"
-msgstr "Jouw tijdlijn"
+#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:691
+msgid "Upload Profile Photo"
+msgstr "Profielfoto uploaden"
 
-#: include/nav.php:109 mod/register.php:289 boot.php:1768
-msgid "Register"
-msgstr "Registreer"
+#: 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 "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen."
 
-#: include/nav.php:109
-msgid "Create an account"
-msgstr "Maak een accoount"
+#: mod/newmember.php:27
+msgid "Edit Your Profile"
+msgstr "Bewerk je profiel"
 
-#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
-msgid "Help"
-msgstr "Help"
+#: mod/newmember.php:27
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Bewerk je <strong>standaard</strong> profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen."
 
-#: include/nav.php:115
-msgid "Help and documentation"
-msgstr "Hulp en documentatie"
+#: mod/newmember.php:28
+msgid "Profile Keywords"
+msgstr "Sleutelwoorden voor dit profiel"
 
-#: include/nav.php:119
-msgid "Apps"
-msgstr "Apps"
+#: 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 "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen."
 
-#: include/nav.php:119
-msgid "Addon applications, utilities, games"
-msgstr "Extra toepassingen, hulpmiddelen of spelletjes"
+#: mod/newmember.php:30
+msgid "Connecting"
+msgstr "Verbinding aan het maken"
 
-#: include/nav.php:123 include/text.php:1012 mod/search.php:149
-msgid "Search"
-msgstr "Zoeken"
+#: mod/newmember.php:36
+msgid "Importing Emails"
+msgstr "E-mails importeren"
 
-#: include/nav.php:123
-msgid "Search site content"
-msgstr "Doorzoek de inhoud van de website"
+#: 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 "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren"
 
-#: include/nav.php:126 include/text.php:1020
-msgid "Full Text"
-msgstr ""
+#: mod/newmember.php:39
+msgid "Go to Your Contacts Page"
+msgstr "Ga naar je contactenpagina"
 
-#: include/nav.php:127 include/text.php:1021
-msgid "Tags"
-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 <em>Add New Contact</em> dialog."
+msgstr "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de <em>Voeg nieuw contact toe</em> dialoog."
 
-#: include/nav.php:128 include/nav.php:192 include/identity.php:783
-#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792
-#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260
-msgid "Contacts"
-msgstr "Contacten"
+#: mod/newmember.php:40
+msgid "Go to Your Site's Directory"
+msgstr "Ga naar de gids van je website"
 
-#: include/nav.php:143 include/nav.php:145 mod/community.php:36
-msgid "Community"
-msgstr "Website"
+#: mod/newmember.php:40
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord <em>Connect</em> of <em>Follow</em> op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd."
 
-#: include/nav.php:143
-msgid "Conversations on this site"
-msgstr "Conversaties op deze website"
+#: mod/newmember.php:41
+msgid "Finding New People"
+msgstr "Nieuwe mensen vinden"
 
-#: include/nav.php:145
-msgid "Conversations on the network"
-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 "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden."
 
-#: include/nav.php:149 include/identity.php:753 include/identity.php:764
-#: view/theme/frio/theme.php:257
-msgid "Events and Calendar"
-msgstr "Gebeurtenissen en kalender"
+#: mod/newmember.php:43 src/Model/Group.php:401
+msgid "Groups"
+msgstr "Groepen"
 
-#: include/nav.php:152
-msgid "Directory"
-msgstr "Gids"
+#: mod/newmember.php:45
+msgid "Group Your Contacts"
+msgstr "Groepeer je contacten"
 
-#: include/nav.php:152
-msgid "People directory"
-msgstr "Personengids"
+#: 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 "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen gespreksgroepen indelen vanuit de zijbalk van je 'Contacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. "
 
-#: include/nav.php:154
-msgid "Information"
-msgstr "Informatie"
+#: mod/newmember.php:48
+msgid "Why Aren't My Posts Public?"
+msgstr "Waarom zijn mijn berichten niet openbaar?"
 
-#: include/nav.php:154
-msgid "Information about this friendica instance"
-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 "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie."
 
-#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411
-#: view/theme/frio/theme.php:256
-msgid "Network"
-msgstr "Netwerk"
+#: mod/newmember.php:52
+msgid "Getting Help"
+msgstr "Hulp krijgen"
 
-#: include/nav.php:158 view/theme/frio/theme.php:256
-msgid "Conversations from your friends"
-msgstr "Conversaties van je vrienden"
+#: mod/newmember.php:54
+msgid "Go to the Help Section"
+msgstr "Ga naar de help"
 
-#: include/nav.php:159
-msgid "Network Reset"
-msgstr "Netwerkpagina opnieuw instellen"
+#: mod/newmember.php:54
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Je kunt onze <strong>help</strong> pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma."
 
-#: include/nav.php:159
-msgid "Load Network page with no filters"
-msgstr "Laad de netwerkpagina zonder filters"
+#: mod/nogroup.php:42 mod/viewcontacts.php:112 mod/contacts.php:619
+#: mod/contacts.php:959
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Bekijk het profiel van %s [%s]"
 
-#: include/nav.php:166 include/NotificationsManager.php:181
-msgid "Introductions"
-msgstr "Verzoeken"
+#: mod/nogroup.php:43 mod/contacts.php:960
+msgid "Edit contact"
+msgstr "Contact bewerken"
 
-#: include/nav.php:166
-msgid "Friend Requests"
-msgstr "Vriendschapsverzoeken"
+#: mod/nogroup.php:63
+msgid "Contacts who are not members of a group"
+msgstr "Contacten die geen leden zijn van een groep"
 
-#: include/nav.php:169 mod/notifications.php:96
-msgid "Notifications"
-msgstr "Notificaties"
+#: mod/p.php:14
+msgid "Not Extended"
+msgstr ""
 
-#: include/nav.php:170
-msgid "See all notifications"
-msgstr "Toon alle notificaties"
+#: mod/repair_ostatus.php:18
+msgid "Resubscribing to OStatus contacts"
+msgstr ""
 
-#: include/nav.php:171 mod/settings.php:902
-msgid "Mark as seen"
-msgstr "Als 'gelezen' markeren"
+#: mod/repair_ostatus.php:34
+msgid "Error"
+msgstr ""
 
-#: include/nav.php:171
-msgid "Mark all system notifications seen"
-msgstr "Alle systeemnotificaties als gelezen markeren"
+#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64
+msgid "Done"
+msgstr "Klaar"
 
-#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258
-msgid "Messages"
-msgstr "Privéberichten"
+#: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88
+msgid "Keep this window open until done."
+msgstr "Houd dit scherm open tot het klaar is"
 
-#: include/nav.php:175 view/theme/frio/theme.php:258
-msgid "Private mail"
-msgstr "Privéberichten"
+#: mod/suggest.php:36
+msgid "Do you really want to delete this suggestion?"
+msgstr "Wil je echt dit voorstel verwijderen?"
 
-#: include/nav.php:176
-msgid "Inbox"
-msgstr "Inbox"
+#: mod/suggest.php:73
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."
 
-#: include/nav.php:177
-msgid "Outbox"
-msgstr "Verzonden berichten"
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
+msgstr "Negeren/Verbergen"
 
-#: include/nav.php:178 mod/message.php:16
-msgid "New Message"
-msgstr "Nieuw Bericht"
+#: mod/suggest.php:114 src/Content/Widget.php:64 view/theme/vier/theme.php:203
+msgid "Friend Suggestions"
+msgstr "Vriendschapsvoorstellen"
 
-#: include/nav.php:181
-msgid "Manage"
-msgstr "Beheren"
+#: mod/uimport.php:55 mod/register.php:191
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw."
 
-#: include/nav.php:181
-msgid "Manage other pages"
-msgstr "Andere pagina's beheren"
+#: mod/uimport.php:70 mod/register.php:285
+msgid "Import"
+msgstr "Importeren"
 
-#: include/nav.php:184 mod/settings.php:81
-msgid "Delegations"
+#: mod/uimport.php:72
+msgid "Move account"
+msgstr "Account verplaatsen"
+
+#: mod/uimport.php:73
+msgid "You can import an account from another Friendica server."
+msgstr "Je kunt een account van een andere Friendica server importeren."
+
+#: mod/uimport.php:74
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent."
+
+#: mod/uimport.php:75
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (GNU Social/Statusnet) or from Diaspora"
 msgstr ""
 
-#: include/nav.php:184 mod/delegate.php:130
-msgid "Delegate Page Management"
-msgstr "Paginabeheer uitbesteden"
+#: mod/uimport.php:76
+msgid "Account file"
+msgstr "Account bestand"
 
-#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
-#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259
-msgid "Settings"
-msgstr "Instellingen"
+#: mod/uimport.php:76
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr ""
 
-#: include/nav.php:186 view/theme/frio/theme.php:259
-msgid "Account settings"
-msgstr "Account instellingen"
+#: 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
+msgid "[Embedded content - reload page to view]"
+msgstr "[Ingebedde inhoud - herlaad pagina om het te bekijken]"
 
-#: include/nav.php:189 include/identity.php:282
-msgid "Profiles"
-msgstr "Profielen"
+#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s heet %2$s van harte welkom"
 
-#: include/nav.php:189
-msgid "Manage/Edit Profiles"
-msgstr "Beheer/Wijzig Profielen"
+#: mod/match.php:48
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel."
 
-#: include/nav.php:192 view/theme/frio/theme.php:260
-msgid "Manage/edit friends and contacts"
-msgstr "Beheer/Wijzig vrienden en contacten"
+#: mod/match.php:104
+msgid "is interested in:"
+msgstr "Is geïnteresseerd in:"
 
-#: include/nav.php:197 mod/admin.php:186
-msgid "Admin"
-msgstr "Beheer"
+#: mod/match.php:120
+msgid "Profile Match"
+msgstr "Profielmatch"
 
-#: include/nav.php:197
-msgid "Site setup and configuration"
-msgstr "Website opzetten en configureren"
+#: mod/match.php:125 mod/dirfind.php:253
+msgid "No matches"
+msgstr "Geen resultaten"
 
-#: include/nav.php:200
-msgid "Navigation"
-msgstr "Navigatie"
+#: mod/notifications.php:37
+msgid "Invalid request identifier."
+msgstr "Ongeldige <em>request identifier</em>."
 
-#: include/nav.php:200
-msgid "Site map"
-msgstr "Sitemap"
+#: mod/notifications.php:46 mod/notifications.php:183
+#: mod/notifications.php:230
+msgid "Discard"
+msgstr "Verwerpen"
 
-#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
-#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
-#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
-msgid "Contact Photos"
-msgstr "Contactfoto's"
+#: 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 "Negeren"
 
-#: include/security.php:22
-msgid "Welcome "
-msgstr "Welkom"
+#: mod/notifications.php:98 src/Content/Nav.php:189
+msgid "Notifications"
+msgstr "Notificaties"
 
-#: include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Upload een profielfoto."
+#: mod/notifications.php:107
+msgid "Network Notifications"
+msgstr "Netwerknotificaties"
 
-#: include/security.php:26
-msgid "Welcome back "
-msgstr "Welkom terug "
+#: mod/notifications.php:113 mod/notify.php:81
+msgid "System Notifications"
+msgstr "Systeemnotificaties"
 
-#: include/security.php:373
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr ""
+#: mod/notifications.php:119
+msgid "Personal Notifications"
+msgstr "Persoonlijke notificaties"
 
-#: include/NotificationsManager.php:153
-msgid "System"
-msgstr "Systeem"
+#: mod/notifications.php:125
+msgid "Home Notifications"
+msgstr "Tijdlijn-notificaties"
 
-#: include/NotificationsManager.php:167 mod/profiles.php:703
-#: mod/network.php:845
-msgid "Personal"
-msgstr "Persoonlijk"
+#: mod/notifications.php:155
+msgid "Show Ignored Requests"
+msgstr "Toon genegeerde verzoeken"
 
-#: include/NotificationsManager.php:234 include/NotificationsManager.php:244
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s gaf een reactie op het bericht van %s"
+#: mod/notifications.php:155
+msgid "Hide Ignored Requests"
+msgstr "Verberg genegeerde verzoeken"
 
-#: include/NotificationsManager.php:243
-#, php-format
-msgid "%s created a new post"
-msgstr "%s schreef een nieuw bericht"
+#: mod/notifications.php:167 mod/notifications.php:237
+msgid "Notification type: "
+msgstr "Notificatiesoort:"
 
-#: include/NotificationsManager.php:256
+#: mod/notifications.php:170
 #, php-format
-msgid "%s liked %s's post"
-msgstr "%s vond het bericht van %s leuk"
+msgid "suggested by %s"
+msgstr "Voorgesteld door %s"
 
-#: include/NotificationsManager.php:267
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s vond het bericht van %s niet leuk"
+#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
+msgid "Hide this contact from others"
+msgstr "Verberg dit contact voor anderen"
 
-#: include/NotificationsManager.php:278
-#, php-format
-msgid "%s is attending %s's event"
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "Post a new friend activity"
+msgstr "Bericht over een nieuwe vriend"
+
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "if applicable"
+msgstr "Indien toepasbaar"
+
+#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1796
+msgid "Approve"
+msgstr "Goedkeuren"
+
+#: mod/notifications.php:198
+msgid "Claims to be known to you: "
+msgstr "Denkt dat u hem of haar kent:"
+
+#: mod/notifications.php:199
+msgid "yes"
+msgstr "Ja"
+
+#: mod/notifications.php:199
+msgid "no"
+msgstr "Nee"
+
+#: mod/notifications.php:200 mod/notifications.php:205
+msgid "Shall your connection be bidirectional or not?"
 msgstr ""
 
-#: include/NotificationsManager.php:289
+#: mod/notifications.php:201 mod/notifications.php:206
 #, php-format
-msgid "%s is not attending %s's event"
+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 ""
 
-#: include/NotificationsManager.php:300
+#: mod/notifications.php:202
 #, php-format
-msgid "%s may attend %s's event"
+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 ""
 
-#: include/NotificationsManager.php:315
+#: mod/notifications.php:207
 #, php-format
-msgid "%s is now friends with %s"
-msgstr "%s is nu bevriend met %s"
+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 ""
 
-#: include/NotificationsManager.php:748
-msgid "Friend Suggestion"
-msgstr "Vriendschapsvoorstel"
+#: mod/notifications.php:218
+msgid "Friend"
+msgstr "Vriend"
 
-#: include/NotificationsManager.php:781
-msgid "Friend/Connect Request"
-msgstr "Vriendschapsverzoek"
+#: mod/notifications.php:219
+msgid "Sharer"
+msgstr "Deler"
 
-#: include/NotificationsManager.php:781
-msgid "New Follower"
-msgstr "Nieuwe Volger"
+#: mod/notifications.php:219
+msgid "Subscriber"
+msgstr ""
 
-#: include/dbstructure.php:26
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+#: mod/notifications.php:247 mod/events.php:518 mod/directory.php:148
+#: mod/contacts.php:660 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
+msgid "Location:"
+msgstr "Plaats:"
+
+#: mod/notifications.php:249 mod/directory.php:154 mod/contacts.php:664
+#: src/Model/Profile.php:423 src/Model/Profile.php:806
+msgid "About:"
+msgstr "Over:"
+
+#: mod/notifications.php:251 mod/follow.php:174 mod/contacts.php:666
+#: src/Model/Profile.php:794
+msgid "Tags:"
+msgstr "Labels:"
+
+#: mod/notifications.php:253 mod/directory.php:151 src/Model/Profile.php:420
+#: src/Model/Profile.php:745
+msgid "Gender:"
+msgstr "Geslacht:"
+
+#: mod/notifications.php:258 mod/unfollow.php:122 mod/follow.php:166
+#: mod/contacts.php:656 mod/admin.php:490 mod/admin.php:500
+msgid "Profile URL"
+msgstr "Profiel url"
+
+#: mod/notifications.php:261 mod/contacts.php:71 src/Model/Profile.php:518
+msgid "Network:"
+msgstr "Netwerk:"
+
+#: mod/notifications.php:275
+msgid "No introductions."
+msgstr "Geen vriendschaps- of connectieverzoeken."
+
+#: mod/notifications.php:316
+msgid "Show unread"
 msgstr ""
 
-#: include/dbstructure.php:31
+#: mod/notifications.php:316
+msgid "Show all"
+msgstr ""
+
+#: mod/notifications.php:322
 #, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
+msgid "No more %s notifications."
 msgstr ""
 
-#: include/dbstructure.php:183
-msgid "Errors encountered creating database tables."
-msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."
+#: mod/openid.php:29
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID protocol fout. Geen ID Gevonden."
 
-#: include/dbstructure.php:260
-msgid "Errors encountered performing database changes."
-msgstr ""
+#: mod/openid.php:66
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website."
 
-#: include/delivery.php:446
-msgid "(no subject)"
-msgstr "(geen onderwerp)"
+#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:134
+msgid "Login failed."
+msgstr "Login mislukt."
 
-#: include/diaspora.php:1958
-msgid "Sharing notification from Diaspora network"
-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."
+msgstr "Profiel niet gevonden"
 
-#: include/diaspora.php:2864
-msgid "Attachments:"
-msgstr "Bijlagen:"
+#: mod/dfrn_confirm.php:132
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd."
 
-#: include/network.php:595
-msgid "view full size"
-msgstr "Volledig formaat"
+#: mod/dfrn_confirm.php:242
+msgid "Response from remote site was not understood."
+msgstr "Antwoord van de website op afstand werd niet begrepen."
 
-#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398
-#: include/conversation.php:968 include/conversation.php:984
-#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
-#: mod/match.php:71 mod/suggest.php:82
-msgid "View Profile"
-msgstr "Bekijk profiel"
+#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "Onverwacht antwoord van website op afstand:"
 
-#: include/Contact.php:397 include/conversation.php:967
-msgid "View Status"
-msgstr "Bekijk status"
+#: mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "Bevestiging werd correct voltooid."
 
-#: include/Contact.php:399 include/conversation.php:969
-msgid "View Photos"
-msgstr "Bekijk foto's"
+#: mod/dfrn_confirm.php:275
+msgid "Temporary failure. Please wait and try again."
+msgstr "Tijdelijke fout. Wacht even en probeer opnieuw."
 
-#: include/Contact.php:400 include/conversation.php:970
-msgid "Network Posts"
-msgstr "Netwerkberichten"
+#: mod/dfrn_confirm.php:278
+msgid "Introduction failed or was revoked."
+msgstr "Verzoek mislukt of herroepen."
 
-#: include/Contact.php:401 include/conversation.php:971
-msgid "View Contact"
-msgstr ""
+#: mod/dfrn_confirm.php:283
+msgid "Remote site reported: "
+msgstr "Website op afstand berichtte: "
 
-#: include/Contact.php:402
-msgid "Drop Contact"
-msgstr "Verwijder contact"
+#: mod/dfrn_confirm.php:396
+msgid "Unable to set contact photo."
+msgstr "Ik kan geen contact foto instellen."
 
-#: include/Contact.php:403 include/conversation.php:972
-msgid "Send PM"
-msgstr "Stuur een privébericht"
+#: mod/dfrn_confirm.php:498
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Geen gebruiker gevonden voor '%s'"
 
-#: include/Contact.php:404 include/conversation.php:976
-msgid "Poke"
-msgstr "Aanstoten"
+#: mod/dfrn_confirm.php:508
+msgid "Our site encryption key is apparently messed up."
+msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."
 
-#: include/Contact.php:775
-msgid "Organisation"
-msgstr ""
+#: mod/dfrn_confirm.php:519
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons."
 
-#: include/Contact.php:778
-msgid "News"
-msgstr ""
+#: mod/dfrn_confirm.php:535
+msgid "Contact record was not found for you on our site."
+msgstr "We vonden op onze webstek geen contactrecord voor jou."
+
+#: mod/dfrn_confirm.php:549
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s."
+
+#: mod/dfrn_confirm.php:565
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken."
 
-#: include/Contact.php:781
-msgid "Forum"
-msgstr "Forum"
+#: mod/dfrn_confirm.php:576
+msgid "Unable to set your contact credentials on our system."
+msgstr "Niet in staat om op dit systeem je contactreferenties in te stellen."
 
-#: include/api.php:1018
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
+#: mod/dfrn_confirm.php:631
+msgid "Unable to update your contact profile details on our system"
 msgstr ""
 
-#: include/api.php:1038
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr ""
+#: mod/dfrn_confirm.php:661 mod/dfrn_request.php:568
+#: src/Model/Contact.php:1520
+msgid "[Name Withheld]"
+msgstr "[Naam achtergehouden]"
 
-#: include/api.php:1059
+#: mod/dfrn_confirm.php:694
 #, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr ""
+msgid "%1$s has joined %2$s"
+msgstr "%1$s is toegetreden tot %2$s"
 
-#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058
-msgid "Image/photo"
-msgstr "Afbeelding/foto"
+#: mod/invite.php:33
+msgid "Total invitation limit exceeded."
+msgstr "Totale uitnodigingslimiet overschreden."
 
-#: include/bbcode.php:467
+#: mod/invite.php:55
 #, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr ""
-
-#: include/bbcode.php:1017 include/bbcode.php:1037
-msgid "$1 wrote:"
-msgstr "$1 schreef:"
-
-#: include/bbcode.php:1066 include/bbcode.php:1067
-msgid "Encrypted content"
-msgstr "Versleutelde inhoud"
+msgid "%s : Not a valid email address."
+msgstr "%s: Geen geldig e-mailadres."
 
-#: include/bbcode.php:1169
-msgid "Invalid source protocol"
-msgstr ""
+#: mod/invite.php:80
+msgid "Please join us on Friendica"
+msgstr "Kom bij ons op Friendica"
 
-#: include/bbcode.php:1179
-msgid "Invalid link protocol"
-msgstr ""
+#: mod/invite.php:91
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website."
 
-#: include/conversation.php:147
+#: mod/invite.php:95
 #, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr ""
+msgid "%s : Message delivery failed."
+msgstr "%s : Aflevering van bericht mislukt."
 
-#: include/conversation.php:150
+#: mod/invite.php:99
 #, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr ""
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d bericht verzonden."
+msgstr[1] "%d berichten verzonden."
 
-#: include/conversation.php:153
-#, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr ""
+#: mod/invite.php:117
+msgid "You have no more invitations available"
+msgstr "Je kunt geen uitnodigingen meer sturen"
 
-#: include/conversation.php:185 mod/dfrn_confirm.php:477
+#: mod/invite.php:125
 #, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s is nu bevriend met %2$s"
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken."
 
-#: include/conversation.php:219
+#: mod/invite.php:127
 #, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stootte %2$s aan"
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website."
 
-#: include/conversation.php:239 mod/mood.php:62
+#: mod/invite.php:128
 #, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s is op dit moment %2$s"
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten."
 
-#: include/conversation.php:278 mod/tagger.php:95
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s labelde %3$s van %2$s met %4$s"
+#: mod/invite.php:132
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen."
 
-#: include/conversation.php:303
-msgid "post/item"
-msgstr "bericht/item"
+#: mod/invite.php:136
+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 ""
 
-#: include/conversation.php:304
+#: mod/invite.php:135
 #, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s markeerde %2$s's %3$s als favoriet"
+msgid "To accept this invitation, please visit and register at %s."
+msgstr ""
 
-#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
-#: mod/photos.php:1607
-msgid "Likes"
-msgstr "Houdt van"
+#: mod/invite.php:142
+msgid "Send invitations"
+msgstr "Verstuur uitnodigingen"
 
-#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
-#: mod/photos.php:1607
-msgid "Dislikes"
-msgstr "Houdt niet van"
+#: mod/invite.php:143
+msgid "Enter email addresses, one per line:"
+msgstr "Vul e-mailadressen in, één per lijn:"
 
-#: include/conversation.php:586 include/conversation.php:1481
-#: mod/content.php:373 mod/photos.php:1608
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/invite.php:144 mod/wallmessage.php:141 mod/message.php:259
+#: mod/message.php:426
+msgid "Your message:"
+msgstr "Jouw bericht:"
 
-#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
-msgid "Not attending"
-msgstr ""
+#: mod/invite.php:145
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen."
 
-#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
-msgid "Might attend"
-msgstr ""
+#: mod/invite.php:147
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code"
 
-#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
-#: mod/photos.php:1681 object/Item.php:133
-msgid "Select"
-msgstr "Kies"
+#: mod/invite.php:147
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:"
 
-#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
-#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741
-#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007
-#: object/Item.php:134
-msgid "Delete"
-msgstr "Verwijder"
+#: mod/invite.php:149
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendi.ca"
+msgstr ""
 
-#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
-#: mod/content.php:911 object/Item.php:367 object/Item.php:368
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Bekijk het profiel van %s @ %s"
+#: 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 ""
 
-#: include/conversation.php:765 object/Item.php:355
-msgid "Categories:"
-msgstr "Categorieën:"
+#: mod/wall_attach.php:101
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr ""
 
-#: include/conversation.php:766 object/Item.php:356
-msgid "Filed under:"
-msgstr "Bewaard onder:"
+#: mod/wall_attach.php:101
+msgid "Or - did you try to upload an empty file?"
+msgstr ""
 
-#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
-#: object/Item.php:381
+#: mod/wall_attach.php:112
 #, php-format
-msgid "%s from %s"
-msgstr "%s van %s"
-
-#: include/conversation.php:789 mod/content.php:513
-msgid "View in context"
-msgstr "In context bekijken"
+msgid "File exceeds size limit of %s"
+msgstr ""
 
-#: include/conversation.php:791 include/conversation.php:1264
-#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
-#: mod/message.php:548 mod/content.php:515 mod/content.php:948
-#: mod/photos.php:1570 object/Item.php:406
-msgid "Please wait"
-msgstr "Even geduld"
+#: mod/wall_attach.php:136 mod/wall_attach.php:152
+msgid "File upload failed."
+msgstr "Uploaden van bestand mislukt."
 
-#: include/conversation.php:870
-msgid "remove"
-msgstr "verwijder"
+#: mod/manage.php:180
+msgid "Manage Identities and/or Pages"
+msgstr "Beheer Identiteiten en/of Pagina's"
 
-#: include/conversation.php:874
-msgid "Delete Selected Items"
-msgstr "Geselecteerde items verwijderen"
+#: 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 "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen."
 
-#: include/conversation.php:966
-msgid "Follow Thread"
-msgstr "Conversatie volgen"
+#: mod/manage.php:182
+msgid "Select an identity to manage: "
+msgstr "Selecteer een identiteit om te beheren:"
 
-#: include/conversation.php:1097
-#, php-format
-msgid "%s likes this."
-msgstr "%s vindt dit leuk."
+#: mod/dfrn_request.php:94
+msgid "This introduction has already been accepted."
+msgstr "Verzoek is al goedgekeurd"
 
-#: include/conversation.php:1100
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s vindt dit niet leuk."
+#: mod/dfrn_request.php:112 mod/dfrn_request.php:359
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profiel is ongeldig of bevat geen informatie"
 
-#: include/conversation.php:1103
-#, php-format
-msgid "%s attends."
-msgstr ""
+#: mod/dfrn_request.php:116 mod/dfrn_request.php:363
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar."
 
-#: include/conversation.php:1106
-#, php-format
-msgid "%s doesn't attend."
-msgstr ""
+#: mod/dfrn_request.php:119 mod/dfrn_request.php:366
+msgid "Warning: profile location has no profile photo."
+msgstr "Waarschuwing: Profieladres heeft geen profielfoto."
 
-#: include/conversation.php:1109
+#: mod/dfrn_request.php:123 mod/dfrn_request.php:370
 #, php-format
-msgid "%s attends maybe."
-msgstr ""
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "De %d vereiste parameter is niet op het gegeven adres gevonden"
+msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden"
 
-#: include/conversation.php:1119
-msgid "and"
-msgstr "en"
+#: mod/dfrn_request.php:162
+msgid "Introduction complete."
+msgstr "Verzoek voltooid."
 
-#: include/conversation.php:1125
-#, php-format
-msgid ", and %d other people"
-msgstr ", en %d andere mensen"
+#: mod/dfrn_request.php:199
+msgid "Unrecoverable protocol error."
+msgstr "Onherstelbare protocolfout. "
 
-#: include/conversation.php:1134
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d mensen</span> vinden dit leuk"
+#: mod/dfrn_request.php:226
+msgid "Profile unavailable."
+msgstr "Profiel onbeschikbaar"
 
-#: include/conversation.php:1135
+#: mod/dfrn_request.php:248
 #, php-format
-msgid "%s like this."
-msgstr ""
+msgid "%s has received too many connection requests today."
+msgstr "%s heeft te veel verzoeken gehad vandaag."
 
-#: include/conversation.php:1138
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d people</span> vinden dit niet leuk"
+#: mod/dfrn_request.php:249
+msgid "Spam protection measures have been invoked."
+msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden."
 
-#: include/conversation.php:1139
-#, php-format
-msgid "%s don't like this."
-msgstr ""
+#: mod/dfrn_request.php:250
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen."
 
-#: include/conversation.php:1142
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
-msgstr ""
+#: mod/dfrn_request.php:280
+msgid "Invalid locator"
+msgstr "Ongeldige plaatsbepaler"
 
-#: include/conversation.php:1143
-#, php-format
-msgid "%s attend."
-msgstr ""
+#: mod/dfrn_request.php:316
+msgid "You have already introduced yourself here."
+msgstr "Je hebt jezelf hier al voorgesteld."
 
-#: include/conversation.php:1146
+#: mod/dfrn_request.php:319
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
-msgstr ""
+msgid "Apparently you are already friends with %s."
+msgstr "Blijkbaar bent u al bevriend met %s."
 
-#: include/conversation.php:1147
-#, php-format
-msgid "%s don't attend."
-msgstr ""
+#: mod/dfrn_request.php:339
+msgid "Invalid profile URL."
+msgstr "Ongeldig profiel adres."
 
-#: include/conversation.php:1150
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
-msgstr ""
+#: mod/dfrn_request.php:345 src/Model/Contact.php:1223
+msgid "Disallowed profile URL."
+msgstr "Niet toegelaten profiel adres."
 
-#: include/conversation.php:1151
-#, php-format
-msgid "%s anttend maybe."
+#: mod/dfrn_request.php:351 mod/friendica.php:128 mod/admin.php:353
+#: mod/admin.php:371 src/Model/Contact.php:1228
+msgid "Blocked domain"
 msgstr ""
 
-#: include/conversation.php:1190 include/conversation.php:1208
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Zichtbaar voor <strong>iedereen</strong>"
-
-#: include/conversation.php:1191 include/conversation.php:1209
-#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
-#: mod/message.php:299 mod/message.php:442 mod/message.php:450
-msgid "Please enter a link URL:"
-msgstr "Vul een internetadres/URL in:"
+#: mod/dfrn_request.php:419 mod/contacts.php:230
+msgid "Failed to update contact record."
+msgstr "Ik kon de contactgegevens niet aanpassen."
 
-#: include/conversation.php:1192 include/conversation.php:1210
-msgid "Please enter a video link/URL:"
-msgstr "Vul een videolink/URL in:"
+#: mod/dfrn_request.php:439
+msgid "Your introduction has been sent."
+msgstr "Je verzoek is verzonden."
 
-#: include/conversation.php:1193 include/conversation.php:1211
-msgid "Please enter an audio link/URL:"
-msgstr "Vul een audiolink/URL in:"
+#: mod/dfrn_request.php:477
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
+msgstr ""
 
-#: include/conversation.php:1194 include/conversation.php:1212
-msgid "Tag term:"
-msgstr "Label:"
+#: mod/dfrn_request.php:493
+msgid "Please login to confirm introduction."
+msgstr "Log in om je verzoek te bevestigen."
 
-#: include/conversation.php:1195 include/conversation.php:1213
-#: mod/filer.php:30
-msgid "Save to Folder:"
-msgstr "Bewaren in map:"
+#: mod/dfrn_request.php:501
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Je huidige identiteit is niet de juiste. Log met <strong>dit</strong> profiel in."
 
-#: include/conversation.php:1196 include/conversation.php:1214
-msgid "Where are you right now?"
-msgstr "Waar ben je nu?"
+#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
+msgid "Confirm"
+msgstr "Bevestig"
 
-#: include/conversation.php:1197
-msgid "Delete item(s)?"
-msgstr "Item(s) verwijderen?"
+#: mod/dfrn_request.php:527
+msgid "Hide this contact"
+msgstr "Verberg dit contact"
 
-#: include/conversation.php:1245 mod/photos.php:1569
-msgid "Share"
-msgstr "Delen"
+#: mod/dfrn_request.php:530
+#, php-format
+msgid "Welcome home %s."
+msgstr "Welkom terug %s."
 
-#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154
-#: mod/message.php:354 mod/message.php:545
-msgid "Upload photo"
-msgstr "Foto uploaden"
+#: mod/dfrn_request.php:531
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s."
 
-#: include/conversation.php:1247 mod/editpost.php:111
-msgid "upload photo"
-msgstr "Foto uploaden"
+#: mod/dfrn_request.php:607 mod/probe.php:13 mod/viewcontacts.php:45
+#: mod/webfinger.php:16 mod/search.php:98 mod/search.php:104
+#: 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 "Niet vrij toegankelijk"
 
-#: include/conversation.php:1248 mod/editpost.php:112
-msgid "Attach file"
-msgstr "Bestand bijvoegen"
+#: mod/dfrn_request.php:642
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:"
 
-#: include/conversation.php:1249 mod/editpost.php:113
-msgid "attach file"
-msgstr "bestand bijvoegen"
+#: mod/dfrn_request.php:645
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, <a href=\"%s\">follow "
+"this link to find a public Friendica site and join us today</a>."
+msgstr ""
 
-#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155
-#: mod/message.php:355 mod/message.php:546
-msgid "Insert web link"
-msgstr "Voeg een webadres in"
+#: mod/dfrn_request.php:650
+msgid "Friend/Connection Request"
+msgstr "Vriendschaps-/connectieverzoek"
 
-#: include/conversation.php:1251 mod/editpost.php:115
-msgid "web link"
-msgstr "webadres"
+#: mod/dfrn_request.php:651
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@gnusocial.de"
+msgstr ""
 
-#: include/conversation.php:1252 mod/editpost.php:116
-msgid "Insert video link"
-msgstr "Voeg video toe"
+#: mod/dfrn_request.php:652 mod/follow.php:149
+msgid "Please answer the following:"
+msgstr "Beantwoord het volgende:"
 
-#: include/conversation.php:1253 mod/editpost.php:117
-msgid "video link"
-msgstr "video adres"
+#: mod/dfrn_request.php:653 mod/follow.php:150
+#, php-format
+msgid "Does %s know you?"
+msgstr "Kent %s jou?"
 
-#: include/conversation.php:1254 mod/editpost.php:118
-msgid "Insert audio link"
-msgstr "Voeg audio adres toe"
+#: mod/dfrn_request.php:654 mod/follow.php:151
+msgid "Add a personal note:"
+msgstr "Voeg een persoonlijke opmerking toe:"
 
-#: include/conversation.php:1255 mod/editpost.php:119
-msgid "audio link"
-msgstr "audio adres"
+#: mod/dfrn_request.php:656 src/Content/ContactSelector.php:79
+msgid "Friendica"
+msgstr "Friendica"
 
-#: include/conversation.php:1256 mod/editpost.php:120
-msgid "Set your location"
-msgstr "Stel uw locatie in"
+#: mod/dfrn_request.php:657
+msgid "GNU Social (Pleroma, Mastodon)"
+msgstr ""
 
-#: include/conversation.php:1257 mod/editpost.php:121
-msgid "set location"
-msgstr "Stel uw locatie in"
+#: mod/dfrn_request.php:658
+msgid "Diaspora (Socialhome, Hubzilla)"
+msgstr ""
 
-#: include/conversation.php:1258 mod/editpost.php:122
-msgid "Clear browser location"
-msgstr "Verwijder locatie uit uw webbrowser"
+#: mod/dfrn_request.php:659
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk."
 
-#: include/conversation.php:1259 mod/editpost.php:123
-msgid "clear location"
-msgstr "Verwijder locatie uit uw webbrowser"
+#: mod/dfrn_request.php:660 mod/unfollow.php:113 mod/follow.php:157
+msgid "Your Identity Address:"
+msgstr "Adres van uw identiteit:"
 
-#: include/conversation.php:1261 mod/editpost.php:137
-msgid "Set title"
-msgstr "Titel plaatsen"
+#: mod/dfrn_request.php:662 mod/unfollow.php:65 mod/follow.php:62
+msgid "Submit Request"
+msgstr "Aanvraag indienen"
 
-#: include/conversation.php:1263 mod/editpost.php:139
-msgid "Categories (comma-separated list)"
-msgstr "Categorieën (komma-gescheiden lijst)"
+#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: include/conversation.php:1265 mod/editpost.php:125
-msgid "Permission settings"
-msgstr "Instellingen van rechten"
+#: mod/localtime.php:33
+msgid "Time Conversion"
+msgstr "Tijdsconversie"
 
-#: include/conversation.php:1266 mod/editpost.php:154
-msgid "permissions"
-msgstr "rechten"
+#: mod/localtime.php:35
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones."
 
-#: include/conversation.php:1274 mod/editpost.php:134
-msgid "Public post"
-msgstr "Openbare post"
+#: mod/localtime.php:39
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC tijd: %s"
 
-#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737
-#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
-#: mod/photos.php:1725 object/Item.php:729
-msgid "Preview"
-msgstr "Voorvertoning"
+#: mod/localtime.php:42
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Huidige Tijdzone: %s"
 
-#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101
-#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148
-#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235
-#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705
-#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876
-#: mod/follow.php:121
-msgid "Cancel"
-msgstr "Annuleren"
+#: mod/localtime.php:46
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Omgerekende lokale tijd: %s"
 
-#: include/conversation.php:1289
-msgid "Post to Groups"
-msgstr "Verzenden naar Groepen"
+#: mod/localtime.php:52
+msgid "Please select your timezone:"
+msgstr "Selecteer je tijdzone:"
 
-#: include/conversation.php:1290
-msgid "Post to Contacts"
-msgstr "Verzenden naar Contacten"
+#: mod/probe.php:14 mod/webfinger.php:17
+msgid "Only logged in users are permitted to perform a probing."
+msgstr ""
 
-#: include/conversation.php:1291
-msgid "Private post"
-msgstr "Privé verzending"
+#: mod/profperm.php:28 mod/group.php:83 index.php:415
+msgid "Permission denied"
+msgstr "Toegang geweigerd"
 
-#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152
-msgid "Message"
-msgstr "Bericht"
+#: mod/profperm.php:34 mod/profperm.php:65
+msgid "Invalid profile identifier."
+msgstr "Ongeldige profiel-identificatie."
 
-#: include/conversation.php:1297 mod/editpost.php:153
-msgid "Browser"
+#: mod/profperm.php:111
+msgid "Profile Visibility Editor"
 msgstr ""
 
-#: include/conversation.php:1453
-msgid "View all"
-msgstr ""
+#: mod/profperm.php:115 mod/group.php:265
+msgid "Click on a contact to add or remove."
+msgstr "Klik op een contact om het toe te voegen of te verwijderen."
 
-#: include/conversation.php:1475
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/profperm.php:124
+msgid "Visible To"
+msgstr "Zichtbaar voor"
 
-#: include/conversation.php:1478
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/profperm.php:140
+msgid "All Contacts (with secure profile access)"
+msgstr "Alle contacten (met veilige profieltoegang)"
 
-#: include/conversation.php:1484
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/regmod.php:68
+msgid "Account approved."
+msgstr "Account goedgekeurd."
 
-#: include/dfrn.php:1108
+#: mod/regmod.php:93
 #, php-format
-msgid "%s\\'s birthday"
-msgstr ""
-
-#: include/features.php:70
-msgid "General Features"
-msgstr "Algemene functies"
-
-#: include/features.php:72
-msgid "Multiple Profiles"
-msgstr "Meerdere profielen"
+msgid "Registration revoked for %s"
+msgstr "Registratie ingetrokken voor %s"
 
-#: include/features.php:72
-msgid "Ability to create multiple profiles"
-msgstr "Mogelijkheid om meerdere profielen aan te maken"
+#: mod/regmod.php:102
+msgid "Please login."
+msgstr "Inloggen."
 
-#: include/features.php:73
-msgid "Photo Location"
-msgstr ""
+#: mod/removeme.php:55 mod/removeme.php:58
+msgid "Remove My Account"
+msgstr "Verwijder mijn account"
 
-#: include/features.php:73
+#: mod/removeme.php:56
 msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present)"
-" prior to stripping metadata and links it to a map."
-msgstr ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is."
 
-#: include/features.php:74
-msgid "Export Public Calendar"
-msgstr ""
+#: mod/removeme.php:57
+msgid "Please enter your password for verification:"
+msgstr "Voer je wachtwoord in voor verificatie:"
 
-#: include/features.php:74
-msgid "Ability for visitors to download the public calendar"
-msgstr ""
+#: mod/viewcontacts.php:87
+msgid "No contacts."
+msgstr "Geen contacten."
 
-#: include/features.php:79
-msgid "Post Composition Features"
-msgstr "Functies voor het opstellen van berichten"
+#: mod/viewsrc.php:12
+msgid "Access denied."
+msgstr "Toegang geweigerd"
 
-#: include/features.php:80
-msgid "Richtext Editor"
-msgstr "Tekstverwerker met opmaak"
+#: mod/wallmessage.php:49 mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr ""
 
-#: include/features.php:80
-msgid "Enable richtext editor"
-msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties"
+#: mod/wallmessage.php:57 mod/message.php:73
+msgid "No recipient selected."
+msgstr "Geen ontvanger geselecteerd."
 
-#: include/features.php:81
-msgid "Post Preview"
-msgstr "Voorvertoning bericht"
+#: mod/wallmessage.php:60
+msgid "Unable to check your home location."
+msgstr "Niet in staat om je tijdlijn-locatie vast te stellen"
 
-#: include/features.php:81
-msgid "Allow previewing posts and comments before publishing them"
-msgstr ""
+#: mod/wallmessage.php:63 mod/message.php:80
+msgid "Message could not be sent."
+msgstr "Bericht kon niet verzonden worden."
 
-#: include/features.php:82
-msgid "Auto-mention Forums"
-msgstr ""
+#: mod/wallmessage.php:66 mod/message.php:83
+msgid "Message collection failure."
+msgstr "Fout bij het verzamelen van berichten."
 
-#: include/features.php:82
-msgid ""
-"Add/remove mention when a forum page is selected/deselected in ACL window."
-msgstr ""
+#: mod/wallmessage.php:69 mod/message.php:86
+msgid "Message sent."
+msgstr "Bericht verzonden."
 
-#: include/features.php:87
-msgid "Network Sidebar Widgets"
-msgstr "Zijbalkwidgets op netwerkpagina"
+#: mod/wallmessage.php:86 mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Geen ontvanger."
 
-#: include/features.php:88
-msgid "Search by Date"
-msgstr "Zoeken op datum"
+#: mod/wallmessage.php:132 mod/message.php:250
+msgid "Send Private Message"
+msgstr "Verstuur privébericht"
 
-#: include/features.php:88
-msgid "Ability to select posts by date ranges"
-msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik"
+#: 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 "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat."
 
-#: include/features.php:89 include/features.php:119
-msgid "List Forums"
-msgstr ""
+#: mod/wallmessage.php:134 mod/message.php:251 mod/message.php:421
+msgid "To:"
+msgstr "Aan:"
 
-#: include/features.php:89
-msgid "Enable widget to display the forums your are connected with"
-msgstr ""
+#: mod/wallmessage.php:135 mod/message.php:255 mod/message.php:423
+msgid "Subject:"
+msgstr "Onderwerp:"
 
-#: include/features.php:90
-msgid "Group Filter"
-msgstr "Groepsfilter"
+#: mod/uexport.php:44
+msgid "Export account"
+msgstr "Account exporteren"
 
-#: include/features.php:90
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen"
+#: 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 "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server."
 
-#: include/features.php:91
-msgid "Network Filter"
-msgstr "Netwerkfilter"
+#: mod/uexport.php:45
+msgid "Export all"
+msgstr "Alles exporteren"
 
-#: include/features.php:91
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken"
+#: 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 "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"
 
-#: include/features.php:92 mod/search.php:34 mod/network.php:200
-msgid "Saved Searches"
-msgstr "Opgeslagen zoekopdrachten"
+#: mod/uexport.php:52 mod/settings.php:108
+msgid "Export personal data"
+msgstr "Persoonlijke gegevens exporteren"
 
-#: include/features.php:92
-msgid "Save search terms for re-use"
-msgstr "Sla zoekopdrachten op voor hergebruik"
+#: mod/filer.php:34
+msgid "- select -"
+msgstr "- Kies -"
 
-#: include/features.php:97
-msgid "Network Tabs"
-msgstr "Netwerktabs"
+#: mod/notify.php:77
+msgid "No more system notifications."
+msgstr "Geen systeemnotificaties meer."
 
-#: include/features.php:98
-msgid "Network Personal Tab"
-msgstr "Persoonlijke netwerktab"
+#: mod/ping.php:292
+msgid "{0} wants to be your friend"
+msgstr "{0} wilt je vriend worden"
 
-#: include/features.php:98
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"
+#: mod/ping.php:307
+msgid "{0} sent you a message"
+msgstr "{0} stuurde jou een bericht"
 
-#: include/features.php:99
-msgid "Network New Tab"
-msgstr "Nieuwe netwerktab"
+#: mod/ping.php:322
+msgid "{0} requested registration"
+msgstr "{0} vroeg om zich te registreren"
 
-#: include/features.php:99
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)"
+#: mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Aanstoten/porren"
 
-#: include/features.php:100
-msgid "Network Shared Links Tab"
-msgstr ""
+#: mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "aanstoten, porren of andere dingen met iemand doen"
 
-#: include/features.php:100
-msgid "Enable tab to display only Network posts with links in them"
-msgstr ""
+#: mod/poke.php:194
+msgid "Recipient"
+msgstr "Ontvanger"
 
-#: include/features.php:105
-msgid "Post/Comment Tools"
-msgstr "Bericht-/reactiehulpmiddelen"
+#: mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Kies wat je met de ontvanger wil doen"
 
-#: include/features.php:106
-msgid "Multiple Deletion"
-msgstr "Meervoudige verwijdering"
+#: mod/poke.php:198
+msgid "Make this post private"
+msgstr "Dit bericht privé maken"
 
-#: include/features.php:106
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer"
+#: mod/subthread.php:113
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s volgt %3$s van %2$s"
 
-#: include/features.php:107
-msgid "Edit Sent Posts"
-msgstr "Bewerk verzonden berichten"
+#: mod/tagrm.php:47
+msgid "Tag removed"
+msgstr "Label verwijderd"
 
-#: include/features.php:107
-msgid "Edit and correct posts and comments after sending"
-msgstr "Bewerk en corrigeer berichten en reacties na verzending"
+#: mod/tagrm.php:85
+msgid "Remove Item Tag"
+msgstr "Verwijder label van item"
 
-#: include/features.php:108
-msgid "Tagging"
-msgstr "Labelen"
+#: mod/tagrm.php:87
+msgid "Select a tag to remove: "
+msgstr "Selecteer een label om te verwijderen: "
 
-#: include/features.php:108
-msgid "Ability to tag existing posts"
-msgstr "Mogelijkheid om bestaande berichten te labelen"
+#: mod/tagrm.php:98 mod/delegate.php:177
+msgid "Remove"
+msgstr "Verwijderen"
 
-#: include/features.php:109
-msgid "Post Categories"
-msgstr "Categorieën berichten"
+#: 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 ""
 
-#: include/features.php:109
-msgid "Add categories to your posts"
-msgstr "Voeg categorieën toe aan je berichten"
+#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162
+msgid "Unable to process image."
+msgstr "Niet in staat om de afbeelding te verwerken"
 
-#: include/features.php:110
-msgid "Ability to file posts under folders"
-msgstr "Mogelijkheid om berichten in mappen te bewaren"
+#: 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 ""
 
-#: include/features.php:111
-msgid "Dislike Posts"
-msgstr "Vind berichten niet leuk"
+#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307
+msgid "Image upload failed."
+msgstr "Uploaden van afbeelding mislukt."
 
-#: include/features.php:111
-msgid "Ability to dislike posts/comments"
-msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden"
+#: mod/search.php:37 mod/network.php:194
+msgid "Remove term"
+msgstr "Verwijder zoekterm"
 
-#: include/features.php:112
-msgid "Star Posts"
-msgstr "Geef berichten een ster"
+#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100
+msgid "Saved Searches"
+msgstr "Opgeslagen zoekopdrachten"
 
-#: include/features.php:112
-msgid "Ability to mark special posts with a star indicator"
+#: mod/search.php:105
+msgid "Only logged in users are permitted to perform a search."
 msgstr ""
 
-#: include/features.php:113
-msgid "Mute Post Notifications"
+#: mod/search.php:129
+msgid "Too Many Requests"
 msgstr ""
 
-#: include/features.php:113
-msgid "Ability to mute notifications for a thread"
+#: mod/search.php:130
+msgid "Only one search per minute is permitted for not logged in users."
 msgstr ""
 
-#: include/features.php:118
-msgid "Advanced Profile Settings"
+#: mod/search.php:228 mod/community.php:136
+msgid "No results."
+msgstr "Geen resultaten."
+
+#: mod/search.php:234
+#, php-format
+msgid "Items tagged with: %s"
 msgstr ""
 
-#: include/features.php:119
-msgid "Show visitors public community forums at the Advanced Profile Page"
+#: mod/search.php:236 mod/contacts.php:819
+#, php-format
+msgid "Results for: %s"
 msgstr ""
 
-#: include/follow.php:81 mod/dfrn_request.php:509
-msgid "Disallowed profile URL."
-msgstr "Niet toegelaten profiel adres."
+#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:312
+msgid "Login"
+msgstr "Login"
 
-#: include/follow.php:86
-msgid "Connect URL missing."
+#: mod/bookmarklet.php:51
+msgid "The post was created"
 msgstr ""
 
-#: include/follow.php:113
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken."
+#: mod/community.php:46
+msgid "Community option not available."
+msgstr ""
 
-#: include/follow.php:114 include/follow.php:134
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt."
+#: mod/community.php:63
+msgid "Not available."
+msgstr "Niet beschikbaar"
 
-#: include/follow.php:132
-msgid "The profile address specified does not provide adequate information."
+#: mod/community.php:76
+msgid "Local Community"
 msgstr ""
 
-#: include/follow.php:136
-msgid "An author or name was not found."
+#: mod/community.php:79
+msgid "Posts from local users on this server"
 msgstr ""
 
-#: include/follow.php:138
-msgid "No browser URL could be matched to this address."
+#: mod/community.php:87
+msgid "Global Community"
 msgstr ""
 
-#: include/follow.php:140
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact."
-
-#: include/follow.php:141
-msgid "Use mailto: in front of address to force email check."
-msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."
+#: mod/community.php:90
+msgid "Posts from users of the whole federated network"
+msgstr ""
 
-#: include/follow.php:147
+#: mod/community.php:180
 msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
+"This community stream shows all public posts received by this node. They may"
+" not reflect the opinions of this node’s users."
 msgstr ""
 
-#: include/follow.php:157
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
+#: mod/editpost.php:25 mod/editpost.php:35
+msgid "Item not found"
+msgstr "Item niet gevonden"
+
+#: mod/editpost.php:42
+msgid "Edit post"
+msgstr "Bericht bewerken"
+
+#: mod/editpost.php:134 src/Core/ACL.php:315
+msgid "CC: email addresses"
+msgstr "CC: e-mailadressen"
+
+#: mod/editpost.php:141 src/Core/ACL.php:316
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"
+
+#: mod/feedtest.php:20
+msgid "You must be logged in to use this module"
 msgstr ""
 
-#: include/follow.php:258
-msgid "Unable to retrieve contact information."
+#: mod/feedtest.php:48
+msgid "Source URL"
 msgstr ""
 
-#: include/identity.php:42
-msgid "Requested account is not available."
-msgstr "Gevraagde account is niet beschikbaar."
+#: mod/fsuggest.php:72
+msgid "Friend suggestion sent."
+msgstr "Vriendschapsvoorstel verzonden."
 
-#: include/identity.php:51 mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "Gevraagde profiel is niet beschikbaar."
+#: mod/fsuggest.php:101
+msgid "Suggest Friends"
+msgstr "Stel vrienden voor"
 
-#: include/identity.php:95 include/identity.php:311 include/identity.php:688
-msgid "Edit profile"
-msgstr "Bewerk profiel"
+#: mod/fsuggest.php:103
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Stel een vriend voor aan %s"
 
-#: include/identity.php:251
-msgid "Atom feed"
-msgstr ""
+#: mod/group.php:36
+msgid "Group created."
+msgstr "Groep aangemaakt."
 
-#: include/identity.php:282
-msgid "Manage/edit profiles"
-msgstr "Beheer/wijzig profielen"
+#: mod/group.php:42
+msgid "Could not create group."
+msgstr "Kon de groep niet aanmaken."
 
-#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
-msgid "Change profile photo"
-msgstr "Profiel foto wijzigen"
+#: mod/group.php:56 mod/group.php:157
+msgid "Group not found."
+msgstr "Groep niet gevonden."
 
-#: include/identity.php:288 mod/profiles.php:796
-msgid "Create New Profile"
-msgstr "Maak nieuw profiel"
+#: mod/group.php:70
+msgid "Group name changed."
+msgstr "Groepsnaam gewijzigd."
 
-#: include/identity.php:298 mod/profiles.php:785
-msgid "Profile Image"
-msgstr "Profiel afbeelding"
+#: mod/group.php:97
+msgid "Save Group"
+msgstr "Bewaar groep"
 
-#: include/identity.php:301 mod/profiles.php:787
-msgid "visible to everybody"
-msgstr "zichtbaar voor iedereen"
+#: mod/group.php:102
+msgid "Create a group of contacts/friends."
+msgstr "Maak een groep contacten/vrienden aan."
 
-#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
-msgid "Edit visibility"
-msgstr "Pas zichtbaarheid aan"
+#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:408
+msgid "Group Name: "
+msgstr "Groepsnaam:"
 
-#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
-#: mod/directory.php:139
-msgid "Gender:"
-msgstr "Geslacht:"
+#: mod/group.php:127
+msgid "Group removed."
+msgstr "Groep verwijderd."
 
-#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
-msgid "Status:"
-msgstr "Tijdlijn:"
+#: mod/group.php:129
+msgid "Unable to remove group."
+msgstr "Niet in staat om groep te verwijderen."
 
-#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
-msgid "Homepage:"
-msgstr "Website:"
+#: mod/group.php:192
+msgid "Delete Group"
+msgstr ""
 
-#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
-#: mod/directory.php:145 mod/contacts.php:632
-msgid "About:"
-msgstr "Over:"
+#: mod/group.php:198
+msgid "Group Editor"
+msgstr "Groepsbewerker"
 
-#: include/identity.php:339 mod/contacts.php:630
-msgid "XMPP:"
+#: mod/group.php:203
+msgid "Edit Group Name"
 msgstr ""
 
-#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
-msgid "Network:"
-msgstr "Netwerk:"
+#: mod/group.php:213
+msgid "Members"
+msgstr "Leden"
 
-#: include/identity.php:451 include/identity.php:535
-msgid "g A l F d"
-msgstr "G l j F"
+#: mod/group.php:215 mod/contacts.php:719
+msgid "All Contacts"
+msgstr "Alle Contacten"
 
-#: include/identity.php:452 include/identity.php:536
-msgid "F d"
-msgstr "d F"
+#: mod/group.php:216 mod/network.php:639
+msgid "Group is empty"
+msgstr "De groep is leeg"
 
-#: include/identity.php:497 include/identity.php:582
-msgid "[today]"
-msgstr "[vandaag]"
+#: mod/group.php:229
+msgid "Remove Contact"
+msgstr ""
 
-#: include/identity.php:509
-msgid "Birthday Reminders"
-msgstr "Verjaardagsherinneringen"
+#: mod/group.php:253
+msgid "Add Contact"
+msgstr ""
 
-#: include/identity.php:510
-msgid "Birthdays this week:"
-msgstr "Verjaardagen deze week:"
+#: mod/item.php:114
+msgid "Unable to locate original post."
+msgstr "Ik kan de originele post niet meer vinden."
 
-#: include/identity.php:569
-msgid "[No description]"
-msgstr "[Geen omschrijving]"
+#: mod/item.php:274
+msgid "Empty post discarded."
+msgstr "Lege post weggegooid."
 
-#: include/identity.php:593
-msgid "Event Reminders"
-msgstr "Gebeurtenisherinneringen"
+#: mod/item.php:799
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk."
 
-#: include/identity.php:594
-msgid "Events this week:"
-msgstr "Gebeurtenissen deze week:"
+#: mod/item.php:801
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Je kunt ze online bezoeken op %s"
 
-#: include/identity.php:614 mod/settings.php:1279
-msgid "Full Name:"
-msgstr "Volledige Naam:"
+#: mod/item.php:802
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen."
 
-#: include/identity.php:621
-msgid "j F, Y"
-msgstr "F j Y"
+#: mod/item.php:806
+#, php-format
+msgid "%s posted an update."
+msgstr "%s heeft een wijziging geplaatst."
 
-#: include/identity.php:622
-msgid "j F"
-msgstr "F j"
+#: mod/message.php:30 src/Content/Nav.php:198
+msgid "New Message"
+msgstr "Nieuw Bericht"
 
-#: include/identity.php:633
-msgid "Age:"
-msgstr "Leeftijd:"
+#: mod/message.php:77
+msgid "Unable to locate contact information."
+msgstr "Ik kan geen contact informatie vinden."
 
-#: include/identity.php:642
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "voor %1$d %2$s"
+#: mod/message.php:112 src/Content/Nav.php:195 view/theme/frio/theme.php:268
+msgid "Messages"
+msgstr "Privéberichten"
 
-#: include/identity.php:645 mod/profiles.php:710
-msgid "Sexual Preference:"
-msgstr "Seksuele Voorkeur:"
+#: mod/message.php:136
+msgid "Do you really want to delete this message?"
+msgstr "Wil je echt dit bericht verwijderen?"
 
-#: include/identity.php:649 mod/profiles.php:737
-msgid "Hometown:"
-msgstr "Woonplaats:"
+#: mod/message.php:156
+msgid "Message deleted."
+msgstr "Bericht verwijderd."
 
-#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634
-#: mod/follow.php:134
-msgid "Tags:"
-msgstr "Labels:"
+#: mod/message.php:185
+msgid "Conversation removed."
+msgstr "Gesprek verwijderd."
 
-#: include/identity.php:653 mod/profiles.php:738
-msgid "Political Views:"
-msgstr "Politieke standpunten:"
+#: mod/message.php:291
+msgid "No messages."
+msgstr "Geen berichten."
 
-#: include/identity.php:655
-msgid "Religion:"
-msgstr "Religie:"
+#: mod/message.php:330
+msgid "Message not available."
+msgstr "Bericht niet beschikbaar."
 
-#: include/identity.php:659
-msgid "Hobbies/Interests:"
-msgstr "Hobby:"
+#: mod/message.php:397
+msgid "Delete message"
+msgstr "Verwijder bericht"
 
-#: include/identity.php:661 mod/profiles.php:742
-msgid "Likes:"
-msgstr "Houdt van:"
+#: mod/message.php:399 mod/message.php:500
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: include/identity.php:663 mod/profiles.php:743
-msgid "Dislikes:"
-msgstr "Houdt niet van:"
+#: mod/message.php:414 mod/message.php:497
+msgid "Delete conversation"
+msgstr "Verwijder gesprek"
 
-#: include/identity.php:666
-msgid "Contact information and Social Networks:"
-msgstr "Contactinformatie en sociale netwerken:"
+#: mod/message.php:416
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> antwoorden vanaf de profiel-pagina van de afzender."
 
-#: include/identity.php:668
-msgid "Musical interests:"
-msgstr "Muzikale interesse "
+#: mod/message.php:420
+msgid "Send Reply"
+msgstr "Verstuur Antwoord"
 
-#: include/identity.php:670
-msgid "Books, literature:"
-msgstr "Boeken, literatuur:"
+#: mod/message.php:471
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Onbekende afzender - %s"
 
-#: include/identity.php:672
-msgid "Television:"
-msgstr "Televisie"
+#: mod/message.php:473
+#, php-format
+msgid "You and %s"
+msgstr "Jij en %s"
 
-#: include/identity.php:674
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/dans/cultuur/ontspanning:"
+#: mod/message.php:475
+#, php-format
+msgid "%s and You"
+msgstr "%s en jij"
 
-#: include/identity.php:676
-msgid "Love/Romance:"
-msgstr "Liefde/romance:"
+#: mod/message.php:503
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d bericht"
+msgstr[1] "%d berichten"
 
-#: include/identity.php:678
-msgid "Work/employment:"
-msgstr "Werk/beroep:"
+#: mod/network.php:202 src/Model/Group.php:400
+msgid "add"
+msgstr "toevoegen"
 
-#: include/identity.php:680
-msgid "School/education:"
-msgstr "School/opleiding:"
+#: 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] ""
 
-#: include/identity.php:684
-msgid "Forums:"
+#: mod/network.php:550
+msgid "Messages in this group won't be send to these receivers."
 msgstr ""
 
-#: include/identity.php:692 mod/events.php:507
-msgid "Basic"
+#: mod/network.php:618
+msgid "No such group"
+msgstr "Zo'n groep bestaat niet"
+
+#: mod/network.php:643
+#, php-format
+msgid "Group: %s"
 msgstr ""
 
-#: include/identity.php:693 mod/events.php:508 mod/admin.php:959
-#: mod/contacts.php:870
-msgid "Advanced"
-msgstr "Geavanceerd"
+#: mod/network.php:669
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."
 
-#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142
-msgid "Status Messages and Posts"
-msgstr "Berichten op jouw tijdlijn"
+#: mod/network.php:672
+msgid "Invalid contact."
+msgstr "Ongeldig contact."
 
-#: include/identity.php:725 mod/contacts.php:844
-msgid "Profile Details"
-msgstr "Profieldetails"
+#: mod/network.php:921
+msgid "Commented Order"
+msgstr "Nieuwe reacties bovenaan"
 
-#: include/identity.php:733 mod/photos.php:87
-msgid "Photo Albums"
-msgstr "Fotoalbums"
+#: mod/network.php:924
+msgid "Sort by Comment Date"
+msgstr "Berichten met nieuwe reacties bovenaan"
 
-#: include/identity.php:772 mod/notes.php:46
-msgid "Personal Notes"
-msgstr "Persoonlijke Nota's"
+#: mod/network.php:929
+msgid "Posted Order"
+msgstr "Nieuwe berichten bovenaan"
 
-#: include/identity.php:775
-msgid "Only You Can See This"
-msgstr "Alleen jij kunt dit zien"
+#: mod/network.php:932
+msgid "Sort by Post Date"
+msgstr "Nieuwe berichten bovenaan"
 
-#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746
-msgid "[Name Withheld]"
-msgstr "[Naam achtergehouden]"
+#: mod/network.php:940 mod/profiles.php:687
+#: src/Core/NotificationsManager.php:185
+msgid "Personal"
+msgstr "Persoonlijk"
 
-#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15
-#: mod/display.php:103 mod/display.php:279 mod/display.php:478
-#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705
-msgid "Item not found."
-msgstr "Item niet gevonden."
+#: mod/network.php:943
+msgid "Posts that mention or involve you"
+msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben"
 
-#: include/items.php:1969
-msgid "Do you really want to delete this item?"
-msgstr "Wil je echt dit item verwijderen?"
+#: mod/network.php:951
+msgid "New"
+msgstr "Nieuw"
 
-#: include/items.php:1971 mod/api.php:105 mod/message.php:217
-#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677
-#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163
-#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
-#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
-#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
-#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
-#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110
-msgid "Yes"
-msgstr "Ja"
+#: mod/network.php:954
+msgid "Activity Stream - by date"
+msgstr "Activiteitenstroom - volgens datum"
 
-#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23
-#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101
-#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
-#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9
-#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103
-#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9
-#: mod/message.php:46 mod/message.php:182 mod/manage.php:96
-#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150
-#: mod/profile_photo.php:19 mod/profile_photo.php:175
-#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
-#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
-#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11
-#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58
-#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42
-#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665
-#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77
-#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61
-#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199
-#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401
-msgid "Permission denied."
-msgstr "Toegang geweigerd"
+#: mod/network.php:962
+msgid "Shared Links"
+msgstr "Gedeelde links"
 
-#: include/items.php:2239
-msgid "Archives"
-msgstr "Archieven"
+#: mod/network.php:965
+msgid "Interesting Links"
+msgstr "Interessante links"
 
-#: include/oembed.php:264
-msgid "Embedded content"
-msgstr "Ingebedde inhoud"
+#: mod/network.php:973
+msgid "Starred"
+msgstr "Met ster"
 
-#: include/oembed.php:272
-msgid "Embedding disabled"
-msgstr "Inbedden uitgeschakeld"
+#: mod/network.php:976
+msgid "Favourite Posts"
+msgstr "Favoriete berichten"
 
-#: include/ostatus.php:1825
-#, php-format
-msgid "%s is now following %s."
-msgstr ""
+#: mod/notes.php:52 src/Model/Profile.php:946
+msgid "Personal Notes"
+msgstr "Persoonlijke Nota's"
 
-#: include/ostatus.php:1826
-msgid "following"
-msgstr "volgend"
+#: mod/oexchange.php:30
+msgid "Post successful."
+msgstr "Bericht succesvol geplaatst."
 
-#: include/ostatus.php:1829
-#, php-format
-msgid "%s stopped following %s."
-msgstr ""
+#: mod/photos.php:108 src/Model/Profile.php:907
+msgid "Photo Albums"
+msgstr "Fotoalbums"
 
-#: include/ostatus.php:1830
-msgid "stopped following"
-msgstr ""
+#: mod/photos.php:109 mod/photos.php:1713
+msgid "Recent Photos"
+msgstr "Recente foto's"
 
-#: include/text.php:304
-msgid "newer"
-msgstr "nieuwere berichten"
+#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
+msgid "Upload New Photos"
+msgstr "Nieuwe foto's uploaden"
 
-#: include/text.php:306
-msgid "older"
-msgstr "oudere berichten"
+#: mod/photos.php:126 mod/settings.php:51
+msgid "everybody"
+msgstr "iedereen"
 
-#: include/text.php:311
-msgid "prev"
-msgstr "vorige"
+#: mod/photos.php:184
+msgid "Contact information unavailable"
+msgstr "Contactinformatie niet beschikbaar"
 
-#: include/text.php:313
-msgid "first"
-msgstr "eerste"
+#: mod/photos.php:204
+msgid "Album not found."
+msgstr "Album niet gevonden"
 
-#: include/text.php:345
-msgid "last"
-msgstr "laatste"
+#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
+msgid "Delete Album"
+msgstr "Verwijder album"
 
-#: include/text.php:348
-msgid "next"
-msgstr "volgende"
+#: mod/photos.php:243
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?"
 
-#: include/text.php:403
-msgid "Loading more entries..."
-msgstr ""
+#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
+msgid "Delete Photo"
+msgstr "Verwijder foto"
 
-#: include/text.php:404
-msgid "The end"
-msgstr ""
+#: mod/photos.php:319
+msgid "Do you really want to delete this photo?"
+msgstr "Wil je echt deze foto verwijderen?"
 
-#: include/text.php:889
-msgid "No contacts"
-msgstr "Geen contacten"
+#: mod/photos.php:667
+msgid "a photo"
+msgstr "een foto"
 
-#: include/text.php:912
+#: mod/photos.php:667
 #, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d contact"
-msgstr[1] "%d contacten"
-
-#: include/text.php:925
-msgid "View Contacts"
-msgstr "Bekijk contacten"
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s is gelabeld in %2$s door %3$s"
 
-#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31
-#: mod/editpost.php:109
-msgid "Save"
-msgstr "Bewaren"
+#: mod/photos.php:769
+msgid "Image upload didn't complete, please try again"
+msgstr ""
 
-#: include/text.php:1076
-msgid "poke"
-msgstr "aanstoten"
+#: mod/photos.php:772
+msgid "Image file is missing"
+msgstr ""
 
-#: include/text.php:1076
-msgid "poked"
-msgstr "aangestoten"
+#: mod/photos.php:777
+msgid ""
+"Server can't accept new file upload at this time, please contact your "
+"administrator"
+msgstr ""
 
-#: include/text.php:1077
-msgid "ping"
-msgstr "ping"
+#: mod/photos.php:803
+msgid "Image file is empty."
+msgstr "Afbeeldingsbestand is leeg."
 
-#: include/text.php:1077
-msgid "pinged"
-msgstr "gepingd"
+#: mod/photos.php:940
+msgid "No photos selected"
+msgstr "Geen foto's geselecteerd"
 
-#: include/text.php:1078
-msgid "prod"
-msgstr "porren"
+#: mod/photos.php:1036 mod/videos.php:309
+msgid "Access to this item is restricted."
+msgstr "Toegang tot dit item is beperkt."
 
-#: include/text.php:1078
-msgid "prodded"
-msgstr "gepord"
+#: mod/photos.php:1090
+msgid "Upload Photos"
+msgstr "Upload foto's"
 
-#: include/text.php:1079
-msgid "slap"
-msgstr "slaan"
+#: mod/photos.php:1094 mod/photos.php:1156
+msgid "New album name: "
+msgstr "Nieuwe albumnaam: "
 
-#: include/text.php:1079
-msgid "slapped"
-msgstr "geslagen"
+#: mod/photos.php:1095
+msgid "or existing album name: "
+msgstr "of bestaande albumnaam: "
 
-#: include/text.php:1080
-msgid "finger"
-msgstr "finger"
+#: mod/photos.php:1096
+msgid "Do not show a status post for this upload"
+msgstr "Toon geen bericht op je tijdlijn van deze upload"
 
-#: include/text.php:1080
-msgid "fingered"
-msgstr "gerfingerd"
+#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533
+#: src/Core/ACL.php:318
+msgid "Permissions"
+msgstr "Rechten"
 
-#: include/text.php:1081
-msgid "rebuff"
-msgstr "afpoeieren"
+#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1227
+msgid "Show to Groups"
+msgstr "Tonen aan groepen"
 
-#: include/text.php:1081
-msgid "rebuffed"
-msgstr "afgepoeierd"
+#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1228
+msgid "Show to Contacts"
+msgstr "Tonen aan contacten"
 
-#: include/text.php:1095
-msgid "happy"
-msgstr "Blij"
+#: mod/photos.php:1167
+msgid "Edit Album"
+msgstr "Album wijzigen"
 
-#: include/text.php:1096
-msgid "sad"
-msgstr "Verdrietig"
+#: mod/photos.php:1172
+msgid "Show Newest First"
+msgstr "Toon niewste eerst"
 
-#: include/text.php:1097
-msgid "mellow"
-msgstr "mellow"
+#: mod/photos.php:1174
+msgid "Show Oldest First"
+msgstr "Toon oudste eerst"
 
-#: include/text.php:1098
-msgid "tired"
-msgstr "vermoeid"
+#: mod/photos.php:1195 mod/photos.php:1698
+msgid "View Photo"
+msgstr "Bekijk foto"
 
-#: include/text.php:1099
-msgid "perky"
-msgstr "parmantig"
+#: mod/photos.php:1236
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."
 
-#: include/text.php:1100
-msgid "angry"
-msgstr "boos"
+#: mod/photos.php:1238
+msgid "Photo not available"
+msgstr "Foto is niet beschikbaar"
 
-#: include/text.php:1101
-msgid "stupified"
-msgstr "verbijsterd"
+#: mod/photos.php:1301
+msgid "View photo"
+msgstr "Bekijk foto"
 
-#: include/text.php:1102
-msgid "puzzled"
-msgstr "onzeker"
+#: mod/photos.php:1301
+msgid "Edit photo"
+msgstr "Bewerk foto"
 
-#: include/text.php:1103
-msgid "interested"
-msgstr "Geïnteresseerd"
+#: mod/photos.php:1302
+msgid "Use as profile photo"
+msgstr "Gebruik als profielfoto"
 
-#: include/text.php:1104
-msgid "bitter"
-msgstr "bitter"
+#: mod/photos.php:1308 src/Object/Post.php:149
+msgid "Private Message"
+msgstr "Privébericht"
 
-#: include/text.php:1105
-msgid "cheerful"
-msgstr "vrolijk"
+#: mod/photos.php:1327
+msgid "View Full Size"
+msgstr "Bekijk in volledig formaat"
 
-#: include/text.php:1106
-msgid "alive"
-msgstr "levend"
+#: mod/photos.php:1414
+msgid "Tags: "
+msgstr "Labels: "
 
-#: include/text.php:1107
-msgid "annoyed"
-msgstr "verveeld"
+#: mod/photos.php:1417
+msgid "[Remove any tag]"
+msgstr "[Alle labels verwijderen]"
 
-#: include/text.php:1108
-msgid "anxious"
-msgstr "bezorgd"
+#: mod/photos.php:1432
+msgid "New album name"
+msgstr "Nieuwe albumnaam"
 
-#: include/text.php:1109
-msgid "cranky"
-msgstr "humeurig "
+#: mod/photos.php:1433
+msgid "Caption"
+msgstr "Onderschrift"
 
-#: include/text.php:1110
-msgid "disturbed"
-msgstr "verontrust"
+#: mod/photos.php:1434
+msgid "Add a Tag"
+msgstr "Een label toevoegen"
 
-#: include/text.php:1111
-msgid "frustrated"
-msgstr "gefrustreerd"
+#: mod/photos.php:1434
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "
 
-#: include/text.php:1112
-msgid "motivated"
-msgstr "gemotiveerd"
+#: mod/photos.php:1435
+msgid "Do not rotate"
+msgstr ""
 
-#: include/text.php:1113
-msgid "relaxed"
-msgstr "ontspannen"
+#: mod/photos.php:1436
+msgid "Rotate CW (right)"
+msgstr "Roteren met de klok mee (rechts)"
 
-#: include/text.php:1114
-msgid "surprised"
-msgstr "verbaasd"
+#: mod/photos.php:1437
+msgid "Rotate CCW (left)"
+msgstr "Roteren tegen de klok in (links)"
 
-#: include/text.php:1324 mod/videos.php:380
-msgid "View Video"
-msgstr "Bekijk Video"
+#: mod/photos.php:1471 src/Object/Post.php:296
+msgid "I like this (toggle)"
+msgstr "Vind ik leuk"
 
-#: include/text.php:1356
-msgid "bytes"
-msgstr "bytes"
+#: mod/photos.php:1472 src/Object/Post.php:297
+msgid "I don't like this (toggle)"
+msgstr "Vind ik niet leuk"
 
-#: include/text.php:1388 include/text.php:1400
-msgid "Click to open/close"
-msgstr "klik om te openen/sluiten"
+#: mod/photos.php:1488 mod/photos.php:1527 mod/photos.php:1600
+#: mod/contacts.php:953 src/Object/Post.php:787
+msgid "This is you"
+msgstr "Dit ben jij"
 
-#: include/text.php:1526
-msgid "View on separate page"
-msgstr ""
+#: mod/photos.php:1490 mod/photos.php:1529 mod/photos.php:1602
+#: src/Object/Post.php:393 src/Object/Post.php:789
+msgid "Comment"
+msgstr "Reacties"
 
-#: include/text.php:1527
-msgid "view on separate page"
+#: mod/photos.php:1634
+msgid "Map"
 msgstr ""
 
-#: include/text.php:1806
-msgid "activity"
-msgstr "activiteit"
+#: mod/photos.php:1704 mod/videos.php:387
+msgid "View Album"
+msgstr "Album bekijken"
 
-#: include/text.php:1808 mod/content.php:623 object/Item.php:431
-#: object/Item.php:444
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] "reactie"
-msgstr[1] "reacties"
+#: mod/profile.php:37 src/Model/Profile.php:118
+msgid "Requested profile is not available."
+msgstr "Gevraagde profiel is niet beschikbaar."
 
-#: include/text.php:1809
-msgid "post"
-msgstr "bericht"
+#: mod/profile.php:78 src/Protocol/OStatus.php:1252
+#, php-format
+msgid "%s's posts"
+msgstr ""
 
-#: include/text.php:1977
-msgid "Item filed"
-msgstr "Item bewaard"
+#: mod/profile.php:79 src/Protocol/OStatus.php:1253
+#, php-format
+msgid "%s's comments"
+msgstr ""
 
-#: include/user.php:39 mod/settings.php:373
-msgid "Passwords do not match. Password unchanged."
-msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."
+#: mod/profile.php:80 src/Protocol/OStatus.php:1251
+#, php-format
+msgid "%s's timeline"
+msgstr ""
 
-#: include/user.php:48
-msgid "An invitation is required."
-msgstr "Een uitnodiging is vereist."
+#: mod/profile.php:173 mod/display.php:313 mod/cal.php:142
+msgid "Access to this profile has been restricted."
+msgstr "Toegang tot dit profiel is beperkt."
 
-#: include/user.php:53
-msgid "Invitation could not be verified."
-msgstr "Uitnodiging kon niet geverifieerd worden."
+#: mod/profile.php:194
+msgid "Tips for New Members"
+msgstr "Tips voor nieuwe leden"
 
-#: include/user.php:61
-msgid "Invalid OpenID url"
-msgstr "Ongeldige OpenID url"
+#: mod/videos.php:139
+msgid "Do you really want to delete this video?"
+msgstr "Wil je deze video echt verwijderen?"
 
-#: include/user.php:82
-msgid "Please enter the required information."
-msgstr "Vul de vereiste informatie in."
+#: mod/videos.php:144
+msgid "Delete Video"
+msgstr "Verwijder video"
 
-#: include/user.php:96
-msgid "Please use a shorter name."
-msgstr "gebruik een kortere naam"
+#: mod/videos.php:207
+msgid "No videos selected"
+msgstr "Geen video's geselecteerd"
 
-#: include/user.php:98
-msgid "Name too short."
-msgstr "Naam te kort"
+#: mod/videos.php:396
+msgid "Recent Videos"
+msgstr "Recente video's"
 
-#: include/user.php:113
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."
+#: mod/videos.php:398
+msgid "Upload New Videos"
+msgstr "Nieuwe video's uploaden"
 
-#: include/user.php:118
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Je e-maildomein is op deze website niet toegestaan."
+#: mod/delegate.php:37
+msgid "Parent user not found."
+msgstr ""
 
-#: include/user.php:121
-msgid "Not a valid email address."
-msgstr "Geen geldig e-mailadres."
+#: mod/delegate.php:144
+msgid "No parent user"
+msgstr ""
 
-#: include/user.php:134
-msgid "Cannot use that email."
-msgstr "Ik kan die e-mail niet gebruiken."
+#: mod/delegate.php:159
+msgid "Parent Password:"
+msgstr ""
 
-#: include/user.php:140
-msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+#: mod/delegate.php:159
+msgid ""
+"Please enter the password of the parent account to legitimize your request."
 msgstr ""
 
-#: include/user.php:147 include/user.php:245
-msgid "Nickname is already registered. Please choose another."
-msgstr "Bijnaam is al geregistreerd. Kies een andere."
+#: mod/delegate.php:164
+msgid "Parent User"
+msgstr ""
 
-#: include/user.php:157
+#: mod/delegate.php:167
 msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere."
+"Parent users have total control about this account, including the account "
+"settings. Please double check whom you give this access."
+msgstr ""
 
-#: include/user.php:173
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."
+#: mod/delegate.php:168 mod/settings.php:675 mod/settings.php:784
+#: mod/settings.php:870 mod/settings.php:959 mod/settings.php:1192
+#: mod/admin.php:307 mod/admin.php:1346 mod/admin.php:1965 mod/admin.php:2218
+#: mod/admin.php:2292 mod/admin.php:2439
+msgid "Save Settings"
+msgstr "Instellingen opslaan"
 
-#: include/user.php:231
-msgid "An error occurred during registration. Please try again."
+#: mod/delegate.php:169 src/Content/Nav.php:204
+msgid "Delegate Page Management"
+msgstr "Paginabeheer uitbesteden"
+
+#: mod/delegate.php:170
+msgid "Delegates"
 msgstr ""
 
-#: include/user.php:256 view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr "standaard"
+#: 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 "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd."
 
-#: include/user.php:266
-msgid "An error occurred creating your default profile. Please try again."
-msgstr ""
+#: mod/delegate.php:173
+msgid "Existing Page Delegates"
+msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed"
 
-#: include/user.php:326 include/user.php:333 include/user.php:340
-#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
-#: mod/profile_photo.php:210 mod/profile_photo.php:302
-#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
-#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
-#: mod/photos.php:1819
-msgid "Profile Photos"
-msgstr "Profielfoto's"
+#: mod/delegate.php:175
+msgid "Potential Delegates"
+msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "
+
+#: mod/delegate.php:178
+msgid "Add"
+msgstr "Toevoegen"
+
+#: mod/delegate.php:179
+msgid "No entries."
+msgstr "Geen gegevens."
 
-#: include/user.php:414
+#: mod/dirfind.php:49
 #, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
-"\t"
+msgid "People Search - %s"
 msgstr ""
 
-#: include/user.php:424
+#: mod/dirfind.php:60
 #, php-format
-msgid "Registration at %s"
+msgid "Forum Search - %s"
 msgstr ""
 
-#: include/user.php:434
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
+#: mod/install.php:114
+msgid "Friendica Communications Server - Setup"
 msgstr ""
 
-#: include/user.php:438
-#, php-format
+#: mod/install.php:120
+msgid "Could not connect to database."
+msgstr "Kon geen toegang krijgen tot de database."
+
+#: mod/install.php:124
+msgid "Could not create table."
+msgstr "Kon tabel niet aanmaken."
+
+#: mod/install.php:130
+msgid "Your Friendica site database has been installed."
+msgstr "De database van je Friendica-website is geïnstalleerd."
+
+#: mod/install.php:135
 msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql."
+
+#: mod/install.php:136 mod/install.php:208 mod/install.php:558
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Zie het bestand \"INSTALL.txt\"."
+
+#: mod/install.php:148
+msgid "Database already in use."
 msgstr ""
 
-#: include/user.php:470 mod/admin.php:1213
-#, php-format
-msgid "Registration details for %s"
-msgstr "Registratie details voor %s"
+#: mod/install.php:205
+msgid "System check"
+msgstr "Systeemcontrole"
 
-#: mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Bericht succesvol geplaatst."
+#: mod/install.php:209 mod/cal.php:277 mod/events.php:395
+msgid "Next"
+msgstr "Volgende"
 
-#: mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Toegang geweigerd"
+#: mod/install.php:210
+msgid "Check again"
+msgstr "Controleer opnieuw"
+
+#: mod/install.php:230
+msgid "Database connection"
+msgstr "Verbinding met database"
+
+#: mod/install.php:231
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken."
+
+#: mod/install.php:232
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. "
+
+#: mod/install.php:233
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat."
 
-#: mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
-msgstr "Welkom op %s"
+#: mod/install.php:237
+msgid "Database Server Name"
+msgstr "Servernaam database"
 
-#: mod/notify.php:60
-msgid "No more system notifications."
-msgstr "Geen systeemnotificaties meer."
+#: mod/install.php:238
+msgid "Database Login Name"
+msgstr "Gebruikersnaam database"
 
-#: mod/notify.php:64 mod/notifications.php:111
-msgid "System Notifications"
-msgstr "Systeemnotificaties"
+#: mod/install.php:239
+msgid "Database Login Password"
+msgstr "Wachtwoord database"
 
-#: mod/search.php:25 mod/network.php:191
-msgid "Remove term"
-msgstr "Verwijder zoekterm"
+#: mod/install.php:239
+msgid "For security reasons the password must not be empty"
+msgstr ""
 
-#: mod/search.php:93 mod/search.php:99 mod/community.php:22
-#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944
-#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35
-msgid "Public access denied."
-msgstr "Niet vrij toegankelijk"
+#: mod/install.php:240
+msgid "Database Name"
+msgstr "Naam database"
 
-#: mod/search.php:100
-msgid "Only logged in users are permitted to perform a search."
-msgstr ""
+#: mod/install.php:241 mod/install.php:281
+msgid "Site administrator email address"
+msgstr "E-mailadres van de websitebeheerder"
 
-#: mod/search.php:124
-msgid "Too Many Requests"
-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 "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken."
 
-#: mod/search.php:125
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr ""
+#: mod/install.php:245 mod/install.php:284
+msgid "Please select a default timezone for your website"
+msgstr "Selecteer een standaard tijdzone voor uw website"
 
-#: mod/search.php:224 mod/community.php:66 mod/community.php:75
-msgid "No results."
-msgstr "Geen resultaten."
+#: mod/install.php:271
+msgid "Site settings"
+msgstr "Website-instellingen"
 
-#: mod/search.php:230
-#, php-format
-msgid "Items tagged with: %s"
+#: mod/install.php:285
+msgid "System Language:"
 msgstr ""
 
-#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146
-#, php-format
-msgid "Results for: %s"
+#: mod/install.php:285
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
 msgstr ""
 
-#: mod/friendica.php:70
-msgid "This is Friendica, version"
-msgstr "Dit is Friendica, versie"
+#: mod/install.php:325
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver."
 
-#: mod/friendica.php:71
-msgid "running at web location"
-msgstr "draaiend op web-adres"
+#: 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 <a "
+"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-worker'>'Setup the worker'</a>"
+msgstr ""
+
+#: mod/install.php:330
+msgid "PHP executable path"
+msgstr "PATH van het PHP commando"
 
-#: mod/friendica.php:73
+#: mod/install.php:330
 msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Bezoek <a href=\"http://friendica.com\">Friendica.com</a> om meer te leren over het Friendica project."
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten."
 
-#: mod/friendica.php:75
-msgid "Bug reports and issues: please visit"
-msgstr "Bug rapporten en problemen: bezoek"
+#: mod/install.php:335
+msgid "Command line PHP"
+msgstr "PHP-opdrachtregel"
 
-#: mod/friendica.php:75
-msgid "the bugtracker at github"
+#: mod/install.php:344
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
 msgstr ""
 
-#: mod/friendica.php:76
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com"
+#: mod/install.php:345
+msgid "Found PHP version: "
+msgstr "Gevonden PHP versie:"
 
-#: mod/friendica.php:90
-msgid "Installed plugins/addons/apps:"
-msgstr "Geïnstalleerde plugins/toepassingen:"
+#: mod/install.php:347
+msgid "PHP cli binary"
+msgstr ""
 
-#: mod/friendica.php:103
-msgid "No installed plugins/addons/apps"
-msgstr "Geen plugins of toepassingen geïnstalleerd"
+#: mod/install.php:358
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd."
 
-#: mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Geen geldige account gevonden."
+#: mod/install.php:359
+msgid "This is required for message delivery to work."
+msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken."
 
-#: mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na."
+#: mod/install.php:361
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: mod/lostpass.php:42
-#, php-format
+#: mod/install.php:384
 msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
 msgstr ""
 
-#: mod/lostpass.php:53
-#, php-format
+#: mod/install.php:385
 msgid ""
-"\n"
-"\t\tFollow this link to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait."
+
+#: mod/install.php:387
+msgid "Generate encryption keys"
 msgstr ""
 
-#: mod/lostpass.php:72
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"
+#: mod/install.php:394
+msgid "libCurl PHP module"
+msgstr "libCurl PHP module"
 
-#: mod/lostpass.php:92
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld."
+#: mod/install.php:395
+msgid "GD graphics PHP module"
+msgstr "GD graphics PHP module"
 
-#: mod/lostpass.php:109 boot.php:1807
-msgid "Password Reset"
-msgstr "Wachtwoord opnieuw instellen"
+#: mod/install.php:396
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP module"
 
-#: mod/lostpass.php:110
-msgid "Your password has been reset as requested."
-msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd."
+#: mod/install.php:397
+msgid "PDO or MySQLi PHP module"
+msgstr ""
 
-#: mod/lostpass.php:111
-msgid "Your new password is"
-msgstr "Je nieuwe wachtwoord is"
+#: mod/install.php:398
+msgid "mb_string PHP module"
+msgstr "mb_string PHP module"
 
-#: mod/lostpass.php:112
-msgid "Save or copy your new password - and then"
-msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan"
+#: mod/install.php:399
+msgid "XML PHP module"
+msgstr ""
 
-#: mod/lostpass.php:113
-msgid "click here to login"
-msgstr "klik hier om in te loggen"
+#: mod/install.php:400
+msgid "iconv PHP module"
+msgstr ""
 
-#: mod/lostpass.php:114
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina."
+#: mod/install.php:401
+msgid "POSIX PHP module"
+msgstr ""
 
-#: mod/lostpass.php:125
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tDear %1$s,\n"
-"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\t\tsomething that you will remember).\n"
-"\t\t\t"
-msgstr "\n\t\t\t\tBeste %1$s,\n\t\t\t\t\tZoals gevraagd werd je wachtwoord aangepast. Houd deze\n\t\t\t\tinformatie bij (of verander je wachtwoord naar\n\t\t\t\tiets dat je zal onthouden).\n\t\t\t"
+#: mod/install.php:405 mod/install.php:407
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
 
-#: mod/lostpass.php:131
-#, php-format
+#: mod/install.php:405
 msgid ""
-"\n"
-"\t\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\t\tSite Location:\t%1$s\n"
-"\t\t\t\tLogin Name:\t%2$s\n"
-"\t\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t\t"
-msgstr ""
-
-#: mod/lostpass.php:147
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Je wachtwoord is veranderd op %s"
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd."
 
-#: mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "Wachtwoord vergeten?"
+#: mod/install.php:413
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd."
 
-#: mod/lostpass.php:160
+#: mod/install.php:417
 msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."
-
-#: mod/lostpass.php:161 boot.php:1795
-msgid "Nickname or Email: "
-msgstr "Bijnaam of e-mail:"
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd."
 
-#: mod/lostpass.php:162
-msgid "Reset"
-msgstr "Opnieuw"
+#: mod/install.php:421
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd."
 
-#: mod/hcard.php:10
-msgid "No profile"
-msgstr "Geen profiel"
+#: mod/install.php:425
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr ""
 
-#: mod/help.php:41
-msgid "Help:"
-msgstr "Help:"
+#: mod/install.php:429
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr ""
 
-#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12
-#: mod/fetch.php:39 mod/fetch.php:48 index.php:288
-msgid "Not Found"
-msgstr "Niet gevonden"
+#: mod/install.php:433
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd."
 
-#: mod/help.php:56 index.php:291
-msgid "Page not found."
-msgstr "Pagina niet gevonden"
+#: mod/install.php:437
+msgid "Error: iconv PHP module required but not installed."
+msgstr ""
 
-#: mod/lockview.php:31 mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Privacyinformatie op afstand niet beschikbaar."
+#: mod/install.php:441
+msgid "Error: POSIX PHP module required but not installed."
+msgstr ""
 
-#: mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Zichtbaar voor:"
+#: mod/install.php:451
+msgid "Error, XML PHP module required but not installed."
+msgstr ""
 
-#: mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID protocol fout. Geen ID Gevonden."
+#: 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 "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen."
 
-#: mod/openid.php:60
+#: mod/install.php:464
 msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website."
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel."
 
-#: mod/uimport.php:50 mod/register.php:198
+#: mod/install.php:465
 msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw."
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map."
 
-#: mod/uimport.php:64 mod/register.php:295
-msgid "Import"
-msgstr "Importeren"
+#: 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 "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies."
 
-#: mod/uimport.php:66
-msgid "Move account"
-msgstr "Account verplaatsen"
+#: mod/install.php:469
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php is schrijfbaar"
 
-#: mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr "Je kunt een account van een andere Friendica server importeren."
+#: mod/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 gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen."
 
-#: mod/uimport.php:68
+#: mod/install.php:480
 msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent."
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie."
 
-#: mod/uimport.php:69
+#: mod/install.php:481
 msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (GNU Social/Statusnet) or from Diaspora"
-msgstr ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map."
 
-#: mod/uimport.php:70
-msgid "Account file"
-msgstr "Account bestand"
+#: 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 "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten."
+
+#: mod/install.php:485
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 is schrijfbaar"
 
-#: mod/uimport.php:70
+#: mod/install.php:501
 msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
+"Url rewrite in .htaccess is not working. Check your server configuration."
 msgstr ""
 
-#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930
-#: mod/viewcontacts.php:97
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Bekijk het profiel van %s [%s]"
+#: mod/install.php:503
+msgid "Url rewrite is working"
+msgstr ""
 
-#: mod/nogroup.php:42 mod/contacts.php:931
-msgid "Edit contact"
-msgstr "Contact bewerken"
+#: mod/install.php:522
+msgid "ImageMagick PHP extension is not installed"
+msgstr ""
 
-#: mod/nogroup.php:63
-msgid "Contacts who are not members of a group"
-msgstr "Contacten die geen leden zijn van een groep"
+#: mod/install.php:524
+msgid "ImageMagick PHP extension is installed"
+msgstr ""
 
-#: mod/uexport.php:29
-msgid "Export account"
-msgstr "Account exporteren"
+#: mod/install.php:526
+msgid "ImageMagick supports GIF"
+msgstr ""
 
-#: mod/uexport.php:29
+#: mod/install.php:533
 msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server."
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver."
 
-#: mod/uexport.php:30
-msgid "Export all"
-msgstr "Alles exporteren"
+#: mod/install.php:556
+msgid "<h1>What next</h1>"
+msgstr "<h1>Wat nu</h1>"
 
-#: mod/uexport.php:30
+#: mod/install.php:557
 msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"worker."
+msgstr ""
 
-#: mod/uexport.php:37 mod/settings.php:95
-msgid "Export personal data"
-msgstr "Persoonlijke gegevens exporteren"
+#: mod/install.php:560
+#, php-format
+msgid ""
+"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
+"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/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Totale uitnodigingslimiet overschreden."
+#: mod/ostatus_subscribe.php:21
+msgid "Subscribing to OStatus contacts"
+msgstr ""
 
-#: mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Geen geldig e-mailadres."
+#: mod/ostatus_subscribe.php:33
+msgid "No contact provided."
+msgstr ""
 
-#: mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Kom bij ons op Friendica"
+#: mod/ostatus_subscribe.php:40
+msgid "Couldn't fetch information for contact."
+msgstr ""
 
-#: mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website."
+#: mod/ostatus_subscribe.php:50
+msgid "Couldn't fetch friends for contact."
+msgstr ""
 
-#: mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Aflevering van bericht mislukt."
+#: mod/ostatus_subscribe.php:78
+msgid "success"
+msgstr "Succesvol"
 
-#: mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d bericht verzonden."
-msgstr[1] "%d berichten verzonden."
+#: mod/ostatus_subscribe.php:80
+msgid "failed"
+msgstr "Mislukt"
 
-#: mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Je kunt geen uitnodigingen meer sturen"
+#: mod/ostatus_subscribe.php:83 src/Object/Post.php:279
+msgid "ignored"
+msgstr "Verboden"
 
-#: mod/invite.php:120
-#, php-format
-msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken."
+#: mod/unfollow.php:34
+msgid "Contact wasn't found or can't be unfollowed."
+msgstr ""
 
-#: mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website."
+#: mod/unfollow.php:47
+msgid "Contact unfollowed"
+msgstr ""
 
-#: mod/invite.php:123
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten."
+#: mod/unfollow.php:73
+msgid "You aren't a friend of this contact."
+msgstr ""
 
-#: mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen."
+#: mod/unfollow.php:79
+msgid "Unfollowing is currently not supported by your network."
+msgstr ""
 
-#: mod/invite.php:132
-msgid "Send invitations"
-msgstr "Verstuur uitnodigingen"
+#: mod/unfollow.php:100 mod/contacts.php:599
+msgid "Disconnect/Unfollow"
+msgstr ""
 
-#: mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Vul e-mailadressen in, één per lijn:"
+#: mod/unfollow.php:132 mod/follow.php:186 mod/contacts.php:858
+#: src/Model/Profile.php:891
+msgid "Status Messages and Posts"
+msgstr "Berichten op jouw tijdlijn"
 
-#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351
-#: mod/message.php:541
-msgid "Your message:"
-msgstr "Jouw bericht:"
+#: mod/cal.php:274 mod/events.php:391 src/Content/Nav.php:104
+#: src/Content/Nav.php:169 src/Model/Profile.php:924 src/Model/Profile.php:935
+#: view/theme/frio/theme.php:263 view/theme/frio/theme.php:267
+msgid "Events"
+msgstr "Gebeurtenissen"
 
-#: mod/invite.php:135
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen."
+#: mod/cal.php:275 mod/events.php:392
+msgid "View"
+msgstr ""
 
-#: mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code"
+#: mod/cal.php:276 mod/events.php:394
+msgid "Previous"
+msgstr "Vorige"
 
-#: mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:"
+#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
+msgid "today"
+msgstr "vandaag"
 
-#: mod/invite.php:139
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken"
-
-#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357
-#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154
-#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199
-#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104
-#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590
-#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577
-#: mod/install.php:272 mod/install.php:312 object/Item.php:720
-#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64
-#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59
-msgid "Submit"
-msgstr "Opslaan"
+#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
+#: src/Model/Event.php:413
+msgid "month"
+msgstr "maand"
 
-#: mod/fbrowser.php:133
-msgid "Files"
-msgstr "Bestanden"
+#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
+#: src/Model/Event.php:414
+msgid "week"
+msgstr "week"
 
-#: mod/profperm.php:19 mod/group.php:72 index.php:400
-msgid "Permission denied"
-msgstr "Toegang geweigerd"
+#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
+#: src/Model/Event.php:415
+msgid "day"
+msgstr "dag"
 
-#: mod/profperm.php:25 mod/profperm.php:56
-msgid "Invalid profile identifier."
-msgstr "Ongeldige profiel-identificatie."
+#: mod/cal.php:284 mod/events.php:404
+msgid "list"
+msgstr ""
 
-#: mod/profperm.php:102
-msgid "Profile Visibility Editor"
+#: mod/cal.php:297 src/Core/Console/NewPassword.php:74 src/Model/User.php:204
+msgid "User not found"
 msgstr ""
 
-#: mod/profperm.php:106 mod/group.php:223
-msgid "Click on a contact to add or remove."
-msgstr "Klik op een contact om het toe te voegen of te verwijderen."
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
+msgstr ""
 
-#: mod/profperm.php:115
-msgid "Visible To"
-msgstr "Zichtbaar voor"
+#: mod/cal.php:315
+msgid "No exportable data found"
+msgstr ""
 
-#: mod/profperm.php:131
-msgid "All Contacts (with secure profile access)"
-msgstr "Alle contacten (met veilige profieltoegang)"
+#: mod/cal.php:332
+msgid "calendar"
+msgstr ""
 
-#: mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Label verwijderd"
+#: mod/events.php:105 mod/events.php:107
+msgid "Event can not end before it has started."
+msgstr ""
 
-#: mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Verwijder label van item"
+#: mod/events.php:114 mod/events.php:116
+msgid "Event title and start time are required."
+msgstr "Titel en begintijd van de gebeurtenis zijn vereist."
 
-#: mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Selecteer een label om te verwijderen: "
+#: mod/events.php:393
+msgid "Create New Event"
+msgstr "Maak een nieuwe gebeurtenis"
 
-#: mod/tagrm.php:93 mod/delegate.php:139
-msgid "Remove"
-msgstr "Verwijderen"
+#: mod/events.php:506
+msgid "Event details"
+msgstr "Gebeurtenis details"
 
-#: mod/repair_ostatus.php:14
-msgid "Resubscribing to OStatus contacts"
+#: mod/events.php:507
+msgid "Starting date and Title are required."
 msgstr ""
 
-#: mod/repair_ostatus.php:30
-msgid "Error"
-msgstr ""
+#: mod/events.php:508 mod/events.php:509
+msgid "Event Starts:"
+msgstr "Gebeurtenis begint:"
 
-#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51
-msgid "Done"
-msgstr "Klaar"
+#: mod/events.php:508 mod/events.php:520 mod/profiles.php:700
+msgid "Required"
+msgstr "Vereist"
 
-#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73
-msgid "Keep this window open until done."
-msgstr "Houd dit scherm open tot het klaar is"
+#: mod/events.php:510 mod/events.php:526
+msgid "Finish date/time is not known or not relevant"
+msgstr "Einddatum/tijd is niet gekend of niet relevant"
 
-#: mod/delegate.php:101
-msgid "No potential page delegates located."
-msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden."
+#: mod/events.php:512 mod/events.php:513
+msgid "Event Finishes:"
+msgstr "Gebeurtenis eindigt:"
 
-#: mod/delegate.php:132
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd."
+#: mod/events.php:514 mod/events.php:527
+msgid "Adjust for viewer timezone"
+msgstr "Pas aan aan de tijdzone van de gebruiker"
 
-#: mod/delegate.php:133
-msgid "Existing Page Managers"
-msgstr "Bestaande paginabeheerders"
+#: mod/events.php:516
+msgid "Description:"
+msgstr "Beschrijving:"
 
-#: mod/delegate.php:135
-msgid "Existing Page Delegates"
-msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed"
+#: mod/events.php:520 mod/events.php:522
+msgid "Title:"
+msgstr "Titel:"
 
-#: mod/delegate.php:137
-msgid "Potential Delegates"
-msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "
+#: mod/events.php:523 mod/events.php:524
+msgid "Share this event"
+msgstr "Deel deze gebeurtenis"
 
-#: mod/delegate.php:140
-msgid "Add"
-msgstr "Toevoegen"
+#: mod/events.php:531 src/Model/Profile.php:864
+msgid "Basic"
+msgstr ""
 
-#: mod/delegate.php:141
-msgid "No entries."
-msgstr "Geen gegevens."
+#: mod/events.php:532 mod/contacts.php:895 mod/admin.php:1351
+#: src/Model/Profile.php:865
+msgid "Advanced"
+msgstr "Geavanceerd"
 
-#: mod/credits.php:16
-msgid "Credits"
+#: mod/events.php:552
+msgid "Failed to remove event"
 msgstr ""
 
-#: mod/credits.php:17
-msgid ""
-"Friendica is a community project, that would not be possible without the "
-"help of many people. Here is a list of those who have contributed to the "
-"code or the translation of Friendica. Thank you all!"
+#: mod/events.php:554
+msgid "Event removed"
 msgstr ""
 
-#: mod/filer.php:30
-msgid "- select -"
-msgstr "- Kies -"
+#: mod/profile_photo.php:55
+msgid "Image uploaded but image cropping failed."
+msgstr "Afbeelding opgeladen, maar bijsnijden mislukt."
 
-#: mod/subthread.php:103
+#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104
+#: mod/profile_photo.php:315
 #, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s volgt %3$s van %2$s"
+msgid "Image size reduction [%s] failed."
+msgstr "Verkleining van de afbeelding [%s] mislukt."
 
-#: mod/attach.php:8
-msgid "Item not available."
-msgstr "Item niet beschikbaar"
+#: mod/profile_photo.php:125
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen."
 
-#: mod/attach.php:20
-msgid "Item was not found."
-msgstr "Item niet gevonden"
+#: mod/profile_photo.php:134
+msgid "Unable to process image"
+msgstr "Ik kan de afbeelding niet verwerken"
 
-#: mod/apps.php:7 index.php:244
-msgid "You must be logged in to use addons. "
-msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "
+#: mod/profile_photo.php:247
+msgid "Upload File:"
+msgstr "Upload bestand:"
 
-#: mod/apps.php:11
-msgid "Applications"
-msgstr "Toepassingen"
+#: mod/profile_photo.php:248
+msgid "Select a profile:"
+msgstr "Kies een profiel:"
 
-#: mod/apps.php:14
-msgid "No installed applications."
-msgstr "Geen toepassingen geïnstalleerd"
+#: mod/profile_photo.php:253
+msgid "or"
+msgstr "of"
 
-#: mod/p.php:9
-msgid "Not Extended"
-msgstr ""
+#: mod/profile_photo.php:253
+msgid "skip this step"
+msgstr "Deze stap overslaan"
 
-#: mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Welkom bij Friendica"
+#: mod/profile_photo.php:253
+msgid "select a photo from your photo albums"
+msgstr "Kies een foto uit je fotoalbums"
 
-#: mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checklist voor nieuwe leden"
+#: mod/profile_photo.php:266
+msgid "Crop Image"
+msgstr "Afbeelding bijsnijden"
 
-#: mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen."
+#: mod/profile_photo.php:267
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat."
 
-#: mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Aan de slag"
+#: mod/profile_photo.php:269
+msgid "Done Editing"
+msgstr "Wijzigingen compleet"
 
-#: mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Doorloop Friendica"
+#: mod/profile_photo.php:305
+msgid "Image uploaded successfully."
+msgstr "Uploaden van afbeelding gelukt."
 
-#: mod/newmember.php:18
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden."
+#: mod/settings.php:56 mod/admin.php:1781
+msgid "Account"
+msgstr "Account"
 
-#: mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Ga naar je instellingen"
+#: mod/settings.php:65 mod/admin.php:187
+msgid "Additional features"
+msgstr "Extra functies"
 
-#: mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Verander je initieel wachtwoord op je <em>instellingenpagina</em>. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web."
+#: mod/settings.php:73
+msgid "Display"
+msgstr "Weergave"
 
-#: mod/newmember.php:28
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden."
+#: mod/settings.php:80 mod/settings.php:841
+msgid "Social Networks"
+msgstr "Sociale netwerken"
 
-#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707
-msgid "Upload Profile Photo"
-msgstr "Profielfoto uploaden"
+#: mod/settings.php:87 mod/admin.php:185 mod/admin.php:1904 mod/admin.php:1964
+msgid "Addons"
+msgstr ""
 
-#: mod/newmember.php:36
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen."
+#: mod/settings.php:94 src/Content/Nav.php:204
+msgid "Delegations"
+msgstr ""
 
-#: mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Bewerk je profiel"
+#: mod/settings.php:101
+msgid "Connected apps"
+msgstr "Verbonden applicaties"
 
-#: mod/newmember.php:38
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Bewerk je <strong>standaard</strong> profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen."
+#: mod/settings.php:115
+msgid "Remove account"
+msgstr "Account verwijderen"
 
-#: mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Sleutelwoorden voor dit profiel"
+#: mod/settings.php:169
+msgid "Missing some important data!"
+msgstr "Een belangrijk gegeven ontbreekt!"
 
-#: mod/newmember.php:40
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen."
+#: mod/settings.php:171 mod/settings.php:701 mod/contacts.php:826
+msgid "Update"
+msgstr "Wijzigen"
 
-#: mod/newmember.php:44
-msgid "Connecting"
-msgstr "Verbinding aan het maken"
+#: mod/settings.php:279
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen."
 
-#: mod/newmember.php:51
-msgid "Importing Emails"
-msgstr "E-mails importeren"
+#: mod/settings.php:284
+msgid "Email settings updated."
+msgstr "E-mail instellingen bijgewerkt.."
 
-#: mod/newmember.php:51
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren"
+#: mod/settings.php:300
+msgid "Features updated"
+msgstr "Functies bijgewerkt"
 
-#: mod/newmember.php:53
-msgid "Go to Your Contacts Page"
-msgstr "Ga naar je contactenpagina"
+#: mod/settings.php:372
+msgid "Relocate message has been send to your contacts"
+msgstr ""
 
-#: mod/newmember.php:53
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de <em>Voeg nieuw contact toe</em> dialoog."
+#: mod/settings.php:384 src/Model/User.php:325
+msgid "Passwords do not match. Password unchanged."
+msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."
 
-#: mod/newmember.php:55
-msgid "Go to Your Site's Directory"
-msgstr "Ga naar de gids van je website"
+#: mod/settings.php:389
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd."
 
-#: mod/newmember.php:55
+#: mod/settings.php:394 src/Core/Console/NewPassword.php:78
 msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord <em>Connect</em> of <em>Follow</em> op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd."
-
-#: mod/newmember.php:57
-msgid "Finding New People"
-msgstr "Nieuwe mensen vinden"
+"The new password has been exposed in a public data dump, please choose "
+"another."
+msgstr ""
 
-#: mod/newmember.php:57
-msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden."
+#: mod/settings.php:400
+msgid "Wrong password."
+msgstr "Verkeerd wachtwoord."
 
-#: mod/newmember.php:65
-msgid "Group Your Contacts"
-msgstr "Groepeer je contacten"
+#: mod/settings.php:407 src/Core/Console/NewPassword.php:85
+msgid "Password changed."
+msgstr "Wachtwoord gewijzigd."
 
-#: mod/newmember.php:65
-msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. "
+#: mod/settings.php:409 src/Core/Console/NewPassword.php:82
+msgid "Password update failed. Please try again."
+msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw."
 
-#: mod/newmember.php:68
-msgid "Why Aren't My Posts Public?"
-msgstr "Waarom zijn mijn berichten niet openbaar?"
+#: mod/settings.php:496
+msgid " Please use a shorter name."
+msgstr "Gebruik een kortere naam."
 
-#: mod/newmember.php:68
-msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie."
+#: mod/settings.php:499
+msgid " Name too short."
+msgstr "Naam te kort."
 
-#: mod/newmember.php:73
-msgid "Getting Help"
-msgstr "Hulp krijgen"
+#: mod/settings.php:507
+msgid "Wrong Password"
+msgstr "Verkeerd wachtwoord"
 
-#: mod/newmember.php:77
-msgid "Go to the Help Section"
-msgstr "Ga naar de help"
+#: mod/settings.php:512
+msgid "Invalid email."
+msgstr ""
 
-#: mod/newmember.php:77
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Je kunt onze <strong>help</strong> pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma."
+#: mod/settings.php:519
+msgid "Cannot change to that email."
+msgstr ""
 
-#: mod/removeme.php:46 mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Verwijder mijn account"
+#: mod/settings.php:572
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt."
 
-#: mod/removeme.php:47
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is."
+#: mod/settings.php:575
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep."
 
-#: mod/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "Voer je wachtwoord in voor verificatie:"
+#: mod/settings.php:615
+msgid "Settings updated."
+msgstr "Instellingen bijgewerkt."
 
-#: mod/editpost.php:17 mod/editpost.php:27
-msgid "Item not found"
-msgstr "Item niet gevonden"
+#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
+msgid "Add application"
+msgstr "Toepassing toevoegen"
 
-#: mod/editpost.php:40
-msgid "Edit post"
-msgstr "Bericht bewerken"
+#: mod/settings.php:678 mod/settings.php:704
+msgid "Consumer Key"
+msgstr "Gebruikerssleutel"
 
-#: mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Tijdsconversie"
+#: mod/settings.php:679 mod/settings.php:705
+msgid "Consumer Secret"
+msgstr "Gebruikersgeheim"
 
-#: mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones."
+#: mod/settings.php:680 mod/settings.php:706
+msgid "Redirect"
+msgstr "Doorverwijzing"
 
-#: mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC tijd: %s"
+#: mod/settings.php:681 mod/settings.php:707
+msgid "Icon url"
+msgstr "URL pictogram"
 
-#: mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Huidige Tijdzone: %s"
+#: mod/settings.php:692
+msgid "You can't edit this application."
+msgstr "Je kunt deze toepassing niet wijzigen."
 
-#: mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Omgerekende lokale tijd: %s"
+#: mod/settings.php:735
+msgid "Connected Apps"
+msgstr "Verbonden applicaties"
 
-#: mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Selecteer je tijdzone:"
+#: mod/settings.php:737 src/Object/Post.php:155 src/Object/Post.php:157
+msgid "Edit"
+msgstr "Bewerken"
 
-#: mod/bookmarklet.php:41
-msgid "The post was created"
+#: mod/settings.php:739
+msgid "Client key starts with"
 msgstr ""
 
-#: mod/group.php:29
-msgid "Group created."
-msgstr "Groep aangemaakt."
-
-#: mod/group.php:35
-msgid "Could not create group."
-msgstr "Kon de groep niet aanmaken."
-
-#: mod/group.php:47 mod/group.php:140
-msgid "Group not found."
-msgstr "Groep niet gevonden."
+#: mod/settings.php:740
+msgid "No name"
+msgstr "Geen naam"
 
-#: mod/group.php:60
-msgid "Group name changed."
-msgstr "Groepsnaam gewijzigd."
+#: mod/settings.php:741
+msgid "Remove authorization"
+msgstr "Verwijder authorisatie"
 
-#: mod/group.php:87
-msgid "Save Group"
-msgstr "Bewaar groep"
+#: mod/settings.php:752
+msgid "No Addon settings configured"
+msgstr ""
 
-#: mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Maak een groep contacten/vrienden aan."
+#: mod/settings.php:761
+msgid "Addon Settings"
+msgstr ""
 
-#: mod/group.php:113
-msgid "Group removed."
-msgstr "Groep verwijderd."
+#: mod/settings.php:775 mod/admin.php:2428 mod/admin.php:2429
+msgid "Off"
+msgstr "Uit"
 
-#: mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Niet in staat om groep te verwijderen."
+#: mod/settings.php:775 mod/admin.php:2428 mod/admin.php:2429
+msgid "On"
+msgstr "Aan"
 
-#: mod/group.php:177
-msgid "Group Editor"
-msgstr "Groepsbewerker"
+#: mod/settings.php:782
+msgid "Additional Features"
+msgstr "Extra functies"
 
-#: mod/group.php:190
-msgid "Members"
-msgstr "Leden"
+#: mod/settings.php:804 src/Content/ContactSelector.php:83
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: mod/group.php:192 mod/contacts.php:692
-msgid "All Contacts"
-msgstr "Alle Contacten"
+#: mod/settings.php:804 mod/settings.php:805
+msgid "enabled"
+msgstr "ingeschakeld"
 
-#: mod/group.php:193 mod/content.php:130 mod/network.php:496
-msgid "Group is empty"
-msgstr "De groep is leeg"
+#: mod/settings.php:804 mod/settings.php:805
+msgid "disabled"
+msgstr "uitgeschakeld"
 
-#: mod/wallmessage.php:42 mod/wallmessage.php:112
+#: mod/settings.php:804 mod/settings.php:805
 #, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr ""
-
-#: mod/wallmessage.php:56 mod/message.php:71
-msgid "No recipient selected."
-msgstr "Geen ontvanger geselecteerd."
+msgid "Built-in support for %s connectivity is %s"
+msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s"
 
-#: mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Niet in staat om je tijdlijn-locatie vast te stellen"
+#: mod/settings.php:805
+msgid "GNU Social (OStatus)"
+msgstr ""
 
-#: mod/wallmessage.php:62 mod/message.php:78
-msgid "Message could not be sent."
-msgstr "Bericht kon niet verzonden worden."
+#: mod/settings.php:836
+msgid "Email access is disabled on this site."
+msgstr "E-mailtoegang is op deze website uitgeschakeld."
 
-#: mod/wallmessage.php:65 mod/message.php:81
-msgid "Message collection failure."
-msgstr "Fout bij het verzamelen van berichten."
+#: mod/settings.php:846
+msgid "General Social Media Settings"
+msgstr ""
 
-#: mod/wallmessage.php:68 mod/message.php:84
-msgid "Message sent."
-msgstr "Bericht verzonden."
+#: mod/settings.php:847
+msgid "Disable intelligent shortening"
+msgstr ""
 
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Geen ontvanger."
+#: mod/settings.php:847
+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/wallmessage.php:142 mod/message.php:341
-msgid "Send Private Message"
-msgstr "Verstuur privébericht"
+#: mod/settings.php:848
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+msgstr ""
 
-#: mod/wallmessage.php:143
-#, php-format
+#: mod/settings.php:848
 msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat."
-
-#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536
-msgid "To:"
-msgstr "Aan:"
+"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/wallmessage.php:145 mod/message.php:347 mod/message.php:538
-msgid "Subject:"
-msgstr "Onderwerp:"
+#: mod/settings.php:849
+msgid "Default group for OStatus contacts"
+msgstr ""
 
-#: mod/share.php:38
-msgid "link"
-msgstr "link"
+#: mod/settings.php:850
+msgid "Your legacy GNU Social account"
+msgstr ""
 
-#: mod/api.php:76 mod/api.php:102
-msgid "Authorize application connection"
+#: mod/settings.php:850
+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/api.php:77
-msgid "Return to your app and insert this Securty Code:"
+#: mod/settings.php:853
+msgid "Repair OStatus subscriptions"
 msgstr ""
 
-#: mod/api.php:89
-msgid "Please login to continue."
-msgstr "Log in om verder te gaan."
+#: mod/settings.php:857
+msgid "Email/Mailbox Setup"
+msgstr "E-mail Instellen"
 
-#: mod/api.php:104
+#: mod/settings.php:858
 msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
+msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken."
 
-#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652
-#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163
-#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
-#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
-#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
-#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
-#: mod/dfrn_request.php:862 mod/follow.php:110
-msgid "No"
-msgstr "Nee"
+#: mod/settings.php:859
+msgid "Last successful email check:"
+msgstr "Laatste succesvolle e-mail controle:"
 
-#: mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Bron (bbcode) tekst:"
+#: mod/settings.php:861
+msgid "IMAP server name:"
+msgstr "IMAP server naam:"
 
-#: mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Bron (Diaspora) tekst om naar BBCode om te zetten:"
+#: mod/settings.php:862
+msgid "IMAP port:"
+msgstr "IMAP poort:"
 
-#: mod/babel.php:31
-msgid "Source input: "
-msgstr "Bron ingave:"
+#: mod/settings.php:863
+msgid "Security:"
+msgstr "Beveiliging:"
 
-#: mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (ruwe HTML):"
+#: mod/settings.php:863 mod/settings.php:868
+msgid "None"
+msgstr "Geen"
 
-#: mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html:"
+#: mod/settings.php:864
+msgid "Email login name:"
+msgstr "E-mail login naam:"
 
-#: mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: mod/settings.php:865
+msgid "Email password:"
+msgstr "E-mail wachtwoord:"
 
-#: mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: mod/settings.php:866
+msgid "Reply-to address:"
+msgstr "Antwoord adres:"
 
-#: mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: mod/settings.php:867
+msgid "Send public posts to all email contacts:"
+msgstr "Openbare posts naar alle e-mail contacten versturen:"
+
+#: mod/settings.php:868
+msgid "Action after import:"
+msgstr "Actie na importeren:"
 
-#: mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: mod/settings.php:868 src/Content/Nav.php:191
+msgid "Mark as seen"
+msgstr "Als 'gelezen' markeren"
 
-#: mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: mod/settings.php:868
+msgid "Move to folder"
+msgstr "Naar map verplaatsen"
 
-#: mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Bron ingave (Diaspora formaat):"
+#: mod/settings.php:869
+msgid "Move to folder:"
+msgstr "Verplaatsen naar map:"
 
-#: mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: mod/settings.php:903 mod/admin.php:1236
+msgid "No special theme for mobile devices"
+msgstr "Geen speciaal thema voor mobiele apparaten"
 
-#: mod/ostatus_subscribe.php:14
-msgid "Subscribing to OStatus contacts"
+#: mod/settings.php:912
+#, php-format
+msgid "%s - (Unsupported)"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:25
-msgid "No contact provided."
+#: mod/settings.php:914
+#, php-format
+msgid "%s - (Experimental)"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:30
-msgid "Couldn't fetch information for contact."
+#: mod/settings.php:957
+msgid "Display Settings"
+msgstr "Scherminstellingen"
+
+#: mod/settings.php:963 mod/settings.php:987
+msgid "Display Theme:"
+msgstr "Schermthema:"
+
+#: mod/settings.php:964
+msgid "Mobile Theme:"
+msgstr "Mobiel thema:"
+
+#: mod/settings.php:965
+msgid "Suppress warning of insecure networks"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:38
-msgid "Couldn't fetch friends for contact."
+#: mod/settings.php:965
+msgid ""
+"Should the system suppress the warning that the current group contains "
+"members of networks that can't receive non public postings."
 msgstr ""
 
-#: mod/ostatus_subscribe.php:65
-msgid "success"
-msgstr "Succesvol"
+#: mod/settings.php:966
+msgid "Update browser every xx seconds"
+msgstr "Browser elke xx seconden verversen"
 
-#: mod/ostatus_subscribe.php:67
-msgid "failed"
-msgstr "Mislukt"
+#: mod/settings.php:966
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
+msgstr ""
 
-#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245
-msgid "ignored"
-msgstr "Verboden"
+#: mod/settings.php:967
+msgid "Number of items to display per page:"
+msgstr "Aantal items te tonen per pagina:"
 
-#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s heet %2$s van harte welkom"
+#: mod/settings.php:967 mod/settings.php:968
+msgid "Maximum of 100 items"
+msgstr "Maximum 100 items"
 
-#: mod/message.php:75
-msgid "Unable to locate contact information."
-msgstr "Ik kan geen contact informatie vinden."
+#: mod/settings.php:968
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:"
 
-#: mod/message.php:215
-msgid "Do you really want to delete this message?"
-msgstr "Wil je echt dit bericht verwijderen?"
+#: mod/settings.php:969
+msgid "Don't show emoticons"
+msgstr "Emoticons niet tonen"
 
-#: mod/message.php:235
-msgid "Message deleted."
-msgstr "Bericht verwijderd."
+#: mod/settings.php:970
+msgid "Calendar"
+msgstr ""
 
-#: mod/message.php:266
-msgid "Conversation removed."
-msgstr "Gesprek verwijderd."
+#: mod/settings.php:971
+msgid "Beginning of week:"
+msgstr ""
 
-#: mod/message.php:383
-msgid "No messages."
-msgstr "Geen berichten."
+#: mod/settings.php:972
+msgid "Don't show notices"
+msgstr ""
 
-#: mod/message.php:426
-msgid "Message not available."
-msgstr "Bericht niet beschikbaar."
+#: mod/settings.php:973
+msgid "Infinite scroll"
+msgstr "Oneindig scrollen"
 
-#: mod/message.php:503
-msgid "Delete message"
-msgstr "Verwijder bericht"
+#: mod/settings.php:974
+msgid "Automatic updates only at the top of the network page"
+msgstr ""
 
-#: mod/message.php:529 mod/message.php:609
-msgid "Delete conversation"
-msgstr "Verwijder gesprek"
+#: mod/settings.php:974
+msgid ""
+"When disabled, the network page is updated all the time, which could be "
+"confusing while reading."
+msgstr ""
+
+#: mod/settings.php:975
+msgid "Bandwith Saver Mode"
+msgstr ""
 
-#: mod/message.php:531
+#: mod/settings.php:975
 msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> antwoorden vanaf de profiel-pagina van de afzender."
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
+msgstr ""
 
-#: mod/message.php:535
-msgid "Send Reply"
-msgstr "Verstuur Antwoord"
+#: mod/settings.php:976
+msgid "Smart Threading"
+msgstr ""
 
-#: mod/message.php:579
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Onbekende afzender - %s"
+#: mod/settings.php:976
+msgid ""
+"When enabled, suppress extraneous thread indentation while keeping it where "
+"it matters. Only works if threading is available and enabled."
+msgstr ""
 
-#: mod/message.php:581
-#, php-format
-msgid "You and %s"
-msgstr "Jij en %s"
+#: mod/settings.php:978
+msgid "General Theme Settings"
+msgstr ""
 
-#: mod/message.php:583
-#, php-format
-msgid "%s and You"
-msgstr "%s en jij"
+#: mod/settings.php:979
+msgid "Custom Theme Settings"
+msgstr ""
 
-#: mod/message.php:612
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: mod/settings.php:980
+msgid "Content Settings"
+msgstr ""
 
-#: mod/message.php:615
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d bericht"
-msgstr[1] "%d berichten"
+#: mod/settings.php:981 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 "Thema-instellingen"
 
-#: mod/manage.php:139
-msgid "Manage Identities and/or Pages"
-msgstr "Beheer Identiteiten en/of Pagina's"
+#: mod/settings.php:1000
+msgid "Unable to find your profile. Please contact your admin."
+msgstr ""
 
-#: mod/manage.php:140
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen."
+#: mod/settings.php:1042
+msgid "Account Types"
+msgstr ""
 
-#: mod/manage.php:141
-msgid "Select an identity to manage: "
-msgstr "Selecteer een identiteit om te beheren:"
+#: mod/settings.php:1043
+msgid "Personal Page Subtypes"
+msgstr ""
 
-#: mod/crepair.php:87
-msgid "Contact settings applied."
-msgstr "Contactinstellingen toegepast."
+#: mod/settings.php:1044
+msgid "Community Forum Subtypes"
+msgstr ""
 
-#: mod/crepair.php:89
-msgid "Contact update failed."
-msgstr "Aanpassen van contact mislukt."
+#: mod/settings.php:1051
+msgid "Personal Page"
+msgstr ""
 
-#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92
-#: mod/dfrn_confirm.php:126
-msgid "Contact not found."
-msgstr "Contact niet gevonden"
+#: mod/settings.php:1052
+msgid "Account for a personal profile."
+msgstr ""
+
+#: mod/settings.php:1055
+msgid "Organisation Page"
+msgstr ""
 
-#: mod/crepair.php:120
+#: mod/settings.php:1056
 msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
+"Account for an organisation that automatically approves contact requests as "
+"\"Followers\"."
+msgstr ""
+
+#: mod/settings.php:1059
+msgid "News Page"
 msgstr ""
 
-#: mod/crepair.php:121
+#: mod/settings.php:1060
 msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."
+"Account for a news reflector that automatically approves contact requests as"
+" \"Followers\"."
+msgstr ""
 
-#: mod/crepair.php:134 mod/crepair.php:136
-msgid "No mirroring"
+#: mod/settings.php:1063
+msgid "Community Forum"
 msgstr ""
 
-#: mod/crepair.php:134
-msgid "Mirror as forwarded posting"
+#: mod/settings.php:1064
+msgid "Account for community discussions."
 msgstr ""
 
-#: mod/crepair.php:134 mod/crepair.php:136
-msgid "Mirror as my own posting"
+#: mod/settings.php:1067
+msgid "Normal Account Page"
+msgstr "Normale accountpagina"
+
+#: mod/settings.php:1068
+msgid ""
+"Account for a regular personal profile that requires manual approval of "
+"\"Friends\" and \"Followers\"."
 msgstr ""
 
-#: mod/crepair.php:150
-msgid "Return to contact editor"
-msgstr "Ga terug naar contactbewerker"
+#: mod/settings.php:1071
+msgid "Soapbox Page"
+msgstr "Zeepkist-pagina"
 
-#: mod/crepair.php:152
-msgid "Refetch contact data"
+#: mod/settings.php:1072
+msgid ""
+"Account for a public profile that automatically approves contact requests as"
+" \"Followers\"."
 msgstr ""
 
-#: mod/crepair.php:156
-msgid "Remote Self"
+#: mod/settings.php:1075
+msgid "Public Forum"
 msgstr ""
 
-#: mod/crepair.php:159
-msgid "Mirror postings from this contact"
+#: mod/settings.php:1076
+msgid "Automatically approves all contact requests."
 msgstr ""
 
-#: mod/crepair.php:161
+#: mod/settings.php:1079
+msgid "Automatic Friend Page"
+msgstr "Automatisch Vriendschapspagina"
+
+#: mod/settings.php:1080
 msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
+"Account for a popular profile that automatically approves contact requests "
+"as \"Friends\"."
 msgstr ""
 
-#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706
-#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438
-msgid "Name"
-msgstr "Naam"
+#: mod/settings.php:1083
+msgid "Private Forum [Experimental]"
+msgstr "Privé-forum [experimenteel]"
 
-#: mod/crepair.php:166
-msgid "Account Nickname"
-msgstr "Bijnaam account"
+#: mod/settings.php:1084
+msgid "Requires manual approval of contact requests."
+msgstr ""
 
-#: mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam"
+#: mod/settings.php:1095
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: mod/crepair.php:168
-msgid "Account URL"
-msgstr "URL account"
+#: mod/settings.php:1095
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account."
 
-#: mod/crepair.php:169
-msgid "Friend Request URL"
-msgstr "URL vriendschapsverzoek"
+#: mod/settings.php:1103
+msgid "Publish your default profile in your local site directory?"
+msgstr "Je standaardprofiel in je lokale gids publiceren?"
 
-#: mod/crepair.php:170
-msgid "Friend Confirm URL"
-msgstr "URL vriendschapsbevestiging"
+#: mod/settings.php:1103
+#, php-format
+msgid ""
+"Your profile will be published in the global friendica directories (e.g. <a "
+"href=\"%s\">%s</a>). Your profile will be visible in public."
+msgstr ""
 
-#: mod/crepair.php:171
-msgid "Notification Endpoint URL"
+#: mod/settings.php:1109
+msgid "Publish your default profile in the global social directory?"
+msgstr "Je standaardprofiel in de globale sociale gids publiceren?"
+
+#: mod/settings.php:1109
+#, php-format
+msgid ""
+"Your profile will be published in this node's <a href=\"%s\">local "
+"directory</a>. Your profile details may be publicly visible depending on the"
+" system settings."
 msgstr ""
 
-#: mod/crepair.php:172
-msgid "Poll/Feed URL"
-msgstr "URL poll/feed"
+#: mod/settings.php:1116
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?"
 
-#: mod/crepair.php:173
-msgid "New photo from this URL"
-msgstr "Nieuwe foto van deze URL"
+#: mod/settings.php:1116
+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/content.php:119 mod/network.php:469
-msgid "No such group"
-msgstr "Zo'n groep bestaat niet"
+#: mod/settings.php:1120
+msgid "Hide your profile details from anonymous viewers?"
+msgstr ""
 
-#: mod/content.php:135 mod/network.php:500
-#, php-format
-msgid "Group: %s"
+#: mod/settings.php:1120
+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/content.php:325 object/Item.php:95
-msgid "This entry was edited"
+#: mod/settings.php:1124
+msgid "Allow friends to post to your profile page?"
+msgstr "Vrienden toestaan om op jou profielpagina te posten?"
+
+#: mod/settings.php:1124
+msgid ""
+"Your contacts may write posts on your profile wall. These posts will be "
+"distributed to your contacts"
 msgstr ""
 
-#: mod/content.php:621 object/Item.php:429
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d reactie"
-msgstr[1] "%d reacties"
+#: mod/settings.php:1128
+msgid "Allow friends to tag your posts?"
+msgstr "Sta vrienden toe om jouw berichten te labelen?"
 
-#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117
-msgid "Private Message"
-msgstr "Privébericht"
+#: mod/settings.php:1128
+msgid "Your contacts can add additional tags to your posts."
+msgstr ""
 
-#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263
-msgid "I like this (toggle)"
-msgstr "Vind ik leuk"
+#: mod/settings.php:1132
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Sta je mij toe om jou als mogelijke vriend  voor te stellen aan nieuwe leden?"
 
-#: mod/content.php:702 object/Item.php:263
-msgid "like"
-msgstr "leuk"
+#: mod/settings.php:1132
+msgid ""
+"If you like, Friendica may suggest new members to add you as a contact."
+msgstr ""
 
-#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264
-msgid "I don't like this (toggle)"
-msgstr "Vind ik niet leuk"
+#: mod/settings.php:1136
+msgid "Permit unknown people to send you private mail?"
+msgstr "Mogen onbekende personen jou privé berichten sturen?"
 
-#: mod/content.php:703 object/Item.php:264
-msgid "dislike"
-msgstr "niet leuk"
+#: mod/settings.php:1136
+msgid ""
+"Friendica network users may send you private messages even if they are not "
+"in your contact list."
+msgstr ""
 
-#: mod/content.php:705 object/Item.php:266
-msgid "Share this"
-msgstr "Delen"
+#: mod/settings.php:1140
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profiel is <strong>niet gepubliceerd</strong>."
 
-#: mod/content.php:705 object/Item.php:266
-msgid "share"
-msgstr "Delen"
+#: mod/settings.php:1146
+#, php-format
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+msgstr ""
 
-#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635
-#: mod/photos.php:1721 object/Item.php:717
-msgid "This is you"
-msgstr "Dit ben jij"
+#: mod/settings.php:1153
+msgid "Automatically expire posts after this many days:"
+msgstr "Laat berichten automatisch vervallen na zo veel dagen:"
 
-#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589
-#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
-#: object/Item.php:719 boot.php:971
-msgid "Comment"
-msgstr "Reacties"
+#: mod/settings.php:1153
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd."
 
-#: mod/content.php:729 object/Item.php:721
-msgid "Bold"
-msgstr "Vet"
+#: mod/settings.php:1154
+msgid "Advanced expiration settings"
+msgstr "Geavanceerde instellingen voor vervallen"
 
-#: mod/content.php:730 object/Item.php:722
-msgid "Italic"
-msgstr "Cursief"
+#: mod/settings.php:1155
+msgid "Advanced Expiration"
+msgstr "Geavanceerd Verval:"
 
-#: mod/content.php:731 object/Item.php:723
-msgid "Underline"
-msgstr "Onderstrepen"
+#: mod/settings.php:1156
+msgid "Expire posts:"
+msgstr "Laat berichten vervallen:"
 
-#: mod/content.php:732 object/Item.php:724
-msgid "Quote"
-msgstr "Citeren"
+#: mod/settings.php:1157
+msgid "Expire personal notes:"
+msgstr "Laat persoonlijke aantekeningen verlopen:"
 
-#: mod/content.php:733 object/Item.php:725
-msgid "Code"
-msgstr "Broncode"
+#: mod/settings.php:1158
+msgid "Expire starred posts:"
+msgstr "Laat berichten met ster verlopen"
 
-#: mod/content.php:734 object/Item.php:726
-msgid "Image"
-msgstr "Afbeelding"
+#: mod/settings.php:1159
+msgid "Expire photos:"
+msgstr "Laat foto's vervallen:"
 
-#: mod/content.php:735 object/Item.php:727
-msgid "Link"
-msgstr "Link"
+#: mod/settings.php:1160
+msgid "Only expire posts by others:"
+msgstr "Laat alleen berichten door anderen vervallen:"
 
-#: mod/content.php:736 object/Item.php:728
-msgid "Video"
-msgstr "Video"
+#: mod/settings.php:1190
+msgid "Account Settings"
+msgstr "Account Instellingen"
 
-#: mod/content.php:746 mod/settings.php:740 object/Item.php:122
-#: object/Item.php:124
-msgid "Edit"
-msgstr "Bewerken"
+#: mod/settings.php:1198
+msgid "Password Settings"
+msgstr "Wachtwoord Instellingen"
 
-#: mod/content.php:771 object/Item.php:227
-msgid "add star"
-msgstr "ster toevoegen"
+#: mod/settings.php:1199 mod/register.php:273
+msgid "New Password:"
+msgstr "Nieuw Wachtwoord:"
 
-#: mod/content.php:772 object/Item.php:228
-msgid "remove star"
-msgstr "ster verwijderen"
+#: mod/settings.php:1200 mod/register.php:274
+msgid "Confirm:"
+msgstr "Bevestig:"
 
-#: mod/content.php:773 object/Item.php:229
-msgid "toggle star status"
-msgstr "ster toevoegen of verwijderen"
+#: mod/settings.php:1200
+msgid "Leave password fields blank unless changing"
+msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen"
 
-#: mod/content.php:776 object/Item.php:232
-msgid "starred"
-msgstr "met ster"
+#: mod/settings.php:1201
+msgid "Current Password:"
+msgstr "Huidig wachtwoord:"
 
-#: mod/content.php:777 mod/content.php:798 object/Item.php:252
-msgid "add tag"
-msgstr "label toevoegen"
+#: mod/settings.php:1201 mod/settings.php:1202
+msgid "Your current password to confirm the changes"
+msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen"
 
-#: mod/content.php:787 object/Item.php:240
-msgid "ignore thread"
-msgstr ""
+#: mod/settings.php:1202
+msgid "Password:"
+msgstr "Wachtwoord:"
 
-#: mod/content.php:788 object/Item.php:241
-msgid "unignore thread"
+#: mod/settings.php:1206
+msgid "Basic Settings"
+msgstr "Basis Instellingen"
+
+#: mod/settings.php:1207 src/Model/Profile.php:738
+msgid "Full Name:"
+msgstr "Volledige Naam:"
+
+#: mod/settings.php:1208
+msgid "Email Address:"
+msgstr "E-mailadres:"
+
+#: mod/settings.php:1209
+msgid "Your Timezone:"
+msgstr "Je Tijdzone:"
+
+#: mod/settings.php:1210
+msgid "Your Language:"
 msgstr ""
 
-#: mod/content.php:789 object/Item.php:242
-msgid "toggle ignore status"
+#: mod/settings.php:1210
+msgid ""
+"Set the language we use to show you friendica interface and to send you "
+"emails"
 msgstr ""
 
-#: mod/content.php:803 object/Item.php:137
-msgid "save to folder"
-msgstr "Bewaren in map"
+#: mod/settings.php:1211
+msgid "Default Post Location:"
+msgstr "Standaard locatie:"
 
-#: mod/content.php:848 object/Item.php:201
-msgid "I will attend"
-msgstr ""
+#: mod/settings.php:1212
+msgid "Use Browser Location:"
+msgstr "Gebruik Webbrowser Locatie:"
+
+#: mod/settings.php:1215
+msgid "Security and Privacy Settings"
+msgstr "Instellingen voor Beveiliging en Privacy"
 
-#: mod/content.php:848 object/Item.php:201
-msgid "I will not attend"
-msgstr ""
+#: mod/settings.php:1217
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximum aantal vriendschapsverzoeken per dag:"
 
-#: mod/content.php:848 object/Item.php:201
-msgid "I might attend"
-msgstr ""
+#: mod/settings.php:1217 mod/settings.php:1246
+msgid "(to prevent spam abuse)"
+msgstr "(om spam misbruik te voorkomen)"
 
-#: mod/content.php:912 object/Item.php:369
-msgid "to"
-msgstr "aan"
+#: mod/settings.php:1218
+msgid "Default Post Permissions"
+msgstr "Standaard rechten voor nieuwe berichten"
 
-#: mod/content.php:913 object/Item.php:371
-msgid "Wall-to-Wall"
-msgstr "wall-to-wall"
+#: mod/settings.php:1219
+msgid "(click to open/close)"
+msgstr "(klik om te openen/sluiten)"
 
-#: mod/content.php:914 object/Item.php:372
-msgid "via Wall-To-Wall:"
-msgstr "via wall-to-wall"
+#: mod/settings.php:1229
+msgid "Default Private Post"
+msgstr "Standaard Privé Post"
 
-#: mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Vriendschapsvoorstel verzonden."
+#: mod/settings.php:1230
+msgid "Default Public Post"
+msgstr "Standaard Publieke Post"
 
-#: mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Stel vrienden voor"
+#: mod/settings.php:1234
+msgid "Default Permissions for New Posts"
+msgstr "Standaard rechten voor nieuwe berichten"
 
-#: mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Stel een vriend voor aan %s"
+#: mod/settings.php:1246
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximum aantal privé-berichten per dag van onbekende personen:"
 
-#: mod/mood.php:133
-msgid "Mood"
-msgstr "Stemming"
+#: mod/settings.php:1249
+msgid "Notification Settings"
+msgstr "Notificatie Instellingen"
 
-#: mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Stel je huidige stemming in, en vertel het je vrienden"
+#: mod/settings.php:1250
+msgid "By default post a status message when:"
+msgstr "Post automatisch een bericht op je tijdlijn wanneer:"
 
-#: mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Aanstoten/porren"
+#: mod/settings.php:1251
+msgid "accepting a friend request"
+msgstr "Een vriendschapsverzoek accepteren"
 
-#: mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "aanstoten, porren of andere dingen met iemand doen"
+#: mod/settings.php:1252
+msgid "joining a forum/community"
+msgstr "Lid worden van een groep/forum"
 
-#: mod/poke.php:194
-msgid "Recipient"
-msgstr "Ontvanger"
+#: mod/settings.php:1253
+msgid "making an <em>interesting</em> profile change"
+msgstr "Een <em>interessante</em> verandering aan je profiel"
 
-#: mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Kies wat je met de ontvanger wil doen"
+#: mod/settings.php:1254
+msgid "Send a notification email when:"
+msgstr "Stuur een notificatie e-mail wanneer:"
 
-#: mod/poke.php:198
-msgid "Make this post private"
-msgstr "Dit bericht privé maken"
+#: mod/settings.php:1255
+msgid "You receive an introduction"
+msgstr "Je ontvangt een vriendschaps- of connectieverzoek"
 
-#: mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Afbeelding opgeladen, maar bijsnijden mislukt."
+#: mod/settings.php:1256
+msgid "Your introductions are confirmed"
+msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"
 
-#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
-#: mod/profile_photo.php:314
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Verkleining van de afbeelding [%s] mislukt."
+#: mod/settings.php:1257
+msgid "Someone writes on your profile wall"
+msgstr "Iemand iets op je tijdlijn schrijft"
 
-#: mod/profile_photo.php:124
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen."
+#: mod/settings.php:1258
+msgid "Someone writes a followup comment"
+msgstr "Iemand een reactie schrijft"
 
-#: mod/profile_photo.php:134
-msgid "Unable to process image"
-msgstr "Ik kan de afbeelding niet verwerken"
+#: mod/settings.php:1259
+msgid "You receive a private message"
+msgstr "Je een privé-bericht ontvangt"
 
-#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr ""
+#: mod/settings.php:1260
+msgid "You receive a friend suggestion"
+msgstr "Je een suggestie voor een vriendschap ontvangt"
 
-#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188
-msgid "Unable to process image."
-msgstr "Niet in staat om de afbeelding te verwerken"
+#: mod/settings.php:1261
+msgid "You are tagged in a post"
+msgstr "Je expliciet in een bericht bent genoemd"
 
-#: mod/profile_photo.php:248
-msgid "Upload File:"
-msgstr "Upload bestand:"
+#: mod/settings.php:1262
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Je in een bericht bent aangestoten/gepord/etc."
 
-#: mod/profile_photo.php:249
-msgid "Select a profile:"
-msgstr "Kies een profiel:"
+#: mod/settings.php:1264
+msgid "Activate desktop notifications"
+msgstr ""
 
-#: mod/profile_photo.php:251
-msgid "Upload"
-msgstr "Uploaden"
+#: mod/settings.php:1264
+msgid "Show desktop popup on new notifications"
+msgstr ""
 
-#: mod/profile_photo.php:254
-msgid "or"
-msgstr "of"
+#: mod/settings.php:1266
+msgid "Text-only notification emails"
+msgstr ""
 
-#: mod/profile_photo.php:254
-msgid "skip this step"
-msgstr "Deze stap overslaan"
+#: mod/settings.php:1268
+msgid "Send text only notification emails, without the html part"
+msgstr ""
 
-#: mod/profile_photo.php:254
-msgid "select a photo from your photo albums"
-msgstr "Kies een foto uit je fotoalbums"
+#: mod/settings.php:1270
+msgid "Show detailled notifications"
+msgstr ""
 
-#: mod/profile_photo.php:268
-msgid "Crop Image"
-msgstr "Afbeelding bijsnijden"
+#: mod/settings.php:1272
+msgid ""
+"Per default, notifications are condensed to a single notification per item. "
+"When enabled every notification is displayed."
+msgstr ""
 
-#: mod/profile_photo.php:269
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat."
+#: mod/settings.php:1274
+msgid "Advanced Account/Page Type Settings"
+msgstr ""
 
-#: mod/profile_photo.php:271
-msgid "Done Editing"
-msgstr "Wijzigingen compleet"
+#: mod/settings.php:1275
+msgid "Change the behaviour of this account for special situations"
+msgstr ""
 
-#: mod/profile_photo.php:305
-msgid "Image uploaded successfully."
-msgstr "Uploaden van afbeelding gelukt."
+#: mod/settings.php:1278
+msgid "Relocate"
+msgstr ""
 
-#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221
-msgid "Image upload failed."
-msgstr "Uploaden van afbeelding mislukt."
+#: mod/settings.php:1279
+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/regmod.php:55
-msgid "Account approved."
-msgstr "Account goedgekeurd."
+#: mod/settings.php:1280
+msgid "Resend relocate message to contacts"
+msgstr ""
 
-#: mod/regmod.php:92
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registratie ingetrokken voor %s"
+#: mod/directory.php:152 src/Model/Profile.php:421 src/Model/Profile.php:769
+msgid "Status:"
+msgstr "Tijdlijn:"
 
-#: mod/regmod.php:104
-msgid "Please login."
-msgstr "Inloggen."
+#: mod/directory.php:153 src/Model/Profile.php:422 src/Model/Profile.php:786
+msgid "Homepage:"
+msgstr "Website:"
 
-#: mod/notifications.php:35
-msgid "Invalid request identifier."
-msgstr "Ongeldige <em>request identifier</em>."
+#: mod/directory.php:202 view/theme/vier/theme.php:201
+msgid "Global Directory"
+msgstr "Globale gids"
 
-#: mod/notifications.php:44 mod/notifications.php:180
-#: mod/notifications.php:252
-msgid "Discard"
-msgstr "Verwerpen"
+#: mod/directory.php:204
+msgid "Find on this site"
+msgstr "Op deze website zoeken"
 
-#: mod/notifications.php:60 mod/notifications.php:179
-#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806
-#: mod/contacts.php:991
-msgid "Ignore"
-msgstr "Negeren"
+#: mod/directory.php:206
+msgid "Results for:"
+msgstr ""
 
-#: mod/notifications.php:105
-msgid "Network Notifications"
-msgstr "Netwerknotificaties"
+#: mod/directory.php:208
+msgid "Site Directory"
+msgstr "Websitegids"
 
-#: mod/notifications.php:117
-msgid "Personal Notifications"
-msgstr "Persoonlijke notificaties"
+#: mod/directory.php:209 mod/contacts.php:820 src/Content/Widget.php:63
+msgid "Find"
+msgstr "Zoek"
 
-#: mod/notifications.php:123
-msgid "Home Notifications"
-msgstr "Tijdlijn-notificaties"
+#: mod/directory.php:213
+msgid "No entries (some entries may be hidden)."
+msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)."
 
-#: mod/notifications.php:152
-msgid "Show Ignored Requests"
-msgstr "Toon genegeerde verzoeken"
+#: mod/babel.php:22
+msgid "Source input"
+msgstr ""
 
-#: mod/notifications.php:152
-msgid "Hide Ignored Requests"
-msgstr "Verberg genegeerde verzoeken"
+#: mod/babel.php:28
+msgid "BBCode::convert (raw HTML)"
+msgstr ""
 
-#: mod/notifications.php:164 mod/notifications.php:222
-msgid "Notification type: "
-msgstr "Notificatiesoort:"
+#: mod/babel.php:33
+msgid "BBCode::convert"
+msgstr ""
 
-#: mod/notifications.php:167
-#, php-format
-msgid "suggested by %s"
-msgstr "Voorgesteld door %s"
+#: mod/babel.php:39
+msgid "BBCode::convert => HTML::toBBCode"
+msgstr ""
 
-#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613
-msgid "Hide this contact from others"
-msgstr "Verberg dit contact voor anderen"
+#: mod/babel.php:45
+msgid "BBCode::toMarkdown"
+msgstr ""
 
-#: mod/notifications.php:173 mod/notifications.php:240
-msgid "Post a new friend activity"
-msgstr "Bericht over een nieuwe vriend"
+#: mod/babel.php:51
+msgid "BBCode::toMarkdown => Markdown::convert"
+msgstr ""
 
-#: mod/notifications.php:173 mod/notifications.php:240
-msgid "if applicable"
-msgstr "Indien toepasbaar"
+#: mod/babel.php:57
+msgid "BBCode::toMarkdown => Markdown::toBBCode"
+msgstr ""
 
-#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412
-msgid "Approve"
-msgstr "Goedkeuren"
+#: mod/babel.php:63
+msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
+msgstr ""
 
-#: mod/notifications.php:195
-msgid "Claims to be known to you: "
-msgstr "Denkt dat u hem of haar kent:"
+#: mod/babel.php:70
+msgid "Source input \\x28Diaspora format\\x29"
+msgstr ""
 
-#: mod/notifications.php:196
-msgid "yes"
-msgstr "Ja"
+#: mod/babel.php:76
+msgid "Markdown::toBBCode"
+msgstr ""
 
-#: mod/notifications.php:196
-msgid "no"
-msgstr "Nee"
+#: mod/babel.php:83
+msgid "Raw HTML input"
+msgstr ""
 
-#: mod/notifications.php:197
-msgid ""
-"Shall your connection be bidirectional or not? \"Friend\" implies that you "
-"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
-"you allow to read but you do not want to read theirs. Approve as: "
+#: mod/babel.php:88
+msgid "HTML Input"
 msgstr ""
 
-#: mod/notifications.php:200
-msgid ""
-"Shall your connection be bidirectional or not? \"Friend\" implies that you "
-"allow to read and you subscribe to their posts. \"Sharer\" means that you "
-"allow to read but you do not want to read theirs. Approve as: "
+#: mod/babel.php:94
+msgid "HTML::toBBCode"
 msgstr ""
 
-#: mod/notifications.php:209
-msgid "Friend"
-msgstr "Vriend"
+#: mod/babel.php:100
+msgid "HTML::toPlaintext"
+msgstr ""
 
-#: mod/notifications.php:210
-msgid "Sharer"
-msgstr "Deler"
+#: mod/babel.php:108
+msgid "Source text"
+msgstr ""
 
-#: mod/notifications.php:210
-msgid "Fan/Admirer"
-msgstr "Fan/Bewonderaar"
+#: mod/babel.php:109
+msgid "BBCode"
+msgstr ""
 
-#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126
-msgid "Profile URL"
-msgstr "Profiel url"
+#: mod/babel.php:110
+msgid "Markdown"
+msgstr ""
 
-#: mod/notifications.php:260
-msgid "No introductions."
-msgstr "Geen vriendschaps- of connectieverzoeken."
+#: mod/babel.php:111
+msgid "HTML"
+msgstr ""
 
-#: mod/notifications.php:299
-msgid "Show unread"
+#: mod/follow.php:45
+msgid "The contact could not be added."
 msgstr ""
 
-#: mod/notifications.php:299
-msgid "Show all"
+#: mod/follow.php:73
+msgid "You already added this contact."
+msgstr "Je hebt deze kontakt al toegevoegd"
+
+#: mod/follow.php:83
+msgid "Diaspora support isn't enabled. Contact can't be added."
 msgstr ""
 
-#: mod/notifications.php:305
-#, php-format
-msgid "No more %s notifications."
+#: mod/follow.php:90
+msgid "OStatus support is disabled. Contact can't be added."
 msgstr ""
 
-#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180
-#: mod/profiles.php:617 mod/dfrn_confirm.php:70
-msgid "Profile not found."
-msgstr "Profiel niet gevonden"
+#: mod/follow.php:97
+msgid "The network type couldn't be detected. Contact can't be added."
+msgstr ""
 
-#: mod/profiles.php:38
+#: mod/profiles.php:58
 msgid "Profile deleted."
 msgstr "Profiel verwijderd"
 
-#: mod/profiles.php:56 mod/profiles.php:90
+#: mod/profiles.php:74 mod/profiles.php:110
 msgid "Profile-"
 msgstr "Profiel-"
 
-#: mod/profiles.php:75 mod/profiles.php:118
+#: mod/profiles.php:93 mod/profiles.php:132
 msgid "New profile created."
 msgstr "Nieuw profiel aangemaakt."
 
-#: mod/profiles.php:96
+#: mod/profiles.php:116
 msgid "Profile unavailable to clone."
 msgstr "Profiel niet beschikbaar om te klonen."
 
-#: mod/profiles.php:190
+#: mod/profiles.php:206
 msgid "Profile Name is required."
 msgstr "Profielnaam is vereist."
 
-#: mod/profiles.php:338
+#: mod/profiles.php:347
 msgid "Marital Status"
 msgstr "Echtelijke staat"
 
-#: mod/profiles.php:342
+#: mod/profiles.php:351
 msgid "Romantic Partner"
 msgstr "Romantische Partner"
 
-#: mod/profiles.php:354
+#: mod/profiles.php:363
 msgid "Work/Employment"
 msgstr "Werk"
 
-#: mod/profiles.php:357
+#: mod/profiles.php:366
 msgid "Religion"
 msgstr "Godsdienst"
 
-#: mod/profiles.php:361
+#: mod/profiles.php:370
 msgid "Political Views"
 msgstr "Politieke standpunten"
 
-#: mod/profiles.php:365
+#: mod/profiles.php:374
 msgid "Gender"
 msgstr "Geslacht"
 
-#: mod/profiles.php:369
+#: mod/profiles.php:378
 msgid "Sexual Preference"
 msgstr "Seksuele Voorkeur"
 
-#: mod/profiles.php:373
+#: mod/profiles.php:382
 msgid "XMPP"
 msgstr ""
 
-#: mod/profiles.php:377
+#: mod/profiles.php:386
 msgid "Homepage"
 msgstr "Tijdlijn"
 
-#: mod/profiles.php:381 mod/profiles.php:702
+#: mod/profiles.php:390 mod/profiles.php:686
 msgid "Interests"
 msgstr "Interesses"
 
-#: mod/profiles.php:385
+#: mod/profiles.php:394 mod/admin.php:490
 msgid "Address"
 msgstr "Adres"
 
-#: mod/profiles.php:392 mod/profiles.php:698
+#: mod/profiles.php:401 mod/profiles.php:682
 msgid "Location"
 msgstr "Plaats"
 
-#: mod/profiles.php:477
+#: mod/profiles.php:486
 msgid "Profile updated."
 msgstr "Profiel bijgewerkt."
 
@@ -4763,16 +4953,16 @@ msgstr "Profiel bijgewerkt."
 msgid " and "
 msgstr "en"
 
-#: mod/profiles.php:572
+#: mod/profiles.php:573
 msgid "public profile"
 msgstr "publiek profiel"
 
-#: mod/profiles.php:575
+#: mod/profiles.php:576
 #, php-format
 msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr "%1$s veranderde %2$s naar &ldquo;%3$s&rdquo;"
 
-#: mod/profiles.php:576
+#: mod/profiles.php:577
 #, php-format
 msgid " - Visit %1$s's %2$s"
 msgstr " - Bezoek %2$s van %1$s"
@@ -4782,4126 +4972,4474 @@ msgstr " - Bezoek %2$s van %1$s"
 msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr "%1$s heeft een aangepast %2$s, %3$s veranderd."
 
-#: mod/profiles.php:645
+#: mod/profiles.php:633
 msgid "Hide contacts and friends:"
 msgstr ""
 
-#: mod/profiles.php:650
+#: mod/profiles.php:638
 msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?"
 
-#: mod/profiles.php:674
+#: mod/profiles.php:658
 msgid "Show more profile fields:"
 msgstr ""
 
-#: mod/profiles.php:686
+#: mod/profiles.php:670
 msgid "Profile Actions"
 msgstr ""
 
-#: mod/profiles.php:687
+#: mod/profiles.php:671
 msgid "Edit Profile Details"
 msgstr "Profieldetails bewerken"
 
-#: mod/profiles.php:689
+#: mod/profiles.php:673
 msgid "Change Profile Photo"
 msgstr "Profielfoto wijzigen"
 
-#: mod/profiles.php:690
+#: mod/profiles.php:674
 msgid "View this profile"
 msgstr "Dit profiel bekijken"
 
-#: mod/profiles.php:692
+#: mod/profiles.php:675 mod/profiles.php:770 src/Model/Profile.php:393
+msgid "Edit visibility"
+msgstr "Pas zichtbaarheid aan"
+
+#: mod/profiles.php:676
 msgid "Create a new profile using these settings"
 msgstr "Nieuw profiel aanmaken met deze instellingen"
 
-#: mod/profiles.php:693
+#: mod/profiles.php:677
 msgid "Clone this profile"
 msgstr "Dit profiel klonen"
 
-#: mod/profiles.php:694
+#: mod/profiles.php:678
 msgid "Delete this profile"
 msgstr "Dit profiel verwijderen"
 
-#: mod/profiles.php:696
+#: mod/profiles.php:680
 msgid "Basic information"
 msgstr ""
 
-#: mod/profiles.php:697
+#: mod/profiles.php:681
 msgid "Profile picture"
 msgstr ""
 
-#: mod/profiles.php:699
+#: mod/profiles.php:683
 msgid "Preferences"
 msgstr ""
 
-#: mod/profiles.php:700
+#: mod/profiles.php:684
 msgid "Status information"
 msgstr ""
 
-#: mod/profiles.php:701
+#: mod/profiles.php:685
 msgid "Additional information"
 msgstr ""
 
-#: mod/profiles.php:704
+#: mod/profiles.php:688
 msgid "Relation"
 msgstr ""
 
-#: mod/profiles.php:708
+#: mod/profiles.php:689 src/Util/Temporal.php:81 src/Util/Temporal.php:83
+msgid "Miscellaneous"
+msgstr "Diversen"
+
+#: mod/profiles.php:692
 msgid "Your Gender:"
 msgstr "Je Geslacht:"
 
-#: mod/profiles.php:709
+#: mod/profiles.php:693
 msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr "<span class=\"heart\">&hearts;</span> Echtelijke Staat:"
 
-#: mod/profiles.php:711
+#: mod/profiles.php:694 src/Model/Profile.php:782
+msgid "Sexual Preference:"
+msgstr "Seksuele Voorkeur:"
+
+#: mod/profiles.php:695
 msgid "Example: fishing photography software"
 msgstr "Voorbeeld: vissen fotografie software"
 
-#: mod/profiles.php:716
+#: mod/profiles.php:700
 msgid "Profile Name:"
 msgstr "Profiel Naam:"
 
-#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496
-msgid "Required"
-msgstr "Vereist"
-
-#: mod/profiles.php:718
+#: mod/profiles.php:702
 msgid ""
 "This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
 "be visible to anybody using the internet."
 msgstr "Dit is jouw <strong>publiek</strong> profiel.<br />Het <strong>kan</strong> zichtbaar zijn voor iedereen op het internet."
 
-#: mod/profiles.php:719
+#: mod/profiles.php:703
 msgid "Your Full Name:"
 msgstr "Je volledige naam:"
 
-#: mod/profiles.php:720
+#: mod/profiles.php:704
 msgid "Title/Description:"
 msgstr "Titel/Beschrijving:"
 
-#: mod/profiles.php:723
+#: mod/profiles.php:707
 msgid "Street Address:"
 msgstr "Postadres:"
 
-#: mod/profiles.php:724
+#: mod/profiles.php:708
 msgid "Locality/City:"
 msgstr "Gemeente/Stad:"
 
-#: mod/profiles.php:725
+#: mod/profiles.php:709
 msgid "Region/State:"
 msgstr "Regio/Staat:"
 
-#: mod/profiles.php:726
+#: mod/profiles.php:710
 msgid "Postal/Zip Code:"
 msgstr "Postcode:"
 
-#: mod/profiles.php:727
+#: mod/profiles.php:711
 msgid "Country:"
 msgstr "Land:"
 
-#: mod/profiles.php:731
+#: mod/profiles.php:712 src/Util/Temporal.php:149
+msgid "Age: "
+msgstr "Leeftijd:"
+
+#: mod/profiles.php:715
 msgid "Who: (if applicable)"
 msgstr "Wie: (indien toepasbaar)"
 
-#: mod/profiles.php:731
+#: mod/profiles.php:715
 msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl"
 
-#: mod/profiles.php:732
+#: mod/profiles.php:716
 msgid "Since [date]:"
 msgstr "Sinds [datum]:"
 
-#: mod/profiles.php:734
+#: mod/profiles.php:718
 msgid "Tell us about yourself..."
 msgstr "Vertel iets over jezelf..."
 
-#: mod/profiles.php:735
+#: mod/profiles.php:719
 msgid "XMPP (Jabber) address:"
 msgstr ""
 
-#: mod/profiles.php:735
+#: mod/profiles.php:719
 msgid ""
 "The XMPP address will be propagated to your contacts so that they can follow"
 " you."
 msgstr ""
 
-#: mod/profiles.php:736
+#: mod/profiles.php:720
 msgid "Homepage URL:"
 msgstr "Adres tijdlijn:"
 
-#: mod/profiles.php:739
+#: mod/profiles.php:721 src/Model/Profile.php:790
+msgid "Hometown:"
+msgstr "Woonplaats:"
+
+#: mod/profiles.php:722 src/Model/Profile.php:798
+msgid "Political Views:"
+msgstr "Politieke standpunten:"
+
+#: mod/profiles.php:723
 msgid "Religious Views:"
 msgstr "Geloof:"
 
-#: mod/profiles.php:740
+#: mod/profiles.php:724
 msgid "Public Keywords:"
 msgstr "Publieke Sleutelwoorden:"
 
-#: mod/profiles.php:740
+#: mod/profiles.php:724
 msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)"
 
-#: mod/profiles.php:741
+#: mod/profiles.php:725
 msgid "Private Keywords:"
 msgstr "Privé Sleutelwoorden:"
 
-#: mod/profiles.php:741
+#: mod/profiles.php:725
 msgid "(Used for searching profiles, never shown to others)"
 msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)"
 
-#: mod/profiles.php:744
+#: mod/profiles.php:726 src/Model/Profile.php:814
+msgid "Likes:"
+msgstr "Houdt van:"
+
+#: mod/profiles.php:727 src/Model/Profile.php:818
+msgid "Dislikes:"
+msgstr "Houdt niet van:"
+
+#: mod/profiles.php:728
 msgid "Musical interests"
 msgstr "Muzikale interesses"
 
-#: mod/profiles.php:745
+#: mod/profiles.php:729
 msgid "Books, literature"
 msgstr "Boeken, literatuur"
 
-#: mod/profiles.php:746
+#: mod/profiles.php:730
 msgid "Television"
 msgstr "Televisie"
 
-#: mod/profiles.php:747
+#: mod/profiles.php:731
 msgid "Film/dance/culture/entertainment"
 msgstr "Film/dans/cultuur/ontspanning"
 
-#: mod/profiles.php:748
+#: mod/profiles.php:732
 msgid "Hobbies/Interests"
 msgstr "Hobby's/Interesses"
 
-#: mod/profiles.php:749
+#: mod/profiles.php:733
 msgid "Love/romance"
 msgstr "Liefde/romance"
 
-#: mod/profiles.php:750
+#: mod/profiles.php:734
 msgid "Work/employment"
 msgstr "Werk"
 
-#: mod/profiles.php:751
+#: mod/profiles.php:735
 msgid "School/education"
 msgstr "School/opleiding"
 
-#: mod/profiles.php:752
+#: mod/profiles.php:736
 msgid "Contact information and Social Networks"
 msgstr "Contactinformatie en sociale netwerken"
 
-#: mod/profiles.php:794
+#: mod/profiles.php:767 src/Model/Profile.php:389
+msgid "Profile Image"
+msgstr "Profiel afbeelding"
+
+#: mod/profiles.php:769 src/Model/Profile.php:392
+msgid "visible to everybody"
+msgstr "zichtbaar voor iedereen"
+
+#: mod/profiles.php:776
 msgid "Edit/Manage Profiles"
 msgstr "Wijzig/Beheer Profielen"
 
-#: mod/allfriends.php:43
-msgid "No friends to display."
-msgstr "Geen vrienden om te laten zien."
+#: mod/profiles.php:777 src/Model/Profile.php:379 src/Model/Profile.php:401
+msgid "Change profile photo"
+msgstr "Profiel foto wijzigen"
 
-#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Toegang tot dit profiel is beperkt."
+#: mod/profiles.php:778 src/Model/Profile.php:380
+msgid "Create New Profile"
+msgstr "Maak nieuw profiel"
 
-#: mod/cal.php:276 mod/events.php:380
-msgid "View"
+#: 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 "Kon geen toegang krijgen tot de contactgegevens"
+
+#: mod/contacts.php:194
+msgid "Could not locate selected profile."
+msgstr "Kon het geselecteerde profiel niet vinden."
+
+#: mod/contacts.php:228
+msgid "Contact updated."
+msgstr "Contact bijgewerkt."
+
+#: mod/contacts.php:421
+msgid "Contact has been blocked"
+msgstr "Contact is geblokkeerd"
+
+#: mod/contacts.php:421
+msgid "Contact has been unblocked"
+msgstr "Contact is gedeblokkeerd"
+
+#: mod/contacts.php:432
+msgid "Contact has been ignored"
+msgstr "Contact wordt genegeerd"
+
+#: mod/contacts.php:432
+msgid "Contact has been unignored"
+msgstr "Contact wordt niet meer genegeerd"
+
+#: mod/contacts.php:443
+msgid "Contact has been archived"
+msgstr "Contact is gearchiveerd"
+
+#: mod/contacts.php:443
+msgid "Contact has been unarchived"
+msgstr "Contact is niet meer gearchiveerd"
+
+#: mod/contacts.php:467
+msgid "Drop contact"
 msgstr ""
 
-#: mod/cal.php:277 mod/events.php:382
-msgid "Previous"
-msgstr "Vorige"
+#: mod/contacts.php:470 mod/contacts.php:823
+msgid "Do you really want to delete this contact?"
+msgstr "Wil je echt dit contact verwijderen?"
 
-#: mod/cal.php:278 mod/events.php:383 mod/install.php:231
-msgid "Next"
-msgstr "Volgende"
+#: mod/contacts.php:488
+msgid "Contact has been removed."
+msgstr "Contact is verwijderd."
 
-#: mod/cal.php:287 mod/events.php:392
-msgid "list"
+#: mod/contacts.php:519
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Je bent wederzijds bevriend met %s"
+
+#: mod/contacts.php:523
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Je deelt met %s"
+
+#: mod/contacts.php:527
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s deelt met jou"
+
+#: mod/contacts.php:547
+msgid "Private communications are not available for this contact."
+msgstr "Privécommunicatie met dit contact is niet beschikbaar."
+
+#: mod/contacts.php:549
+msgid "Never"
+msgstr "Nooit"
+
+#: mod/contacts.php:552
+msgid "(Update was successful)"
+msgstr "(Wijziging is geslaagd)"
+
+#: mod/contacts.php:552
+msgid "(Update was not successful)"
+msgstr "(Wijziging is niet geslaagd)"
+
+#: mod/contacts.php:554 mod/contacts.php:992
+msgid "Suggest friends"
+msgstr "Stel vrienden voor"
+
+#: mod/contacts.php:558
+#, php-format
+msgid "Network type: %s"
+msgstr "Netwerk type: %s"
+
+#: mod/contacts.php:563
+msgid "Communications lost with this contact!"
+msgstr "Communicatie met dit contact is verbroken!"
+
+#: mod/contacts.php:569
+msgid "Fetch further information for feeds"
 msgstr ""
 
-#: mod/cal.php:297
-msgid "User not found"
+#: 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/cal.php:313
-msgid "This calendar format is not supported"
+#: mod/contacts.php:572 mod/admin.php:1272 mod/admin.php:1435
+#: mod/admin.php:1445
+msgid "Disabled"
+msgstr "Uitgeschakeld"
+
+#: mod/contacts.php:573
+msgid "Fetch information"
 msgstr ""
 
-#: mod/cal.php:315
-msgid "No exportable data found"
+#: mod/contacts.php:574
+msgid "Fetch keywords"
 msgstr ""
 
-#: mod/cal.php:330
-msgid "calendar"
+#: mod/contacts.php:575
+msgid "Fetch information and keywords"
 msgstr ""
 
-#: mod/common.php:86
-msgid "No contacts in common."
-msgstr "Geen gedeelde contacten."
+#: mod/contacts.php:608
+msgid "Contact"
+msgstr ""
 
-#: mod/common.php:134 mod/contacts.php:863
-msgid "Common Friends"
-msgstr "Gedeelde Vrienden"
+#: mod/contacts.php:611
+msgid "Profile Visibility"
+msgstr "Zichtbaarheid profiel"
 
-#: mod/community.php:27
-msgid "Not available."
-msgstr "Niet beschikbaar"
+#: mod/contacts.php:612
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. "
 
-#: mod/directory.php:197 view/theme/vier/theme.php:201
-msgid "Global Directory"
-msgstr "Globale gids"
+#: mod/contacts.php:613
+msgid "Contact Information / Notes"
+msgstr "Contactinformatie / aantekeningen"
 
-#: mod/directory.php:199
-msgid "Find on this site"
-msgstr "Op deze website zoeken"
+#: mod/contacts.php:614
+msgid "Their personal note"
+msgstr ""
 
-#: mod/directory.php:201
-msgid "Results for:"
+#: mod/contacts.php:616
+msgid "Edit contact notes"
+msgstr "Wijzig aantekeningen over dit contact"
+
+#: mod/contacts.php:620
+msgid "Block/Unblock contact"
+msgstr "Blokkeer/deblokkeer contact"
+
+#: mod/contacts.php:621
+msgid "Ignore contact"
+msgstr "Negeer contact"
+
+#: mod/contacts.php:622
+msgid "Repair URL settings"
+msgstr "Repareer URL-instellingen"
+
+#: mod/contacts.php:623
+msgid "View conversations"
+msgstr "Toon gesprekken"
+
+#: mod/contacts.php:628
+msgid "Last update:"
+msgstr "Laatste wijziging:"
+
+#: mod/contacts.php:630
+msgid "Update public posts"
+msgstr "Openbare posts aanpassen"
+
+#: mod/contacts.php:632 mod/contacts.php:1002
+msgid "Update now"
+msgstr "Wijzig nu"
+
+#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
+#: mod/admin.php:485 mod/admin.php:1800
+msgid "Unblock"
+msgstr "Blokkering opheffen"
+
+#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
+#: mod/admin.php:484 mod/admin.php:1799
+msgid "Block"
+msgstr "Blokkeren"
+
+#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
+msgid "Unignore"
+msgstr "Negeer niet meer"
+
+#: mod/contacts.php:642
+msgid "Currently blocked"
+msgstr "Op dit moment geblokkeerd"
+
+#: mod/contacts.php:643
+msgid "Currently ignored"
+msgstr "Op dit moment genegeerd"
+
+#: mod/contacts.php:644
+msgid "Currently archived"
+msgstr "Op dit moment gearchiveerd"
+
+#: mod/contacts.php:645
+msgid "Awaiting connection acknowledge"
 msgstr ""
 
-#: mod/directory.php:203
-msgid "Site Directory"
-msgstr "Websitegids"
+#: mod/contacts.php:646
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Antwoorden of 'vind ik leuk's op je openbare posts <strong>kunnen</strong> nog zichtbaar zijn"
 
-#: mod/directory.php:210
-msgid "No entries (some entries may be hidden)."
-msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)."
+#: mod/contacts.php:647
+msgid "Notification for new posts"
+msgstr "Meldingen voor nieuwe berichten"
+
+#: 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/dirfind.php:36
-#, php-format
-msgid "People Search - %s"
+#: 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/dirfind.php:47
-#, php-format
-msgid "Forum Search - %s"
+#: mod/contacts.php:662 src/Model/Profile.php:424
+msgid "XMPP:"
 msgstr ""
 
-#: mod/dirfind.php:240 mod/match.php:107
-msgid "No matches"
-msgstr "Geen resultaten"
+#: mod/contacts.php:667
+msgid "Actions"
+msgstr ""
 
-#: mod/display.php:473
-msgid "Item has been removed."
-msgstr "Item is verwijderd."
+#: mod/contacts.php:669 mod/contacts.php:855 src/Content/Nav.php:100
+#: src/Model/Profile.php:888 view/theme/frio/theme.php:259
+msgid "Status"
+msgstr "Tijdlijn"
 
-#: mod/events.php:95 mod/events.php:97
-msgid "Event can not end before it has started."
+#: mod/contacts.php:670
+msgid "Contact Settings"
 msgstr ""
 
-#: mod/events.php:104 mod/events.php:106
-msgid "Event title and start time are required."
-msgstr "Titel en begintijd van de gebeurtenis zijn vereist."
+#: mod/contacts.php:711
+msgid "Suggestions"
+msgstr "Voorstellen"
 
-#: mod/events.php:381
-msgid "Create New Event"
-msgstr "Maak een nieuwe gebeurtenis"
+#: mod/contacts.php:714
+msgid "Suggest potential friends"
+msgstr "Stel vrienden voor"
 
-#: mod/events.php:482
-msgid "Event details"
-msgstr "Gebeurtenis details"
+#: mod/contacts.php:722
+msgid "Show all contacts"
+msgstr "Toon alle contacten"
 
-#: mod/events.php:483
-msgid "Starting date and Title are required."
-msgstr ""
+#: mod/contacts.php:727
+msgid "Unblocked"
+msgstr "Niet geblokkeerd"
 
-#: mod/events.php:484 mod/events.php:485
-msgid "Event Starts:"
-msgstr "Gebeurtenis begint:"
+#: mod/contacts.php:730
+msgid "Only show unblocked contacts"
+msgstr "Toon alleen niet-geblokkeerde contacten"
 
-#: mod/events.php:486 mod/events.php:502
-msgid "Finish date/time is not known or not relevant"
-msgstr "Einddatum/tijd is niet gekend of niet relevant"
+#: mod/contacts.php:735
+msgid "Blocked"
+msgstr "Geblokkeerd"
 
-#: mod/events.php:488 mod/events.php:489
-msgid "Event Finishes:"
-msgstr "Gebeurtenis eindigt:"
+#: mod/contacts.php:738
+msgid "Only show blocked contacts"
+msgstr "Toon alleen geblokkeerde contacten"
 
-#: mod/events.php:490 mod/events.php:503
-msgid "Adjust for viewer timezone"
-msgstr "Pas aan aan de tijdzone van de gebruiker"
+#: mod/contacts.php:743
+msgid "Ignored"
+msgstr "Genegeerd"
 
-#: mod/events.php:492
-msgid "Description:"
-msgstr "Beschrijving:"
+#: mod/contacts.php:746
+msgid "Only show ignored contacts"
+msgstr "Toon alleen genegeerde contacten"
 
-#: mod/events.php:496 mod/events.php:498
-msgid "Title:"
-msgstr "Titel:"
+#: mod/contacts.php:751
+msgid "Archived"
+msgstr "Gearchiveerd"
 
-#: mod/events.php:499 mod/events.php:500
-msgid "Share this event"
-msgstr "Deel deze gebeurtenis"
+#: mod/contacts.php:754
+msgid "Only show archived contacts"
+msgstr "Toon alleen gearchiveerde contacten"
 
-#: mod/maintenance.php:9
-msgid "System down for maintenance"
-msgstr "Systeem onbeschikbaar wegens onderhoud"
+#: mod/contacts.php:759
+msgid "Hidden"
+msgstr "Verborgen"
 
-#: mod/match.php:33
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel."
+#: mod/contacts.php:762
+msgid "Only show hidden contacts"
+msgstr "Toon alleen verborgen contacten"
 
-#: mod/match.php:86
-msgid "is interested in:"
-msgstr "Is geïnteresseerd in:"
+#: mod/contacts.php:818
+msgid "Search your contacts"
+msgstr "Doorzoek je contacten"
 
-#: mod/match.php:100
-msgid "Profile Match"
-msgstr "Profielmatch"
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Archive"
+msgstr "Archiveer"
 
-#: mod/profile.php:179
-msgid "Tips for New Members"
-msgstr "Tips voor nieuwe leden"
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Unarchive"
+msgstr "Archiveer niet meer"
 
-#: mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Wil je echt dit voorstel verwijderen?"
+#: mod/contacts.php:832
+msgid "Batch Actions"
+msgstr ""
 
-#: mod/suggest.php:71
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."
+#: mod/contacts.php:866 src/Model/Profile.php:899
+msgid "Profile Details"
+msgstr "Profieldetails"
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
-msgstr "Negeren/Verbergen"
+#: mod/contacts.php:878
+msgid "View all contacts"
+msgstr "Alle contacten zien"
 
-#: mod/update_community.php:19 mod/update_display.php:23
-#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
-msgid "[Embedded content - reload page to view]"
-msgstr "[Ingebedde inhoud - herlaad pagina om het te bekijken]"
+#: mod/contacts.php:889
+msgid "View all common friends"
+msgstr ""
 
-#: mod/photos.php:88 mod/photos.php:1856
-msgid "Recent Photos"
-msgstr "Recente foto's"
+#: mod/contacts.php:898
+msgid "Advanced Contact Settings"
+msgstr "Geavanceerde instellingen voor contacten"
 
-#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858
-msgid "Upload New Photos"
-msgstr "Nieuwe foto's uploaden"
+#: mod/contacts.php:930
+msgid "Mutual Friendship"
+msgstr "Wederzijdse vriendschap"
 
-#: mod/photos.php:105 mod/settings.php:36
-msgid "everybody"
-msgstr "iedereen"
+#: mod/contacts.php:934
+msgid "is a fan of yours"
+msgstr "Is een fan van jou"
 
-#: mod/photos.php:169
-msgid "Contact information unavailable"
-msgstr "Contactinformatie niet beschikbaar"
+#: mod/contacts.php:938
+msgid "you are a fan of"
+msgstr "Jij bent een fan van"
 
-#: mod/photos.php:190
-msgid "Album not found."
-msgstr "Album niet gevonden"
+#: mod/contacts.php:1013
+msgid "Toggle Blocked status"
+msgstr "Schakel geblokkeerde status"
 
-#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227
-msgid "Delete Album"
-msgstr "Verwijder album"
+#: mod/contacts.php:1021
+msgid "Toggle Ignored status"
+msgstr "Schakel negeerstatus"
 
-#: mod/photos.php:230
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?"
+#: mod/contacts.php:1029
+msgid "Toggle Archive status"
+msgstr "Schakel archiveringsstatus"
 
-#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540
-msgid "Delete Photo"
-msgstr "Verwijder foto"
+#: mod/contacts.php:1037
+msgid "Delete contact"
+msgstr "Verwijder contact"
 
-#: mod/photos.php:317
-msgid "Do you really want to delete this photo?"
-msgstr "Wil je echt deze foto verwijderen?"
+#: mod/_tos.php:48 mod/register.php:288 mod/admin.php:188 mod/admin.php:302
+#: src/Module/Tos.php:48
+msgid "Terms of Service"
+msgstr ""
 
-#: mod/photos.php:688
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s is gelabeld in %2$s door %3$s"
+#: mod/_tos.php:51 src/Module/Tos.php:51
+msgid "Privacy Statement"
+msgstr ""
 
-#: mod/photos.php:688
-msgid "a photo"
-msgstr "een foto"
+#: mod/_tos.php:52 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 ""
 
-#: mod/photos.php:794
-msgid "Image file is empty."
-msgstr "Afbeeldingsbestand is leeg."
+#: mod/_tos.php:53 src/Module/Tos.php:53
+#, php-format
+msgid ""
+"At any point in time a logged in user can export their account data from the"
+" <a href=\"%1$s/settings/uexport\">account settings</a>. If the user wants "
+"to delete their account they can do so at <a "
+"href=\"%1$s/removeme\">%1$s/removeme</a>. The deletion of the account will "
+"be permanent."
+msgstr ""
 
-#: mod/photos.php:954
-msgid "No photos selected"
-msgstr "Geen foto's geselecteerd"
+#: mod/friendica.php:77
+msgid "This is Friendica, version"
+msgstr "Dit is Friendica, versie"
 
-#: mod/photos.php:1054 mod/videos.php:305
-msgid "Access to this item is restricted."
-msgstr "Toegang tot dit item is beperkt."
+#: mod/friendica.php:78
+msgid "running at web location"
+msgstr "draaiend op web-adres"
 
-#: mod/photos.php:1114
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt."
+#: mod/friendica.php:82
+msgid ""
+"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
+"about the Friendica project."
+msgstr ""
 
-#: mod/photos.php:1148
-msgid "Upload Photos"
-msgstr "Upload foto's"
+#: mod/friendica.php:86
+msgid "Bug reports and issues: please visit"
+msgstr "Bug rapporten en problemen: bezoek"
 
-#: mod/photos.php:1152 mod/photos.php:1222
-msgid "New album name: "
-msgstr "Nieuwe albumnaam: "
+#: mod/friendica.php:86
+msgid "the bugtracker at github"
+msgstr ""
 
-#: mod/photos.php:1153
-msgid "or existing album name: "
-msgstr "of bestaande albumnaam: "
+#: mod/friendica.php:89
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com"
 
-#: mod/photos.php:1154
-msgid "Do not show a status post for this upload"
-msgstr "Toon geen bericht op je tijdlijn van deze upload"
+#: mod/friendica.php:103
+msgid "Installed addons/apps:"
+msgstr ""
 
-#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300
-msgid "Show to Groups"
-msgstr "Tonen aan groepen"
+#: mod/friendica.php:117
+msgid "No installed addons/apps"
+msgstr ""
 
-#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301
-msgid "Show to Contacts"
-msgstr "Tonen aan contacten"
+#: mod/friendica.php:122
+#, php-format
+msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
+msgstr ""
 
-#: mod/photos.php:1167
-msgid "Private Photo"
-msgstr "Privé foto"
+#: mod/friendica.php:127
+msgid "On this server the following remote servers are blocked."
+msgstr ""
 
-#: mod/photos.php:1168
-msgid "Public Photo"
-msgstr "Publieke foto"
+#: mod/friendica.php:128 mod/admin.php:354 mod/admin.php:372
+msgid "Reason for the block"
+msgstr ""
 
-#: mod/photos.php:1234
-msgid "Edit Album"
-msgstr "Album wijzigen"
+#: mod/lostpass.php:27
+msgid "No valid account found."
+msgstr "Geen geldige account gevonden."
 
-#: mod/photos.php:1240
-msgid "Show Newest First"
-msgstr "Toon niewste eerst"
+#: mod/lostpass.php:39
+msgid "Password reset request issued. Check your email."
+msgstr "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na."
 
-#: mod/photos.php:1242
-msgid "Show Oldest First"
-msgstr "Toon oudste eerst"
+#: 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/photos.php:1269 mod/photos.php:1841
-msgid "View Photo"
-msgstr "Bekijk foto"
+#: 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/photos.php:1315
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."
+#: mod/lostpass.php:73
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"
 
-#: mod/photos.php:1317
-msgid "Photo not available"
-msgstr "Foto is niet beschikbaar"
+#: mod/lostpass.php:89
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld."
 
-#: mod/photos.php:1372
-msgid "View photo"
-msgstr "Bekijk foto"
+#: mod/lostpass.php:102
+msgid "Request has expired, please make a new one."
+msgstr ""
 
-#: mod/photos.php:1372
-msgid "Edit photo"
-msgstr "Bewerk foto"
+#: mod/lostpass.php:117
+msgid "Forgot your Password?"
+msgstr "Wachtwoord vergeten?"
 
-#: mod/photos.php:1373
-msgid "Use as profile photo"
-msgstr "Gebruik als profielfoto"
+#: mod/lostpass.php:118
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."
+
+#: mod/lostpass.php:119 src/Module/Login.php:314
+msgid "Nickname or Email: "
+msgstr "Bijnaam of e-mail:"
 
-#: mod/photos.php:1398
-msgid "View Full Size"
-msgstr "Bekijk in volledig formaat"
+#: mod/lostpass.php:120
+msgid "Reset"
+msgstr "Opnieuw"
 
-#: mod/photos.php:1484
-msgid "Tags: "
-msgstr "Labels: "
+#: mod/lostpass.php:136 src/Module/Login.php:326
+msgid "Password Reset"
+msgstr "Wachtwoord opnieuw instellen"
 
-#: mod/photos.php:1487
-msgid "[Remove any tag]"
-msgstr "[Alle labels verwijderen]"
+#: mod/lostpass.php:137
+msgid "Your password has been reset as requested."
+msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd."
 
-#: mod/photos.php:1526
-msgid "New album name"
-msgstr "Nieuwe albumnaam"
+#: mod/lostpass.php:138
+msgid "Your new password is"
+msgstr "Je nieuwe wachtwoord is"
 
-#: mod/photos.php:1527
-msgid "Caption"
-msgstr "Onderschrift"
+#: mod/lostpass.php:139
+msgid "Save or copy your new password - and then"
+msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan"
 
-#: mod/photos.php:1528
-msgid "Add a Tag"
-msgstr "Een label toevoegen"
+#: mod/lostpass.php:140
+msgid "click here to login"
+msgstr "klik hier om in te loggen"
 
-#: mod/photos.php:1528
+#: mod/lostpass.php:141
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina."
 
-#: mod/photos.php:1529
-msgid "Do not rotate"
+#: 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/photos.php:1530
-msgid "Rotate CW (right)"
-msgstr "Roteren met de klok mee (rechts)"
-
-#: mod/photos.php:1531
-msgid "Rotate CCW (left)"
-msgstr "Roteren tegen de klok in (links)"
-
-#: mod/photos.php:1546
-msgid "Private photo"
-msgstr "Privé foto"
-
-#: mod/photos.php:1547
-msgid "Public photo"
-msgstr "Publieke foto"
-
-#: mod/photos.php:1770
-msgid "Map"
+#: 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 ""
 
-#: mod/photos.php:1847 mod/videos.php:387
-msgid "View Album"
-msgstr "Album bekijken"
+#: mod/lostpass.php:169
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Je wachtwoord is veranderd op %s"
 
-#: mod/register.php:93
+#: mod/register.php:99
 msgid ""
 "Registration successful. Please check your email for further instructions."
 msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."
 
-#: mod/register.php:98
+#: mod/register.php:103
 #, php-format
 msgid ""
 "Failed to send email message. Here your accout details:<br> login: %s<br> "
 "password: %s<br><br>You can change your password after login."
 msgstr ""
 
-#: mod/register.php:105
+#: mod/register.php:110
 msgid "Registration successful."
 msgstr ""
 
-#: mod/register.php:111
+#: mod/register.php:115
 msgid "Your registration can not be processed."
 msgstr "Je registratie kan niet verwerkt worden."
 
-#: mod/register.php:160
+#: mod/register.php:162
 msgid "Your registration is pending approval by the site owner."
 msgstr "Jouw registratie wacht op goedkeuring van de beheerder."
 
-#: mod/register.php:226
+#: mod/register.php:220
 msgid ""
 "You may (optionally) fill in this form via OpenID by supplying your OpenID "
 "and clicking 'Register'."
 msgstr "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken."
 
-#: mod/register.php:227
+#: mod/register.php:221
 msgid ""
 "If you are not familiar with OpenID, please leave that field blank and fill "
 "in the rest of the items."
 msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."
 
-#: mod/register.php:228
+#: mod/register.php:222
 msgid "Your OpenID (optional): "
 msgstr "Je OpenID (optioneel):"
 
-#: mod/register.php:242
+#: mod/register.php:234
 msgid "Include your profile in member directory?"
 msgstr "Je profiel in de ledengids opnemen?"
 
-#: mod/register.php:267
+#: mod/register.php:259
 msgid "Note for the admin"
 msgstr ""
 
-#: mod/register.php:267
+#: mod/register.php:259
 msgid "Leave a message for the admin, why you want to join this node"
 msgstr ""
 
-#: mod/register.php:268
+#: mod/register.php:260
 msgid "Membership on this site is by invitation only."
 msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging."
 
-#: mod/register.php:269
-msgid "Your invitation ID: "
-msgstr "Je uitnodigingsid:"
+#: mod/register.php:261
+msgid "Your invitation code: "
+msgstr ""
 
-#: mod/register.php:272 mod/admin.php:956
+#: mod/register.php:264 mod/admin.php:1348
 msgid "Registration"
 msgstr "Registratie"
 
-#: mod/register.php:280
+#: mod/register.php:270
 msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
 msgstr ""
 
-#: mod/register.php:281
-msgid "Your Email Address: "
-msgstr "Je email adres:"
-
-#: mod/register.php:283 mod/settings.php:1271
-msgid "New Password:"
-msgstr "Nieuw Wachtwoord:"
+#: mod/register.php:271
+msgid ""
+"Your Email Address: (Initial information will be send there, so this has to "
+"be an existing address.)"
+msgstr ""
 
-#: mod/register.php:283
+#: mod/register.php:273
 msgid "Leave empty for an auto generated password."
 msgstr ""
 
-#: mod/register.php:284 mod/settings.php:1272
-msgid "Confirm:"
-msgstr "Bevestig:"
-
-#: mod/register.php:285
+#: mod/register.php:275
+#, php-format
 msgid ""
 "Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan '<strong>bijnaam@$sitename</strong>' zijn."
+"profile address on this site will then be '<strong>nickname@%s</strong>'."
+msgstr ""
 
-#: mod/register.php:286
+#: mod/register.php:276
 msgid "Choose a nickname: "
 msgstr "Kies een bijnaam:"
 
-#: mod/register.php:296
+#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283
+msgid "Register"
+msgstr "Registreer"
+
+#: mod/register.php:286
 msgid "Import your profile to this friendica instance"
 msgstr ""
 
-#: mod/settings.php:43 mod/admin.php:1396
-msgid "Account"
-msgstr "Account"
+#: mod/admin.php:106
+msgid "Theme settings updated."
+msgstr "Thema-instellingen aangepast."
 
-#: mod/settings.php:52 mod/admin.php:160
-msgid "Additional features"
-msgstr "Extra functies"
+#: mod/admin.php:179 src/Content/Nav.php:174
+msgid "Information"
+msgstr "Informatie"
 
-#: mod/settings.php:60
-msgid "Display"
-msgstr "Weergave"
+#: mod/admin.php:180
+msgid "Overview"
+msgstr ""
 
-#: mod/settings.php:67 mod/settings.php:886
-msgid "Social Networks"
-msgstr "Sociale netwerken"
+#: mod/admin.php:181 mod/admin.php:718
+msgid "Federation Statistics"
+msgstr ""
 
-#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582
-msgid "Plugins"
-msgstr "Plugins"
+#: mod/admin.php:182
+msgid "Configuration"
+msgstr ""
 
-#: mod/settings.php:88
-msgid "Connected apps"
-msgstr "Verbonden applicaties"
+#: mod/admin.php:183 mod/admin.php:1345
+msgid "Site"
+msgstr "Website"
 
-#: mod/settings.php:102
-msgid "Remove account"
-msgstr "Account verwijderen"
+#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1788 mod/admin.php:1804
+msgid "Users"
+msgstr "Gebruiker"
 
-#: mod/settings.php:155
-msgid "Missing some important data!"
-msgstr "Een belangrijk gegeven ontbreekt!"
+#: mod/admin.php:186 mod/admin.php:2173 mod/admin.php:2217
+msgid "Themes"
+msgstr "Thema's"
 
-#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804
-msgid "Update"
-msgstr "Wijzigen"
+#: mod/admin.php:189
+msgid "Database"
+msgstr ""
 
-#: mod/settings.php:269
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen."
+#: mod/admin.php:190
+msgid "DB updates"
+msgstr "DB aanpassingen"
 
-#: mod/settings.php:274
-msgid "Email settings updated."
-msgstr "E-mail instellingen bijgewerkt.."
+#: mod/admin.php:191 mod/admin.php:753
+msgid "Inspect Queue"
+msgstr ""
 
-#: mod/settings.php:289
-msgid "Features updated"
-msgstr "Functies bijgewerkt"
+#: mod/admin.php:192
+msgid "Tools"
+msgstr ""
 
-#: mod/settings.php:359
-msgid "Relocate message has been send to your contacts"
+#: mod/admin.php:193
+msgid "Contact Blocklist"
 msgstr ""
 
-#: mod/settings.php:378
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd."
+#: mod/admin.php:194 mod/admin.php:362
+msgid "Server Blocklist"
+msgstr ""
 
-#: mod/settings.php:386
-msgid "Wrong password."
-msgstr "Verkeerd wachtwoord."
+#: mod/admin.php:195 mod/admin.php:521
+msgid "Delete Item"
+msgstr ""
 
-#: mod/settings.php:397
-msgid "Password changed."
-msgstr "Wachtwoord gewijzigd."
+#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2291
+msgid "Logs"
+msgstr "Logs"
 
-#: mod/settings.php:399
-msgid "Password update failed. Please try again."
-msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw."
+#: mod/admin.php:198 mod/admin.php:2358
+msgid "View Logs"
+msgstr ""
 
-#: mod/settings.php:479
-msgid " Please use a shorter name."
-msgstr "Gebruik een kortere naam."
+#: mod/admin.php:200
+msgid "Diagnostics"
+msgstr ""
 
-#: mod/settings.php:481
-msgid " Name too short."
-msgstr "Naam te kort."
+#: mod/admin.php:201
+msgid "PHP Info"
+msgstr ""
 
-#: mod/settings.php:490
-msgid "Wrong Password"
-msgstr "Verkeerd wachtwoord"
+#: mod/admin.php:202
+msgid "probe address"
+msgstr ""
 
-#: mod/settings.php:495
-msgid " Not valid email."
-msgstr "Geen geldig e-mailadres."
+#: mod/admin.php:203
+msgid "check webfinger"
+msgstr ""
 
-#: mod/settings.php:501
-msgid " Cannot change to that email."
-msgstr "Kan niet veranderen naar die e-mail."
+#: mod/admin.php:222 src/Content/Nav.php:217
+msgid "Admin"
+msgstr "Beheer"
 
-#: mod/settings.php:557
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt."
+#: mod/admin.php:223
+msgid "Addon Features"
+msgstr ""
 
-#: mod/settings.php:561
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep."
+#: mod/admin.php:224
+msgid "User registrations waiting for confirmation"
+msgstr "Gebruikersregistraties wachten op bevestiging"
 
-#: mod/settings.php:601
-msgid "Settings updated."
-msgstr "Instellingen bijgewerkt."
+#: 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 "Beheer"
 
-#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
-msgid "Add application"
-msgstr "Toepassing toevoegen"
+#: mod/admin.php:303
+msgid "Display Terms of Service"
+msgstr ""
 
-#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835
-#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264
-#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905
-#: mod/admin.php:2055
-msgid "Save Settings"
-msgstr "Instellingen opslaan"
+#: 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/settings.php:681 mod/settings.php:707
-msgid "Consumer Key"
-msgstr "Gebruikerssleutel"
+#: mod/admin.php:304
+msgid "Display Privacy Statement"
+msgstr ""
 
-#: mod/settings.php:682 mod/settings.php:708
-msgid "Consumer Secret"
-msgstr "Gebruikersgeheim"
+#: mod/admin.php:304
+#, php-format
+msgid ""
+"Show some informations regarding the needed information to operate the node "
+"according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
+msgstr ""
 
-#: mod/settings.php:683 mod/settings.php:709
-msgid "Redirect"
-msgstr "Doorverwijzing"
+#: mod/admin.php:305
+msgid "The Terms of Service"
+msgstr ""
 
-#: mod/settings.php:684 mod/settings.php:710
-msgid "Icon url"
-msgstr "URL pictogram"
+#: 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/settings.php:695
-msgid "You can't edit this application."
-msgstr "Je kunt deze toepassing niet wijzigen."
+#: mod/admin.php:353
+msgid "The blocked domain"
+msgstr ""
 
-#: mod/settings.php:738
-msgid "Connected Apps"
-msgstr "Verbonden applicaties"
+#: mod/admin.php:354 mod/admin.php:367
+msgid "The reason why you blocked this domain."
+msgstr ""
 
-#: mod/settings.php:742
-msgid "Client key starts with"
+#: mod/admin.php:355
+msgid "Delete domain"
 msgstr ""
 
-#: mod/settings.php:743
-msgid "No name"
-msgstr "Geen naam"
+#: mod/admin.php:355
+msgid "Check to delete this entry from the blocklist"
+msgstr ""
 
-#: mod/settings.php:744
-msgid "Remove authorization"
-msgstr "Verwijder authorisatie"
+#: 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/settings.php:756
-msgid "No Plugin settings configured"
+#: 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/settings.php:764
-msgid "Plugin Settings"
-msgstr "Plugin Instellingen"
+#: mod/admin.php:365
+msgid "Add new entry to block list"
+msgstr ""
 
-#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
-msgid "Off"
-msgstr "Uit"
+#: mod/admin.php:366
+msgid "Server Domain"
+msgstr ""
 
-#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
-msgid "On"
-msgstr "Aan"
+#: 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 ""
+
+#: mod/admin.php:368
+msgid "Add Entry"
+msgstr ""
+
+#: mod/admin.php:369
+msgid "Save changes to the blocklist"
+msgstr ""
+
+#: mod/admin.php:370
+msgid "Current Entries in the Blocklist"
+msgstr ""
+
+#: mod/admin.php:373
+msgid "Delete entry from blocklist"
+msgstr ""
+
+#: mod/admin.php:376
+msgid "Delete entry from blocklist?"
+msgstr ""
+
+#: mod/admin.php:402
+msgid "Server added to blocklist."
+msgstr ""
+
+#: mod/admin.php:418
+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"
+msgid_plural "%s contacts unblocked"
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/admin.php:479
+msgid "Remote Contact Blocklist"
+msgstr ""
+
+#: 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 ""
+
+#: mod/admin.php:482 mod/admin.php:1790
+msgid "select all"
+msgstr "Alles selecteren"
+
+#: mod/admin.php:483
+msgid "select none"
+msgstr ""
+
+#: mod/admin.php:486
+msgid "No remote contact is blocked from this node."
+msgstr ""
+
+#: mod/admin.php:488
+msgid "Blocked Remote Contacts"
+msgstr ""
+
+#: mod/admin.php:489
+msgid "Block New Remote Contact"
+msgstr ""
+
+#: mod/admin.php:490
+msgid "Photo"
+msgstr ""
+
+#: mod/admin.php:498
+#, php-format
+msgid "%s total blocked contact"
+msgid_plural "%s total blocked contacts"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/settings.php:786
-msgid "Additional Features"
-msgstr "Extra functies"
+#: mod/admin.php:500
+msgid "URL of the remote contact to block."
+msgstr ""
 
-#: mod/settings.php:796 mod/settings.php:800
-msgid "General Social Media Settings"
+#: mod/admin.php:522
+msgid "Delete this Item"
 msgstr ""
 
-#: mod/settings.php:806
-msgid "Disable intelligent shortening"
+#: 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/settings.php:808
+#: mod/admin.php:524
 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."
+"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/settings.php:814
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+#: mod/admin.php:525
+msgid "GUID"
 msgstr ""
 
-#: mod/settings.php:816
-msgid ""
-"If you receive a message from an unknown OStatus user, this option decides "
-"what to do. If it is checked, a new contact will be created for every "
-"unknown user."
+#: mod/admin.php:525
+msgid "The GUID of the item you want to delete."
 msgstr ""
 
-#: mod/settings.php:822
-msgid "Default group for OStatus contacts"
+#: mod/admin.php:564
+msgid "Item marked for deletion."
 msgstr ""
 
-#: mod/settings.php:828
-msgid "Your legacy GNU Social account"
+#: mod/admin.php:635
+msgid "unknown"
 msgstr ""
 
-#: mod/settings.php:830
+#: mod/admin.php:711
 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."
+"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/settings.php:833
-msgid "Repair OStatus subscriptions"
+#: mod/admin.php:712
+msgid ""
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
 msgstr ""
 
-#: mod/settings.php:842 mod/settings.php:843
+#: mod/admin.php:724
 #, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s"
+msgid ""
+"Currently this node is aware of %d nodes with %d registered users from the "
+"following platforms:"
+msgstr ""
 
-#: mod/settings.php:842 mod/settings.php:843
-msgid "enabled"
-msgstr "ingeschakeld"
+#: mod/admin.php:755
+msgid "ID"
+msgstr "ID"
 
-#: mod/settings.php:842 mod/settings.php:843
-msgid "disabled"
-msgstr "uitgeschakeld"
+#: mod/admin.php:756
+msgid "Recipient Name"
+msgstr ""
 
-#: mod/settings.php:843
-msgid "GNU Social (OStatus)"
+#: mod/admin.php:757
+msgid "Recipient Profile"
 msgstr ""
 
-#: mod/settings.php:879
-msgid "Email access is disabled on this site."
-msgstr "E-mailtoegang is op deze website uitgeschakeld."
+#: mod/admin.php:758 src/Core/NotificationsManager.php:178
+#: src/Content/Nav.php:178 view/theme/frio/theme.php:266
+msgid "Network"
+msgstr "Netwerk"
 
-#: mod/settings.php:891
-msgid "Email/Mailbox Setup"
-msgstr "E-mail Instellen"
+#: mod/admin.php:759
+msgid "Created"
+msgstr ""
+
+#: mod/admin.php:760
+msgid "Last Tried"
+msgstr ""
 
-#: mod/settings.php:892
+#: mod/admin.php:761
 msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken."
+"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/settings.php:893
-msgid "Last successful email check:"
-msgstr "Laatste succesvolle e-mail controle:"
+#: 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 <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php "
+"bin/console.php dbstructure toinnodb</tt> of your Friendica installation for"
+" an automatic conversion.<br />"
+msgstr ""
 
-#: mod/settings.php:895
-msgid "IMAP server name:"
-msgstr "IMAP server naam:"
+#: 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/settings.php:896
-msgid "IMAP port:"
-msgstr "IMAP poort:"
+#: 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/settings.php:897
-msgid "Security:"
-msgstr "Beveiliging:"
+#: mod/admin.php:808
+msgid "The worker was never executed. Please check your database structure!"
+msgstr ""
 
-#: mod/settings.php:897 mod/settings.php:902
-msgid "None"
-msgstr "Geen"
+#: 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/settings.php:898
-msgid "Email login name:"
-msgstr "E-mail login naam:"
+#: mod/admin.php:816 mod/admin.php:1739
+msgid "Normal Account"
+msgstr "Normaal account"
 
-#: mod/settings.php:899
-msgid "Email password:"
-msgstr "E-mail wachtwoord:"
+#: mod/admin.php:817 mod/admin.php:1740
+msgid "Automatic Follower Account"
+msgstr ""
 
-#: mod/settings.php:900
-msgid "Reply-to address:"
-msgstr "Antwoord adres:"
+#: mod/admin.php:818 mod/admin.php:1741
+msgid "Public Forum Account"
+msgstr ""
 
-#: mod/settings.php:901
-msgid "Send public posts to all email contacts:"
-msgstr "Openbare posts naar alle e-mail contacten versturen:"
+#: mod/admin.php:819 mod/admin.php:1742
+msgid "Automatic Friend Account"
+msgstr "Automatisch Vriendschapsaccount"
 
-#: mod/settings.php:902
-msgid "Action after import:"
-msgstr "Actie na importeren:"
+#: mod/admin.php:820
+msgid "Blog Account"
+msgstr "Blog Account"
 
-#: mod/settings.php:902
-msgid "Move to folder"
-msgstr "Naar map verplaatsen"
+#: mod/admin.php:821
+msgid "Private Forum Account"
+msgstr ""
 
-#: mod/settings.php:903
-msgid "Move to folder:"
-msgstr "Verplaatsen naar map:"
+#: mod/admin.php:843
+msgid "Message queues"
+msgstr "Bericht-wachtrijen"
 
-#: mod/settings.php:934 mod/admin.php:862
-msgid "No special theme for mobile devices"
-msgstr "Geen speciaal thema voor mobiele apparaten"
+#: mod/admin.php:849
+msgid "Summary"
+msgstr "Samenvatting"
 
-#: mod/settings.php:994
-msgid "Display Settings"
-msgstr "Scherminstellingen"
+#: mod/admin.php:851
+msgid "Registered users"
+msgstr "Geregistreerde gebruikers"
 
-#: mod/settings.php:1000 mod/settings.php:1023
-msgid "Display Theme:"
-msgstr "Schermthema:"
+#: mod/admin.php:853
+msgid "Pending registrations"
+msgstr "Registraties die in de wacht staan"
 
-#: mod/settings.php:1001
-msgid "Mobile Theme:"
-msgstr "Mobiel thema:"
+#: mod/admin.php:854
+msgid "Version"
+msgstr "Versie"
 
-#: mod/settings.php:1002
-msgid "Suppress warning of insecure networks"
+#: mod/admin.php:859
+msgid "Active addons"
 msgstr ""
 
-#: mod/settings.php:1002
-msgid ""
-"Should the system suppress the warning that the current group contains "
-"members of networks that can't receive non public postings."
+#: mod/admin.php:890
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr ""
 
-#: mod/settings.php:1003
-msgid "Update browser every xx seconds"
-msgstr "Browser elke xx seconden verversen"
+#: mod/admin.php:1209
+msgid "Site settings updated."
+msgstr "Site instellingen gewijzigd."
 
-#: mod/settings.php:1003
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
+#: mod/admin.php:1265
+msgid "No community page"
 msgstr ""
 
-#: mod/settings.php:1004
-msgid "Number of items to display per page:"
-msgstr "Aantal items te tonen per pagina:"
-
-#: mod/settings.php:1004 mod/settings.php:1005
-msgid "Maximum of 100 items"
-msgstr "Maximum 100 items"
-
-#: mod/settings.php:1005
-msgid "Number of items to display per page when viewed from mobile device:"
-msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:"
-
-#: mod/settings.php:1006
-msgid "Don't show emoticons"
-msgstr "Emoticons niet tonen"
-
-#: mod/settings.php:1007
-msgid "Calendar"
+#: mod/admin.php:1266
+msgid "Public postings from users of this site"
 msgstr ""
 
-#: mod/settings.php:1008
-msgid "Beginning of week:"
+#: mod/admin.php:1267
+msgid "Public postings from the federated network"
 msgstr ""
 
-#: mod/settings.php:1009
-msgid "Don't show notices"
+#: mod/admin.php:1268
+msgid "Public postings from local users and the federated network"
 msgstr ""
 
-#: mod/settings.php:1010
-msgid "Infinite scroll"
-msgstr "Oneindig scrollen"
-
-#: mod/settings.php:1011
-msgid "Automatic updates only at the top of the network page"
+#: mod/admin.php:1274
+msgid "Users, Global Contacts"
 msgstr ""
 
-#: mod/settings.php:1012
-msgid "Bandwith Saver Mode"
+#: mod/admin.php:1275
+msgid "Users, Global Contacts/fallback"
 msgstr ""
 
-#: mod/settings.php:1012
-msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
+#: mod/admin.php:1279
+msgid "One month"
 msgstr ""
 
-#: mod/settings.php:1014
-msgid "General Theme Settings"
+#: mod/admin.php:1280
+msgid "Three months"
 msgstr ""
 
-#: mod/settings.php:1015
-msgid "Custom Theme Settings"
+#: mod/admin.php:1281
+msgid "Half a year"
 msgstr ""
 
-#: mod/settings.php:1016
-msgid "Content Settings"
+#: mod/admin.php:1282
+msgid "One year"
 msgstr ""
 
-#: mod/settings.php:1017 view/theme/frio/config.php:61
-#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109
-#: view/theme/duepuntozero/config.php:61
-msgid "Theme settings"
-msgstr "Thema-instellingen"
+#: mod/admin.php:1287
+msgid "Multi user instance"
+msgstr "Server voor meerdere gebruikers"
 
-#: mod/settings.php:1099
-msgid "Account Types"
-msgstr ""
+#: mod/admin.php:1310
+msgid "Closed"
+msgstr "Gesloten"
 
-#: mod/settings.php:1100
-msgid "Personal Page Subtypes"
-msgstr ""
+#: mod/admin.php:1311
+msgid "Requires approval"
+msgstr "Toestemming vereist"
 
-#: mod/settings.php:1101
-msgid "Community Forum Subtypes"
-msgstr ""
+#: mod/admin.php:1312
+msgid "Open"
+msgstr "Open"
 
-#: mod/settings.php:1108
-msgid "Personal Page"
+#: mod/admin.php:1316
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen"
+
+#: mod/admin.php:1317
+msgid "Force all links to use SSL"
+msgstr "Verplicht alle links om SSL te gebruiken"
+
+#: mod/admin.php:1318
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)"
+
+#: mod/admin.php:1322
+msgid "Don't check"
 msgstr ""
 
-#: mod/settings.php:1109
-msgid "This account is a regular personal profile"
+#: mod/admin.php:1323
+msgid "check the stable version"
 msgstr ""
 
-#: mod/settings.php:1112
-msgid "Organisation Page"
+#: mod/admin.php:1324
+msgid "check the development version"
 msgstr ""
 
-#: mod/settings.php:1113
-msgid "This account is a profile for an organisation"
+#: mod/admin.php:1347
+msgid "Republish users to directory"
 msgstr ""
 
-#: mod/settings.php:1116
-msgid "News Page"
+#: mod/admin.php:1349
+msgid "File upload"
+msgstr "Uploaden bestand"
+
+#: mod/admin.php:1350
+msgid "Policies"
+msgstr "Beleid"
+
+#: mod/admin.php:1352
+msgid "Auto Discovered Contact Directory"
 msgstr ""
 
-#: mod/settings.php:1117
-msgid "This account is a news account/reflector"
+#: mod/admin.php:1353
+msgid "Performance"
+msgstr "Performantie"
+
+#: mod/admin.php:1354
+msgid "Worker"
 msgstr ""
 
-#: mod/settings.php:1120
-msgid "Community Forum"
+#: mod/admin.php:1355
+msgid "Message Relay"
 msgstr ""
 
-#: mod/settings.php:1121
+#: mod/admin.php:1356
 msgid ""
-"This account is a community forum where people can discuss with each other"
+"Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: mod/settings.php:1124
-msgid "Normal Account Page"
-msgstr "Normale accountpagina"
-
-#: mod/settings.php:1125
-msgid "This account is a normal personal profile"
-msgstr "Deze account is een normaal persoonlijk profiel"
-
-#: mod/settings.php:1128
-msgid "Soapbox Page"
-msgstr "Zeepkist-pagina"
+#: mod/admin.php:1359
+msgid "Site name"
+msgstr "Site naam"
 
-#: mod/settings.php:1129
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen."
+#: mod/admin.php:1360
+msgid "Host name"
+msgstr ""
 
-#: mod/settings.php:1132
-msgid "Public Forum"
+#: mod/admin.php:1361
+msgid "Sender Email"
 msgstr ""
 
-#: mod/settings.php:1133
-msgid "Automatically approve all contact requests"
+#: mod/admin.php:1361
+msgid ""
+"The email address your server shall use to send notification emails from."
 msgstr ""
 
-#: mod/settings.php:1136
-msgid "Automatic Friend Page"
-msgstr "Automatisch Vriendschapspagina"
+#: mod/admin.php:1362
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: mod/settings.php:1137
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden."
+#: mod/admin.php:1363
+msgid "Shortcut icon"
+msgstr ""
 
-#: mod/settings.php:1140
-msgid "Private Forum [Experimental]"
-msgstr "Privé-forum [experimenteel]"
+#: mod/admin.php:1363
+msgid "Link to an icon that will be used for browsers."
+msgstr ""
 
-#: mod/settings.php:1141
-msgid "Private forum - approved members only"
-msgstr "Privé-forum - enkel voor goedgekeurde leden"
+#: mod/admin.php:1364
+msgid "Touch icon"
+msgstr ""
 
-#: mod/settings.php:1153
-msgid "OpenID:"
-msgstr "OpenID:"
+#: mod/admin.php:1364
+msgid "Link to an icon that will be used for tablets and mobiles."
+msgstr ""
 
-#: mod/settings.php:1153
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account."
+#: mod/admin.php:1365
+msgid "Additional Info"
+msgstr ""
 
-#: mod/settings.php:1163
-msgid "Publish your default profile in your local site directory?"
-msgstr "Je standaardprofiel in je lokale gids publiceren?"
+#: 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/settings.php:1169
-msgid "Publish your default profile in the global social directory?"
-msgstr "Je standaardprofiel in de globale sociale gids publiceren?"
+#: mod/admin.php:1366
+msgid "System language"
+msgstr "Systeemtaal"
 
-#: mod/settings.php:1177
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?"
+#: mod/admin.php:1367
+msgid "System theme"
+msgstr "Systeem thema"
 
-#: mod/settings.php:1181
+#: mod/admin.php:1367
 msgid ""
-"If enabled, posting public messages to Diaspora and other networks isn't "
-"possible."
-msgstr ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - <a href='#' id='cnftheme'>verander thema instellingen</a>"
 
-#: mod/settings.php:1186
-msgid "Allow friends to post to your profile page?"
-msgstr "Vrienden toestaan om op jou profielpagina te posten?"
+#: mod/admin.php:1368
+msgid "Mobile system theme"
+msgstr "Mobiel systeem thema"
 
-#: mod/settings.php:1192
-msgid "Allow friends to tag your posts?"
-msgstr "Sta vrienden toe om jouw berichten te labelen?"
+#: mod/admin.php:1368
+msgid "Theme for mobile devices"
+msgstr "Thema voor mobiele apparaten"
 
-#: mod/settings.php:1198
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Sta je mij toe om jou als mogelijke vriend  voor te stellen aan nieuwe leden?"
+#: mod/admin.php:1369
+msgid "SSL link policy"
+msgstr "Beleid SSL-links"
 
-#: mod/settings.php:1204
-msgid "Permit unknown people to send you private mail?"
-msgstr "Mogen onbekende personen jou privé berichten sturen?"
+#: mod/admin.php:1369
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken"
 
-#: mod/settings.php:1212
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profiel is <strong>niet gepubliceerd</strong>."
+#: mod/admin.php:1370
+msgid "Force SSL"
+msgstr ""
 
-#: mod/settings.php:1220
-#, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+#: mod/admin.php:1370
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
 msgstr ""
 
-#: mod/settings.php:1227
-msgid "Automatically expire posts after this many days:"
-msgstr "Laat berichten automatisch vervallen na zo veel dagen:"
+#: mod/admin.php:1371
+msgid "Hide help entry from navigation menu"
+msgstr "Verberg de 'help' uit het navigatiemenu"
 
-#: mod/settings.php:1227
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd."
+#: mod/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 "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven."
 
-#: mod/settings.php:1228
-msgid "Advanced expiration settings"
-msgstr "Geavanceerde instellingen voor vervallen"
+#: mod/admin.php:1372
+msgid "Single user instance"
+msgstr "Server voor één gebruiker"
 
-#: mod/settings.php:1229
-msgid "Advanced Expiration"
-msgstr "Geavanceerd Verval:"
+#: mod/admin.php:1372
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker."
 
-#: mod/settings.php:1230
-msgid "Expire posts:"
-msgstr "Laat berichten vervallen:"
+#: mod/admin.php:1373
+msgid "Maximum image size"
+msgstr "Maximum afbeeldingsgrootte"
 
-#: mod/settings.php:1231
-msgid "Expire personal notes:"
-msgstr "Laat persoonlijke aantekeningen verlopen:"
+#: mod/admin.php:1373
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking."
 
-#: mod/settings.php:1232
-msgid "Expire starred posts:"
-msgstr "Laat berichten met ster verlopen"
+#: mod/admin.php:1374
+msgid "Maximum image length"
+msgstr "Maximum afbeeldingslengte"
 
-#: mod/settings.php:1233
-msgid "Expire photos:"
-msgstr "Laat foto's vervallen:"
+#: mod/admin.php:1374
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen."
 
-#: mod/settings.php:1234
-msgid "Only expire posts by others:"
-msgstr "Laat alleen berichten door anderen vervallen:"
+#: mod/admin.php:1375
+msgid "JPEG image quality"
+msgstr "JPEG afbeeldingskwaliteit"
 
-#: mod/settings.php:1262
-msgid "Account Settings"
-msgstr "Account Instellingen"
+#: mod/admin.php:1375
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit."
 
-#: mod/settings.php:1270
-msgid "Password Settings"
-msgstr "Wachtwoord Instellingen"
+#: mod/admin.php:1377
+msgid "Register policy"
+msgstr "Registratiebeleid"
 
-#: mod/settings.php:1272
-msgid "Leave password fields blank unless changing"
-msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen"
+#: mod/admin.php:1378
+msgid "Maximum Daily Registrations"
+msgstr "Maximum aantal registraties per dag"
 
-#: mod/settings.php:1273
-msgid "Current Password:"
-msgstr "Huidig wachtwoord:"
+#: 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 "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect."
 
-#: mod/settings.php:1273 mod/settings.php:1274
-msgid "Your current password to confirm the changes"
-msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen"
+#: mod/admin.php:1379
+msgid "Register text"
+msgstr "Registratietekst"
 
-#: mod/settings.php:1274
-msgid "Password:"
-msgstr "Wachtwoord:"
+#: mod/admin.php:1379
+msgid ""
+"Will be displayed prominently on the registration page. You can use BBCode "
+"here."
+msgstr ""
 
-#: mod/settings.php:1278
-msgid "Basic Settings"
-msgstr "Basis Instellingen"
+#: mod/admin.php:1380
+msgid "Accounts abandoned after x days"
+msgstr "Verlaten accounts na x dagen"
 
-#: mod/settings.php:1280
-msgid "Email Address:"
-msgstr "E-mailadres:"
+#: mod/admin.php:1380
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet."
 
-#: mod/settings.php:1281
-msgid "Your Timezone:"
-msgstr "Je Tijdzone:"
+#: mod/admin.php:1381
+msgid "Allowed friend domains"
+msgstr "Toegelaten vriend domeinen"
 
-#: mod/settings.php:1282
-msgid "Your Language:"
-msgstr ""
+#: 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 "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten."
+
+#: mod/admin.php:1382
+msgid "Allowed email domains"
+msgstr "Toegelaten e-mail domeinen"
 
-#: mod/settings.php:1282
+#: mod/admin.php:1382
 msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan."
+
+#: mod/admin.php:1383
+msgid "No OEmbed rich content"
 msgstr ""
 
-#: mod/settings.php:1283
-msgid "Default Post Location:"
-msgstr "Standaard locatie:"
+#: mod/admin.php:1383
+msgid ""
+"Don't show the rich content (e.g. embedded PDF), except from the domains "
+"listed below."
+msgstr ""
 
-#: mod/settings.php:1284
-msgid "Use Browser Location:"
-msgstr "Gebruik Webbrowser Locatie:"
+#: mod/admin.php:1384
+msgid "Allowed OEmbed domains"
+msgstr ""
 
-#: mod/settings.php:1287
-msgid "Security and Privacy Settings"
-msgstr "Instellingen voor Beveiliging en Privacy"
+#: mod/admin.php:1384
+msgid ""
+"Comma separated list of domains which oembed content is allowed to be "
+"displayed. Wildcards are accepted."
+msgstr ""
 
-#: mod/settings.php:1289
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximum aantal vriendschapsverzoeken per dag:"
+#: mod/admin.php:1385
+msgid "Block public"
+msgstr "Openbare toegang blokkeren"
 
-#: mod/settings.php:1289 mod/settings.php:1319
-msgid "(to prevent spam abuse)"
-msgstr "(om spam misbruik te voorkomen)"
+#: 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 "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers."
 
-#: mod/settings.php:1290
-msgid "Default Post Permissions"
-msgstr "Standaard rechten voor nieuwe berichten"
+#: mod/admin.php:1386
+msgid "Force publish"
+msgstr "Dwing publiceren af"
 
-#: mod/settings.php:1291
-msgid "(click to open/close)"
-msgstr "(klik om te openen/sluiten)"
+#: mod/admin.php:1386
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden."
 
-#: mod/settings.php:1302
-msgid "Default Private Post"
-msgstr "Standaard Privé Post"
+#: mod/admin.php:1387
+msgid "Global directory URL"
+msgstr ""
 
-#: mod/settings.php:1303
-msgid "Default Public Post"
-msgstr "Standaard Publieke Post"
+#: 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/settings.php:1307
-msgid "Default Permissions for New Posts"
-msgstr "Standaard rechten voor nieuwe berichten"
+#: mod/admin.php:1388
+msgid "Private posts by default for new users"
+msgstr "Privéberichten als standaard voor nieuwe gebruikers"
 
-#: mod/settings.php:1319
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximum aantal privé-berichten per dag van onbekende personen:"
+#: mod/admin.php:1388
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar."
 
-#: mod/settings.php:1322
-msgid "Notification Settings"
-msgstr "Notificatie Instellingen"
+#: mod/admin.php:1389
+msgid "Don't include post content in email notifications"
+msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties"
 
-#: mod/settings.php:1323
-msgid "By default post a status message when:"
-msgstr "Post automatisch een bericht op je tijdlijn wanneer:"
+#: 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 "De inhoud van berichten/commentaar/privéberichten/enzovoort  niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy."
 
-#: mod/settings.php:1324
-msgid "accepting a friend request"
-msgstr "Een vriendschapsverzoek accepteren"
+#: mod/admin.php:1390
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr ""
 
-#: mod/settings.php:1325
-msgid "joining a forum/community"
-msgstr "Lid worden van een groep/forum"
+#: mod/admin.php:1390
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr ""
 
-#: mod/settings.php:1326
-msgid "making an <em>interesting</em> profile change"
-msgstr "Een <em>interessante</em> verandering aan je profiel"
+#: mod/admin.php:1391
+msgid "Don't embed private images in posts"
+msgstr ""
 
-#: mod/settings.php:1327
-msgid "Send a notification email when:"
-msgstr "Stuur een notificatie e-mail wanneer:"
+#: 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/settings.php:1328
-msgid "You receive an introduction"
-msgstr "Je ontvangt een vriendschaps- of connectieverzoek"
+#: mod/admin.php:1392
+msgid "Allow Users to set remote_self"
+msgstr ""
 
-#: mod/settings.php:1329
-msgid "Your introductions are confirmed"
-msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"
+#: 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/settings.php:1330
-msgid "Someone writes on your profile wall"
-msgstr "Iemand iets op je tijdlijn schrijft"
+#: mod/admin.php:1393
+msgid "Block multiple registrations"
+msgstr "Blokkeer meerdere registraties"
 
-#: mod/settings.php:1331
-msgid "Someone writes a followup comment"
-msgstr "Iemand een reactie schrijft"
+#: mod/admin.php:1393
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken."
 
-#: mod/settings.php:1332
-msgid "You receive a private message"
-msgstr "Je een privé-bericht ontvangt"
+#: mod/admin.php:1394
+msgid "OpenID support"
+msgstr "OpenID ondersteuning"
 
-#: mod/settings.php:1333
-msgid "You receive a friend suggestion"
-msgstr "Je een suggestie voor een vriendschap ontvangt"
+#: mod/admin.php:1394
+msgid "OpenID support for registration and logins."
+msgstr "OpenID ondersteuning voor registraties en logins."
 
-#: mod/settings.php:1334
-msgid "You are tagged in a post"
-msgstr "Je expliciet in een bericht bent genoemd"
+#: mod/admin.php:1395
+msgid "Fullname check"
+msgstr "Controleer volledige naam"
 
-#: mod/settings.php:1335
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Je in een bericht bent aangestoten/gepord/etc."
+#: mod/admin.php:1395
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel"
 
-#: mod/settings.php:1337
-msgid "Activate desktop notifications"
+#: mod/admin.php:1396
+msgid "Community pages for visitors"
 msgstr ""
 
-#: mod/settings.php:1337
-msgid "Show desktop popup on new notifications"
+#: mod/admin.php:1396
+msgid ""
+"Which community pages should be available for visitors. Local users always "
+"see both pages."
 msgstr ""
 
-#: mod/settings.php:1339
-msgid "Text-only notification emails"
+#: mod/admin.php:1397
+msgid "Posts per user on community page"
 msgstr ""
 
-#: mod/settings.php:1341
-msgid "Send text only notification emails, without the html part"
+#: mod/admin.php:1397
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
 msgstr ""
 
-#: mod/settings.php:1343
-msgid "Advanced Account/Page Type Settings"
-msgstr ""
+#: mod/admin.php:1398
+msgid "Enable OStatus support"
+msgstr "Activeer OStatus ondersteuning"
 
-#: mod/settings.php:1344
-msgid "Change the behaviour of this account for special situations"
+#: 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/settings.php:1347
-msgid "Relocate"
+#: mod/admin.php:1399
+msgid "Only import OStatus threads from our contacts"
 msgstr ""
 
-#: mod/settings.php:1348
+#: mod/admin.php:1399
 msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
+"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/settings.php:1349
-msgid "Resend relocate message to contacts"
+#: mod/admin.php:1400
+msgid "OStatus support can only be enabled if threading is enabled."
 msgstr ""
 
-#: mod/videos.php:120
-msgid "Do you really want to delete this video?"
-msgstr "Wil je deze video echt verwijderen?"
-
-#: mod/videos.php:125
-msgid "Delete Video"
-msgstr "Verwijder video"
-
-#: mod/videos.php:204
-msgid "No videos selected"
-msgstr "Geen video's geselecteerd"
+#: mod/admin.php:1402
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub"
+" directory."
+msgstr ""
 
-#: mod/videos.php:396
-msgid "Recent Videos"
-msgstr "Recente video's"
+#: mod/admin.php:1403
+msgid "Enable Diaspora support"
+msgstr "Activeer Diaspora ondersteuning"
 
-#: mod/videos.php:398
-msgid "Upload New Videos"
-msgstr "Nieuwe video's uploaden"
+#: mod/admin.php:1403
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk."
 
-#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
-#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
-#: mod/wall_upload.php:122 mod/wall_upload.php:125
-msgid "Invalid request."
-msgstr ""
+#: mod/admin.php:1404
+msgid "Only allow Friendica contacts"
+msgstr "Laat alleen Friendica contacten toe"
 
-#: mod/wall_attach.php:94
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr ""
+#: mod/admin.php:1404
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld."
 
-#: mod/wall_attach.php:94
-msgid "Or - did you try to upload an empty file?"
-msgstr ""
+#: mod/admin.php:1405
+msgid "Verify SSL"
+msgstr "Controleer SSL"
 
-#: mod/wall_attach.php:105
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr ""
+#: 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 "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken."
 
-#: mod/wall_attach.php:156 mod/wall_attach.php:172
-msgid "File upload failed."
-msgstr "Uploaden van bestand mislukt."
+#: mod/admin.php:1406
+msgid "Proxy user"
+msgstr "Proxy-gebruiker"
 
-#: mod/admin.php:92
-msgid "Theme settings updated."
-msgstr "Thema-instellingen aangepast."
+#: mod/admin.php:1407
+msgid "Proxy URL"
+msgstr "Proxy-URL"
 
-#: mod/admin.php:156 mod/admin.php:954
-msgid "Site"
-msgstr "Website"
+#: mod/admin.php:1408
+msgid "Network timeout"
+msgstr "Netwerk timeout"
 
-#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420
-msgid "Users"
-msgstr "Gebruiker"
+#: mod/admin.php:1408
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)."
 
-#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830
-msgid "Themes"
-msgstr "Thema's"
+#: mod/admin.php:1409
+msgid "Maximum Load Average"
+msgstr "Maximum gemiddelde belasting"
 
-#: mod/admin.php:161
-msgid "DB updates"
-msgstr "DB aanpassingen"
+#: mod/admin.php:1409
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50."
 
-#: mod/admin.php:162 mod/admin.php:406
-msgid "Inspect Queue"
+#: mod/admin.php:1410
+msgid "Maximum Load Average (Frontend)"
 msgstr ""
 
-#: mod/admin.php:163 mod/admin.php:372
-msgid "Federation Statistics"
+#: mod/admin.php:1410
+msgid "Maximum system load before the frontend quits service - default 50."
 msgstr ""
 
-#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904
-msgid "Logs"
-msgstr "Logs"
-
-#: mod/admin.php:178 mod/admin.php:1972
-msgid "View Logs"
+#: mod/admin.php:1411
+msgid "Minimal Memory"
 msgstr ""
 
-#: mod/admin.php:179
-msgid "probe address"
+#: 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:180
-msgid "check webfinger"
+#: mod/admin.php:1412
+msgid "Maximum table size for optimization"
 msgstr ""
 
-#: mod/admin.php:187
-msgid "Plugin Features"
-msgstr "Plugin Functies"
-
-#: mod/admin.php:189
-msgid "diagnostics"
+#: 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:190
-msgid "User registrations waiting for confirmation"
-msgstr "Gebruikersregistraties wachten op bevestiging"
-
-#: mod/admin.php:306
-msgid "unknown"
+#: mod/admin.php:1413
+msgid "Minimum level of fragmentation"
 msgstr ""
 
-#: mod/admin.php:365
+#: mod/admin.php:1413
 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."
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
 msgstr ""
 
-#: mod/admin.php:366
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
+#: mod/admin.php:1415
+msgid "Periodical check of global contacts"
 msgstr ""
 
-#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953
-#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779
-#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971
-msgid "Administration"
-msgstr "Beheer"
-
-#: mod/admin.php:378
-#, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
+#: 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:408
-msgid "ID"
-msgstr "ID"
+#: mod/admin.php:1416
+msgid "Days between requery"
+msgstr ""
 
-#: mod/admin.php:409
-msgid "Recipient Name"
+#: mod/admin.php:1416
+msgid "Number of days after which a server is requeried for his contacts."
 msgstr ""
 
-#: mod/admin.php:410
-msgid "Recipient Profile"
+#: mod/admin.php:1417
+msgid "Discover contacts from other servers"
 msgstr ""
 
-#: mod/admin.php:412
-msgid "Created"
+#: 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:413
-msgid "Last Tried"
+#: mod/admin.php:1418
+msgid "Timeframe for fetching global contacts"
 msgstr ""
 
-#: mod/admin.php:414
+#: mod/admin.php:1418
 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."
+"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:439
-#, php-format
-msgid ""
-"Your DB still runs with MyISAM tables. You should change the engine type to "
-"InnoDB. As Friendica will use InnoDB only features in the future, you should"
-" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the "
-"<tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your "
-"Friendica installation.<br />"
+#: mod/admin.php:1419
+msgid "Search the local directory"
 msgstr ""
 
-#: mod/admin.php:444
+#: mod/admin.php:1419
 msgid ""
-"You are using a MySQL version which does not support all features that "
-"Friendica uses. You should consider switching to MariaDB."
+"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:448 mod/admin.php:1352
-msgid "Normal Account"
-msgstr "Normaal account"
-
-#: mod/admin.php:449 mod/admin.php:1353
-msgid "Soapbox Account"
-msgstr "Zeepkist-account"
-
-#: mod/admin.php:450 mod/admin.php:1354
-msgid "Community/Celebrity Account"
-msgstr "Account voor een groep/forum of beroemdheid"
+#: mod/admin.php:1421
+msgid "Publish server information"
+msgstr ""
 
-#: mod/admin.php:451 mod/admin.php:1355
-msgid "Automatic Friend Account"
-msgstr "Automatisch Vriendschapsaccount"
+#: 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 <a"
+" href='http://the-federation.info/'>the-federation.info</a> for details."
+msgstr ""
 
-#: mod/admin.php:452
-msgid "Blog Account"
-msgstr "Blog Account"
+#: mod/admin.php:1423
+msgid "Check upstream version"
+msgstr ""
 
-#: mod/admin.php:453
-msgid "Private Forum"
-msgstr "Privéforum/-groep"
+#: 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:479
-msgid "Message queues"
-msgstr "Bericht-wachtrijen"
+#: mod/admin.php:1424
+msgid "Suppress Tags"
+msgstr ""
 
-#: mod/admin.php:485
-msgid "Summary"
-msgstr "Samenvatting"
+#: mod/admin.php:1424
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr ""
 
-#: mod/admin.php:488
-msgid "Registered users"
-msgstr "Geregistreerde gebruikers"
+#: mod/admin.php:1425
+msgid "Path to item cache"
+msgstr "Pad naar cache voor items"
 
-#: mod/admin.php:490
-msgid "Pending registrations"
-msgstr "Registraties die in de wacht staan"
+#: mod/admin.php:1425
+msgid "The item caches buffers generated bbcode and external images."
+msgstr ""
 
-#: mod/admin.php:491
-msgid "Version"
-msgstr "Versie"
+#: mod/admin.php:1426
+msgid "Cache duration in seconds"
+msgstr "Cache tijdsduur in seconden"
 
-#: mod/admin.php:496
-msgid "Active plugins"
-msgstr "Actieve plug-ins"
+#: 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:521
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+#: mod/admin.php:1427
+msgid "Maximum numbers of comments per post"
 msgstr ""
 
-#: mod/admin.php:826
-msgid "RINO2 needs mcrypt php extension to work."
+#: mod/admin.php:1427
+msgid "How much comments should be shown for each post? Default value is 100."
 msgstr ""
 
-#: mod/admin.php:834
-msgid "Site settings updated."
-msgstr "Site instellingen gewijzigd."
+#: mod/admin.php:1428
+msgid "Temp path"
+msgstr "Tijdelijk pad"
 
-#: mod/admin.php:881
-msgid "No community page"
+#: 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:882
-msgid "Public postings from users of this site"
+#: mod/admin.php:1429
+msgid "Base path to installation"
+msgstr "Basispad voor installatie"
+
+#: 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:883
-msgid "Global community page"
+#: mod/admin.php:1430
+msgid "Disable picture proxy"
 msgstr ""
 
-#: mod/admin.php:888 mod/contacts.php:530
-msgid "Never"
-msgstr "Nooit"
+#: 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:889
-msgid "At post arrival"
+#: mod/admin.php:1431
+msgid "Only search in tags"
 msgstr ""
 
-#: mod/admin.php:897 mod/contacts.php:557
-msgid "Disabled"
-msgstr "Uitgeschakeld"
+#: mod/admin.php:1431
+msgid "On large systems the text search can slow down the system extremely."
+msgstr ""
 
-#: mod/admin.php:899
-msgid "Users, Global Contacts"
+#: mod/admin.php:1433
+msgid "New base url"
 msgstr ""
 
-#: mod/admin.php:900
-msgid "Users, Global Contacts/fallback"
+#: 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:904
-msgid "One month"
+#: mod/admin.php:1435
+msgid "RINO Encryption"
 msgstr ""
 
-#: mod/admin.php:905
-msgid "Three months"
+#: mod/admin.php:1435
+msgid "Encryption layer between nodes."
 msgstr ""
 
-#: mod/admin.php:906
-msgid "Half a year"
+#: mod/admin.php:1435
+msgid "Enabled"
 msgstr ""
 
-#: mod/admin.php:907
-msgid "One year"
+#: mod/admin.php:1437
+msgid "Maximum number of parallel workers"
 msgstr ""
 
-#: mod/admin.php:912
-msgid "Multi user instance"
-msgstr "Server voor meerdere gebruikers"
+#: 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:935
-msgid "Closed"
-msgstr "Gesloten"
+#: mod/admin.php:1438
+msgid "Don't use 'proc_open' with the worker"
+msgstr ""
 
-#: mod/admin.php:936
-msgid "Requires approval"
-msgstr "Toestemming vereist"
+#: 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:937
-msgid "Open"
-msgstr "Open"
+#: mod/admin.php:1439
+msgid "Enable fastlane"
+msgstr ""
 
-#: mod/admin.php:941
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen"
+#: 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:942
-msgid "Force all links to use SSL"
-msgstr "Verplicht alle links om SSL te gebruiken"
+#: mod/admin.php:1440
+msgid "Enable frontend worker"
+msgstr ""
 
-#: mod/admin.php:943
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)"
+#: mod/admin.php: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:957
-msgid "File upload"
-msgstr "Uploaden bestand"
+#: mod/admin.php:1442
+msgid "Subscribe to relay"
+msgstr ""
 
-#: mod/admin.php:958
-msgid "Policies"
-msgstr "Beleid"
+#: 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:960
-msgid "Auto Discovered Contact Directory"
+#: mod/admin.php:1443
+msgid "Relay server"
 msgstr ""
 
-#: mod/admin.php:961
-msgid "Performance"
-msgstr "Performantie"
+#: 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:962
-msgid "Worker"
+#: mod/admin.php:1444
+msgid "Direct relay transfer"
 msgstr ""
 
-#: mod/admin.php:963
+#: mod/admin.php:1444
 msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
+"Enables the direct transfer to other servers without using the relay servers"
 msgstr ""
 
-#: mod/admin.php:966
-msgid "Site name"
-msgstr "Site naam"
+#: mod/admin.php:1445
+msgid "Relay scope"
+msgstr ""
 
-#: mod/admin.php:967
-msgid "Host name"
+#: 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:968
-msgid "Sender Email"
+#: mod/admin.php:1445
+msgid "all"
 msgstr ""
 
-#: mod/admin.php:968
-msgid ""
-"The email address your server shall use to send notification emails from."
+#: mod/admin.php:1445
+msgid "tags"
 msgstr ""
 
-#: mod/admin.php:969
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: mod/admin.php:1446
+msgid "Server tags"
+msgstr ""
 
-#: mod/admin.php:970
-msgid "Shortcut icon"
+#: mod/admin.php:1446
+msgid "Comma separated list of tags for the 'tags' subscription."
 msgstr ""
 
-#: mod/admin.php:970
-msgid "Link to an icon that will be used for browsers."
+#: mod/admin.php:1447
+msgid "Allow user tags"
 msgstr ""
 
-#: mod/admin.php:971
-msgid "Touch icon"
+#: 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:971
-msgid "Link to an icon that will be used for tablets and mobiles."
+#: mod/admin.php:1475
+msgid "Update has been marked successful"
+msgstr "Wijziging succesvol gemarkeerd "
+
+#: mod/admin.php:1482
+#, php-format
+msgid "Database structure update %s was successfully applied."
 msgstr ""
 
-#: mod/admin.php:972
-msgid "Additional Info"
+#: mod/admin.php:1485
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
 msgstr ""
 
-#: mod/admin.php:972
+#: mod/admin.php:1498
 #, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
+msgid "Executing %s failed with error: %s"
 msgstr ""
 
-#: mod/admin.php:973
-msgid "System language"
-msgstr "Systeemtaal"
+#: mod/admin.php:1500
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Wijziging %s geslaagd."
 
-#: mod/admin.php:974
-msgid "System theme"
-msgstr "Systeem thema"
+#: mod/admin.php:1503
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is."
 
-#: mod/admin.php:974
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - <a href='#' id='cnftheme'>verander thema instellingen</a>"
+#: mod/admin.php:1506
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr ""
 
-#: mod/admin.php:975
-msgid "Mobile system theme"
-msgstr "Mobiel systeem thema"
+#: mod/admin.php:1526
+msgid "No failed updates."
+msgstr "Geen misluke wijzigingen"
 
-#: mod/admin.php:975
-msgid "Theme for mobile devices"
-msgstr "Thema voor mobiele apparaten"
+#: mod/admin.php:1527
+msgid "Check database structure"
+msgstr ""
 
-#: mod/admin.php:976
-msgid "SSL link policy"
-msgstr "Beleid SSL-links"
+#: mod/admin.php:1532
+msgid "Failed Updates"
+msgstr "Misluke wijzigingen"
 
-#: mod/admin.php:976
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken"
+#: mod/admin.php:1533
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven."
 
-#: mod/admin.php:977
-msgid "Force SSL"
-msgstr ""
+#: mod/admin.php:1534
+msgid "Mark success (if update was manually applied)"
+msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)"
+
+#: mod/admin.php:1535
+msgid "Attempt to execute this update step automatically"
+msgstr "Probeer deze stap automatisch uit te voeren"
 
-#: mod/admin.php:977
+#: mod/admin.php:1574
+#, php-format
 msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
+"\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:978
-msgid "Old style 'Share'"
+#: mod/admin.php:1577 src/Model/User.php:615
+#, 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:978
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr ""
+#: mod/admin.php:1611 src/Model/User.php:649
+#, php-format
+msgid "Registration details for %s"
+msgstr "Registratie details voor %s"
 
-#: mod/admin.php:979
-msgid "Hide help entry from navigation menu"
-msgstr "Verberg de 'help' uit het navigatiemenu"
+#: mod/admin.php:1621
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s gebruiker geblokkeerd/niet geblokkeerd"
+msgstr[1] "%s gebruikers geblokkeerd/niet geblokkeerd"
 
-#: mod/admin.php:979
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven."
+#: mod/admin.php:1627
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s gebruiker verwijderd"
+msgstr[1] "%s gebruikers verwijderd"
 
-#: mod/admin.php:980
-msgid "Single user instance"
-msgstr "Server voor één gebruiker"
+#: mod/admin.php:1674
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Gebruiker '%s' verwijderd"
 
-#: mod/admin.php:980
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker."
+#: mod/admin.php:1682
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Gebruiker '%s' niet meer geblokkeerd"
 
-#: mod/admin.php:981
-msgid "Maximum image size"
-msgstr "Maximum afbeeldingsgrootte"
+#: mod/admin.php:1682
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Gebruiker '%s' geblokkeerd"
 
-#: mod/admin.php:981
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking."
+#: mod/admin.php: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:982
-msgid "Maximum image length"
-msgstr "Maximum afbeeldingslengte"
+#: mod/admin.php:1781 mod/admin.php:1806
+msgid "Register date"
+msgstr "Registratiedatum"
 
-#: mod/admin.php:982
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen."
+#: mod/admin.php:1781 mod/admin.php:1806
+msgid "Last login"
+msgstr "Laatste login"
+
+#: mod/admin.php:1781 mod/admin.php:1806
+msgid "Last item"
+msgstr "Laatste item"
 
-#: mod/admin.php:983
-msgid "JPEG image quality"
-msgstr "JPEG afbeeldingskwaliteit"
+#: mod/admin.php:1789
+msgid "Add User"
+msgstr "Gebruiker toevoegen"
 
-#: mod/admin.php:983
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit."
+#: mod/admin.php:1791
+msgid "User registrations waiting for confirm"
+msgstr "Gebruikersregistraties wachten op een bevestiging"
 
-#: mod/admin.php:985
-msgid "Register policy"
-msgstr "Registratiebeleid"
+#: mod/admin.php:1792
+msgid "User waiting for permanent deletion"
+msgstr ""
 
-#: mod/admin.php:986
-msgid "Maximum Daily Registrations"
-msgstr "Maximum aantal registraties per dag"
+#: mod/admin.php:1793
+msgid "Request date"
+msgstr "Registratiedatum"
 
-#: mod/admin.php:986
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day.  If register is set to closed, this "
-"setting has no effect."
-msgstr "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect."
+#: mod/admin.php:1794
+msgid "No registrations."
+msgstr "Geen registraties."
 
-#: mod/admin.php:987
-msgid "Register text"
-msgstr "Registratietekst"
+#: mod/admin.php:1795
+msgid "Note from the user"
+msgstr ""
+
+#: mod/admin.php:1797
+msgid "Deny"
+msgstr "Weiger"
 
-#: mod/admin.php:987
-msgid "Will be displayed prominently on the registration page."
-msgstr "Dit zal prominent op de registratiepagina getoond worden."
+#: mod/admin.php:1801
+msgid "Site admin"
+msgstr "Sitebeheerder"
 
-#: mod/admin.php:988
-msgid "Accounts abandoned after x days"
-msgstr "Verlaten accounts na x dagen"
+#: mod/admin.php:1802
+msgid "Account expired"
+msgstr "Account verlopen"
 
-#: mod/admin.php:988
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet."
+#: mod/admin.php:1805
+msgid "New User"
+msgstr "Nieuwe gebruiker"
 
-#: mod/admin.php:989
-msgid "Allowed friend domains"
-msgstr "Toegelaten vriend domeinen"
+#: mod/admin.php:1806
+msgid "Deleted since"
+msgstr "Verwijderd sinds"
 
-#: mod/admin.php:989
+#: mod/admin.php:1811
 msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten."
-
-#: mod/admin.php:990
-msgid "Allowed email domains"
-msgstr "Toegelaten e-mail domeinen"
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
 
-#: mod/admin.php:990
+#: mod/admin.php:1812
 msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan."
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
 
-#: mod/admin.php:991
-msgid "Block public"
-msgstr "Openbare toegang blokkeren"
+#: mod/admin.php:1822
+msgid "Name of the new user."
+msgstr "Naam van nieuwe gebruiker"
 
-#: mod/admin.php:991
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers."
+#: mod/admin.php:1823
+msgid "Nickname"
+msgstr "Bijnaam"
 
-#: mod/admin.php:992
-msgid "Force publish"
-msgstr "Dwing publiceren af"
+#: mod/admin.php:1823
+msgid "Nickname of the new user."
+msgstr "Bijnaam van nieuwe gebruiker"
 
-#: mod/admin.php:992
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden."
+#: mod/admin.php:1824
+msgid "Email address of the new user."
+msgstr "E-mailadres van nieuwe gebruiker"
 
-#: mod/admin.php:993
-msgid "Global directory URL"
+#: mod/admin.php:1866
+#, php-format
+msgid "Addon %s disabled."
 msgstr ""
 
-#: mod/admin.php:993
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
+#: mod/admin.php:1870
+#, php-format
+msgid "Addon %s enabled."
 msgstr ""
 
-#: mod/admin.php:994
-msgid "Allow threaded items"
-msgstr "Sta threads in conversaties toe"
-
-#: mod/admin.php:994
-msgid "Allow infinite level threading for items on this site."
-msgstr "Sta oneindige niveaus threads in conversaties op deze website toe."
+#: mod/admin.php:1880 mod/admin.php:2129
+msgid "Disable"
+msgstr "Uitschakelen"
 
-#: mod/admin.php:995
-msgid "Private posts by default for new users"
-msgstr "Privéberichten als standaard voor nieuwe gebruikers"
+#: mod/admin.php:1883 mod/admin.php:2132
+msgid "Enable"
+msgstr "Inschakelen"
 
-#: mod/admin.php:995
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar."
+#: mod/admin.php:1905 mod/admin.php:2174
+msgid "Toggle"
+msgstr "Schakelaar"
 
-#: mod/admin.php:996
-msgid "Don't include post content in email notifications"
-msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties"
+#: mod/admin.php:1913 mod/admin.php:2183
+msgid "Author: "
+msgstr "Auteur:"
 
-#: mod/admin.php:996
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
-msgstr "De inhoud van berichten/commentaar/privéberichten/enzovoort  niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy."
+#: mod/admin.php:1914 mod/admin.php:2184
+msgid "Maintainer: "
+msgstr "Onderhoud:"
 
-#: mod/admin.php:997
-msgid "Disallow public access to addons listed in the apps menu."
+#: mod/admin.php:1966
+msgid "Reload active addons"
 msgstr ""
 
-#: mod/admin.php:997
+#: mod/admin.php:1971
+#, php-format
 msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
+"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:998
-msgid "Don't embed private images in posts"
-msgstr ""
+#: mod/admin.php:2091
+msgid "No themes found."
+msgstr "Geen thema's gevonden."
 
-#: mod/admin.php:998
-msgid ""
-"Don't replace locally-hosted private photos in posts with an embedded copy "
-"of the image. This means that contacts who receive posts containing private "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr ""
+#: mod/admin.php:2165
+msgid "Screenshot"
+msgstr "Schermafdruk"
 
-#: mod/admin.php:999
-msgid "Allow Users to set remote_self"
+#: mod/admin.php:2219
+msgid "Reload active themes"
 msgstr ""
 
-#: mod/admin.php:999
-msgid ""
-"With checking this, every user is allowed to mark every contact as a "
-"remote_self in the repair contact dialog. Setting this flag on a contact "
-"causes mirroring every posting of that contact in the users stream."
+#: mod/admin.php:2224
+#, php-format
+msgid "No themes found on the system. They should be placed in %1$s"
 msgstr ""
 
-#: mod/admin.php:1000
-msgid "Block multiple registrations"
-msgstr "Blokkeer meerdere registraties"
-
-#: mod/admin.php:1000
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken."
-
-#: mod/admin.php:1001
-msgid "OpenID support"
-msgstr "OpenID ondersteuning"
-
-#: mod/admin.php:1001
-msgid "OpenID support for registration and logins."
-msgstr "OpenID ondersteuning voor registraties en logins."
-
-#: mod/admin.php:1002
-msgid "Fullname check"
-msgstr "Controleer volledige naam"
-
-#: mod/admin.php:1002
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel"
+#: mod/admin.php:2225
+msgid "[Experimental]"
+msgstr "[Experimenteel]"
 
-#: mod/admin.php:1003
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 reguliere uitdrukkingen"
+#: mod/admin.php:2226
+msgid "[Unsupported]"
+msgstr "[Niet ondersteund]"
 
-#: mod/admin.php:1003
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Gebruik PHP UTF8 reguliere uitdrukkingen"
+#: mod/admin.php:2250
+msgid "Log settings updated."
+msgstr "Log instellingen gewijzigd"
 
-#: mod/admin.php:1004
-msgid "Community Page Style"
+#: mod/admin.php:2282
+msgid "PHP log currently enabled."
 msgstr ""
 
-#: mod/admin.php:1004
-msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
+#: mod/admin.php:2284
+msgid "PHP log currently disabled."
 msgstr ""
 
-#: mod/admin.php:1005
-msgid "Posts per user on community page"
-msgstr ""
+#: mod/admin.php:2293
+msgid "Clear"
+msgstr "Wis"
 
-#: mod/admin.php:1005
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
+#: mod/admin.php:2297
+msgid "Enable Debugging"
 msgstr ""
 
-#: mod/admin.php:1006
-msgid "Enable OStatus support"
-msgstr "Activeer OStatus ondersteuning"
+#: mod/admin.php:2298
+msgid "Log file"
+msgstr "Logbestand"
 
-#: mod/admin.php:1006
+#: mod/admin.php:2298
 msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie."
 
-#: mod/admin.php:1007
-msgid "OStatus conversation completion interval"
+#: mod/admin.php:2299
+msgid "Log level"
+msgstr "Log niveau"
+
+#: mod/admin.php:2301
+msgid "PHP logging"
 msgstr ""
 
-#: mod/admin.php:1007
+#: mod/admin.php:2302
 msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
+"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:1008
-msgid "Only import OStatus threads from our contacts"
+#: mod/admin.php:2333
+#, php-format
+msgid ""
+"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
+"if file %1$s exist and is readable."
 msgstr ""
 
-#: mod/admin.php:1008
+#: mod/admin.php:2337
+#, php-format
 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."
+"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file"
+" %1$s is readable."
 msgstr ""
 
-#: mod/admin.php:1009
-msgid "OStatus support can only be enabled if threading is enabled."
+#: mod/admin.php:2429
+#, php-format
+msgid "Lock feature %s"
 msgstr ""
 
-#: mod/admin.php:1011
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub"
-" directory."
+#: mod/admin.php:2437
+msgid "Manage Additional Features"
 msgstr ""
 
-#: mod/admin.php:1012
-msgid "Enable Diaspora support"
-msgstr "Activeer Diaspora ondersteuning"
-
-#: mod/admin.php:1012
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk."
-
-#: mod/admin.php:1013
-msgid "Only allow Friendica contacts"
-msgstr "Laat alleen Friendica contacten toe"
-
-#: mod/admin.php:1013
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld."
+#: src/Core/UserImport.php:104
+msgid "Error decoding account file"
+msgstr ""
 
-#: mod/admin.php:1014
-msgid "Verify SSL"
-msgstr "Controleer SSL"
+#: src/Core/UserImport.php:110
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr ""
 
-#: mod/admin.php:1014
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
-msgstr "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken."
+#: src/Core/UserImport.php:118
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Gebruiker '%s' bestaat al op deze server!"
 
-#: mod/admin.php:1015
-msgid "Proxy user"
-msgstr "Proxy-gebruiker"
+#: src/Core/UserImport.php:151
+msgid "User creation error"
+msgstr "Fout bij het aanmaken van de gebruiker"
 
-#: mod/admin.php:1016
-msgid "Proxy URL"
-msgstr "Proxy-URL"
+#: src/Core/UserImport.php:169
+msgid "User profile creation error"
+msgstr "Fout bij het aanmaken van het gebruikersprofiel"
 
-#: mod/admin.php:1017
-msgid "Network timeout"
-msgstr "Netwerk timeout"
+#: src/Core/UserImport.php:213
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contact werd niet geïmporteerd"
+msgstr[1] "%d contacten werden niet geïmporteerd"
 
-#: mod/admin.php:1017
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)."
+#: src/Core/UserImport.php:278
+msgid "Done. You can now login with your username and password"
+msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"
 
-#: mod/admin.php:1018
-msgid "Delivery interval"
-msgstr "Afleverinterval"
+#: src/Core/NotificationsManager.php:171
+msgid "System"
+msgstr "Systeem"
 
-#: mod/admin.php:1018
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers."
+#: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124
+#: src/Content/Nav.php:181
+msgid "Home"
+msgstr "Tijdlijn"
 
-#: mod/admin.php:1019
-msgid "Poll interval"
-msgstr "Poll-interval"
+#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:186
+msgid "Introductions"
+msgstr "Verzoeken"
 
-#: mod/admin.php:1019
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt."
+#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s gaf een reactie op het bericht van %s"
 
-#: mod/admin.php:1020
-msgid "Maximum Load Average"
-msgstr "Maximum gemiddelde belasting"
+#: src/Core/NotificationsManager.php:267
+#, php-format
+msgid "%s created a new post"
+msgstr "%s schreef een nieuw bericht"
 
-#: mod/admin.php:1020
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50."
+#: src/Core/NotificationsManager.php:281
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s vond het bericht van %s leuk"
 
-#: mod/admin.php:1021
-msgid "Maximum Load Average (Frontend)"
-msgstr ""
+#: src/Core/NotificationsManager.php:294
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s vond het bericht van %s niet leuk"
 
-#: mod/admin.php:1021
-msgid "Maximum system load before the frontend quits service - default 50."
+#: src/Core/NotificationsManager.php:307
+#, php-format
+msgid "%s is attending %s's event"
 msgstr ""
 
-#: mod/admin.php:1022
-msgid "Maximum table size for optimization"
+#: src/Core/NotificationsManager.php:320
+#, php-format
+msgid "%s is not attending %s's event"
 msgstr ""
 
-#: mod/admin.php:1022
-msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
+#: src/Core/NotificationsManager.php:333
+#, php-format
+msgid "%s may attend %s's event"
 msgstr ""
 
-#: mod/admin.php:1023
-msgid "Minimum level of fragmentation"
-msgstr ""
+#: src/Core/NotificationsManager.php:350
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s is nu bevriend met %s"
 
-#: mod/admin.php:1023
-msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
-msgstr ""
+#: src/Core/NotificationsManager.php:825
+msgid "Friend Suggestion"
+msgstr "Vriendschapsvoorstel"
 
-#: mod/admin.php:1025
-msgid "Periodical check of global contacts"
-msgstr ""
+#: src/Core/NotificationsManager.php:851
+msgid "Friend/Connect Request"
+msgstr "Vriendschapsverzoek"
 
-#: mod/admin.php:1025
-msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
-msgstr ""
+#: src/Core/NotificationsManager.php:851
+msgid "New Follower"
+msgstr "Nieuwe Volger"
 
-#: mod/admin.php:1026
-msgid "Days between requery"
-msgstr ""
+#: src/Core/ACL.php:295
+msgid "Post to Email"
+msgstr "Verzenden per e-mail"
 
-#: mod/admin.php:1026
-msgid "Number of days after which a server is requeried for his contacts."
-msgstr ""
+#: src/Core/ACL.php:301
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Je profieldetails verbergen voor onbekende bezoekers?"
 
-#: mod/admin.php:1027
-msgid "Discover contacts from other servers"
+#: src/Core/ACL.php:300
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
 msgstr ""
 
-#: mod/admin.php:1027
-msgid ""
-"Periodically query other servers for contacts. You can choose between "
-"'users': the users on the remote system, 'Global Contacts': active contacts "
-"that are known on the system. The fallback is meant for Redmatrix servers "
-"and older friendica servers, where global contacts weren't available. The "
-"fallback increases the server load, so the recommened setting is 'Users, "
-"Global Contacts'."
-msgstr ""
+#: src/Core/ACL.php:307
+msgid "Visible to everybody"
+msgstr "Zichtbaar voor iedereen"
 
-#: mod/admin.php:1028
-msgid "Timeframe for fetching global contacts"
-msgstr ""
+#: src/Core/ACL.php:308 view/theme/vier/config.php:115
+msgid "show"
+msgstr "tonen"
 
-#: mod/admin.php:1028
-msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
-msgstr ""
+#: src/Core/ACL.php:309 view/theme/vier/config.php:115
+msgid "don't show"
+msgstr "niet tonen"
 
-#: mod/admin.php:1029
-msgid "Search the local directory"
-msgstr ""
+#: src/Core/ACL.php:319
+msgid "Close"
+msgstr "Afsluiten"
 
-#: mod/admin.php:1029
-msgid ""
-"Search the local directory instead of the global directory. When searching "
-"locally, every search will be executed on the global directory in the "
-"background. This improves the search results when the search is repeated."
-msgstr ""
+#: src/Util/Temporal.php:147 src/Model/Profile.php:758
+msgid "Birthday:"
+msgstr "Verjaardag:"
 
-#: mod/admin.php:1031
-msgid "Publish server information"
+#: src/Util/Temporal.php:151
+msgid "YYYY-MM-DD or MM-DD"
 msgstr ""
 
-#: mod/admin.php:1031
-msgid ""
-"If enabled, general server and usage data will be published. The data "
-"contains the name and version of the server, number of users with public "
-"profiles, number of posts and the activated protocols and connectors. See <a"
-" href='http://the-federation.info/'>the-federation.info</a> for details."
-msgstr ""
+#: src/Util/Temporal.php:294
+msgid "never"
+msgstr "nooit"
 
-#: mod/admin.php:1033
-msgid "Use MySQL full text engine"
-msgstr "Gebruik de tekst-zoekfunctie van MySQL"
+#: src/Util/Temporal.php:300
+msgid "less than a second ago"
+msgstr "minder dan een seconde geleden"
 
-#: mod/admin.php:1033
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters."
+#: src/Util/Temporal.php:303
+msgid "year"
+msgstr "jaar"
 
-#: mod/admin.php:1034
-msgid "Suppress Language"
-msgstr ""
+#: src/Util/Temporal.php:303
+msgid "years"
+msgstr "jaren"
 
-#: mod/admin.php:1034
-msgid "Suppress language information in meta information about a posting."
-msgstr ""
+#: src/Util/Temporal.php:304
+msgid "months"
+msgstr "maanden"
 
-#: mod/admin.php:1035
-msgid "Suppress Tags"
-msgstr ""
+#: src/Util/Temporal.php:305
+msgid "weeks"
+msgstr "weken"
 
-#: mod/admin.php:1035
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr ""
+#: src/Util/Temporal.php:306
+msgid "days"
+msgstr "dagen"
 
-#: mod/admin.php:1036
-msgid "Path to item cache"
-msgstr "Pad naar cache voor items"
+#: src/Util/Temporal.php:307
+msgid "hour"
+msgstr "uur"
 
-#: mod/admin.php:1036
-msgid "The item caches buffers generated bbcode and external images."
-msgstr ""
+#: src/Util/Temporal.php:307
+msgid "hours"
+msgstr "uren"
 
-#: mod/admin.php:1037
-msgid "Cache duration in seconds"
-msgstr "Cache tijdsduur in seconden"
+#: src/Util/Temporal.php:308
+msgid "minute"
+msgstr "minuut"
 
-#: mod/admin.php:1037
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day). To disable the item cache, set the value to -1."
-msgstr ""
+#: src/Util/Temporal.php:308
+msgid "minutes"
+msgstr "minuten"
 
-#: mod/admin.php:1038
-msgid "Maximum numbers of comments per post"
-msgstr ""
+#: src/Util/Temporal.php:309
+msgid "second"
+msgstr "seconde"
 
-#: mod/admin.php:1038
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr ""
+#: src/Util/Temporal.php:309
+msgid "seconds"
+msgstr "secondes"
 
-#: mod/admin.php:1039
-msgid "Path for lock file"
-msgstr "Pad voor lock bestand"
+#: src/Util/Temporal.php:318
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s geleden"
 
-#: mod/admin.php:1039
-msgid ""
-"The lock file is used to avoid multiple pollers at one time. Only define a "
-"folder here."
-msgstr ""
+#: src/Content/Text/BBCode.php:552
+msgid "view full size"
+msgstr "Volledig formaat"
 
-#: mod/admin.php:1040
-msgid "Temp path"
-msgstr "Tijdelijk pad"
+#: src/Content/Text/BBCode.php:978 src/Content/Text/BBCode.php:1739
+#: src/Content/Text/BBCode.php:1740
+msgid "Image/photo"
+msgstr "Afbeelding/foto"
 
-#: mod/admin.php:1040
-msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
+#: src/Content/Text/BBCode.php:1116
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 msgstr ""
 
-#: mod/admin.php:1041
-msgid "Base path to installation"
-msgstr "Basispad voor installatie"
+#: src/Content/Text/BBCode.php:1674 src/Content/Text/BBCode.php:1696
+msgid "$1 wrote:"
+msgstr "$1 schreef:"
 
-#: mod/admin.php:1041
-msgid ""
-"If the system cannot detect the correct path to your installation, enter the"
-" correct path here. This setting should only be set if you are using a "
-"restricted system and symbolic links to your webroot."
-msgstr ""
+#: src/Content/Text/BBCode.php:1748 src/Content/Text/BBCode.php:1749
+msgid "Encrypted content"
+msgstr "Versleutelde inhoud"
 
-#: mod/admin.php:1042
-msgid "Disable picture proxy"
+#: src/Content/Text/BBCode.php:1866
+msgid "Invalid source protocol"
 msgstr ""
 
-#: mod/admin.php:1042
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
+#: src/Content/Text/BBCode.php:1877
+msgid "Invalid link protocol"
 msgstr ""
 
-#: mod/admin.php:1043
-msgid "Enable old style pager"
+#: src/Content/ForumManager.php:127 view/theme/vier/theme.php:256
+msgid "External link to forum"
 msgstr ""
 
-#: mod/admin.php:1043
-msgid ""
-"The old style pager has page numbers but slows down massively the page "
-"speed."
-msgstr ""
+#: src/Content/Nav.php:53
+msgid "Nothing new here"
+msgstr "Niets nieuw hier"
 
-#: mod/admin.php:1044
-msgid "Only search in tags"
-msgstr ""
+#: src/Content/Nav.php:57
+msgid "Clear notifications"
+msgstr "Notificaties verwijderen"
 
-#: mod/admin.php:1044
-msgid "On large systems the text search can slow down the system extremely."
-msgstr ""
+#: src/Content/Nav.php:97 src/Module/Login.php:311
+#: view/theme/frio/theme.php:256
+msgid "Logout"
+msgstr "Uitloggen"
 
-#: mod/admin.php:1046
-msgid "New base url"
-msgstr ""
+#: src/Content/Nav.php:97 view/theme/frio/theme.php:256
+msgid "End this session"
+msgstr "Deze sessie beëindigen"
 
-#: mod/admin.php:1046
-msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts"
-" of all users."
-msgstr ""
+#: src/Content/Nav.php:100 src/Content/Nav.php:181
+#: view/theme/frio/theme.php:259
+msgid "Your posts and conversations"
+msgstr "Jouw berichten en gesprekken"
 
-#: mod/admin.php:1048
-msgid "RINO Encryption"
-msgstr ""
+#: src/Content/Nav.php:101 view/theme/frio/theme.php:260
+msgid "Your profile page"
+msgstr "Jouw profiel pagina"
 
-#: mod/admin.php:1048
-msgid "Encryption layer between nodes."
-msgstr ""
+#: src/Content/Nav.php:102 view/theme/frio/theme.php:261
+msgid "Your photos"
+msgstr "Jouw foto's"
 
-#: mod/admin.php:1049
-msgid "Embedly API key"
-msgstr ""
+#: src/Content/Nav.php:103 src/Model/Profile.php:912 src/Model/Profile.php:915
+#: view/theme/frio/theme.php:262
+msgid "Videos"
+msgstr "Video's"
 
-#: mod/admin.php:1049
-msgid ""
-"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
-"web pages. This is an optional parameter."
+#: src/Content/Nav.php:103 view/theme/frio/theme.php:262
+msgid "Your videos"
 msgstr ""
 
-#: mod/admin.php:1051
-msgid "Enable 'worker' background processing"
-msgstr ""
+#: src/Content/Nav.php:104 view/theme/frio/theme.php:263
+msgid "Your events"
+msgstr "Jouw gebeurtenissen"
 
-#: mod/admin.php:1051
-msgid ""
-"The worker background processing limits the number of parallel background "
-"jobs to a maximum number and respects the system load."
-msgstr ""
+#: src/Content/Nav.php:105
+msgid "Personal notes"
+msgstr "Persoonlijke nota's"
 
-#: mod/admin.php:1052
-msgid "Maximum number of parallel workers"
+#: src/Content/Nav.php:105
+msgid "Your personal notes"
 msgstr ""
 
-#: mod/admin.php:1052
-msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
-msgstr ""
+#: src/Content/Nav.php:114
+msgid "Sign in"
+msgstr "Inloggen"
 
-#: mod/admin.php:1053
-msgid "Don't use 'proc_open' with the worker"
-msgstr ""
+#: src/Content/Nav.php:124
+msgid "Home Page"
+msgstr "Jouw tijdlijn"
 
-#: mod/admin.php:1053
-msgid ""
-"Enable this if your system doesn't allow the use of 'proc_open'. This can "
-"happen on shared hosters. If this is enabled you should increase the "
-"frequency of poller calls in your crontab."
-msgstr ""
+#: src/Content/Nav.php:128
+msgid "Create an account"
+msgstr "Maak een accoount"
 
-#: mod/admin.php:1054
-msgid "Enable fastlane"
-msgstr ""
+#: src/Content/Nav.php:134
+msgid "Help and documentation"
+msgstr "Hulp en documentatie"
+
+#: src/Content/Nav.php:138
+msgid "Apps"
+msgstr "Apps"
+
+#: src/Content/Nav.php:138
+msgid "Addon applications, utilities, games"
+msgstr "Extra toepassingen, hulpmiddelen of spelletjes"
+
+#: src/Content/Nav.php:142
+msgid "Search site content"
+msgstr "Doorzoek de inhoud van de website"
 
-#: mod/admin.php:1054
-msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes"
-" with higher priority are blocked by processes of lower priority."
-msgstr ""
+#: src/Content/Nav.php:165
+msgid "Community"
+msgstr "Website"
 
-#: mod/admin.php:1055
-msgid "Enable frontend worker"
+#: src/Content/Nav.php:165
+msgid "Conversations on this and other servers"
 msgstr ""
 
-#: mod/admin.php:1055
-msgid ""
-"When enabled the Worker process is triggered when backend access is "
-"performed (e.g. messages being delivered). On smaller sites you might want "
-"to call yourdomain.tld/worker on a regular basis via an external cron job. "
-"You should only enable this option if you cannot utilize cron/scheduled jobs"
-" on your server. The worker background process needs to be activated for "
-"this."
-msgstr ""
+#: src/Content/Nav.php:169 src/Model/Profile.php:927 src/Model/Profile.php:938
+#: view/theme/frio/theme.php:267
+msgid "Events and Calendar"
+msgstr "Gebeurtenissen en kalender"
 
-#: mod/admin.php:1084
-msgid "Update has been marked successful"
-msgstr "Wijziging succesvol gemarkeerd "
+#: src/Content/Nav.php:172
+msgid "Directory"
+msgstr "Gids"
 
-#: mod/admin.php:1092
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr ""
+#: src/Content/Nav.php:172
+msgid "People directory"
+msgstr "Personengids"
 
-#: mod/admin.php:1095
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
+#: src/Content/Nav.php:174
+msgid "Information about this friendica instance"
 msgstr ""
 
-#: mod/admin.php:1107
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr ""
+#: src/Content/Nav.php:178 view/theme/frio/theme.php:266
+msgid "Conversations from your friends"
+msgstr "Gesprekken van je vrienden"
 
-#: mod/admin.php:1110
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Wijziging %s geslaagd."
+#: src/Content/Nav.php:179
+msgid "Network Reset"
+msgstr "Netwerkpagina opnieuw instellen"
 
-#: mod/admin.php:1114
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is."
+#: src/Content/Nav.php:179
+msgid "Load Network page with no filters"
+msgstr "Laad de netwerkpagina zonder filters"
 
-#: mod/admin.php:1116
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr ""
+#: src/Content/Nav.php:186
+msgid "Friend Requests"
+msgstr "Vriendschapsverzoeken"
 
-#: mod/admin.php:1135
-msgid "No failed updates."
-msgstr "Geen misluke wijzigingen"
+#: src/Content/Nav.php:190
+msgid "See all notifications"
+msgstr "Toon alle notificaties"
 
-#: mod/admin.php:1136
-msgid "Check database structure"
-msgstr ""
+#: src/Content/Nav.php:191
+msgid "Mark all system notifications seen"
+msgstr "Alle systeemnotificaties als gelezen markeren"
 
-#: mod/admin.php:1141
-msgid "Failed Updates"
-msgstr "Misluke wijzigingen"
+#: src/Content/Nav.php:195 view/theme/frio/theme.php:268
+msgid "Private mail"
+msgstr "Privéberichten"
 
-#: mod/admin.php:1142
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven."
+#: src/Content/Nav.php:196
+msgid "Inbox"
+msgstr "Inbox"
 
-#: mod/admin.php:1143
-msgid "Mark success (if update was manually applied)"
-msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)"
+#: src/Content/Nav.php:197
+msgid "Outbox"
+msgstr "Verzonden berichten"
 
-#: mod/admin.php:1144
-msgid "Attempt to execute this update step automatically"
-msgstr "Probeer deze stap automatisch uit te voeren"
+#: src/Content/Nav.php:201
+msgid "Manage"
+msgstr "Beheren"
 
-#: mod/admin.php:1178
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
-msgstr ""
+#: src/Content/Nav.php:201
+msgid "Manage other pages"
+msgstr "Andere pagina's beheren"
 
-#: mod/admin.php:1181
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
-msgstr ""
+#: src/Content/Nav.php:206 view/theme/frio/theme.php:269
+msgid "Account settings"
+msgstr "Account instellingen"
 
-#: mod/admin.php:1225
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s gebruiker geblokkeerd/niet geblokkeerd"
-msgstr[1] "%s gebruikers geblokkeerd/niet geblokkeerd"
+#: src/Content/Nav.php:209 src/Model/Profile.php:372
+msgid "Profiles"
+msgstr "Profielen"
 
-#: mod/admin.php:1232
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s gebruiker verwijderd"
-msgstr[1] "%s gebruikers verwijderd"
+#: src/Content/Nav.php:209
+msgid "Manage/Edit Profiles"
+msgstr "Beheer/Wijzig Profielen"
 
-#: mod/admin.php:1279
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Gebruiker '%s' verwijderd"
+#: src/Content/Nav.php:212 view/theme/frio/theme.php:270
+msgid "Manage/edit friends and contacts"
+msgstr "Beheer/Wijzig vrienden en contacten"
 
-#: mod/admin.php:1287
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Gebruiker '%s' niet meer geblokkeerd"
+#: src/Content/Nav.php:217
+msgid "Site setup and configuration"
+msgstr "Website opzetten en configureren"
 
-#: mod/admin.php:1287
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Gebruiker '%s' geblokkeerd"
+#: src/Content/Nav.php:220
+msgid "Navigation"
+msgstr "Navigatie"
 
-#: mod/admin.php:1396 mod/admin.php:1422
-msgid "Register date"
-msgstr "Registratiedatum"
+#: src/Content/Nav.php:220
+msgid "Site map"
+msgstr "Sitemap"
 
-#: mod/admin.php:1396 mod/admin.php:1422
-msgid "Last login"
-msgstr "Laatste login"
+#: src/Content/OEmbed.php:253
+msgid "Embedding disabled"
+msgstr "Inbedden uitgeschakeld"
 
-#: mod/admin.php:1396 mod/admin.php:1422
-msgid "Last item"
-msgstr "Laatste item"
+#: src/Content/OEmbed.php:373
+msgid "Embedded content"
+msgstr "Ingebedde inhoud"
 
-#: mod/admin.php:1405
-msgid "Add User"
-msgstr "Gebruiker toevoegen"
+#: src/Content/Widget/CalendarExport.php:61
+msgid "Export"
+msgstr "Exporteer"
 
-#: mod/admin.php:1406
-msgid "select all"
-msgstr "Alles selecteren"
+#: src/Content/Widget/CalendarExport.php:62
+msgid "Export calendar as ical"
+msgstr "Exporteer kalender als ical"
 
-#: mod/admin.php:1407
-msgid "User registrations waiting for confirm"
-msgstr "Gebruikersregistraties wachten op een bevestiging"
+#: src/Content/Widget/CalendarExport.php:63
+msgid "Export calendar as csv"
+msgstr "Exporteer kalender als csv"
 
-#: mod/admin.php:1408
-msgid "User waiting for permanent deletion"
-msgstr ""
+#: src/Content/Feature.php:79
+msgid "General Features"
+msgstr "Algemene functies"
 
-#: mod/admin.php:1409
-msgid "Request date"
-msgstr "Registratiedatum"
+#: src/Content/Feature.php:81
+msgid "Multiple Profiles"
+msgstr "Meerdere profielen"
 
-#: mod/admin.php:1410
-msgid "No registrations."
-msgstr "Geen registraties."
+#: src/Content/Feature.php:81
+msgid "Ability to create multiple profiles"
+msgstr "Mogelijkheid om meerdere profielen aan te maken"
 
-#: mod/admin.php:1411
-msgid "Note from the user"
+#: src/Content/Feature.php:82
+msgid "Photo Location"
 msgstr ""
 
-#: mod/admin.php:1413
-msgid "Deny"
-msgstr "Weiger"
+#: 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 ""
 
-#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805
-#: mod/contacts.php:983
-msgid "Block"
-msgstr "Blokkeren"
+#: src/Content/Feature.php:83
+msgid "Export Public Calendar"
+msgstr ""
 
-#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805
-#: mod/contacts.php:983
-msgid "Unblock"
-msgstr "Blokkering opheffen"
+#: src/Content/Feature.php:83
+msgid "Ability for visitors to download the public calendar"
+msgstr ""
 
-#: mod/admin.php:1417
-msgid "Site admin"
-msgstr "Sitebeheerder"
+#: src/Content/Feature.php:88
+msgid "Post Composition Features"
+msgstr "Functies voor het opstellen van berichten"
 
-#: mod/admin.php:1418
-msgid "Account expired"
-msgstr "Account verlopen"
+#: src/Content/Feature.php:89
+msgid "Post Preview"
+msgstr "Voorvertoning bericht"
 
-#: mod/admin.php:1421
-msgid "New User"
-msgstr "Nieuwe gebruiker"
+#: src/Content/Feature.php:89
+msgid "Allow previewing posts and comments before publishing them"
+msgstr ""
 
-#: mod/admin.php:1422
-msgid "Deleted since"
-msgstr "Verwijderd sinds"
+#: src/Content/Feature.php:90
+msgid "Auto-mention Forums"
+msgstr ""
 
-#: mod/admin.php:1427
+#: src/Content/Feature.php:90
 msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
+"Add/remove mention when a forum page is selected/deselected in ACL window."
+msgstr ""
 
-#: mod/admin.php:1428
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
+#: src/Content/Feature.php:95
+msgid "Network Sidebar Widgets"
+msgstr "Zijbalkwidgets op netwerkpagina"
 
-#: mod/admin.php:1438
-msgid "Name of the new user."
-msgstr "Naam van nieuwe gebruiker"
+#: src/Content/Feature.php:96
+msgid "Search by Date"
+msgstr "Zoeken op datum"
 
-#: mod/admin.php:1439
-msgid "Nickname"
-msgstr "Bijnaam"
+#: src/Content/Feature.php:96
+msgid "Ability to select posts by date ranges"
+msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik"
 
-#: mod/admin.php:1439
-msgid "Nickname of the new user."
-msgstr "Bijnaam van nieuwe gebruiker"
+#: src/Content/Feature.php:97 src/Content/Feature.php:127
+msgid "List Forums"
+msgstr ""
 
-#: mod/admin.php:1440
-msgid "Email address of the new user."
-msgstr "E-mailadres van nieuwe gebruiker"
+#: 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 "Groepsfilter"
+
+#: src/Content/Feature.php:98
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen"
 
-#: mod/admin.php:1483
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s uitgeschakeld."
+#: src/Content/Feature.php:99
+msgid "Network Filter"
+msgstr "Netwerkfilter"
 
-#: mod/admin.php:1487
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s ingeschakeld."
+#: src/Content/Feature.php:99
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken"
 
-#: mod/admin.php:1498 mod/admin.php:1734
-msgid "Disable"
-msgstr "Uitschakelen"
+#: src/Content/Feature.php:100
+msgid "Save search terms for re-use"
+msgstr "Sla zoekopdrachten op voor hergebruik"
 
-#: mod/admin.php:1500 mod/admin.php:1736
-msgid "Enable"
-msgstr "Inschakelen"
+#: src/Content/Feature.php:105
+msgid "Network Tabs"
+msgstr "Netwerktabs"
 
-#: mod/admin.php:1523 mod/admin.php:1781
-msgid "Toggle"
-msgstr "Schakelaar"
+#: src/Content/Feature.php:106
+msgid "Network Personal Tab"
+msgstr "Persoonlijke netwerktab"
 
-#: mod/admin.php:1531 mod/admin.php:1790
-msgid "Author: "
-msgstr "Auteur:"
+#: src/Content/Feature.php:106
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"
 
-#: mod/admin.php:1532 mod/admin.php:1791
-msgid "Maintainer: "
-msgstr "Onderhoud:"
+#: src/Content/Feature.php:107
+msgid "Network New Tab"
+msgstr "Nieuwe netwerktab"
+
+#: src/Content/Feature.php:107
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)"
 
-#: mod/admin.php:1584
-msgid "Reload active plugins"
+#: src/Content/Feature.php:108
+msgid "Network Shared Links Tab"
 msgstr ""
 
-#: mod/admin.php:1589
-#, php-format
-msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
+#: src/Content/Feature.php:108
+msgid "Enable tab to display only Network posts with links in them"
 msgstr ""
 
-#: mod/admin.php:1694
-msgid "No themes found."
-msgstr "Geen thema's gevonden."
+#: src/Content/Feature.php:113
+msgid "Post/Comment Tools"
+msgstr "Bericht-/reactiehulpmiddelen"
 
-#: mod/admin.php:1772
-msgid "Screenshot"
-msgstr "Schermafdruk"
+#: src/Content/Feature.php:114
+msgid "Multiple Deletion"
+msgstr "Meervoudige verwijdering"
 
-#: mod/admin.php:1832
-msgid "Reload active themes"
-msgstr ""
+#: src/Content/Feature.php:114
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer"
 
-#: mod/admin.php:1837
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
-msgstr ""
+#: src/Content/Feature.php:115
+msgid "Edit Sent Posts"
+msgstr "Bewerk verzonden berichten"
 
-#: mod/admin.php:1838
-msgid "[Experimental]"
-msgstr "[Experimenteel]"
+#: src/Content/Feature.php:115
+msgid "Edit and correct posts and comments after sending"
+msgstr "Bewerk en corrigeer berichten en reacties na verzending"
 
-#: mod/admin.php:1839
-msgid "[Unsupported]"
-msgstr "[Niet ondersteund]"
+#: src/Content/Feature.php:116
+msgid "Tagging"
+msgstr "Labelen"
 
-#: mod/admin.php:1863
-msgid "Log settings updated."
-msgstr "Log instellingen gewijzigd"
+#: src/Content/Feature.php:116
+msgid "Ability to tag existing posts"
+msgstr "Mogelijkheid om bestaande berichten te labelen"
 
-#: mod/admin.php:1895
-msgid "PHP log currently enabled."
-msgstr ""
+#: src/Content/Feature.php:117
+msgid "Post Categories"
+msgstr "Categorieën berichten"
 
-#: mod/admin.php:1897
-msgid "PHP log currently disabled."
-msgstr ""
+#: src/Content/Feature.php:117
+msgid "Add categories to your posts"
+msgstr "Voeg categorieën toe aan je berichten"
 
-#: mod/admin.php:1906
-msgid "Clear"
-msgstr "Wis"
+#: src/Content/Feature.php:118 src/Content/Widget.php:200
+msgid "Saved Folders"
+msgstr "Bewaarde Mappen"
 
-#: mod/admin.php:1911
-msgid "Enable Debugging"
+#: src/Content/Feature.php:118
+msgid "Ability to file posts under folders"
+msgstr "Mogelijkheid om berichten in mappen te bewaren"
+
+#: src/Content/Feature.php:119
+msgid "Dislike Posts"
+msgstr "Vind berichten niet leuk"
+
+#: src/Content/Feature.php:119
+msgid "Ability to dislike posts/comments"
+msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden"
+
+#: src/Content/Feature.php:120
+msgid "Star Posts"
+msgstr "Geef berichten een ster"
+
+#: src/Content/Feature.php:120
+msgid "Ability to mark special posts with a star indicator"
 msgstr ""
 
-#: mod/admin.php:1912
-msgid "Log file"
-msgstr "Logbestand"
+#: src/Content/Feature.php:121
+msgid "Mute Post Notifications"
+msgstr ""
 
-#: mod/admin.php:1912
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie."
+#: src/Content/Feature.php:121
+msgid "Ability to mute notifications for a thread"
+msgstr ""
 
-#: mod/admin.php:1913
-msgid "Log level"
-msgstr "Log niveau"
+#: src/Content/Feature.php:126
+msgid "Advanced Profile Settings"
+msgstr ""
 
-#: mod/admin.php:1916
-msgid "PHP logging"
+#: src/Content/Feature.php:127
+msgid "Show visitors public community forums at the Advanced Profile Page"
 msgstr ""
 
-#: mod/admin.php:1917
-msgid ""
-"To enable logging of PHP errors and warnings you can add the following to "
-"the .htconfig.php file of your installation. The filename set in the "
-"'error_log' line is relative to the friendica top-level directory and must "
-"be writeable by the web server. The option '1' for 'log_errors' and "
-"'display_errors' is to enable these options, set to '0' to disable them."
+#: src/Content/Feature.php:128
+msgid "Tag Cloud"
 msgstr ""
 
-#: mod/admin.php:2045
-#, php-format
-msgid "Lock feature %s"
+#: src/Content/Feature.php:128
+msgid "Provide a personal tag cloud on your profile page"
 msgstr ""
 
-#: mod/admin.php:2053
-msgid "Manage Additional Features"
+#: src/Content/Feature.php:129
+msgid "Display Membership Date"
 msgstr ""
 
-#: mod/contacts.php:128
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] ""
-msgstr[1] ""
+#: src/Content/Feature.php:129
+msgid "Display membership date in profile"
+msgstr ""
 
-#: mod/contacts.php:159 mod/contacts.php:368
-msgid "Could not access contact record."
-msgstr "Kon geen toegang krijgen tot de contactgegevens"
+#: src/Content/Widget.php:33
+msgid "Add New Contact"
+msgstr "Nieuw Contact toevoegen"
 
-#: mod/contacts.php:173
-msgid "Could not locate selected profile."
-msgstr "Kon het geselecteerde profiel niet vinden."
+#: src/Content/Widget.php:34
+msgid "Enter address or web location"
+msgstr "Voeg een webadres of -locatie in:"
 
-#: mod/contacts.php:206
-msgid "Contact updated."
-msgstr "Contact bijgewerkt."
+#: src/Content/Widget.php:35
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara"
 
-#: mod/contacts.php:208 mod/dfrn_request.php:583
-msgid "Failed to update contact record."
-msgstr "Ik kon de contactgegevens niet aanpassen."
+#: src/Content/Widget.php:53
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d uitnodiging beschikbaar"
+msgstr[1] "%d uitnodigingen beschikbaar"
 
-#: mod/contacts.php:389
-msgid "Contact has been blocked"
-msgstr "Contact is geblokkeerd"
+#: src/Content/Widget.php:59
+msgid "Find People"
+msgstr "Zoek mensen"
 
-#: mod/contacts.php:389
-msgid "Contact has been unblocked"
-msgstr "Contact is gedeblokkeerd"
+#: src/Content/Widget.php:60
+msgid "Enter name or interest"
+msgstr "Vul naam of interesse in"
 
-#: mod/contacts.php:400
-msgid "Contact has been ignored"
-msgstr "Contact wordt genegeerd"
+#: src/Content/Widget.php:62
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Voorbeelden: Jan Peeters, Vissen"
 
-#: mod/contacts.php:400
-msgid "Contact has been unignored"
-msgstr "Contact wordt niet meer genegeerd"
+#: src/Content/Widget.php:65 view/theme/vier/theme.php:202
+msgid "Similar Interests"
+msgstr "Dezelfde interesses"
 
-#: mod/contacts.php:412
-msgid "Contact has been archived"
-msgstr "Contact is gearchiveerd"
+#: src/Content/Widget.php:66
+msgid "Random Profile"
+msgstr "Willekeurig Profiel"
 
-#: mod/contacts.php:412
-msgid "Contact has been unarchived"
-msgstr "Contact is niet meer gearchiveerd"
+#: src/Content/Widget.php:67 view/theme/vier/theme.php:204
+msgid "Invite Friends"
+msgstr "Vrienden uitnodigen"
 
-#: mod/contacts.php:437
-msgid "Drop contact"
+#: src/Content/Widget.php:68
+msgid "View Global Directory"
 msgstr ""
 
-#: mod/contacts.php:440 mod/contacts.php:801
-msgid "Do you really want to delete this contact?"
-msgstr "Wil je echt dit contact verwijderen?"
+#: src/Content/Widget.php:159
+msgid "Networks"
+msgstr "Netwerken"
 
-#: mod/contacts.php:457
-msgid "Contact has been removed."
-msgstr "Contact is verwijderd."
+#: src/Content/Widget.php:162
+msgid "All Networks"
+msgstr "Alle netwerken"
 
-#: mod/contacts.php:498
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Je bent wederzijds bevriend met %s"
+#: src/Content/Widget.php:203 src/Content/Widget.php:243
+msgid "Everything"
+msgstr "Alles"
 
-#: mod/contacts.php:502
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Je deelt met %s"
+#: src/Content/Widget.php:240
+msgid "Categories"
+msgstr "Categorieën"
 
-#: mod/contacts.php:507
+#: src/Content/Widget.php:307
 #, php-format
-msgid "%s is sharing with you"
-msgstr "%s deelt met jou"
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d gedeeld contact"
+msgstr[1] "%d gedeelde contacten"
 
-#: mod/contacts.php:527
-msgid "Private communications are not available for this contact."
-msgstr "Privécommunicatie met dit contact is niet beschikbaar."
+#: src/Content/ContactSelector.php:55
+msgid "Frequently"
+msgstr "Frequent"
 
-#: mod/contacts.php:534
-msgid "(Update was successful)"
-msgstr "(Wijziging is geslaagd)"
+#: src/Content/ContactSelector.php:56
+msgid "Hourly"
+msgstr "elk uur"
 
-#: mod/contacts.php:534
-msgid "(Update was not successful)"
-msgstr "(Wijziging is niet geslaagd)"
+#: src/Content/ContactSelector.php:57
+msgid "Twice daily"
+msgstr "Twee keer per dag"
 
-#: mod/contacts.php:536 mod/contacts.php:964
-msgid "Suggest friends"
-msgstr "Stel vrienden voor"
+#: src/Content/ContactSelector.php:58
+msgid "Daily"
+msgstr "dagelijks"
 
-#: mod/contacts.php:540
-#, php-format
-msgid "Network type: %s"
-msgstr "Netwerk type: %s"
+#: src/Content/ContactSelector.php:59
+msgid "Weekly"
+msgstr "wekelijks"
 
-#: mod/contacts.php:553
-msgid "Communications lost with this contact!"
-msgstr "Communicatie met dit contact is verbroken!"
+#: src/Content/ContactSelector.php:60
+msgid "Monthly"
+msgstr "maandelijks"
 
-#: mod/contacts.php:556
-msgid "Fetch further information for feeds"
-msgstr ""
+#: src/Content/ContactSelector.php:80
+msgid "OStatus"
+msgstr "OStatus"
 
-#: mod/contacts.php:557
-msgid "Fetch information"
-msgstr ""
+#: src/Content/ContactSelector.php:81
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: mod/contacts.php:557
-msgid "Fetch information and keywords"
-msgstr ""
+#: src/Content/ContactSelector.php:84
+msgid "Facebook"
+msgstr "Facebook"
 
-#: mod/contacts.php:575
-msgid "Contact"
-msgstr ""
+#: src/Content/ContactSelector.php:85
+msgid "Zot!"
+msgstr "Zot!"
 
-#: mod/contacts.php:578
-msgid "Profile Visibility"
-msgstr "Zichtbaarheid profiel"
+#: src/Content/ContactSelector.php:86
+msgid "LinkedIn"
+msgstr "Linkedln"
 
-#: mod/contacts.php:579
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. "
+#: 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-connector"
+
+#: src/Content/ContactSelector.php:93
+msgid "GNU Social Connector"
+msgstr ""
 
-#: mod/contacts.php:580
-msgid "Contact Information / Notes"
-msgstr "Contactinformatie / aantekeningen"
+#: src/Content/ContactSelector.php:94
+msgid "pnut"
+msgstr ""
 
-#: mod/contacts.php:581
-msgid "Edit contact notes"
-msgstr "Wijzig aantekeningen over dit contact"
+#: src/Content/ContactSelector.php:95
+msgid "App.net"
+msgstr ""
 
-#: mod/contacts.php:587
-msgid "Block/Unblock contact"
-msgstr "Blokkeer/deblokkeer contact"
+#: src/Content/ContactSelector.php:125
+msgid "Male"
+msgstr "Man"
 
-#: mod/contacts.php:588
-msgid "Ignore contact"
-msgstr "Negeer contact"
+#: src/Content/ContactSelector.php:125
+msgid "Female"
+msgstr "Vrouw"
 
-#: mod/contacts.php:589
-msgid "Repair URL settings"
-msgstr "Repareer URL-instellingen"
+#: src/Content/ContactSelector.php:125
+msgid "Currently Male"
+msgstr "Momenteel mannelijk"
 
-#: mod/contacts.php:590
-msgid "View conversations"
-msgstr "Toon conversaties"
+#: src/Content/ContactSelector.php:125
+msgid "Currently Female"
+msgstr "Momenteel vrouwelijk"
 
-#: mod/contacts.php:596
-msgid "Last update:"
-msgstr "Laatste wijziging:"
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Male"
+msgstr "Meestal mannelijk"
 
-#: mod/contacts.php:598
-msgid "Update public posts"
-msgstr "Openbare posts aanpassen"
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Female"
+msgstr "Meestal vrouwelijk"
 
-#: mod/contacts.php:600 mod/contacts.php:974
-msgid "Update now"
-msgstr "Wijzig nu"
+#: src/Content/ContactSelector.php:125
+msgid "Transgender"
+msgstr "Transgender"
 
-#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991
-msgid "Unignore"
-msgstr "Negeer niet meer"
+#: src/Content/ContactSelector.php:125
+msgid "Intersex"
+msgstr "Interseksueel"
 
-#: mod/contacts.php:610
-msgid "Currently blocked"
-msgstr "Op dit moment geblokkeerd"
+#: src/Content/ContactSelector.php:125
+msgid "Transsexual"
+msgstr "Transseksueel"
 
-#: mod/contacts.php:611
-msgid "Currently ignored"
-msgstr "Op dit moment genegeerd"
+#: src/Content/ContactSelector.php:125
+msgid "Hermaphrodite"
+msgstr "Hermafrodiet"
 
-#: mod/contacts.php:612
-msgid "Currently archived"
-msgstr "Op dit moment gearchiveerd"
+#: src/Content/ContactSelector.php:125
+msgid "Neuter"
+msgstr "Genderneutraal"
 
-#: mod/contacts.php:613
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Antwoorden of 'vind ik leuk's op je openbare posts <strong>kunnen</strong> nog zichtbaar zijn"
+#: src/Content/ContactSelector.php:125
+msgid "Non-specific"
+msgstr "Niet-specifiek"
 
-#: mod/contacts.php:614
-msgid "Notification for new posts"
-msgstr "Meldingen voor nieuwe berichten"
+#: src/Content/ContactSelector.php:125
+msgid "Other"
+msgstr "Anders"
 
-#: mod/contacts.php:614
-msgid "Send a notification of every new post of this contact"
-msgstr ""
+#: src/Content/ContactSelector.php:147
+msgid "Males"
+msgstr "Mannen"
 
-#: mod/contacts.php:617
-msgid "Blacklisted keywords"
-msgstr ""
+#: src/Content/ContactSelector.php:147
+msgid "Females"
+msgstr "Vrouwen"
 
-#: mod/contacts.php:617
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr ""
+#: src/Content/ContactSelector.php:147
+msgid "Gay"
+msgstr "Homo"
 
-#: mod/contacts.php:635
-msgid "Actions"
-msgstr ""
+#: src/Content/ContactSelector.php:147
+msgid "Lesbian"
+msgstr "Lesbienne"
 
-#: mod/contacts.php:638
-msgid "Contact Settings"
-msgstr ""
+#: src/Content/ContactSelector.php:147
+msgid "No Preference"
+msgstr "Geen voorkeur"
 
-#: mod/contacts.php:684
-msgid "Suggestions"
-msgstr "Voorstellen"
+#: src/Content/ContactSelector.php:147
+msgid "Bisexual"
+msgstr "Biseksueel"
 
-#: mod/contacts.php:687
-msgid "Suggest potential friends"
-msgstr "Stel vrienden voor"
+#: src/Content/ContactSelector.php:147
+msgid "Autosexual"
+msgstr "Autoseksueel"
 
-#: mod/contacts.php:695
-msgid "Show all contacts"
-msgstr "Toon alle contacten"
+#: src/Content/ContactSelector.php:147
+msgid "Abstinent"
+msgstr "Onthouder"
 
-#: mod/contacts.php:700
-msgid "Unblocked"
-msgstr "Niet geblokkeerd"
+#: src/Content/ContactSelector.php:147
+msgid "Virgin"
+msgstr "Maagd"
 
-#: mod/contacts.php:703
-msgid "Only show unblocked contacts"
-msgstr "Toon alleen niet-geblokkeerde contacten"
+#: src/Content/ContactSelector.php:147
+msgid "Deviant"
+msgstr "Afwijkend"
 
-#: mod/contacts.php:709
-msgid "Blocked"
-msgstr "Geblokkeerd"
+#: src/Content/ContactSelector.php:147
+msgid "Fetish"
+msgstr "Fetisj"
 
-#: mod/contacts.php:712
-msgid "Only show blocked contacts"
-msgstr "Toon alleen geblokkeerde contacten"
+#: src/Content/ContactSelector.php:147
+msgid "Oodles"
+msgstr "Veel"
 
-#: mod/contacts.php:718
-msgid "Ignored"
-msgstr "Genegeerd"
+#: src/Content/ContactSelector.php:147
+msgid "Nonsexual"
+msgstr "Niet seksueel"
 
-#: mod/contacts.php:721
-msgid "Only show ignored contacts"
-msgstr "Toon alleen genegeerde contacten"
+#: src/Content/ContactSelector.php:169
+msgid "Single"
+msgstr "Alleenstaand"
 
-#: mod/contacts.php:727
-msgid "Archived"
-msgstr "Gearchiveerd"
+#: src/Content/ContactSelector.php:169
+msgid "Lonely"
+msgstr "Eenzaam"
 
-#: mod/contacts.php:730
-msgid "Only show archived contacts"
-msgstr "Toon alleen gearchiveerde contacten"
+#: src/Content/ContactSelector.php:169
+msgid "Available"
+msgstr "Beschikbaar"
 
-#: mod/contacts.php:736
-msgid "Hidden"
-msgstr "Verborgen"
+#: src/Content/ContactSelector.php:169
+msgid "Unavailable"
+msgstr "Onbeschikbaar"
 
-#: mod/contacts.php:739
-msgid "Only show hidden contacts"
-msgstr "Toon alleen verborgen contacten"
+#: src/Content/ContactSelector.php:169
+msgid "Has crush"
+msgstr "Verliefd"
 
-#: mod/contacts.php:796
-msgid "Search your contacts"
-msgstr "Doorzoek je contacten"
+#: src/Content/ContactSelector.php:169
+msgid "Infatuated"
+msgstr "Smoorverliefd"
 
-#: mod/contacts.php:807 mod/contacts.php:999
-msgid "Archive"
-msgstr "Archiveer"
+#: src/Content/ContactSelector.php:169
+msgid "Dating"
+msgstr "Aan het daten"
 
-#: mod/contacts.php:807 mod/contacts.php:999
-msgid "Unarchive"
-msgstr "Archiveer niet meer"
+#: src/Content/ContactSelector.php:169
+msgid "Unfaithful"
+msgstr "Ontrouw"
 
-#: mod/contacts.php:810
-msgid "Batch Actions"
-msgstr ""
+#: src/Content/ContactSelector.php:169
+msgid "Sex Addict"
+msgstr "Seksverslaafd"
 
-#: mod/contacts.php:856
-msgid "View all contacts"
-msgstr "Alle contacten zien"
+#: src/Content/ContactSelector.php:169 src/Model/User.php:505
+msgid "Friends"
+msgstr "Vrienden"
 
-#: mod/contacts.php:866
-msgid "View all common friends"
-msgstr ""
+#: src/Content/ContactSelector.php:169
+msgid "Friends/Benefits"
+msgstr "Vriendschap plus"
 
-#: mod/contacts.php:873
-msgid "Advanced Contact Settings"
-msgstr "Geavanceerde instellingen voor contacten"
+#: src/Content/ContactSelector.php:169
+msgid "Casual"
+msgstr "Ongebonden/vluchtig"
 
-#: mod/contacts.php:907
-msgid "Mutual Friendship"
-msgstr "Wederzijdse vriendschap"
+#: src/Content/ContactSelector.php:169
+msgid "Engaged"
+msgstr "Verloofd"
 
-#: mod/contacts.php:911
-msgid "is a fan of yours"
-msgstr "Is een fan van jou"
+#: src/Content/ContactSelector.php:169
+msgid "Married"
+msgstr "Getrouwd"
 
-#: mod/contacts.php:915
-msgid "you are a fan of"
-msgstr "Jij bent een fan van"
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily married"
+msgstr "Denkbeeldig getrouwd"
 
-#: mod/contacts.php:985
-msgid "Toggle Blocked status"
-msgstr "Schakel geblokkeerde status"
+#: src/Content/ContactSelector.php:169
+msgid "Partners"
+msgstr "Partners"
 
-#: mod/contacts.php:993
-msgid "Toggle Ignored status"
-msgstr "Schakel negeerstatus"
+#: src/Content/ContactSelector.php:169
+msgid "Cohabiting"
+msgstr "Samenwonend"
 
-#: mod/contacts.php:1001
-msgid "Toggle Archive status"
-msgstr "Schakel archiveringsstatus"
+#: src/Content/ContactSelector.php:169
+msgid "Common law"
+msgstr "getrouwd voor-de-wet"
 
-#: mod/contacts.php:1009
-msgid "Delete contact"
-msgstr "Verwijder contact"
+#: src/Content/ContactSelector.php:169
+msgid "Happy"
+msgstr "Blij"
 
-#: mod/dfrn_confirm.php:127
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd."
+#: src/Content/ContactSelector.php:169
+msgid "Not looking"
+msgstr "Niet op zoek"
 
-#: mod/dfrn_confirm.php:246
-msgid "Response from remote site was not understood."
-msgstr "Antwoord van de website op afstand werd niet begrepen."
+#: src/Content/ContactSelector.php:169
+msgid "Swinger"
+msgstr "Swinger"
 
-#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
-msgid "Unexpected response from remote site: "
-msgstr "Onverwacht antwoord van website op afstand:"
+#: src/Content/ContactSelector.php:169
+msgid "Betrayed"
+msgstr "Bedrogen"
 
-#: mod/dfrn_confirm.php:269
-msgid "Confirmation completed successfully."
-msgstr "Bevestiging werd correct voltooid."
+#: src/Content/ContactSelector.php:169
+msgid "Separated"
+msgstr "Uit elkaar"
 
-#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
-msgid "Remote site reported: "
-msgstr "Website op afstand berichtte: "
+#: src/Content/ContactSelector.php:169
+msgid "Unstable"
+msgstr "Onstabiel"
 
-#: mod/dfrn_confirm.php:283
-msgid "Temporary failure. Please wait and try again."
-msgstr "Tijdelijke fout. Wacht even en probeer opnieuw."
+#: src/Content/ContactSelector.php:169
+msgid "Divorced"
+msgstr "Gescheiden"
 
-#: mod/dfrn_confirm.php:290
-msgid "Introduction failed or was revoked."
-msgstr "Verzoek mislukt of herroepen."
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily divorced"
+msgstr "Denkbeeldig gescheiden"
 
-#: mod/dfrn_confirm.php:419
-msgid "Unable to set contact photo."
-msgstr "Ik kan geen contact foto instellen."
+#: src/Content/ContactSelector.php:169
+msgid "Widowed"
+msgstr "Weduwnaar/weduwe"
 
-#: mod/dfrn_confirm.php:557
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Geen gebruiker gevonden voor '%s'"
+#: src/Content/ContactSelector.php:169
+msgid "Uncertain"
+msgstr "Onzeker"
 
-#: mod/dfrn_confirm.php:567
-msgid "Our site encryption key is apparently messed up."
-msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."
+#: src/Content/ContactSelector.php:169
+msgid "It's complicated"
+msgstr "Het is gecompliceerd"
 
-#: mod/dfrn_confirm.php:578
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons."
+#: src/Content/ContactSelector.php:169
+msgid "Don't care"
+msgstr "Kan me niet schelen"
 
-#: mod/dfrn_confirm.php:599
-msgid "Contact record was not found for you on our site."
-msgstr "We vonden op onze webstek geen contactrecord voor jou."
+#: src/Content/ContactSelector.php:169
+msgid "Ask me"
+msgstr "Vraag me"
+
+#: 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 ""
 
-#: mod/dfrn_confirm.php:613
+#: src/Database/DBStructure.php:80
 #, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s."
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr ""
 
-#: mod/dfrn_confirm.php:633
+#: src/Database/DBStructure.php:191
+#, php-format
 msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken."
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr ""
 
-#: mod/dfrn_confirm.php:644
-msgid "Unable to set your contact credentials on our system."
-msgstr "Niet in staat om op dit systeem je contactreferenties in te stellen."
+#: src/Database/DBStructure.php:194
+msgid "Errors encountered performing database changes: "
+msgstr ""
 
-#: mod/dfrn_confirm.php:703
-msgid "Unable to update your contact profile details on our system"
+#: src/Database/DBStructure.php:210
+msgid ": Database update"
 msgstr ""
 
-#: mod/dfrn_confirm.php:775
+#: src/Database/DBStructure.php:460
 #, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s is toegetreden tot %2$s"
+msgid "%s: updating %s table."
+msgstr ""
 
-#: mod/dfrn_request.php:101
-msgid "This introduction has already been accepted."
-msgstr "Verzoek is al goedgekeurd"
+#: src/Model/Mail.php:40 src/Model/Mail.php:174
+msgid "[no subject]"
+msgstr "[geen onderwerp]"
 
-#: mod/dfrn_request.php:124 mod/dfrn_request.php:520
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profiel is ongeldig of bevat geen informatie"
+#: src/Model/Profile.php:97
+msgid "Requested account is not available."
+msgstr "Gevraagde account is niet beschikbaar."
 
-#: mod/dfrn_request.php:129 mod/dfrn_request.php:525
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar."
+#: src/Model/Profile.php:168 src/Model/Profile.php:399
+#: src/Model/Profile.php:859
+msgid "Edit profile"
+msgstr "Bewerk profiel"
 
-#: mod/dfrn_request.php:131 mod/dfrn_request.php:527
-msgid "Warning: profile location has no profile photo."
-msgstr "Waarschuwing: Profieladres heeft geen profielfoto."
+#: src/Model/Profile.php:336
+msgid "Atom feed"
+msgstr ""
 
-#: mod/dfrn_request.php:134 mod/dfrn_request.php:530
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "De %d vereiste parameter is niet op het gegeven adres gevonden"
-msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden"
+#: src/Model/Profile.php:372
+msgid "Manage/edit profiles"
+msgstr "Beheer/wijzig profielen"
 
-#: mod/dfrn_request.php:180
-msgid "Introduction complete."
-msgstr "Verzoek voltooid."
+#: src/Model/Profile.php:548 src/Model/Profile.php:641
+msgid "g A l F d"
+msgstr "G l j F"
 
-#: mod/dfrn_request.php:222
-msgid "Unrecoverable protocol error."
-msgstr "Onherstelbare protocolfout. "
+#: src/Model/Profile.php:549
+msgid "F d"
+msgstr "d F"
 
-#: mod/dfrn_request.php:250
-msgid "Profile unavailable."
-msgstr "Profiel onbeschikbaar"
+#: src/Model/Profile.php:606 src/Model/Profile.php:703
+msgid "[today]"
+msgstr "[vandaag]"
 
-#: mod/dfrn_request.php:277
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s heeft te veel verzoeken gehad vandaag."
+#: src/Model/Profile.php:617
+msgid "Birthday Reminders"
+msgstr "Verjaardagsherinneringen"
 
-#: mod/dfrn_request.php:278
-msgid "Spam protection measures have been invoked."
-msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden."
+#: src/Model/Profile.php:618
+msgid "Birthdays this week:"
+msgstr "Verjaardagen deze week:"
 
-#: mod/dfrn_request.php:279
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen."
+#: src/Model/Profile.php:690
+msgid "[No description]"
+msgstr "[Geen omschrijving]"
 
-#: mod/dfrn_request.php:341
-msgid "Invalid locator"
-msgstr "Ongeldige plaatsbepaler"
+#: src/Model/Profile.php:717
+msgid "Event Reminders"
+msgstr "Gebeurtenisherinneringen"
 
-#: mod/dfrn_request.php:350
-msgid "Invalid email address."
-msgstr "Geen geldig e-mailadres"
+#: src/Model/Profile.php:718
+msgid "Events this week:"
+msgstr "Gebeurtenissen deze week:"
 
-#: mod/dfrn_request.php:375
-msgid "This account has not been configured for email. Request failed."
-msgstr "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail."
+#: src/Model/Profile.php:741
+msgid "Member since:"
+msgstr ""
 
-#: mod/dfrn_request.php:478
-msgid "You have already introduced yourself here."
-msgstr "Je hebt jezelf hier al voorgesteld."
+#: src/Model/Profile.php:749
+msgid "j F, Y"
+msgstr "F j Y"
 
-#: mod/dfrn_request.php:482
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Blijkbaar bent u al bevriend met %s."
+#: src/Model/Profile.php:750
+msgid "j F"
+msgstr "F j"
 
-#: mod/dfrn_request.php:503
-msgid "Invalid profile URL."
-msgstr "Ongeldig profiel adres."
+#: src/Model/Profile.php:765
+msgid "Age:"
+msgstr "Leeftijd:"
 
-#: mod/dfrn_request.php:604
-msgid "Your introduction has been sent."
-msgstr "Je verzoek is verzonden."
+#: src/Model/Profile.php:778
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "voor %1$d %2$s"
 
-#: mod/dfrn_request.php:644
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
-msgstr ""
+#: src/Model/Profile.php:802
+msgid "Religion:"
+msgstr "Religie:"
 
-#: mod/dfrn_request.php:664
-msgid "Please login to confirm introduction."
-msgstr "Log in om je verzoek te bevestigen."
+#: src/Model/Profile.php:810
+msgid "Hobbies/Interests:"
+msgstr "Hobby:"
 
-#: mod/dfrn_request.php:674
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Je huidige identiteit is niet de juiste. Log met <strong>dit</strong> profiel in."
+#: src/Model/Profile.php:822
+msgid "Contact information and Social Networks:"
+msgstr "Contactinformatie en sociale netwerken:"
 
-#: mod/dfrn_request.php:688 mod/dfrn_request.php:705
-msgid "Confirm"
-msgstr "Bevestig"
+#: src/Model/Profile.php:826
+msgid "Musical interests:"
+msgstr "Muzikale interesse "
 
-#: mod/dfrn_request.php:700
-msgid "Hide this contact"
-msgstr "Verberg dit contact"
+#: src/Model/Profile.php:830
+msgid "Books, literature:"
+msgstr "Boeken, literatuur:"
 
-#: mod/dfrn_request.php:703
-#, php-format
-msgid "Welcome home %s."
-msgstr "Welkom terug %s."
+#: src/Model/Profile.php:834
+msgid "Television:"
+msgstr "Televisie"
 
-#: mod/dfrn_request.php:704
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s."
+#: src/Model/Profile.php:838
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/dans/cultuur/ontspanning:"
 
-#: mod/dfrn_request.php:833
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:"
+#: src/Model/Profile.php:842
+msgid "Love/Romance:"
+msgstr "Liefde/romance:"
 
-#: mod/dfrn_request.php:854
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
-"join us today</a>."
-msgstr ""
+#: src/Model/Profile.php:846
+msgid "Work/employment:"
+msgstr "Werk/beroep:"
 
-#: mod/dfrn_request.php:859
-msgid "Friend/Connection Request"
-msgstr "Vriendschaps-/connectieverzoek"
+#: src/Model/Profile.php:850
+msgid "School/education:"
+msgstr "School/opleiding:"
 
-#: mod/dfrn_request.php:860
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: src/Model/Profile.php:855
+msgid "Forums:"
+msgstr ""
 
-#: mod/dfrn_request.php:861 mod/follow.php:109
-msgid "Please answer the following:"
-msgstr "Beantwoord het volgende:"
+#: src/Model/Profile.php:949
+msgid "Only You Can See This"
+msgstr "Alleen jij kunt dit zien"
 
-#: mod/dfrn_request.php:862 mod/follow.php:110
+#: src/Model/Item.php:1676
 #, php-format
-msgid "Does %s know you?"
-msgstr "Kent %s jou?"
-
-#: mod/dfrn_request.php:866 mod/follow.php:111
-msgid "Add a personal note:"
-msgstr "Voeg een persoonlijke opmerking toe:"
+msgid "%1$s is attending %2$s's %3$s"
+msgstr ""
 
-#: mod/dfrn_request.php:869
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Gefedereerde Sociale Web"
+#: src/Model/Item.php:1681
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr ""
 
-#: mod/dfrn_request.php:871
+#: src/Model/Item.php:1686
 #, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr ""
+
+#: src/Model/Group.php:44
 msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk."
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "
 
-#: mod/dfrn_request.php:872 mod/follow.php:117
-msgid "Your Identity Address:"
-msgstr "Adres van uw identiteit:"
+#: src/Model/Group.php:328
+msgid "Default privacy group for new contacts"
+msgstr ""
 
-#: mod/dfrn_request.php:875 mod/follow.php:19
-msgid "Submit Request"
-msgstr "Aanvraag indienen"
+#: src/Model/Group.php:361
+msgid "Everybody"
+msgstr "Iedereen"
 
-#: mod/follow.php:30
-msgid "You already added this contact."
-msgstr "Je hebt deze kontakt al toegevoegd"
+#: src/Model/Group.php:381
+msgid "edit"
+msgstr "verander"
 
-#: mod/follow.php:39
-msgid "Diaspora support isn't enabled. Contact can't be added."
-msgstr ""
+#: src/Model/Group.php:405
+msgid "Edit group"
+msgstr "Verander groep"
 
-#: mod/follow.php:46
-msgid "OStatus support is disabled. Contact can't be added."
+#: src/Model/Group.php:406
+msgid "Contacts not in any group"
 msgstr ""
 
-#: mod/follow.php:53
-msgid "The network type couldn't be detected. Contact can't be added."
+#: src/Model/Group.php:407
+msgid "Create a new group"
+msgstr "Maak nieuwe groep"
+
+#: src/Model/Group.php:409
+msgid "Edit groups"
 msgstr ""
 
-#: mod/follow.php:180
-msgid "Contact added"
-msgstr "Contact toegevoegd"
+#: src/Model/Contact.php:645
+msgid "Drop Contact"
+msgstr "Verwijder contact"
 
-#: mod/install.php:139
-msgid "Friendica Communications Server - Setup"
+#: src/Model/Contact.php:1048
+msgid "Organisation"
 msgstr ""
 
-#: mod/install.php:145
-msgid "Could not connect to database."
-msgstr "Kon geen toegang krijgen tot de database."
+#: src/Model/Contact.php:1051
+msgid "News"
+msgstr ""
 
-#: mod/install.php:149
-msgid "Could not create table."
-msgstr "Kon tabel niet aanmaken."
+#: src/Model/Contact.php:1054
+msgid "Forum"
+msgstr "Forum"
 
-#: mod/install.php:155
-msgid "Your Friendica site database has been installed."
-msgstr "De database van je Friendica-website is geïnstalleerd."
+#: src/Model/Contact.php:1233
+msgid "Connect URL missing."
+msgstr ""
 
-#: mod/install.php:160
+#: src/Model/Contact.php:1242
 msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql."
+"The contact could not be added. Please check the relevant network "
+"credentials in your Settings -> Social Networks page."
+msgstr ""
 
-#: mod/install.php:161 mod/install.php:230 mod/install.php:607
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Zie het bestand \"INSTALL.txt\"."
+#: src/Model/Contact.php:1289
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken."
 
-#: mod/install.php:173
-msgid "Database already in use."
-msgstr ""
+#: src/Model/Contact.php:1290 src/Model/Contact.php:1304
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt."
 
-#: mod/install.php:227
-msgid "System check"
-msgstr "Systeemcontrole"
+#: src/Model/Contact.php:1302
+msgid "The profile address specified does not provide adequate information."
+msgstr ""
 
-#: mod/install.php:232
-msgid "Check again"
-msgstr "Controleer opnieuw"
+#: src/Model/Contact.php:1307
+msgid "An author or name was not found."
+msgstr ""
 
-#: mod/install.php:251
-msgid "Database connection"
-msgstr "Verbinding met database"
+#: src/Model/Contact.php:1310
+msgid "No browser URL could be matched to this address."
+msgstr ""
 
-#: mod/install.php:252
+#: src/Model/Contact.php:1313
 msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken."
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact."
+
+#: src/Model/Contact.php:1314
+msgid "Use mailto: in front of address to force email check."
+msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."
 
-#: mod/install.php:253
+#: src/Model/Contact.php:1320
 msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. "
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr ""
 
-#: mod/install.php:254
+#: src/Model/Contact.php:1325
 msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat."
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr ""
 
-#: mod/install.php:258
-msgid "Database Server Name"
-msgstr "Servernaam database"
+#: src/Model/Contact.php:1376
+msgid "Unable to retrieve contact information."
+msgstr ""
 
-#: mod/install.php:259
-msgid "Database Login Name"
-msgstr "Gebruikersnaam database"
+#: src/Model/Contact.php:1588
+#, php-format
+msgid "%s's birthday"
+msgstr "%s's verjaardag"
 
-#: mod/install.php:260
-msgid "Database Login Password"
-msgstr "Wachtwoord database"
+#: src/Model/Contact.php:1589 src/Protocol/DFRN.php:1478
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Gefeliciteerd %s"
 
-#: mod/install.php:261
-msgid "Database Name"
-msgstr "Naam database"
+#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
+#: src/Model/Event.php:882
+msgid "Starts:"
+msgstr "Begint:"
 
-#: mod/install.php:262 mod/install.php:303
-msgid "Site administrator email address"
-msgstr "E-mailadres van de websitebeheerder"
+#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420
+#: src/Model/Event.php:886
+msgid "Finishes:"
+msgstr "Eindigt:"
 
-#: mod/install.php:262 mod/install.php:303
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken."
+#: src/Model/Event.php:368
+msgid "all-day"
+msgstr ""
 
-#: mod/install.php:266 mod/install.php:306
-msgid "Please select a default timezone for your website"
-msgstr "Selecteer een standaard tijdzone voor uw website"
+#: src/Model/Event.php:391
+msgid "Jun"
+msgstr "Jun"
 
-#: mod/install.php:293
-msgid "Site settings"
-msgstr "Website-instellingen"
+#: src/Model/Event.php:394
+msgid "Sept"
+msgstr "Sep"
 
-#: mod/install.php:307
-msgid "System Language:"
+#: src/Model/Event.php:417
+msgid "No events to display"
 msgstr ""
 
-#: mod/install.php:307
-msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
-msgstr ""
+#: src/Model/Event.php:543
+msgid "l, F j"
+msgstr "l j F"
 
-#: mod/install.php:347
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver."
+#: src/Model/Event.php:566
+msgid "Edit event"
+msgstr "Gebeurtenis bewerken"
 
-#: mod/install.php:348
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
-"up-the-poller'>'Setup the poller'</a>"
+#: src/Model/Event.php:567
+msgid "Duplicate event"
 msgstr ""
 
-#: mod/install.php:352
-msgid "PHP executable path"
-msgstr "PATH van het PHP commando"
+#: src/Model/Event.php:568
+msgid "Delete event"
+msgstr ""
 
-#: mod/install.php:352
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten."
+#: src/Model/Event.php:815
+msgid "D g:i A"
+msgstr "D g:i A"
 
-#: mod/install.php:357
-msgid "Command line PHP"
-msgstr "PHP-opdrachtregel"
+#: src/Model/Event.php:816
+msgid "g:i A"
+msgstr "g:i A"
 
-#: mod/install.php:366
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr ""
+#: src/Model/Event.php:901 src/Model/Event.php:903
+msgid "Show map"
+msgstr "Toon kaart"
 
-#: mod/install.php:367
-msgid "Found PHP version: "
-msgstr "Gevonden PHP versie:"
+#: src/Model/Event.php:902
+msgid "Hide map"
+msgstr "Verberg kaart"
 
-#: mod/install.php:369
-msgid "PHP cli binary"
+#: src/Model/User.php:144
+msgid "Login failed"
 msgstr ""
 
-#: mod/install.php:380
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd."
+#: src/Model/User.php:175
+msgid "Not enough information to authenticate"
+msgstr ""
 
-#: mod/install.php:381
-msgid "This is required for message delivery to work."
-msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken."
+#: src/Model/User.php:332
+msgid "An invitation is required."
+msgstr "Een uitnodiging is vereist."
 
-#: mod/install.php:383
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: src/Model/User.php:336
+msgid "Invitation could not be verified."
+msgstr "Uitnodiging kon niet geverifieerd worden."
 
-#: mod/install.php:404
+#: src/Model/User.php:343
+msgid "Invalid OpenID url"
+msgstr "Ongeldige OpenID url"
+
+#: src/Model/User.php:356 src/Module/Login.php:100
 msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
 msgstr ""
 
-#: mod/install.php:405
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait."
+#: src/Model/User.php:356 src/Module/Login.php:100
+msgid "The error message was:"
+msgstr "De foutboodschap was:"
 
-#: mod/install.php:407
-msgid "Generate encryption keys"
-msgstr ""
+#: src/Model/User.php:362
+msgid "Please enter the required information."
+msgstr "Vul de vereiste informatie in."
 
-#: mod/install.php:414
-msgid "libCurl PHP module"
-msgstr "libCurl PHP module"
+#: src/Model/User.php:375
+msgid "Please use a shorter name."
+msgstr "gebruik een kortere naam"
 
-#: mod/install.php:415
-msgid "GD graphics PHP module"
-msgstr "GD graphics PHP module"
+#: src/Model/User.php:378
+msgid "Name too short."
+msgstr "Naam te kort"
 
-#: mod/install.php:416
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP module"
+#: src/Model/User.php:386
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."
 
-#: mod/install.php:417
-msgid "mysqli PHP module"
-msgstr "mysqli PHP module"
+#: src/Model/User.php:391
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Je e-maildomein is op deze website niet toegestaan."
 
-#: mod/install.php:418
-msgid "mb_string PHP module"
-msgstr "mb_string PHP module"
+#: src/Model/User.php:395
+msgid "Not a valid email address."
+msgstr "Geen geldig e-mailadres."
+
+#: src/Model/User.php:399 src/Model/User.php:407
+msgid "Cannot use that email."
+msgstr "Ik kan die e-mail niet gebruiken."
 
-#: mod/install.php:419
-msgid "mcrypt PHP module"
+#: src/Model/User.php:414
+msgid "Your nickname can only contain a-z, 0-9 and _."
 msgstr ""
 
-#: mod/install.php:420
-msgid "XML PHP module"
+#: src/Model/User.php:421 src/Model/User.php:477
+msgid "Nickname is already registered. Please choose another."
+msgstr "Bijnaam is al geregistreerd. Kies een andere."
+
+#: src/Model/User.php:431
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."
+
+#: src/Model/User.php:464 src/Model/User.php:468
+msgid "An error occurred during registration. Please try again."
 msgstr ""
 
-#: mod/install.php:421
-msgid "iconv module"
+#: src/Model/User.php:488 view/theme/duepuntozero/config.php:54
+msgid "default"
+msgstr "standaard"
+
+#: src/Model/User.php:493
+msgid "An error occurred creating your default profile. Please try again."
 msgstr ""
 
-#: mod/install.php:425 mod/install.php:427
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: src/Model/User.php:500
+msgid "An error occurred creating your self contact. Please try again."
+msgstr ""
 
-#: mod/install.php:425
+#: src/Model/User.php:509
 msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd."
+"An error occurred creating your default contact group. Please try again."
+msgstr ""
 
-#: mod/install.php:433
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd."
+#: src/Model/User.php:583
+#, 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 ""
 
-#: mod/install.php:437
+#: src/Model/User.php:593
+#, php-format
+msgid "Registration at %s"
+msgstr ""
+
+#: src/Model/User.php:611
+#, php-format
 msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd."
+"\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/install.php:441
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd."
+#: src/Protocol/OStatus.php:1799
+#, php-format
+msgid "%s is now following %s."
+msgstr "%s volgt nu %s."
 
-#: mod/install.php:445
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd."
+#: src/Protocol/OStatus.php:1800
+msgid "following"
+msgstr "volgend"
 
-#: mod/install.php:449
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd."
+#: src/Protocol/OStatus.php:1803
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%s stopte %s te volgen."
 
-#: mod/install.php:453
-msgid "Error: mcrypt PHP module required but not installed."
+#: src/Protocol/OStatus.php:1804
+msgid "stopped following"
 msgstr ""
 
-#: mod/install.php:457
-msgid "Error: iconv PHP module required but not installed."
-msgstr ""
+#: src/Protocol/DFRN.php:1477
+#, php-format
+msgid "%s\\'s birthday"
+msgstr "%s\\'s verjaardag"
 
-#: mod/install.php:466
-msgid ""
-"If you are using php_cli, please make sure that mcrypt module is enabled in "
-"its config file"
-msgstr ""
+#: src/Protocol/Diaspora.php:2651
+msgid "Sharing notification from Diaspora network"
+msgstr "Deelt notificatie van het Diaspora netwerk"
 
-#: mod/install.php:469
-msgid ""
-"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
-"encryption layer."
-msgstr ""
+#: src/Protocol/Diaspora.php:3736
+msgid "Attachments:"
+msgstr "Bijlagen:"
 
-#: mod/install.php:471
-msgid "mcrypt_create_iv() function"
-msgstr ""
+#: src/Worker/Delivery.php:392
+msgid "(no subject)"
+msgstr "(geen onderwerp)"
 
-#: mod/install.php:479
-msgid "Error, XML PHP module required but not installed."
+#: src/Object/Post.php:128
+msgid "This entry was edited"
 msgstr ""
 
-#: mod/install.php:494
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen."
-
-#: mod/install.php:495
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel."
+#: src/Object/Post.php:182
+msgid "save to folder"
+msgstr "Bewaren in map"
 
-#: mod/install.php:496
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map."
+#: src/Object/Post.php:235
+msgid "I will attend"
+msgstr "Ik zal er zijn"
 
-#: mod/install.php:497
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies."
+#: src/Object/Post.php:235
+msgid "I will not attend"
+msgstr "Ik zal er niet zijn"
 
-#: mod/install.php:500
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php is schrijfbaar"
+#: src/Object/Post.php:235
+msgid "I might attend"
+msgstr "Ik ga misschien"
 
-#: mod/install.php:510
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen."
+#: src/Object/Post.php:263
+msgid "add star"
+msgstr "ster toevoegen"
 
-#: mod/install.php:511
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie."
+#: src/Object/Post.php:264
+msgid "remove star"
+msgstr "ster verwijderen"
 
-#: mod/install.php:512
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map."
+#: src/Object/Post.php:265
+msgid "toggle star status"
+msgstr "ster toevoegen of verwijderen"
 
-#: mod/install.php:513
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten."
+#: src/Object/Post.php:268
+msgid "starred"
+msgstr "met ster"
 
-#: mod/install.php:516
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 is schrijfbaar"
+#: src/Object/Post.php:274
+msgid "ignore thread"
+msgstr ""
 
-#: mod/install.php:532
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
+#: src/Object/Post.php:275
+msgid "unignore thread"
 msgstr ""
 
-#: mod/install.php:534
-msgid "Url rewrite is working"
+#: src/Object/Post.php:276
+msgid "toggle ignore status"
 msgstr ""
 
-#: mod/install.php:552
-msgid "ImageMagick PHP extension is not installed"
-msgstr ""
+#: src/Object/Post.php:285
+msgid "add tag"
+msgstr "label toevoegen"
+
+#: src/Object/Post.php:296
+msgid "like"
+msgstr "leuk"
+
+#: src/Object/Post.php:297
+msgid "dislike"
+msgstr "niet leuk"
+
+#: src/Object/Post.php:300
+msgid "Share this"
+msgstr "Delen"
+
+#: src/Object/Post.php:300
+msgid "share"
+msgstr "Delen"
 
-#: mod/install.php:555
-msgid "ImageMagick PHP extension is installed"
-msgstr ""
+#: src/Object/Post.php:359
+msgid "to"
+msgstr "aan"
 
-#: mod/install.php:557
-msgid "ImageMagick supports GIF"
-msgstr ""
+#: src/Object/Post.php:360
+msgid "via"
+msgstr "via"
 
-#: mod/install.php:566
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver."
+#: src/Object/Post.php:361
+msgid "Wall-to-Wall"
+msgstr "wall-to-wall"
 
-#: mod/install.php:605
-msgid "<h1>What next</h1>"
-msgstr "<h1>Wat nu</h1>"
+#: src/Object/Post.php:362
+msgid "via Wall-To-Wall:"
+msgstr "via wall-to-wall"
 
-#: mod/install.php:606
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller."
+#: src/Object/Post.php:421
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d reactie"
+msgstr[1] "%d reacties"
 
-#: mod/item.php:116
-msgid "Unable to locate original post."
-msgstr "Ik kan de originele post niet meer vinden."
+#: src/Object/Post.php:791
+msgid "Bold"
+msgstr "Vet"
 
-#: mod/item.php:341
-msgid "Empty post discarded."
-msgstr "Lege post weggegooid."
+#: src/Object/Post.php:792
+msgid "Italic"
+msgstr "Cursief"
 
-#: mod/item.php:902
-msgid "System error. Post not saved."
-msgstr "Systeemfout. Post niet bewaard."
+#: src/Object/Post.php:793
+msgid "Underline"
+msgstr "Onderstrepen"
 
-#: mod/item.php:992
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk."
+#: src/Object/Post.php:794
+msgid "Quote"
+msgstr "Citeren"
 
-#: mod/item.php:994
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Je kunt ze online bezoeken op %s"
+#: src/Object/Post.php:795
+msgid "Code"
+msgstr "Broncode"
 
-#: mod/item.php:995
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen."
+#: src/Object/Post.php:796
+msgid "Image"
+msgstr "Afbeelding"
 
-#: mod/item.php:999
-#, php-format
-msgid "%s posted an update."
-msgstr "%s heeft een wijziging geplaatst."
+#: src/Object/Post.php:797
+msgid "Link"
+msgstr "Link"
 
-#: mod/network.php:398
-#, 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] ""
+#: src/Object/Post.php:798
+msgid "Video"
+msgstr "Video"
 
-#: mod/network.php:401
-msgid "Messages in this group won't be send to these receivers."
-msgstr ""
+#: src/Module/Login.php:282
+msgid "Create a New Account"
+msgstr "Nieuwe account aanmaken"
 
-#: mod/network.php:529
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."
+#: src/Module/Login.php:315
+msgid "Password: "
+msgstr "Wachtwoord:"
 
-#: mod/network.php:534
-msgid "Invalid contact."
-msgstr "Ongeldig contact."
+#: src/Module/Login.php:316
+msgid "Remember me"
+msgstr "Onthou me"
 
-#: mod/network.php:826
-msgid "Commented Order"
-msgstr "Nieuwe reacties bovenaan"
+#: src/Module/Login.php:319
+msgid "Or login using OpenID: "
+msgstr "Of log in met OpenID:"
 
-#: mod/network.php:829
-msgid "Sort by Comment Date"
-msgstr "Berichten met nieuwe reacties bovenaan"
+#: src/Module/Login.php:325
+msgid "Forgot your password?"
+msgstr "Wachtwoord vergeten?"
 
-#: mod/network.php:834
-msgid "Posted Order"
-msgstr "Nieuwe berichten bovenaan"
+#: src/Module/Login.php:328
+msgid "Website Terms of Service"
+msgstr "Gebruikersvoorwaarden website"
 
-#: mod/network.php:837
-msgid "Sort by Post Date"
-msgstr "Nieuwe berichten bovenaan"
+#: src/Module/Login.php:329
+msgid "terms of service"
+msgstr "servicevoorwaarden"
 
-#: mod/network.php:848
-msgid "Posts that mention or involve you"
-msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben"
+#: src/Module/Login.php:331
+msgid "Website Privacy Policy"
+msgstr "Privacybeleid website"
 
-#: mod/network.php:856
-msgid "New"
-msgstr "Nieuw"
+#: src/Module/Login.php:332
+msgid "privacy policy"
+msgstr "privacybeleid"
 
-#: mod/network.php:859
-msgid "Activity Stream - by date"
-msgstr "Activiteitenstroom - volgens datum"
+#: src/Module/Logout.php:28
+msgid "Logged out."
+msgstr "Uitgelogd."
 
-#: mod/network.php:867
-msgid "Shared Links"
-msgstr "Gedeelde links"
+#: src/App.php:511
+msgid "Delete this item?"
+msgstr "Dit item verwijderen?"
 
-#: mod/network.php:870
-msgid "Interesting Links"
-msgstr "Interessante links"
+#: src/App.php:513
+msgid "show fewer"
+msgstr "Minder tonen"
 
-#: mod/network.php:878
-msgid "Starred"
-msgstr "Met ster"
+#: view/theme/duepuntozero/config.php:55
+msgid "greenzero"
+msgstr ""
 
-#: mod/network.php:881
-msgid "Favourite Posts"
-msgstr "Favoriete berichten"
+#: view/theme/duepuntozero/config.php:56
+msgid "purplezero"
+msgstr ""
 
-#: mod/ping.php:261
-msgid "{0} wants to be your friend"
-msgstr "{0} wilt je vriend worden"
+#: view/theme/duepuntozero/config.php:57
+msgid "easterbunny"
+msgstr ""
 
-#: mod/ping.php:276
-msgid "{0} sent you a message"
-msgstr "{0} stuurde jou een bericht"
+#: view/theme/duepuntozero/config.php:58
+msgid "darkzero"
+msgstr ""
 
-#: mod/ping.php:291
-msgid "{0} requested registration"
-msgstr "{0} vroeg om zich te registreren"
+#: view/theme/duepuntozero/config.php:59
+msgid "comix"
+msgstr ""
 
-#: mod/viewcontacts.php:72
-msgid "No contacts."
-msgstr "Geen contacten."
+#: view/theme/duepuntozero/config.php:60
+msgid "slackr"
+msgstr ""
 
-#: object/Item.php:370
-msgid "via"
-msgstr "via"
+#: view/theme/duepuntozero/config.php:74
+msgid "Variations"
+msgstr ""
 
-#: view/theme/frio/php/Image.php:23
+#: view/theme/frio/php/Image.php:25
 msgid "Repeat the image"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:23
+#: view/theme/frio/php/Image.php:25
 msgid "Will repeat your image to fill the background."
 msgstr ""
 
-#: view/theme/frio/php/Image.php:25
+#: view/theme/frio/php/Image.php:27
 msgid "Stretch"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:25
+#: view/theme/frio/php/Image.php:27
 msgid "Will stretch to width/height of the image."
 msgstr ""
 
-#: view/theme/frio/php/Image.php:27
+#: view/theme/frio/php/Image.php:29
 msgid "Resize fill and-clip"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:27
+#: view/theme/frio/php/Image.php:29
 msgid "Resize to fill and retain aspect ratio."
 msgstr ""
 
-#: view/theme/frio/php/Image.php:29
+#: view/theme/frio/php/Image.php:31
 msgid "Resize best fit"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:29
+#: view/theme/frio/php/Image.php:31
 msgid "Resize to best fit and retain aspect ratio."
 msgstr ""
 
-#: view/theme/frio/config.php:42
+#: view/theme/frio/config.php:97
 msgid "Default"
 msgstr ""
 
-#: view/theme/frio/config.php:54
-msgid "Note"
+#: view/theme/frio/config.php:109
+msgid "Note"
 msgstr ""
 
-#: view/theme/frio/config.php:54
+#: view/theme/frio/config.php:109
 msgid "Check image permissions if all users are allowed to visit the image"
 msgstr ""
 
-#: view/theme/frio/config.php:62
+#: view/theme/frio/config.php:116
 msgid "Select scheme"
 msgstr ""
 
-#: view/theme/frio/config.php:63
+#: view/theme/frio/config.php:117
 msgid "Navigation bar background color"
 msgstr ""
 
-#: view/theme/frio/config.php:64
+#: view/theme/frio/config.php:118
 msgid "Navigation bar icon color "
 msgstr ""
 
-#: view/theme/frio/config.php:65
+#: view/theme/frio/config.php:119
 msgid "Link color"
 msgstr ""
 
-#: view/theme/frio/config.php:66
+#: view/theme/frio/config.php:120
 msgid "Set the background color"
 msgstr ""
 
-#: view/theme/frio/config.php:67
-msgid "Content background transparency"
+#: view/theme/frio/config.php:121
+msgid "Content background opacity"
 msgstr ""
 
-#: view/theme/frio/config.php:68
+#: view/theme/frio/config.php:122
 msgid "Set the background image"
 msgstr ""
 
-#: view/theme/frio/theme.php:229
+#: view/theme/frio/config.php:127
+msgid "Login page background image"
+msgstr "Achtergrondafbeelding aanmeldpagina"
+
+#: view/theme/frio/config.php:130
+msgid "Login page background color"
+msgstr "Achtergrondkleur aanmeldpagina"
+
+#: view/theme/frio/config.php:130
+msgid "Leave background image and color empty for theme defaults"
+msgstr "Laat de achtergrondafbeelding en kleur leeg om de standaard van het thema te gebruiken"
+
+#: view/theme/frio/theme.php:238
 msgid "Guest"
-msgstr ""
+msgstr "Gast"
 
-#: view/theme/frio/theme.php:235
+#: view/theme/frio/theme.php:243
 msgid "Visitor"
-msgstr ""
+msgstr "Bezoeker"
 
-#: view/theme/quattro/config.php:67
+#: view/theme/quattro/config.php:76
 msgid "Alignment"
 msgstr "Uitlijning"
 
-#: view/theme/quattro/config.php:67
+#: view/theme/quattro/config.php:76
 msgid "Left"
 msgstr "Links"
 
-#: view/theme/quattro/config.php:67
+#: view/theme/quattro/config.php:76
 msgid "Center"
 msgstr "Gecentreerd"
 
-#: view/theme/quattro/config.php:68
+#: view/theme/quattro/config.php:77
 msgid "Color scheme"
 msgstr "Kleurschema"
 
-#: view/theme/quattro/config.php:69
+#: view/theme/quattro/config.php:78
 msgid "Posts font size"
 msgstr "Lettergrootte berichten"
 
-#: view/theme/quattro/config.php:70
+#: view/theme/quattro/config.php:79
 msgid "Textareas font size"
 msgstr "Lettergrootte tekstgebieden"
 
-#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112
-msgid "Community Profiles"
-msgstr "Forum/groepsprofielen"
-
-#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116
-msgid "Last users"
-msgstr "Laatste gebruikers"
-
-#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115
-msgid "Find Friends"
-msgstr "Zoek vrienden"
-
-#: view/theme/vier/theme.php:200
-msgid "Local Directory"
-msgstr "Lokale gids"
-
-#: view/theme/vier/theme.php:291
-msgid "Quick Start"
-msgstr ""
-
-#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114
-msgid "Connect Services"
-msgstr "Diensten verbinden"
-
-#: view/theme/vier/config.php:64
+#: view/theme/vier/config.php:75
 msgid "Comma separated list of helper forums"
-msgstr ""
+msgstr "Kommagescheiden lijst van de helper forums"
 
-#: view/theme/vier/config.php:110
+#: view/theme/vier/config.php:122
 msgid "Set style"
-msgstr ""
+msgstr "Stijl instellen"
 
-#: view/theme/vier/config.php:111
+#: view/theme/vier/config.php:123
 msgid "Community Pages"
 msgstr "Forum/groepspagina's"
 
-#: view/theme/vier/config.php:113
-msgid "Help or @NewHere ?"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:45
-msgid "greenzero"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:46
-msgid "purplezero"
-msgstr ""
+#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150
+msgid "Community Profiles"
+msgstr "Forum/groepsprofielen"
 
-#: view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
-msgstr ""
+#: view/theme/vier/config.php:125
+msgid "Help or @NewHere ?"
+msgstr "Help of @NewHere ?"
 
-#: view/theme/duepuntozero/config.php:48
-msgid "darkzero"
-msgstr ""
+#: view/theme/vier/config.php:126 view/theme/vier/theme.php:389
+msgid "Connect Services"
+msgstr "Diensten verbinden"
 
-#: view/theme/duepuntozero/config.php:49
-msgid "comix"
-msgstr ""
+#: view/theme/vier/config.php:127 view/theme/vier/theme.php:199
+msgid "Find Friends"
+msgstr "Zoek vrienden"
 
-#: view/theme/duepuntozero/config.php:50
-msgid "slackr"
-msgstr ""
+#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181
+msgid "Last users"
+msgstr "Laatste gebruikers"
 
-#: view/theme/duepuntozero/config.php:62
-msgid "Variations"
-msgstr ""
+#: view/theme/vier/theme.php:200
+msgid "Local Directory"
+msgstr "Lokale gids"
 
-#: boot.php:970
-msgid "Delete this item?"
-msgstr "Dit item verwijderen?"
+#: view/theme/vier/theme.php:292
+msgid "Quick Start"
+msgstr "Snelstart"
 
-#: boot.php:973
-msgid "show fewer"
-msgstr "Minder tonen"
+#: index.php:444
+msgid "toggle mobile"
+msgstr "mobiel thema omwisselen"
 
-#: boot.php:1655
+#: boot.php:791
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Wijziging %s mislukt. Lees de error logbestanden."
-
-#: boot.php:1767
-msgid "Create a New Account"
-msgstr "Nieuwe account aanmaken"
-
-#: boot.php:1796
-msgid "Password: "
-msgstr "Wachtwoord:"
-
-#: boot.php:1797
-msgid "Remember me"
-msgstr "Onthou me"
-
-#: boot.php:1800
-msgid "Or login using OpenID: "
-msgstr "Of log in met OpenID:"
-
-#: boot.php:1806
-msgid "Forgot your password?"
-msgstr "Wachtwoord vergeten?"
-
-#: boot.php:1809
-msgid "Website Terms of Service"
-msgstr "Gebruikersvoorwaarden website"
-
-#: boot.php:1810
-msgid "terms of service"
-msgstr "servicevoorwaarden"
-
-#: boot.php:1812
-msgid "Website Privacy Policy"
-msgstr "Privacybeleid website"
-
-#: boot.php:1813
-msgid "privacy policy"
-msgstr "privacybeleid"
-
-#: index.php:451
-msgid "toggle mobile"
-msgstr "mobiel thema omwisselen"
index dd8a4c9cac97d99842f2ba6038b516c36b0335a9..be5133110622aa75450819231dd2a3497e305790 100644 (file)
@@ -5,227 +5,158 @@ function string_plural_select_nl($n){
        return ($n != 1);;
 }}
 ;
-$a->strings["Add New Contact"] = "Nieuw Contact toevoegen";
-$a->strings["Enter address or web location"] = "Voeg een webadres of -locatie in:";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara";
-$a->strings["Connect"] = "Verbinden";
-$a->strings["%d invitation available"] = [
-       0 => "%d uitnodiging beschikbaar",
-       1 => "%d uitnodigingen beschikbaar",
-];
-$a->strings["Find People"] = "Zoek mensen";
-$a->strings["Enter name or interest"] = "Vul naam of interesse in";
-$a->strings["Connect/Follow"] = "Verbind/Volg";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeelden: Jan Peeters, Vissen";
-$a->strings["Find"] = "Zoek";
-$a->strings["Friend Suggestions"] = "Vriendschapsvoorstellen";
-$a->strings["Similar Interests"] = "Dezelfde interesses";
-$a->strings["Random Profile"] = "Willekeurig Profiel";
-$a->strings["Invite Friends"] = "Vrienden uitnodigen";
-$a->strings["Networks"] = "Netwerken";
-$a->strings["All Networks"] = "Alle netwerken";
-$a->strings["Saved Folders"] = "Bewaarde Mappen";
-$a->strings["Everything"] = "Alles";
-$a->strings["Categories"] = "Categorieën";
-$a->strings["%d contact in common"] = [
-       0 => "%d gedeeld contact",
-       1 => "%d gedeelde contacten",
+$a->strings["Welcome "] = "Welkom";
+$a->strings["Please upload a profile photo."] = "Upload een profielfoto.";
+$a->strings["Welcome back "] = "Welkom terug ";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "De beveiligingstoken van het formulier was foutief. Dit gebeurde waarschijnlijk omdat het formulier te lang (> 3 uur)  is blijven open staan voor het werd verstuurd.";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan de DNS informatie niet vinden voor server '%s'";
+$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [
+       0 => "De dagelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard.",
+       1 => "De dagelijkse limiet van %d berichten is bereikt.  Dit bericht werd niet aanvaard.",
 ];
-$a->strings["show more"] = "toon meer";
-$a->strings["Forums"] = "";
-$a->strings["External link to forum"] = "";
-$a->strings["Male"] = "Man";
-$a->strings["Female"] = "Vrouw";
-$a->strings["Currently Male"] = "Momenteel mannelijk";
-$a->strings["Currently Female"] = "Momenteel vrouwelijk";
-$a->strings["Mostly Male"] = "Meestal mannelijk";
-$a->strings["Mostly Female"] = "Meestal vrouwelijk";
-$a->strings["Transgender"] = "Transgender";
-$a->strings["Intersex"] = "Interseksueel";
-$a->strings["Transsexual"] = "Transseksueel";
-$a->strings["Hermaphrodite"] = "Hermafrodiet";
-$a->strings["Neuter"] = "Genderneutraal";
-$a->strings["Non-specific"] = "Niet-specifiek";
-$a->strings["Other"] = "Anders";
-$a->strings["Undecided"] = [
-       0 => "",
-       1 => "",
+$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [
+       0 => "De wekelijkse limiet van %d bericht is bereikt.  Dit bericht werd niet aanvaard.",
+       1 => "De wekelijkse limiet van %d berichten is bereikt.  Dit bericht werd niet aanvaard.",
 ];
-$a->strings["Males"] = "Mannen";
-$a->strings["Females"] = "Vrouwen";
-$a->strings["Gay"] = "Homo";
-$a->strings["Lesbian"] = "Lesbienne";
-$a->strings["No Preference"] = "Geen voorkeur";
-$a->strings["Bisexual"] = "Biseksueel";
-$a->strings["Autosexual"] = "Autoseksueel";
-$a->strings["Abstinent"] = "Onthouder";
-$a->strings["Virgin"] = "Maagd";
-$a->strings["Deviant"] = "Afwijkend";
-$a->strings["Fetish"] = "Fetisj";
-$a->strings["Oodles"] = "Veel";
-$a->strings["Nonsexual"] = "Niet seksueel";
-$a->strings["Single"] = "Alleenstaand";
-$a->strings["Lonely"] = "Eenzaam";
-$a->strings["Available"] = "Beschikbaar";
-$a->strings["Unavailable"] = "Onbeschikbaar";
-$a->strings["Has crush"] = "Verliefd";
-$a->strings["Infatuated"] = "Smoorverliefd";
-$a->strings["Dating"] = "Aan het daten";
-$a->strings["Unfaithful"] = "Ontrouw";
-$a->strings["Sex Addict"] = "Seksverslaafd";
-$a->strings["Friends"] = "Vrienden";
-$a->strings["Friends/Benefits"] = "Vriendschap plus";
-$a->strings["Casual"] = "Ongebonden/vluchtig";
-$a->strings["Engaged"] = "Verloofd";
-$a->strings["Married"] = "Getrouwd";
-$a->strings["Imaginarily married"] = "Denkbeeldig getrouwd";
-$a->strings["Partners"] = "Partners";
-$a->strings["Cohabiting"] = "Samenwonend";
-$a->strings["Common law"] = "getrouwd voor-de-wet";
-$a->strings["Happy"] = "Blij";
-$a->strings["Not looking"] = "Niet op zoek";
-$a->strings["Swinger"] = "Swinger";
-$a->strings["Betrayed"] = "Bedrogen";
-$a->strings["Separated"] = "Uit elkaar";
-$a->strings["Unstable"] = "Onstabiel";
-$a->strings["Divorced"] = "Gescheiden";
-$a->strings["Imaginarily divorced"] = "Denkbeeldig gescheiden";
-$a->strings["Widowed"] = "Weduwnaar/weduwe";
-$a->strings["Uncertain"] = "Onzeker";
-$a->strings["It's complicated"] = "Het is gecompliceerd";
-$a->strings["Don't care"] = "Kan me niet schelen";
-$a->strings["Ask me"] = "Vraag me";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "";
-$a->strings["Logged out."] = "Uitgelogd.";
-$a->strings["Login failed."] = "Login mislukt.";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
-$a->strings["The error message was:"] = "De foutboodschap was:";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. ";
-$a->strings["Default privacy group for new contacts"] = "";
-$a->strings["Everybody"] = "Iedereen";
-$a->strings["edit"] = "verander";
-$a->strings["Groups"] = "Groepen";
-$a->strings["Edit groups"] = "";
-$a->strings["Edit group"] = "Verander groep";
-$a->strings["Create a new group"] = "Maak nieuwe groep";
-$a->strings["Group Name: "] = "Groepsnaam:";
-$a->strings["Contacts not in any group"] = "";
-$a->strings["add"] = "toevoegen";
-$a->strings["Unknown | Not categorised"] = "Onbekend | Niet ";
-$a->strings["Block immediately"] = "Onmiddellijk blokkeren";
-$a->strings["Shady, spammer, self-marketer"] = "Onbetrouwbaar, spammer, zelfpromotor";
-$a->strings["Known to me, but no opinion"] = "Bekend, maar geen mening";
-$a->strings["OK, probably harmless"] = "OK, waarschijnlijk onschadelijk";
-$a->strings["Reputable, has my trust"] = "Gerenommeerd, heeft mijn vertrouwen";
-$a->strings["Frequently"] = "Frequent";
-$a->strings["Hourly"] = "elk uur";
-$a->strings["Twice daily"] = "Twee keer per dag";
-$a->strings["Daily"] = "dagelijks";
-$a->strings["Weekly"] = "wekelijks";
-$a->strings["Monthly"] = "maandelijks";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Email"] = "E-mail";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "Linkedln";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "Myspace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Diaspora Connector"] = "Diaspora-connector";
-$a->strings["GNU Social"] = "";
-$a->strings["App.net"] = "";
-$a->strings["Hubzilla/Redmatrix"] = "";
-$a->strings["Post to Email"] = "Verzenden per e-mail";
-$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
-$a->strings["Hide your profile details from unknown viewers?"] = "Je profieldetails verbergen voor onbekende bezoekers?";
-$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen";
-$a->strings["show"] = "tonen";
-$a->strings["don't show"] = "niet tonen";
-$a->strings["CC: email addresses"] = "CC: e-mailadressen";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be";
-$a->strings["Permissions"] = "Rechten";
-$a->strings["Close"] = "Afsluiten";
-$a->strings["photo"] = "foto";
-$a->strings["status"] = "status";
+$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "De maandelijkse limiet van %d berichten is bereikt.  Dit bericht werd niet aanvaard.";
+$a->strings["Profile Photos"] = "Profielfoto's";
 $a->strings["event"] = "gebeurtenis";
+$a->strings["status"] = "status";
+$a->strings["photo"] = "foto";
 $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s leuk";
 $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s niet leuk";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "";
-$a->strings["[no subject]"] = "[geen onderwerp]";
-$a->strings["Wall Photos"] = "";
-$a->strings["Click here to upgrade."] = "";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "";
-$a->strings["This action is not available under your subscription plan."] = "";
-$a->strings["Error decoding account file"] = "";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
-$a->strings["Error! Cannot check nickname"] = "";
-$a->strings["User '%s' already exists on this server!"] = "Gebruiker '%s' bestaat al op deze server!";
-$a->strings["User creation error"] = "Fout bij het aanmaken van de gebruiker";
-$a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel";
-$a->strings["%d contact not imported"] = [
-       0 => "%d contact werd niet geïmporteerd",
-       1 => "%d contacten werden niet geïmporteerd",
+$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s neemt deel aan %2\$ss %3\$s deel";
+$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s neemt niet deel aan %2\$ss %3\$s";
+$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s neemt misschien deel aan %2\$ss %3\$s";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s porde %2\$s aan";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s";
+$a->strings["post/item"] = "bericht/item";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet";
+$a->strings["Likes"] = "Houdt van";
+$a->strings["Dislikes"] = "Houdt niet van";
+$a->strings["Attending"] = [
+       0 => "Neemt deel",
+       1 => "Nemen deel",
+];
+$a->strings["Not attending"] = "Nemen niet deel";
+$a->strings["Might attend"] = "Nemen misschien deel";
+$a->strings["Select"] = "Kies";
+$a->strings["Delete"] = "Verwijder";
+$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s";
+$a->strings["Categories:"] = "Categorieën:";
+$a->strings["Filed under:"] = "Bewaard onder:";
+$a->strings["%s from %s"] = "%s van %s";
+$a->strings["View in context"] = "In context bekijken";
+$a->strings["Please wait"] = "Even geduld";
+$a->strings["remove"] = "verwijder";
+$a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen";
+$a->strings["Follow Thread"] = "Gesprek volgen";
+$a->strings["View Status"] = "Bekijk status";
+$a->strings["View Profile"] = "Bekijk profiel";
+$a->strings["View Photos"] = "Bekijk foto's";
+$a->strings["Network Posts"] = "Netwerkberichten";
+$a->strings["View Contact"] = "Bekijk contact";
+$a->strings["Send PM"] = "Stuur een privébericht";
+$a->strings["Poke"] = "Porren";
+$a->strings["Connect/Follow"] = "Verbind/Volg";
+$a->strings["%s likes this."] = "%s vindt dit leuk.";
+$a->strings["%s doesn't like this."] = "%s vindt dit niet leuk.";
+$a->strings["%s attends."] = "%s neemt deel";
+$a->strings["%s doesn't attend."] = "%s neemt niet deel";
+$a->strings["%s attends maybe."] = "%s neemt misschien deel";
+$a->strings["and"] = "en";
+$a->strings["and %d other people"] = "en %d anderen";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d mensen</span> vinden dit leuk";
+$a->strings["%s like this."] = "%s vinden dit leuk.";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d people</span> vinden dit niet leuk";
+$a->strings["%s don't like this."] = "%s vinden dit niet leuk.";
+$a->strings["<span  %1\$s>%2\$d people</span> attend"] = "<span %1\$s>%2\$d mensen</span> nemen deel";
+$a->strings["%s attend."] = "%s nemen deel.";
+$a->strings["<span  %1\$s>%2\$d people</span> don't attend"] = "<span %1\$s>%2\$d mensen</span> nemen niet deel";
+$a->strings["%s don't attend."] = "%s nemen niet deel.";
+$a->strings["<span  %1\$s>%2\$d people</span> attend maybe"] = "<span %1\$s>%2\$d mensen</span> nemen misschien deel";
+$a->strings["%s attend maybe."] = "%s neemt misschien deel.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Zichtbaar voor <strong>iedereen</strong>";
+$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:";
+$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:";
+$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:";
+$a->strings["Tag term:"] = "Label:";
+$a->strings["Save to Folder:"] = "Bewaren in map:";
+$a->strings["Where are you right now?"] = "Waar ben je nu?";
+$a->strings["Delete item(s)?"] = "Item(s) verwijderen?";
+$a->strings["Share"] = "Delen";
+$a->strings["Upload photo"] = "Foto uploaden";
+$a->strings["upload photo"] = "Foto uploaden";
+$a->strings["Attach file"] = "Bestand bijvoegen";
+$a->strings["attach file"] = "bestand bijvoegen";
+$a->strings["Insert web link"] = "Voeg een webadres in";
+$a->strings["web link"] = "webadres";
+$a->strings["Insert video link"] = "Voeg video toe";
+$a->strings["video link"] = "video adres";
+$a->strings["Insert audio link"] = "Voeg audio adres toe";
+$a->strings["audio link"] = "audio adres";
+$a->strings["Set your location"] = "Stel uw locatie in";
+$a->strings["set location"] = "Stel uw locatie in";
+$a->strings["Clear browser location"] = "Verwijder locatie uit uw webbrowser";
+$a->strings["clear location"] = "Verwijder locatie uit uw webbrowser";
+$a->strings["Set title"] = "Titel plaatsen";
+$a->strings["Categories (comma-separated list)"] = "Categorieën (komma-gescheiden lijst)";
+$a->strings["Permission settings"] = "Instellingen van rechten";
+$a->strings["permissions"] = "rechten";
+$a->strings["Public post"] = "Openbare post";
+$a->strings["Preview"] = "Voorvertoning";
+$a->strings["Cancel"] = "Annuleren";
+$a->strings["Post to Groups"] = "Verzenden naar Groepen";
+$a->strings["Post to Contacts"] = "Verzenden naar Contacten";
+$a->strings["Private post"] = "Privé verzending";
+$a->strings["Message"] = "Bericht";
+$a->strings["Browser"] = "Browser";
+$a->strings["View all"] = "Toon alles";
+$a->strings["Like"] = [
+       0 => "Houdt van",
+       1 => "Houdt van",
+];
+$a->strings["Dislike"] = [
+       0 => "Houdt niet van",
+       1 => "Houdt niet van",
+];
+$a->strings["Not Attending"] = [
+       0 => "Neemt niet deel",
+       1 => "Nemen niet deel",
+];
+$a->strings["Undecided"] = [
+       0 => "Onbeslist",
+       1 => "Onbeslist",
 ];
-$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord";
-$a->strings["Miscellaneous"] = "Diversen";
-$a->strings["Birthday:"] = "Verjaardag:";
-$a->strings["Age: "] = "Leeftijd:";
-$a->strings["YYYY-MM-DD or MM-DD"] = "";
-$a->strings["never"] = "nooit";
-$a->strings["less than a second ago"] = "minder dan een seconde geleden";
-$a->strings["year"] = "jaar";
-$a->strings["years"] = "jaren";
-$a->strings["month"] = "maand";
-$a->strings["months"] = "maanden";
-$a->strings["week"] = "week";
-$a->strings["weeks"] = "weken";
-$a->strings["day"] = "dag";
-$a->strings["days"] = "dagen";
-$a->strings["hour"] = "uur";
-$a->strings["hours"] = "uren";
-$a->strings["minute"] = "minuut";
-$a->strings["minutes"] = "minuten";
-$a->strings["second"] = "seconde";
-$a->strings["seconds"] = "secondes";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden";
-$a->strings["%s's birthday"] = "%s's verjaardag";
-$a->strings["Happy Birthday %s"] = "Gefeliciteerd %s";
 $a->strings["Friendica Notification"] = "Friendica Notificatie";
 $a->strings["Thank You,"] = "Bedankt";
 $a->strings["%s Administrator"] = "%s Beheerder";
-$a->strings["%1\$s, %2\$s Administrator"] = "";
+$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Beheerder";
 $a->strings["noreply"] = "geen reactie";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
 $a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificatie] Nieuw bericht ontvangen op %s";
 $a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sent you a new private message at %2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s stuurde jou %2\$s.";
 $a->strings["a private message"] = "een prive bericht";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s stuurde jou %2\$s.";
 $a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden.";
 $a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]a %3\$s[/url]";
 $a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]%3\$s's %4\$s[/url]";
 $a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]jouw %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s gaf een reactie op een bericht/conversatie die jij volgt.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of te beantwoorden.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notificatie] Reactie op gesprek #%1\$d door %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s gaf een reactie op een bericht/gesprek die jij volgt.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om het gesprek te bekijken en/of te beantwoorden.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Melding] %s plaatste een bericht op je tijdlijn";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$splaatste een bericht op je tijdlijn op %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s schreef op [url=%2\$s]jouw tijdlijn[/url]";
 $a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notificatie] %s heeft jou genoemd";
 $a->strings["%1\$s tagged you at %2\$s"] = "%1\$s heeft jou in %2\$s genoemd";
 $a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]heeft jou genoemd[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "";
-$a->strings["%1\$s shared a new post at %2\$s"] = "";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s heeft jou aangestoten";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s heeft jou aangestoten op %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Melding] %s deelde een nieuw bericht";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s deelde een nieuw bericht op %2\$s";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]deelde een bericht[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Melding] %1\$s heeft jou gepord";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s heeft jou gepord op %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]porde jou[/url]";
 $a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificatie] %s heeft jouw bericht gelabeld";
 $a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s heeft jouw bericht gelabeld in %2\$s";
 $a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s labelde [url=%2\$s]jouw bericht[/url]";
@@ -234,63 +165,81 @@ $a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Je hebt
 $a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Je ontving [url=%1\$s]een vriendschaps- of connectieverzoek[/url] van %2\$s.";
 $a->strings["You may visit their profile at %s"] = "U kunt hun profiel bezoeken op %s";
 $a->strings["Please visit %s to approve or reject the introduction."] = "Bezoek %s om het verzoek goed of af te keuren.";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "";
-$a->strings["[Friendica:Notify] You have a new follower"] = "";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Melding]  Iemand nieuw deelt met jou.";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s deelt met jouw in %2\$s";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Melding] Je hebt een nieuwe volger";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "Je hebt een nieuwe volger op %2\$s: %1\$s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Melding] Vriendschapsvoorstel ontvangen";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Je kreeg een vriendschapssuggestie van '%1\$s' op %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Je kreeg een [url=%1\$s]vriendschapssuggestie[/url] voor %2\$s op %3\$s.";
 $a->strings["Name:"] = "Naam:";
 $a->strings["Photo:"] = "Foto: ";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "";
-$a->strings["[Friendica:Notify] Connection accepted"] = "";
-$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "";
-$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "";
-$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "";
-$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "";
-$a->strings["[Friendica System:Notify] registration request"] = "";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "";
-$a->strings["Please visit %s to approve or reject the request."] = "";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-$a->strings["Starts:"] = "Begint:";
-$a->strings["Finishes:"] = "Eindigt:";
-$a->strings["Location:"] = "Plaats:";
-$a->strings["Sun"] = "";
-$a->strings["Mon"] = "";
-$a->strings["Tue"] = "";
-$a->strings["Wed"] = "";
-$a->strings["Thu"] = "";
-$a->strings["Fri"] = "";
-$a->strings["Sat"] = "";
-$a->strings["Sunday"] = "Zondag";
-$a->strings["Monday"] = "Maandag";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om de suggestie goed of af te keuren.";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Melding] Verbinding aanvaard";
+$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' aanvaarde je contactaanvraag op %2\$s";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$saanvaarde jouw [url=%1\$s]contactaanvraag[/url].";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Jullie zijn nu in contact met elkaar en kunnen statusberichten, foto's en email delen zonder beperkingen.";
+$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bezoek alstublieft %s als je deze relatie wil wijzigen.";
+$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' koos om je te accepteren als fan, wat sommige communicatievormen beperkt - zoals privéberichten en sommige profielfuncties.  Als dit een beroemdheid- of groepspagina is, werd dit automatisch toegepast.";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' kan er later voor kiezen om deze beperkingen aan te passen.";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Bezoek %s wanneer je deze relatie wil wijzigen.";
+$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Melding] Registratieaanvraag";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Je kreeg een registratieaanvraag van '%1\$s' op %2\$s";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Je kreeg een [url=%1\$s]registratieaanvraag[/url] van %2\$s.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Volledige naam:\t%1\$s\\nAdres van de site\t%2\$s\\nLoginnaam:\t%3\$s (%4\$s)";
+$a->strings["Please visit %s to approve or reject the request."] = "Bezoek %s om de aanvraag goed of af te keuren.";
+$a->strings["Item not found."] = "Item niet gevonden.";
+$a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?";
+$a->strings["Yes"] = "Ja";
+$a->strings["Permission denied."] = "Toegang geweigerd";
+$a->strings["Archives"] = "Archieven";
+$a->strings["show more"] = "toon meer";
+$a->strings["newer"] = "nieuwere berichten";
+$a->strings["older"] = "oudere berichten";
+$a->strings["first"] = "eerste";
+$a->strings["prev"] = "vorige";
+$a->strings["next"] = "volgende";
+$a->strings["last"] = "laatste";
+$a->strings["Loading more entries..."] = "";
+$a->strings["The end"] = "Het einde";
+$a->strings["No contacts"] = "Geen contacten";
+$a->strings["%d Contact"] = [
+       0 => "%d contact",
+       1 => "%d contacten",
+];
+$a->strings["View Contacts"] = "Bekijk contacten";
+$a->strings["Save"] = "Bewaren";
+$a->strings["Follow"] = "Volg";
+$a->strings["Search"] = "Zoeken";
+$a->strings["@name, !forum, #tags, content"] = "@naam, !forum, #labels, inhoud";
+$a->strings["Full Text"] = "Volledige tekst";
+$a->strings["Tags"] = "Labels";
+$a->strings["Contacts"] = "Contacten";
+$a->strings["Forums"] = "Forums";
+$a->strings["poke"] = "por";
+$a->strings["poked"] = "porde";
+$a->strings["ping"] = "ping";
+$a->strings["pinged"] = "gepingd";
+$a->strings["prod"] = "porren";
+$a->strings["prodded"] = "gepord";
+$a->strings["slap"] = "slaan";
+$a->strings["slapped"] = "geslagen";
+$a->strings["finger"] = "finger";
+$a->strings["fingered"] = "gerfingerd";
+$a->strings["rebuff"] = "afpoeieren";
+$a->strings["rebuffed"] = "afgepoeierd";
+$a->strings["Monday"] = "Maandag";
 $a->strings["Tuesday"] = "Dinsdag";
 $a->strings["Wednesday"] = "Woensdag";
 $a->strings["Thursday"] = "Donderdag";
 $a->strings["Friday"] = "Vrijdag";
 $a->strings["Saturday"] = "Zaterdag";
-$a->strings["Jan"] = "";
-$a->strings["Feb"] = "";
-$a->strings["Mar"] = "";
-$a->strings["Apr"] = "";
-$a->strings["May"] = "Mei";
-$a->strings["Jun"] = "";
-$a->strings["Jul"] = "";
-$a->strings["Aug"] = "";
-$a->strings["Sept"] = "";
-$a->strings["Oct"] = "";
-$a->strings["Nov"] = "";
-$a->strings["Dec"] = "";
+$a->strings["Sunday"] = "Zondag";
 $a->strings["January"] = "Januari";
 $a->strings["February"] = "Februari";
 $a->strings["March"] = "Maart";
 $a->strings["April"] = "April";
+$a->strings["May"] = "Mei";
 $a->strings["June"] = "Juni";
 $a->strings["July"] = "Juli";
 $a->strings["August"] = "Augustus";
@@ -298,606 +247,302 @@ $a->strings["September"] = "September";
 $a->strings["October"] = "Oktober";
 $a->strings["November"] = "November";
 $a->strings["December"] = "December";
-$a->strings["today"] = "";
-$a->strings["all-day"] = "";
-$a->strings["No events to display"] = "";
-$a->strings["l, F j"] = "l j F";
-$a->strings["Edit event"] = "Gebeurtenis bewerken";
+$a->strings["Mon"] = "Maa";
+$a->strings["Tue"] = "Din";
+$a->strings["Wed"] = "Woe";
+$a->strings["Thu"] = "Don";
+$a->strings["Fri"] = "Vrij";
+$a->strings["Sat"] = "Zat";
+$a->strings["Sun"] = "Zon";
+$a->strings["Jan"] = "Jan";
+$a->strings["Feb"] = "Feb";
+$a->strings["Mar"] = "Maa";
+$a->strings["Apr"] = "Apr";
+$a->strings["Jul"] = "Jul";
+$a->strings["Aug"] = "Aug";
+$a->strings["Sep"] = "Sep";
+$a->strings["Oct"] = "Okt";
+$a->strings["Nov"] = "Nov";
+$a->strings["Dec"] = "Dec";
+$a->strings["View Video"] = "Bekijk Video";
+$a->strings["bytes"] = "bytes";
+$a->strings["Click to open/close"] = "klik om te openen/sluiten";
+$a->strings["View on separate page"] = "Bekijk op aparte pagina";
+$a->strings["view on separate page"] = "bekijk op aparte pagina";
 $a->strings["link to source"] = "Verwijzing naar bron";
-$a->strings["Export"] = "";
-$a->strings["Export calendar as ical"] = "";
-$a->strings["Export calendar as csv"] = "";
-$a->strings["Nothing new here"] = "Niets nieuw hier";
-$a->strings["Clear notifications"] = "Notificaties verwijderen";
-$a->strings["@name, !forum, #tags, content"] = "";
-$a->strings["Logout"] = "Uitloggen";
-$a->strings["End this session"] = "Deze sessie beëindigen";
-$a->strings["Status"] = "Tijdlijn";
-$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties";
-$a->strings["Profile"] = "Profiel";
-$a->strings["Your profile page"] = "Jouw profiel pagina";
+$a->strings["activity"] = "activiteit";
+$a->strings["comment"] = [
+       0 => "reactie",
+       1 => "reacties",
+];
+$a->strings["post"] = "bericht";
+$a->strings["Item filed"] = "Item bewaard";
+$a->strings["No friends to display."] = "Geen vrienden om te laten zien.";
+$a->strings["Connect"] = "Verbinden";
+$a->strings["Authorize application connection"] = "Verbinding met de applicatie goedkeuren";
+$a->strings["Return to your app and insert this Securty Code:"] = "Keer terug naar jouw app en voeg deze beveiligingscode in:";
+$a->strings["Please login to continue."] = "Log in om verder te gaan.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?";
+$a->strings["No"] = "Nee";
+$a->strings["You must be logged in to use addons. "] = "Je moet ingelogd zijn om deze addons te kunnen gebruiken. ";
+$a->strings["Applications"] = "Toepassingen";
+$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd";
+$a->strings["Item not available."] = "Item niet beschikbaar";
+$a->strings["Item was not found."] = "Item niet gevonden";
+$a->strings["No contacts in common."] = "Geen gedeelde contacten.";
+$a->strings["Common Friends"] = "Gedeelde Vrienden";
+$a->strings["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!"] = "";
+$a->strings["Contact settings applied."] = "Contactinstellingen toegepast.";
+$a->strings["Contact update failed."] = "Aanpassen van contact mislukt.";
+$a->strings["Contact not found."] = "Contact niet gevonden";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen.";
+$a->strings["No mirroring"] = "";
+$a->strings["Mirror as forwarded posting"] = "";
+$a->strings["Mirror as my own posting"] = "";
+$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker";
+$a->strings["Refetch contact data"] = "";
+$a->strings["Submit"] = "Opslaan";
+$a->strings["Remote Self"] = "";
+$a->strings["Mirror postings from this contact"] = "";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
+$a->strings["Name"] = "Naam";
+$a->strings["Account Nickname"] = "Bijnaam account";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam";
+$a->strings["Account URL"] = "URL account";
+$a->strings["Friend Request URL"] = "URL vriendschapsverzoek";
+$a->strings["Friend Confirm URL"] = "URL vriendschapsbevestiging";
+$a->strings["Notification Endpoint URL"] = "";
+$a->strings["Poll/Feed URL"] = "URL poll/feed";
+$a->strings["New photo from this URL"] = "Nieuwe foto van deze URL";
 $a->strings["Photos"] = "Foto's";
-$a->strings["Your photos"] = "Jouw foto's";
-$a->strings["Videos"] = "Video's";
-$a->strings["Your videos"] = "";
-$a->strings["Events"] = "Gebeurtenissen";
-$a->strings["Your events"] = "Jouw gebeurtenissen";
-$a->strings["Personal notes"] = "Persoonlijke nota's";
-$a->strings["Your personal notes"] = "";
-$a->strings["Login"] = "Login";
-$a->strings["Sign in"] = "Inloggen";
-$a->strings["Home"] = "Tijdlijn";
-$a->strings["Home Page"] = "Jouw tijdlijn";
-$a->strings["Register"] = "Registreer";
-$a->strings["Create an account"] = "Maak een accoount";
+$a->strings["Contact Photos"] = "Contactfoto's";
+$a->strings["Upload"] = "Uploaden";
+$a->strings["Files"] = "Bestanden";
+$a->strings["Not Found"] = "Niet gevonden";
+$a->strings["No profile"] = "Geen profiel";
+$a->strings["Help:"] = "Help:";
 $a->strings["Help"] = "Help";
-$a->strings["Help and documentation"] = "Hulp en documentatie";
-$a->strings["Apps"] = "Apps";
-$a->strings["Addon applications, utilities, games"] = "Extra toepassingen, hulpmiddelen of spelletjes";
-$a->strings["Search"] = "Zoeken";
-$a->strings["Search site content"] = "Doorzoek de inhoud van de website";
-$a->strings["Full Text"] = "";
-$a->strings["Tags"] = "";
-$a->strings["Contacts"] = "Contacten";
-$a->strings["Community"] = "Website";
-$a->strings["Conversations on this site"] = "Conversaties op deze website";
-$a->strings["Conversations on the network"] = "";
-$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender";
-$a->strings["Directory"] = "Gids";
-$a->strings["People directory"] = "Personengids";
-$a->strings["Information"] = "Informatie";
-$a->strings["Information about this friendica instance"] = "";
-$a->strings["Network"] = "Netwerk";
-$a->strings["Conversations from your friends"] = "Conversaties van je vrienden";
-$a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen";
-$a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters";
-$a->strings["Introductions"] = "Verzoeken";
-$a->strings["Friend Requests"] = "Vriendschapsverzoeken";
-$a->strings["Notifications"] = "Notificaties";
-$a->strings["See all notifications"] = "Toon alle notificaties";
-$a->strings["Mark as seen"] = "Als 'gelezen' markeren";
-$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren";
-$a->strings["Messages"] = "Privéberichten";
-$a->strings["Private mail"] = "Privéberichten";
-$a->strings["Inbox"] = "Inbox";
-$a->strings["Outbox"] = "Verzonden berichten";
-$a->strings["New Message"] = "Nieuw Bericht";
-$a->strings["Manage"] = "Beheren";
-$a->strings["Manage other pages"] = "Andere pagina's beheren";
-$a->strings["Delegations"] = "";
-$a->strings["Delegate Page Management"] = "Paginabeheer uitbesteden";
+$a->strings["Page not found."] = "Pagina niet gevonden";
+$a->strings["Welcome to %s"] = "Welkom op %s";
+$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar.";
+$a->strings["Visible to:"] = "Zichtbaar voor:";
+$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud";
+$a->strings["Welcome to Friendica"] = "Welkom bij Friendica";
+$a->strings["New Member Checklist"] = "Checklist voor nieuwe leden";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen.";
+$a->strings["Getting Started"] = "Aan de slag";
+$a->strings["Friendica Walk-Through"] = "Doorloop Friendica";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden.";
 $a->strings["Settings"] = "Instellingen";
-$a->strings["Account settings"] = "Account instellingen";
-$a->strings["Profiles"] = "Profielen";
-$a->strings["Manage/Edit Profiles"] = "Beheer/Wijzig Profielen";
-$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten";
-$a->strings["Admin"] = "Beheer";
-$a->strings["Site setup and configuration"] = "Website opzetten en configureren";
-$a->strings["Navigation"] = "Navigatie";
-$a->strings["Site map"] = "Sitemap";
-$a->strings["Contact Photos"] = "Contactfoto's";
-$a->strings["Welcome "] = "Welkom";
-$a->strings["Please upload a profile photo."] = "Upload een profielfoto.";
-$a->strings["Welcome back "] = "Welkom terug ";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
-$a->strings["System"] = "Systeem";
-$a->strings["Personal"] = "Persoonlijk";
-$a->strings["%s commented on %s's post"] = "%s gaf een reactie op het bericht van %s";
-$a->strings["%s created a new post"] = "%s schreef een nieuw bericht";
-$a->strings["%s liked %s's post"] = "%s vond het bericht van %s leuk";
-$a->strings["%s disliked %s's post"] = "%s vond het bericht van %s niet leuk";
-$a->strings["%s is 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 is nu bevriend met %s";
-$a->strings["Friend Suggestion"] = "Vriendschapsvoorstel";
-$a->strings["Friend/Connect Request"] = "Vriendschapsverzoek";
-$a->strings["New Follower"] = "Nieuwe Volger";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "";
-$a->strings["Errors encountered creating database tables."] = "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld.";
-$a->strings["Errors encountered performing database changes."] = "";
-$a->strings["(no subject)"] = "(geen onderwerp)";
-$a->strings["Sharing notification from Diaspora network"] = "";
-$a->strings["Attachments:"] = "Bijlagen:";
-$a->strings["view full size"] = "Volledig formaat";
-$a->strings["View Profile"] = "Bekijk profiel";
-$a->strings["View Status"] = "Bekijk status";
-$a->strings["View Photos"] = "Bekijk foto's";
-$a->strings["Network Posts"] = "Netwerkberichten";
-$a->strings["View Contact"] = "";
-$a->strings["Drop Contact"] = "Verwijder contact";
-$a->strings["Send PM"] = "Stuur een privébericht";
-$a->strings["Poke"] = "Aanstoten";
-$a->strings["Organisation"] = "";
-$a->strings["News"] = "";
-$a->strings["Forum"] = "Forum";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "";
-$a->strings["Image/photo"] = "Afbeelding/foto";
-$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
-$a->strings["$1 wrote:"] = "$1 schreef:";
-$a->strings["Encrypted content"] = "Versleutelde inhoud";
-$a->strings["Invalid source protocol"] = "";
-$a->strings["Invalid link protocol"] = "";
-$a->strings["%1\$s attends %2\$s's %3\$s"] = "";
-$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "";
-$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s stootte %2\$s aan";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s is op dit moment %2\$s";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s";
-$a->strings["post/item"] = "bericht/item";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet";
-$a->strings["Likes"] = "Houdt van";
-$a->strings["Dislikes"] = "Houdt niet van";
-$a->strings["Attending"] = [
-       0 => "",
-       1 => "",
-];
-$a->strings["Not attending"] = "";
-$a->strings["Might attend"] = "";
-$a->strings["Select"] = "Kies";
-$a->strings["Delete"] = "Verwijder";
-$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s";
-$a->strings["Categories:"] = "Categorieën:";
-$a->strings["Filed under:"] = "Bewaard onder:";
-$a->strings["%s from %s"] = "%s van %s";
-$a->strings["View in context"] = "In context bekijken";
-$a->strings["Please wait"] = "Even geduld";
-$a->strings["remove"] = "verwijder";
-$a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen";
-$a->strings["Follow Thread"] = "Conversatie volgen";
-$a->strings["%s likes this."] = "%s vindt dit leuk.";
-$a->strings["%s doesn't like this."] = "%s vindt dit niet leuk.";
-$a->strings["%s attends."] = "";
-$a->strings["%s doesn't attend."] = "";
-$a->strings["%s attends maybe."] = "";
-$a->strings["and"] = "en";
-$a->strings[", and %d other people"] = ", en %d andere mensen";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d mensen</span> vinden dit leuk";
-$a->strings["%s like this."] = "";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d people</span> vinden dit niet leuk";
-$a->strings["%s don't like this."] = "";
-$a->strings["<span  %1\$s>%2\$d people</span> attend"] = "";
-$a->strings["%s attend."] = "";
-$a->strings["<span  %1\$s>%2\$d people</span> don't attend"] = "";
-$a->strings["%s don't attend."] = "";
-$a->strings["<span  %1\$s>%2\$d people</span> attend maybe"] = "";
-$a->strings["%s anttend maybe."] = "";
-$a->strings["Visible to <strong>everybody</strong>"] = "Zichtbaar voor <strong>iedereen</strong>";
-$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:";
-$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:";
-$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:";
-$a->strings["Tag term:"] = "Label:";
-$a->strings["Save to Folder:"] = "Bewaren in map:";
-$a->strings["Where are you right now?"] = "Waar ben je nu?";
-$a->strings["Delete item(s)?"] = "Item(s) verwijderen?";
-$a->strings["Share"] = "Delen";
-$a->strings["Upload photo"] = "Foto uploaden";
-$a->strings["upload photo"] = "Foto uploaden";
-$a->strings["Attach file"] = "Bestand bijvoegen";
-$a->strings["attach file"] = "bestand bijvoegen";
-$a->strings["Insert web link"] = "Voeg een webadres in";
-$a->strings["web link"] = "webadres";
-$a->strings["Insert video link"] = "Voeg video toe";
-$a->strings["video link"] = "video adres";
-$a->strings["Insert audio link"] = "Voeg audio adres toe";
-$a->strings["audio link"] = "audio adres";
-$a->strings["Set your location"] = "Stel uw locatie in";
-$a->strings["set location"] = "Stel uw locatie in";
-$a->strings["Clear browser location"] = "Verwijder locatie uit uw webbrowser";
-$a->strings["clear location"] = "Verwijder locatie uit uw webbrowser";
-$a->strings["Set title"] = "Titel plaatsen";
-$a->strings["Categories (comma-separated list)"] = "Categorieën (komma-gescheiden lijst)";
-$a->strings["Permission settings"] = "Instellingen van rechten";
-$a->strings["permissions"] = "rechten";
-$a->strings["Public post"] = "Openbare post";
-$a->strings["Preview"] = "Voorvertoning";
-$a->strings["Cancel"] = "Annuleren";
-$a->strings["Post to Groups"] = "Verzenden naar Groepen";
-$a->strings["Post to Contacts"] = "Verzenden naar Contacten";
-$a->strings["Private post"] = "Privé verzending";
-$a->strings["Message"] = "Bericht";
-$a->strings["Browser"] = "";
-$a->strings["View all"] = "";
-$a->strings["Like"] = [
-       0 => "",
-       1 => "",
-];
-$a->strings["Dislike"] = [
-       0 => "",
-       1 => "",
-];
-$a->strings["Not Attending"] = [
-       0 => "",
-       1 => "",
-];
-$a->strings["%s\\'s birthday"] = "";
-$a->strings["General Features"] = "Algemene functies";
-$a->strings["Multiple Profiles"] = "Meerdere profielen";
-$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken";
-$a->strings["Photo Location"] = "";
-$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"] = "";
-$a->strings["Ability for visitors to download the public calendar"] = "";
-$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten";
-$a->strings["Richtext Editor"] = "Tekstverwerker met opmaak";
-$a->strings["Enable richtext editor"] = "Gebruik een tekstverwerker met eenvoudige opmaakfuncties";
-$a->strings["Post Preview"] = "Voorvertoning bericht";
-$a->strings["Allow previewing posts and comments before publishing them"] = "";
-$a->strings["Auto-mention Forums"] = "";
-$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "";
-$a->strings["Network Sidebar Widgets"] = "Zijbalkwidgets op netwerkpagina";
-$a->strings["Search by Date"] = "Zoeken op datum";
-$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten te selecteren volgens datumbereik";
-$a->strings["List Forums"] = "";
-$a->strings["Enable widget to display the forums your are connected with"] = "";
-$a->strings["Group Filter"] = "Groepsfilter";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen";
-$a->strings["Network Filter"] = "Netwerkfilter";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken";
-$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten";
-$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik";
-$a->strings["Network Tabs"] = "Netwerktabs";
-$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had";
-$a->strings["Network New Tab"] = "Nieuwe netwerktab";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)";
-$a->strings["Network Shared Links Tab"] = "";
-$a->strings["Enable tab to display only Network posts with links in them"] = "";
-$a->strings["Post/Comment Tools"] = "Bericht-/reactiehulpmiddelen";
-$a->strings["Multiple Deletion"] = "Meervoudige verwijdering";
-$a->strings["Select and delete multiple posts/comments at once"] = "Selecteer en verwijder meerdere berichten/reacties in een keer";
-$a->strings["Edit Sent Posts"] = "Bewerk verzonden berichten";
-$a->strings["Edit and correct posts and comments after sending"] = "Bewerk en corrigeer berichten en reacties na verzending";
-$a->strings["Tagging"] = "Labelen";
-$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te labelen";
-$a->strings["Post Categories"] = "Categorieën berichten";
-$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten";
-$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen te bewaren";
-$a->strings["Dislike Posts"] = "Vind berichten niet leuk";
-$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten of reacties niet leuk te vinden";
-$a->strings["Star Posts"] = "Geef berichten een ster";
-$a->strings["Ability to mark special posts with a star indicator"] = "";
-$a->strings["Mute Post Notifications"] = "";
-$a->strings["Ability to mute notifications for a thread"] = "";
-$a->strings["Advanced Profile Settings"] = "";
-$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "";
-$a->strings["Disallowed profile URL."] = "Niet toegelaten profiel adres.";
-$a->strings["Connect URL missing."] = "";
-$a->strings["This site is not configured to allow communications with other networks."] = "Deze website is niet geconfigureerd voor communicatie met andere netwerken.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Er werden geen compatibele communicatieprotocols of feeds ontdekt.";
-$a->strings["The profile address specified does not provide adequate information."] = "";
-$a->strings["An author or name was not found."] = "";
-$a->strings["No browser URL could be matched to this address."] = "";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact.";
-$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "";
-$a->strings["Unable to retrieve contact information."] = "";
-$a->strings["Requested account is not available."] = "Gevraagde account is niet beschikbaar.";
-$a->strings["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar.";
-$a->strings["Edit profile"] = "Bewerk profiel";
-$a->strings["Atom feed"] = "";
-$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen";
-$a->strings["Change profile photo"] = "Profiel foto wijzigen";
-$a->strings["Create New Profile"] = "Maak nieuw profiel";
-$a->strings["Profile Image"] = "Profiel afbeelding";
-$a->strings["visible to everybody"] = "zichtbaar voor iedereen";
-$a->strings["Edit visibility"] = "Pas zichtbaarheid aan";
-$a->strings["Gender:"] = "Geslacht:";
-$a->strings["Status:"] = "Tijdlijn:";
-$a->strings["Homepage:"] = "Website:";
+$a->strings["Go to Your Settings"] = "Ga naar je instellingen";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Verander je initieel wachtwoord op je <em>instellingenpagina</em>. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden.";
+$a->strings["Profile"] = "Profiel";
+$a->strings["Upload Profile Photo"] = "Profielfoto uploaden";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen.";
+$a->strings["Edit Your Profile"] = "Bewerk je profiel";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Bewerk je <strong>standaard</strong> profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen.";
+$a->strings["Profile Keywords"] = "Sleutelwoorden voor dit profiel";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen.";
+$a->strings["Connecting"] = "Verbinding aan het maken";
+$a->strings["Importing Emails"] = "E-mails importeren";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren";
+$a->strings["Go to Your Contacts Page"] = "Ga naar je contactenpagina";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de <em>Voeg nieuw contact toe</em> dialoog.";
+$a->strings["Go to Your Site's Directory"] = "Ga naar de gids van je website";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord <em>Connect</em> of <em>Follow</em> op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd.";
+$a->strings["Finding New People"] = "Nieuwe mensen vinden";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden.";
+$a->strings["Groups"] = "Groepen";
+$a->strings["Group Your Contacts"] = "Groepeer je contacten";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen gespreksgroepen indelen vanuit de zijbalk van je 'Contacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. ";
+$a->strings["Why Aren't My Posts Public?"] = "Waarom zijn mijn berichten niet openbaar?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie.";
+$a->strings["Getting Help"] = "Hulp krijgen";
+$a->strings["Go to the Help Section"] = "Ga naar de help";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Je kunt onze <strong>help</strong> pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma.";
+$a->strings["Visit %s's profile [%s]"] = "Bekijk het profiel van %s [%s]";
+$a->strings["Edit contact"] = "Contact bewerken";
+$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep";
+$a->strings["Not Extended"] = "";
+$a->strings["Resubscribing to OStatus contacts"] = "";
+$a->strings["Error"] = "";
+$a->strings["Done"] = "Klaar";
+$a->strings["Keep this window open until done."] = "Houd dit scherm open tot het klaar is";
+$a->strings["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen.";
+$a->strings["Ignore/Hide"] = "Negeren/Verbergen";
+$a->strings["Friend Suggestions"] = "Vriendschapsvoorstellen";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw.";
+$a->strings["Import"] = "Importeren";
+$a->strings["Move account"] = "Account verplaatsen";
+$a->strings["You can import an account from another Friendica server."] = "Je kunt een account van een andere Friendica server importeren.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "";
+$a->strings["Account file"] = "Account bestand";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "";
+$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel.";
+$a->strings["is interested in:"] = "Is geïnteresseerd in:";
+$a->strings["Profile Match"] = "Profielmatch";
+$a->strings["No matches"] = "Geen resultaten";
+$a->strings["Invalid request identifier."] = "Ongeldige <em>request identifier</em>.";
+$a->strings["Discard"] = "Verwerpen";
+$a->strings["Ignore"] = "Negeren";
+$a->strings["Notifications"] = "Notificaties";
+$a->strings["Network Notifications"] = "Netwerknotificaties";
+$a->strings["System Notifications"] = "Systeemnotificaties";
+$a->strings["Personal Notifications"] = "Persoonlijke notificaties";
+$a->strings["Home Notifications"] = "Tijdlijn-notificaties";
+$a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken";
+$a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken";
+$a->strings["Notification type: "] = "Notificatiesoort:";
+$a->strings["suggested by %s"] = "Voorgesteld door %s";
+$a->strings["Hide this contact from others"] = "Verberg dit contact voor anderen";
+$a->strings["Post a new friend activity"] = "Bericht over een nieuwe vriend";
+$a->strings["if applicable"] = "Indien toepasbaar";
+$a->strings["Approve"] = "Goedkeuren";
+$a->strings["Claims to be known to you: "] = "Denkt dat u hem of haar kent:";
+$a->strings["yes"] = "Ja";
+$a->strings["no"] = "Nee";
+$a->strings["Shall your connection be bidirectional or not?"] = "";
+$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"] = "Vriend";
+$a->strings["Sharer"] = "Deler";
+$a->strings["Subscriber"] = "";
+$a->strings["Location:"] = "Plaats:";
 $a->strings["About:"] = "Over:";
-$a->strings["XMPP:"] = "";
-$a->strings["Network:"] = "Netwerk:";
-$a->strings["g A l F d"] = "G l j F";
-$a->strings["F d"] = "d F";
-$a->strings["[today]"] = "[vandaag]";
-$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen";
-$a->strings["Birthdays this week:"] = "Verjaardagen deze week:";
-$a->strings["[No description]"] = "[Geen omschrijving]";
-$a->strings["Event Reminders"] = "Gebeurtenisherinneringen";
-$a->strings["Events this week:"] = "Gebeurtenissen deze week:";
-$a->strings["Full Name:"] = "Volledige Naam:";
-$a->strings["j F, Y"] = "F j Y";
-$a->strings["j F"] = "F j";
-$a->strings["Age:"] = "Leeftijd:";
-$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s";
-$a->strings["Sexual Preference:"] = "Seksuele Voorkeur:";
-$a->strings["Hometown:"] = "Woonplaats:";
 $a->strings["Tags:"] = "Labels:";
-$a->strings["Political Views:"] = "Politieke standpunten:";
-$a->strings["Religion:"] = "Religie:";
-$a->strings["Hobbies/Interests:"] = "Hobby:";
-$a->strings["Likes:"] = "Houdt van:";
-$a->strings["Dislikes:"] = "Houdt niet van:";
-$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:";
-$a->strings["Musical interests:"] = "Muzikale interesse ";
-$a->strings["Books, literature:"] = "Boeken, literatuur:";
-$a->strings["Television:"] = "Televisie";
-$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultuur/ontspanning:";
-$a->strings["Love/Romance:"] = "Liefde/romance:";
-$a->strings["Work/employment:"] = "Werk/beroep:";
-$a->strings["School/education:"] = "School/opleiding:";
-$a->strings["Forums:"] = "";
-$a->strings["Basic"] = "";
-$a->strings["Advanced"] = "Geavanceerd";
-$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn";
-$a->strings["Profile Details"] = "Profieldetails";
-$a->strings["Photo Albums"] = "Fotoalbums";
-$a->strings["Personal Notes"] = "Persoonlijke Nota's";
-$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien";
+$a->strings["Gender:"] = "Geslacht:";
+$a->strings["Profile URL"] = "Profiel url";
+$a->strings["Network:"] = "Netwerk:";
+$a->strings["No introductions."] = "Geen vriendschaps- of connectieverzoeken.";
+$a->strings["Show unread"] = "";
+$a->strings["Show all"] = "";
+$a->strings["No more %s notifications."] = "";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website.";
+$a->strings["Login failed."] = "Login mislukt.";
+$a->strings["Profile not found."] = "Profiel niet gevonden";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd.";
+$a->strings["Response from remote site was not understood."] = "Antwoord van de website op afstand werd niet begrepen.";
+$a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van website op afstand:";
+$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid.";
+$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw.";
+$a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen.";
+$a->strings["Remote site reported: "] = "Website op afstand berichtte: ";
+$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen.";
+$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'";
+$a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons.";
+$a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou.";
+$a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken.";
+$a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen.";
+$a->strings["Unable to update your contact profile details on our system"] = "";
 $a->strings["[Name Withheld]"] = "[Naam achtergehouden]";
-$a->strings["Item not found."] = "Item niet gevonden.";
-$a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?";
-$a->strings["Yes"] = "Ja";
-$a->strings["Permission denied."] = "Toegang geweigerd";
-$a->strings["Archives"] = "Archieven";
-$a->strings["Embedded content"] = "Ingebedde inhoud";
-$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld";
-$a->strings["%s is now following %s."] = "";
-$a->strings["following"] = "volgend";
-$a->strings["%s stopped following %s."] = "";
-$a->strings["stopped following"] = "";
-$a->strings["newer"] = "nieuwere berichten";
-$a->strings["older"] = "oudere berichten";
-$a->strings["prev"] = "vorige";
-$a->strings["first"] = "eerste";
-$a->strings["last"] = "laatste";
-$a->strings["next"] = "volgende";
-$a->strings["Loading more entries..."] = "";
-$a->strings["The end"] = "";
-$a->strings["No contacts"] = "Geen contacten";
-$a->strings["%d Contact"] = [
-       0 => "%d contact",
-       1 => "%d contacten",
-];
-$a->strings["View Contacts"] = "Bekijk contacten";
-$a->strings["Save"] = "Bewaren";
-$a->strings["poke"] = "aanstoten";
-$a->strings["poked"] = "aangestoten";
-$a->strings["ping"] = "ping";
-$a->strings["pinged"] = "gepingd";
-$a->strings["prod"] = "porren";
-$a->strings["prodded"] = "gepord";
-$a->strings["slap"] = "slaan";
-$a->strings["slapped"] = "geslagen";
-$a->strings["finger"] = "finger";
-$a->strings["fingered"] = "gerfingerd";
-$a->strings["rebuff"] = "afpoeieren";
-$a->strings["rebuffed"] = "afgepoeierd";
-$a->strings["happy"] = "Blij";
-$a->strings["sad"] = "Verdrietig";
-$a->strings["mellow"] = "mellow";
-$a->strings["tired"] = "vermoeid";
-$a->strings["perky"] = "parmantig";
-$a->strings["angry"] = "boos";
-$a->strings["stupified"] = "verbijsterd";
-$a->strings["puzzled"] = "onzeker";
-$a->strings["interested"] = "Geïnteresseerd";
-$a->strings["bitter"] = "bitter";
-$a->strings["cheerful"] = "vrolijk";
-$a->strings["alive"] = "levend";
-$a->strings["annoyed"] = "verveeld";
-$a->strings["anxious"] = "bezorgd";
-$a->strings["cranky"] = "humeurig ";
-$a->strings["disturbed"] = "verontrust";
-$a->strings["frustrated"] = "gefrustreerd";
-$a->strings["motivated"] = "gemotiveerd";
-$a->strings["relaxed"] = "ontspannen";
-$a->strings["surprised"] = "verbaasd";
-$a->strings["View Video"] = "Bekijk Video";
-$a->strings["bytes"] = "bytes";
-$a->strings["Click to open/close"] = "klik om te openen/sluiten";
-$a->strings["View on separate page"] = "";
-$a->strings["view on separate page"] = "";
-$a->strings["activity"] = "activiteit";
-$a->strings["comment"] = [
-       0 => "reactie",
-       1 => "reacties",
-];
-$a->strings["post"] = "bericht";
-$a->strings["Item filed"] = "Item bewaard";
-$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd.";
-$a->strings["An invitation is required."] = "Een uitnodiging is vereist.";
-$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden.";
-$a->strings["Invalid OpenID url"] = "Ongeldige OpenID url";
-$a->strings["Please enter the required information."] = "Vul de vereiste informatie in.";
-$a->strings["Please use a shorter name."] = "gebruik een kortere naam";
-$a->strings["Name too short."] = "Naam te kort";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn.";
-$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan.";
-$a->strings["Not a valid email address."] = "Geen geldig e-mailadres.";
-$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "";
-$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt.";
-$a->strings["An error occurred during registration. Please try again."] = "";
-$a->strings["default"] = "standaard";
-$a->strings["An error occurred creating your default profile. Please try again."] = "";
-$a->strings["Profile Photos"] = "Profielfoto's";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "";
-$a->strings["Registration at %s"] = "";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "";
-$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "";
-$a->strings["Registration details for %s"] = "Registratie details voor %s";
-$a->strings["Post successful."] = "Bericht succesvol geplaatst.";
-$a->strings["Access denied."] = "Toegang geweigerd";
-$a->strings["Welcome to %s"] = "Welkom op %s";
-$a->strings["No more system notifications."] = "Geen systeemnotificaties meer.";
-$a->strings["System Notifications"] = "Systeemnotificaties";
-$a->strings["Remove term"] = "Verwijder zoekterm";
-$a->strings["Public access denied."] = "Niet vrij toegankelijk";
-$a->strings["Only logged in users are permitted to perform a search."] = "";
-$a->strings["Too Many Requests"] = "";
-$a->strings["Only one search per minute is permitted for not logged in users."] = "";
-$a->strings["No results."] = "Geen resultaten.";
-$a->strings["Items tagged with: %s"] = "";
-$a->strings["Results for: %s"] = "";
-$a->strings["This is Friendica, version"] = "Dit is Friendica, versie";
-$a->strings["running at web location"] = "draaiend op web-adres";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bezoek <a href=\"http://friendica.com\">Friendica.com</a> om meer te leren over het Friendica project.";
-$a->strings["Bug reports and issues: please visit"] = "Bug rapporten en problemen: bezoek";
-$a->strings["the bugtracker at github"] = "";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com";
-$a->strings["Installed plugins/addons/apps:"] = "Geïnstalleerde plugins/toepassingen:";
-$a->strings["No installed plugins/addons/apps"] = "Geen plugins of toepassingen geïnstalleerd";
-$a->strings["No valid account found."] = "Geen geldige account gevonden.";
-$a->strings["Password reset request issued. Check your email."] = "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "";
-$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "";
-$a->strings["Password reset requested at %s"] = "Op %s werd gevraagd je wachtwoord opnieuw in te stellen";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld.";
-$a->strings["Password Reset"] = "Wachtwoord opnieuw instellen";
-$a->strings["Your password has been reset as requested."] = "Je wachtwoord is opnieuw ingesteld zoals gevraagd.";
-$a->strings["Your new password is"] = "Je nieuwe wachtwoord is";
-$a->strings["Save or copy your new password - and then"] = "Bewaar of kopieer je nieuw wachtwoord - en dan";
-$a->strings["click here to login"] = "klik hier om in te loggen";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina.";
-$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tBeste %1\$s,\n\t\t\t\t\tZoals gevraagd werd je wachtwoord aangepast. Houd deze\n\t\t\t\tinformatie bij (of verander je wachtwoord naar\n\t\t\t\tiets dat je zal onthouden).\n\t\t\t";
-$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "";
-$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s";
-$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies.";
-$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:";
-$a->strings["Reset"] = "Opnieuw";
-$a->strings["No profile"] = "Geen profiel";
-$a->strings["Help:"] = "Help:";
-$a->strings["Not Found"] = "Niet gevonden";
-$a->strings["Page not found."] = "Pagina niet gevonden";
-$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar.";
-$a->strings["Visible to:"] = "Zichtbaar voor:";
-$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw.";
-$a->strings["Import"] = "Importeren";
-$a->strings["Move account"] = "Account verplaatsen";
-$a->strings["You can import an account from another Friendica server."] = "Je kunt een account van een andere Friendica server importeren.";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "";
-$a->strings["Account file"] = "Account bestand";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "";
-$a->strings["Visit %s's profile [%s]"] = "Bekijk het profiel van %s [%s]";
-$a->strings["Edit contact"] = "Contact bewerken";
-$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep";
-$a->strings["Export account"] = "Account exporteren";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server.";
-$a->strings["Export all"] = "Alles exporteren";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)";
-$a->strings["Export personal data"] = "Persoonlijke gegevens exporteren";
-$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden.";
-$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres.";
-$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website.";
-$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt.";
-$a->strings["%d message sent."] = [
-       0 => "%d bericht verzonden.",
-       1 => "%d berichten verzonden.",
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s";
+$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden.";
+$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres.";
+$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website.";
+$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt.";
+$a->strings["%d message sent."] = [
+       0 => "%d bericht verzonden.",
+       1 => "%d berichten verzonden.",
 ];
 $a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen";
 $a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken.";
 $a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website.";
 $a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten.";
 $a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen.";
+$a->strings["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"] = "Verstuur uitnodigingen";
 $a->strings["Enter email addresses, one per line:"] = "Vul e-mailadressen in, één per lijn:";
 $a->strings["Your message:"] = "Jouw bericht:";
 $a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen.";
 $a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code";
 $a->strings["Once you have registered, please connect with me via my profile page at:"] = "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken";
-$a->strings["Submit"] = "Opslaan";
-$a->strings["Files"] = "Bestanden";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "";
+$a->strings["Invalid request."] = "";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "";
+$a->strings["Or - did you try to upload an empty file?"] = "";
+$a->strings["File exceeds size limit of %s"] = "";
+$a->strings["File upload failed."] = "Uploaden van bestand mislukt.";
+$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen.";
+$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:";
+$a->strings["This introduction has already been accepted."] = "Verzoek is al goedgekeurd";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Profiel is ongeldig of bevat geen informatie";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar.";
+$a->strings["Warning: profile location has no profile photo."] = "Waarschuwing: Profieladres heeft geen profielfoto.";
+$a->strings["%d required parameter was not found at the given location"] = [
+       0 => "De %d vereiste parameter is niet op het gegeven adres gevonden",
+       1 => "De %d vereiste parameters zijn niet op het gegeven adres gevonden",
+];
+$a->strings["Introduction complete."] = "Verzoek voltooid.";
+$a->strings["Unrecoverable protocol error."] = "Onherstelbare protocolfout. ";
+$a->strings["Profile unavailable."] = "Profiel onbeschikbaar";
+$a->strings["%s has received too many connection requests today."] = "%s heeft te veel verzoeken gehad vandaag.";
+$a->strings["Spam protection measures have been invoked."] = "Beveiligingsmaatregelen tegen spam zijn in werking getreden.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Wij adviseren vrienden om het over 24 uur nog een keer te proberen.";
+$a->strings["Invalid locator"] = "Ongeldige plaatsbepaler";
+$a->strings["You have already introduced yourself here."] = "Je hebt jezelf hier al voorgesteld.";
+$a->strings["Apparently you are already friends with %s."] = "Blijkbaar bent u al bevriend met %s.";
+$a->strings["Invalid profile URL."] = "Ongeldig profiel adres.";
+$a->strings["Disallowed profile URL."] = "Niet toegelaten profiel adres.";
+$a->strings["Blocked domain"] = "";
+$a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen.";
+$a->strings["Your introduction has been sent."] = "Je verzoek is verzonden.";
+$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "";
+$a->strings["Please login to confirm introduction."] = "Log in om je verzoek te bevestigen.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Je huidige identiteit is niet de juiste. Log met <strong>dit</strong> profiel in.";
+$a->strings["Confirm"] = "Bevestig";
+$a->strings["Hide this contact"] = "Verberg dit contact";
+$a->strings["Welcome home %s."] = "Welkom terug %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Bevestig je vriendschaps-/connectieverzoek voor %s.";
+$a->strings["Public access denied."] = "Niet vrij toegankelijk";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"%s\">follow this link to find a public Friendica site and join us today</a>."] = "";
+$a->strings["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = "";
+$a->strings["Please answer the following:"] = "Beantwoord het volgende:";
+$a->strings["Does %s know you?"] = "Kent %s jou?";
+$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["GNU Social (Pleroma, Mastodon)"] = "";
+$a->strings["Diaspora (Socialhome, Hubzilla)"] = "";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk.";
+$a->strings["Your Identity Address:"] = "Adres van uw identiteit:";
+$a->strings["Submit Request"] = "Aanvraag indienen";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Time Conversion"] = "Tijdsconversie";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones.";
+$a->strings["UTC time: %s"] = "UTC tijd: %s";
+$a->strings["Current timezone: %s"] = "Huidige Tijdzone: %s";
+$a->strings["Converted localtime: %s"] = "Omgerekende lokale tijd: %s";
+$a->strings["Please select your timezone:"] = "Selecteer je tijdzone:";
+$a->strings["Only logged in users are permitted to perform a probing."] = "";
 $a->strings["Permission denied"] = "Toegang geweigerd";
 $a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificatie.";
 $a->strings["Profile Visibility Editor"] = "";
 $a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen.";
 $a->strings["Visible To"] = "Zichtbaar voor";
 $a->strings["All Contacts (with secure profile access)"] = "Alle contacten (met veilige profieltoegang)";
-$a->strings["Tag removed"] = "Label verwijderd";
-$a->strings["Remove Item Tag"] = "Verwijder label van item";
-$a->strings["Select a tag to remove: "] = "Selecteer een label om te verwijderen: ";
-$a->strings["Remove"] = "Verwijderen";
-$a->strings["Resubscribing to OStatus contacts"] = "";
-$a->strings["Error"] = "";
-$a->strings["Done"] = "Klaar";
-$a->strings["Keep this window open until done."] = "Houd dit scherm open tot het klaar is";
-$a->strings["No potential page delegates located."] = "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden.";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd.";
-$a->strings["Existing Page Managers"] = "Bestaande paginabeheerders";
-$a->strings["Existing Page Delegates"] = "Bestaande personen waaraan het paginabeheer is uitbesteed";
-$a->strings["Potential Delegates"] = "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed ";
-$a->strings["Add"] = "Toevoegen";
-$a->strings["No entries."] = "Geen gegevens.";
-$a->strings["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!"] = "";
-$a->strings["- select -"] = "- Kies -";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s";
-$a->strings["Item not available."] = "Item niet beschikbaar";
-$a->strings["Item was not found."] = "Item niet gevonden";
-$a->strings["You must be logged in to use addons. "] = "Je moet ingelogd zijn om deze addons te kunnen gebruiken. ";
-$a->strings["Applications"] = "Toepassingen";
-$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd";
-$a->strings["Not Extended"] = "";
-$a->strings["Welcome to Friendica"] = "Welkom bij Friendica";
-$a->strings["New Member Checklist"] = "Checklist voor nieuwe leden";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen.";
-$a->strings["Getting Started"] = "Aan de slag";
-$a->strings["Friendica Walk-Through"] = "Doorloop Friendica";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden.";
-$a->strings["Go to Your Settings"] = "Ga naar je instellingen";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Verander je initieel wachtwoord op je <em>instellingenpagina</em>. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web.";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden.";
-$a->strings["Upload Profile Photo"] = "Profielfoto uploaden";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen.";
-$a->strings["Edit Your Profile"] = "Bewerk je profiel";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Bewerk je <strong>standaard</strong> profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen.";
-$a->strings["Profile Keywords"] = "Sleutelwoorden voor dit profiel";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen.";
-$a->strings["Connecting"] = "Verbinding aan het maken";
-$a->strings["Importing Emails"] = "E-mails importeren";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren";
-$a->strings["Go to Your Contacts Page"] = "Ga naar je contactenpagina";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de <em>Voeg nieuw contact toe</em> dialoog.";
-$a->strings["Go to Your Site's Directory"] = "Ga naar de gids van je website";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord <em>Connect</em> of <em>Follow</em> op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd.";
-$a->strings["Finding New People"] = "Nieuwe mensen vinden";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden.";
-$a->strings["Group Your Contacts"] = "Groepeer je contacten";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. ";
-$a->strings["Why Aren't My Posts Public?"] = "Waarom zijn mijn berichten niet openbaar?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie.";
-$a->strings["Getting Help"] = "Hulp krijgen";
-$a->strings["Go to the Help Section"] = "Ga naar de help";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Je kunt onze <strong>help</strong> pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma.";
+$a->strings["Account approved."] = "Account goedgekeurd.";
+$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s";
+$a->strings["Please login."] = "Inloggen.";
 $a->strings["Remove My Account"] = "Verwijder mijn account";
 $a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is.";
 $a->strings["Please enter your password for verification:"] = "Voer je wachtwoord in voor verificatie:";
-$a->strings["Item not found"] = "Item niet gevonden";
-$a->strings["Edit post"] = "Bericht bewerken";
-$a->strings["Time Conversion"] = "Tijdsconversie";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones.";
-$a->strings["UTC time: %s"] = "UTC tijd: %s";
-$a->strings["Current timezone: %s"] = "Huidige Tijdzone: %s";
-$a->strings["Converted localtime: %s"] = "Omgerekende lokale tijd: %s";
-$a->strings["Please select your timezone:"] = "Selecteer je tijdzone:";
-$a->strings["The post was created"] = "";
-$a->strings["Group created."] = "Groep aangemaakt.";
-$a->strings["Could not create group."] = "Kon de groep niet aanmaken.";
-$a->strings["Group not found."] = "Groep niet gevonden.";
-$a->strings["Group name changed."] = "Groepsnaam gewijzigd.";
-$a->strings["Save Group"] = "Bewaar groep";
-$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan.";
-$a->strings["Group removed."] = "Groep verwijderd.";
-$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen.";
-$a->strings["Group Editor"] = "Groepsbewerker";
-$a->strings["Members"] = "Leden";
-$a->strings["All Contacts"] = "Alle Contacten";
-$a->strings["Group is empty"] = "De groep is leeg";
+$a->strings["No contacts."] = "Geen contacten.";
+$a->strings["Access denied."] = "Toegang geweigerd";
 $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
 $a->strings["No recipient selected."] = "Geen ontvanger geselecteerd.";
 $a->strings["Unable to check your home location."] = "Niet in staat om je tijdlijn-locatie vast te stellen";
@@ -909,363 +554,339 @@ $a->strings["Send Private Message"] = "Verstuur privébericht";
 $a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat.";
 $a->strings["To:"] = "Aan:";
 $a->strings["Subject:"] = "Onderwerp:";
-$a->strings["link"] = "link";
-$a->strings["Authorize application connection"] = "";
-$a->strings["Return to your app and insert this Securty Code:"] = "";
-$a->strings["Please login to continue."] = "Log in om verder te gaan.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?";
-$a->strings["No"] = "Nee";
-$a->strings["Source (bbcode) text:"] = "Bron (bbcode) tekst:";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Bron (Diaspora) tekst om naar BBCode om te zetten:";
-$a->strings["Source input: "] = "Bron ingave:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (ruwe HTML):";
-$a->strings["bb2html: "] = "bb2html:";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
-$a->strings["bb2md: "] = "bb2md: ";
-$a->strings["bb2md2html: "] = "bb2md2html: ";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
-$a->strings["Source input (Diaspora format): "] = "Bron ingave (Diaspora formaat):";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["Subscribing to OStatus contacts"] = "";
-$a->strings["No contact provided."] = "";
-$a->strings["Couldn't fetch information for contact."] = "";
-$a->strings["Couldn't fetch friends for contact."] = "";
-$a->strings["success"] = "Succesvol";
-$a->strings["failed"] = "Mislukt";
-$a->strings["ignored"] = "Verboden";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom";
-$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden.";
-$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?";
-$a->strings["Message deleted."] = "Bericht verwijderd.";
-$a->strings["Conversation removed."] = "Gesprek verwijderd.";
-$a->strings["No messages."] = "Geen berichten.";
-$a->strings["Message not available."] = "Bericht niet beschikbaar.";
+$a->strings["Export account"] = "Account exporteren";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server.";
+$a->strings["Export all"] = "Alles exporteren";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)";
+$a->strings["Export personal data"] = "Persoonlijke gegevens exporteren";
+$a->strings["- select -"] = "- Kies -";
+$a->strings["No more system notifications."] = "Geen systeemnotificaties meer.";
+$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden";
+$a->strings["{0} sent you a message"] = "{0} stuurde jou een bericht";
+$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren";
+$a->strings["Poke/Prod"] = "Aanstoten/porren";
+$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen";
+$a->strings["Recipient"] = "Ontvanger";
+$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen";
+$a->strings["Make this post private"] = "Dit bericht privé maken";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s";
+$a->strings["Tag removed"] = "Label verwijderd";
+$a->strings["Remove Item Tag"] = "Verwijder label van item";
+$a->strings["Select a tag to remove: "] = "Selecteer een label om te verwijderen: ";
+$a->strings["Remove"] = "Verwijderen";
+$a->strings["Image exceeds size limit of %s"] = "";
+$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken";
+$a->strings["Wall Photos"] = "";
+$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt.";
+$a->strings["Remove term"] = "Verwijder zoekterm";
+$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten";
+$a->strings["Only logged in users are permitted to perform a search."] = "";
+$a->strings["Too Many Requests"] = "";
+$a->strings["Only one search per minute is permitted for not logged in users."] = "";
+$a->strings["No results."] = "Geen resultaten.";
+$a->strings["Items tagged with: %s"] = "";
+$a->strings["Results for: %s"] = "";
+$a->strings["Login"] = "Login";
+$a->strings["The post was created"] = "";
+$a->strings["Community option not available."] = "";
+$a->strings["Not available."] = "Niet beschikbaar";
+$a->strings["Local Community"] = "";
+$a->strings["Posts from local users on this server"] = "";
+$a->strings["Global Community"] = "";
+$a->strings["Posts from users of the whole federated network"] = "";
+$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"] = "Item niet gevonden";
+$a->strings["Edit post"] = "Bericht bewerken";
+$a->strings["CC: email addresses"] = "CC: e-mailadressen";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be";
+$a->strings["You must be logged in to use this module"] = "";
+$a->strings["Source URL"] = "";
+$a->strings["Friend suggestion sent."] = "Vriendschapsvoorstel verzonden.";
+$a->strings["Suggest Friends"] = "Stel vrienden voor";
+$a->strings["Suggest a friend for %s"] = "Stel een vriend voor aan %s";
+$a->strings["Group created."] = "Groep aangemaakt.";
+$a->strings["Could not create group."] = "Kon de groep niet aanmaken.";
+$a->strings["Group not found."] = "Groep niet gevonden.";
+$a->strings["Group name changed."] = "Groepsnaam gewijzigd.";
+$a->strings["Save Group"] = "Bewaar groep";
+$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan.";
+$a->strings["Group Name: "] = "Groepsnaam:";
+$a->strings["Group removed."] = "Groep verwijderd.";
+$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen.";
+$a->strings["Delete Group"] = "";
+$a->strings["Group Editor"] = "Groepsbewerker";
+$a->strings["Edit Group Name"] = "";
+$a->strings["Members"] = "Leden";
+$a->strings["All Contacts"] = "Alle Contacten";
+$a->strings["Group is empty"] = "De groep is leeg";
+$a->strings["Remove Contact"] = "";
+$a->strings["Add Contact"] = "";
+$a->strings["Unable to locate original post."] = "Ik kan de originele post niet meer vinden.";
+$a->strings["Empty post discarded."] = "Lege post weggegooid.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk.";
+$a->strings["You may visit them online at %s"] = "Je kunt ze online bezoeken op %s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen.";
+$a->strings["%s posted an update."] = "%s heeft een wijziging geplaatst.";
+$a->strings["New Message"] = "Nieuw Bericht";
+$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden.";
+$a->strings["Messages"] = "Privéberichten";
+$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?";
+$a->strings["Message deleted."] = "Bericht verwijderd.";
+$a->strings["Conversation removed."] = "Gesprek verwijderd.";
+$a->strings["No messages."] = "Geen berichten.";
+$a->strings["Message not available."] = "Bericht niet beschikbaar.";
 $a->strings["Delete message"] = "Verwijder bericht";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
 $a->strings["Delete conversation"] = "Verwijder gesprek";
 $a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> antwoorden vanaf de profiel-pagina van de afzender.";
 $a->strings["Send Reply"] = "Verstuur Antwoord";
 $a->strings["Unknown sender - %s"] = "Onbekende afzender - %s";
 $a->strings["You and %s"] = "Jij en %s";
 $a->strings["%s and You"] = "%s en jij";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
 $a->strings["%d message"] = [
        0 => "%d bericht",
        1 => "%d berichten",
 ];
-$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen.";
-$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:";
-$a->strings["Contact settings applied."] = "Contactinstellingen toegepast.";
-$a->strings["Contact update failed."] = "Aanpassen van contact mislukt.";
-$a->strings["Contact not found."] = "Contact niet gevonden";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen.";
-$a->strings["No mirroring"] = "";
-$a->strings["Mirror as forwarded posting"] = "";
-$a->strings["Mirror as my own posting"] = "";
-$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker";
-$a->strings["Refetch contact data"] = "";
-$a->strings["Remote Self"] = "";
-$a->strings["Mirror postings from this contact"] = "";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
-$a->strings["Name"] = "Naam";
-$a->strings["Account Nickname"] = "Bijnaam account";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam";
-$a->strings["Account URL"] = "URL account";
-$a->strings["Friend Request URL"] = "URL vriendschapsverzoek";
-$a->strings["Friend Confirm URL"] = "URL vriendschapsbevestiging";
-$a->strings["Notification Endpoint URL"] = "";
-$a->strings["Poll/Feed URL"] = "URL poll/feed";
-$a->strings["New photo from this URL"] = "Nieuwe foto van deze URL";
+$a->strings["add"] = "toevoegen";
+$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"] = "Zo'n groep bestaat niet";
 $a->strings["Group: %s"] = "";
-$a->strings["This entry was edited"] = "";
-$a->strings["%d comment"] = [
-       0 => "%d reactie",
-       1 => "%d reacties",
-];
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Privéberichten naar deze persoon kunnen openbaar gemaakt worden.";
+$a->strings["Invalid contact."] = "Ongeldig contact.";
+$a->strings["Commented Order"] = "Nieuwe reacties bovenaan";
+$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan";
+$a->strings["Posted Order"] = "Nieuwe berichten bovenaan";
+$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan";
+$a->strings["Personal"] = "Persoonlijk";
+$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben";
+$a->strings["New"] = "Nieuw";
+$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum";
+$a->strings["Shared Links"] = "Gedeelde links";
+$a->strings["Interesting Links"] = "Interessante links";
+$a->strings["Starred"] = "Met ster";
+$a->strings["Favourite Posts"] = "Favoriete berichten";
+$a->strings["Personal Notes"] = "Persoonlijke Nota's";
+$a->strings["Post successful."] = "Bericht succesvol geplaatst.";
+$a->strings["Photo Albums"] = "Fotoalbums";
+$a->strings["Recent Photos"] = "Recente foto's";
+$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden";
+$a->strings["everybody"] = "iedereen";
+$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar";
+$a->strings["Album not found."] = "Album niet gevonden";
+$a->strings["Delete Album"] = "Verwijder album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Wil je echt dit fotoalbum en alle foto's erin verwijderen?";
+$a->strings["Delete Photo"] = "Verwijder foto";
+$a->strings["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?";
+$a->strings["a photo"] = "een foto";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s";
+$a->strings["Image upload didn't complete, please try again"] = "";
+$a->strings["Image file is missing"] = "";
+$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "";
+$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg.";
+$a->strings["No photos selected"] = "Geen foto's geselecteerd";
+$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt.";
+$a->strings["Upload Photos"] = "Upload foto's";
+$a->strings["New album name: "] = "Nieuwe albumnaam: ";
+$a->strings["or existing album name: "] = "of bestaande albumnaam: ";
+$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload";
+$a->strings["Permissions"] = "Rechten";
+$a->strings["Show to Groups"] = "Tonen aan groepen";
+$a->strings["Show to Contacts"] = "Tonen aan contacten";
+$a->strings["Edit Album"] = "Album wijzigen";
+$a->strings["Show Newest First"] = "Toon niewste eerst";
+$a->strings["Show Oldest First"] = "Toon oudste eerst";
+$a->strings["View Photo"] = "Bekijk foto";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt.";
+$a->strings["Photo not available"] = "Foto is niet beschikbaar";
+$a->strings["View photo"] = "Bekijk foto";
+$a->strings["Edit photo"] = "Bewerk foto";
+$a->strings["Use as profile photo"] = "Gebruik als profielfoto";
 $a->strings["Private Message"] = "Privébericht";
+$a->strings["View Full Size"] = "Bekijk in volledig formaat";
+$a->strings["Tags: "] = "Labels: ";
+$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]";
+$a->strings["New album name"] = "Nieuwe albumnaam";
+$a->strings["Caption"] = "Onderschrift";
+$a->strings["Add a Tag"] = "Een label toevoegen";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping ";
+$a->strings["Do not rotate"] = "";
+$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)";
+$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)";
 $a->strings["I like this (toggle)"] = "Vind ik leuk";
-$a->strings["like"] = "leuk";
 $a->strings["I don't like this (toggle)"] = "Vind ik niet leuk";
-$a->strings["dislike"] = "niet leuk";
-$a->strings["Share this"] = "Delen";
-$a->strings["share"] = "Delen";
 $a->strings["This is you"] = "Dit ben jij";
 $a->strings["Comment"] = "Reacties";
-$a->strings["Bold"] = "Vet";
-$a->strings["Italic"] = "Cursief";
-$a->strings["Underline"] = "Onderstrepen";
-$a->strings["Quote"] = "Citeren";
-$a->strings["Code"] = "Broncode";
-$a->strings["Image"] = "Afbeelding";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Video";
-$a->strings["Edit"] = "Bewerken";
-$a->strings["add star"] = "ster toevoegen";
-$a->strings["remove star"] = "ster verwijderen";
-$a->strings["toggle star status"] = "ster toevoegen of verwijderen";
-$a->strings["starred"] = "met ster";
-$a->strings["add tag"] = "label toevoegen";
-$a->strings["ignore thread"] = "";
-$a->strings["unignore thread"] = "";
-$a->strings["toggle ignore status"] = "";
-$a->strings["save to folder"] = "Bewaren in map";
-$a->strings["I will attend"] = "";
-$a->strings["I will not attend"] = "";
-$a->strings["I might attend"] = "";
-$a->strings["to"] = "aan";
-$a->strings["Wall-to-Wall"] = "wall-to-wall";
-$a->strings["via Wall-To-Wall:"] = "via wall-to-wall";
-$a->strings["Friend suggestion sent."] = "Vriendschapsvoorstel verzonden.";
-$a->strings["Suggest Friends"] = "Stel vrienden voor";
-$a->strings["Suggest a friend for %s"] = "Stel een vriend voor aan %s";
-$a->strings["Mood"] = "Stemming";
-$a->strings["Set your current mood and tell your friends"] = "Stel je huidige stemming in, en vertel het je vrienden";
-$a->strings["Poke/Prod"] = "Aanstoten/porren";
-$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen";
-$a->strings["Recipient"] = "Ontvanger";
-$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen";
-$a->strings["Make this post private"] = "Dit bericht privé maken";
-$a->strings["Image uploaded but image cropping failed."] = "Afbeelding opgeladen, maar bijsnijden mislukt.";
-$a->strings["Image size reduction [%s] failed."] = "Verkleining van de afbeelding [%s] mislukt.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen.";
-$a->strings["Unable to process image"] = "Ik kan de afbeelding niet verwerken";
-$a->strings["Image exceeds size limit of %s"] = "";
-$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken";
-$a->strings["Upload File:"] = "Upload bestand:";
-$a->strings["Select a profile:"] = "Kies een profiel:";
-$a->strings["Upload"] = "Uploaden";
-$a->strings["or"] = "of";
-$a->strings["skip this step"] = "Deze stap overslaan";
-$a->strings["select a photo from your photo albums"] = "Kies een foto uit je fotoalbums";
-$a->strings["Crop Image"] = "Afbeelding bijsnijden";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Pas het afsnijden van de afbeelding aan voor het beste resultaat.";
-$a->strings["Done Editing"] = "Wijzigingen compleet";
-$a->strings["Image uploaded successfully."] = "Uploaden van afbeelding gelukt.";
-$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt.";
-$a->strings["Account approved."] = "Account goedgekeurd.";
-$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s";
-$a->strings["Please login."] = "Inloggen.";
-$a->strings["Invalid request identifier."] = "Ongeldige <em>request identifier</em>.";
-$a->strings["Discard"] = "Verwerpen";
-$a->strings["Ignore"] = "Negeren";
-$a->strings["Network Notifications"] = "Netwerknotificaties";
-$a->strings["Personal Notifications"] = "Persoonlijke notificaties";
-$a->strings["Home Notifications"] = "Tijdlijn-notificaties";
-$a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken";
-$a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken";
-$a->strings["Notification type: "] = "Notificatiesoort:";
-$a->strings["suggested by %s"] = "Voorgesteld door %s";
-$a->strings["Hide this contact from others"] = "Verberg dit contact voor anderen";
-$a->strings["Post a new friend activity"] = "Bericht over een nieuwe vriend";
-$a->strings["if applicable"] = "Indien toepasbaar";
-$a->strings["Approve"] = "Goedkeuren";
-$a->strings["Claims to be known to you: "] = "Denkt dat u hem of haar kent:";
-$a->strings["yes"] = "Ja";
-$a->strings["no"] = "Nee";
-$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "";
-$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "";
-$a->strings["Friend"] = "Vriend";
-$a->strings["Sharer"] = "Deler";
-$a->strings["Fan/Admirer"] = "Fan/Bewonderaar";
-$a->strings["Profile URL"] = "Profiel url";
-$a->strings["No introductions."] = "Geen vriendschaps- of connectieverzoeken.";
-$a->strings["Show unread"] = "";
-$a->strings["Show all"] = "";
-$a->strings["No more %s notifications."] = "";
-$a->strings["Profile not found."] = "Profiel niet gevonden";
-$a->strings["Profile deleted."] = "Profiel verwijderd";
-$a->strings["Profile-"] = "Profiel-";
-$a->strings["New profile created."] = "Nieuw profiel aangemaakt.";
-$a->strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen.";
-$a->strings["Profile Name is required."] = "Profielnaam is vereist.";
-$a->strings["Marital Status"] = "Echtelijke staat";
-$a->strings["Romantic Partner"] = "Romantische Partner";
-$a->strings["Work/Employment"] = "Werk";
-$a->strings["Religion"] = "Godsdienst";
-$a->strings["Political Views"] = "Politieke standpunten";
-$a->strings["Gender"] = "Geslacht";
-$a->strings["Sexual Preference"] = "Seksuele Voorkeur";
-$a->strings["XMPP"] = "";
-$a->strings["Homepage"] = "Tijdlijn";
-$a->strings["Interests"] = "Interesses";
-$a->strings["Address"] = "Adres";
-$a->strings["Location"] = "Plaats";
-$a->strings["Profile updated."] = "Profiel bijgewerkt.";
-$a->strings[" and "] = "en";
-$a->strings["public profile"] = "publiek profiel";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s veranderde %2\$s naar &ldquo;%3\$s&rdquo;";
-$a->strings[" - Visit %1\$s's %2\$s"] = " - Bezoek %2\$s van %1\$s";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepast %2\$s, %3\$s veranderd.";
-$a->strings["Hide contacts and friends:"] = "";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Je vrienden/contacten verbergen voor bezoekers van dit profiel?";
-$a->strings["Show more profile fields:"] = "";
-$a->strings["Profile Actions"] = "";
-$a->strings["Edit Profile Details"] = "Profieldetails bewerken";
-$a->strings["Change Profile Photo"] = "Profielfoto wijzigen";
-$a->strings["View this profile"] = "Dit profiel bekijken";
-$a->strings["Create a new profile using these settings"] = "Nieuw profiel aanmaken met deze instellingen";
-$a->strings["Clone this profile"] = "Dit profiel klonen";
-$a->strings["Delete this profile"] = "Dit profiel verwijderen";
-$a->strings["Basic information"] = "";
-$a->strings["Profile picture"] = "";
-$a->strings["Preferences"] = "";
-$a->strings["Status information"] = "";
-$a->strings["Additional information"] = "";
-$a->strings["Relation"] = "";
-$a->strings["Your Gender:"] = "Je Geslacht:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Echtelijke Staat:";
-$a->strings["Example: fishing photography software"] = "Voorbeeld: vissen fotografie software";
-$a->strings["Profile Name:"] = "Profiel Naam:";
-$a->strings["Required"] = "Vereist";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dit is jouw <strong>publiek</strong> profiel.<br />Het <strong>kan</strong> zichtbaar zijn voor iedereen op het internet.";
-$a->strings["Your Full Name:"] = "Je volledige naam:";
-$a->strings["Title/Description:"] = "Titel/Beschrijving:";
-$a->strings["Street Address:"] = "Postadres:";
-$a->strings["Locality/City:"] = "Gemeente/Stad:";
-$a->strings["Region/State:"] = "Regio/Staat:";
-$a->strings["Postal/Zip Code:"] = "Postcode:";
-$a->strings["Country:"] = "Land:";
-$a->strings["Who: (if applicable)"] = "Wie: (indien toepasbaar)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl";
-$a->strings["Since [date]:"] = "Sinds [datum]:";
-$a->strings["Tell us about yourself..."] = "Vertel iets over jezelf...";
-$a->strings["XMPP (Jabber) address:"] = "";
-$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "";
-$a->strings["Homepage URL:"] = "Adres tijdlijn:";
-$a->strings["Religious Views:"] = "Geloof:";
-$a->strings["Public Keywords:"] = "Publieke Sleutelwoorden:";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)";
-$a->strings["Private Keywords:"] = "Privé Sleutelwoorden:";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)";
-$a->strings["Musical interests"] = "Muzikale interesses";
-$a->strings["Books, literature"] = "Boeken, literatuur";
-$a->strings["Television"] = "Televisie";
-$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/ontspanning";
-$a->strings["Hobbies/Interests"] = "Hobby's/Interesses";
-$a->strings["Love/romance"] = "Liefde/romance";
-$a->strings["Work/employment"] = "Werk";
-$a->strings["School/education"] = "School/opleiding";
-$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken";
-$a->strings["Edit/Manage Profiles"] = "Wijzig/Beheer Profielen";
-$a->strings["No friends to display."] = "Geen vrienden om te laten zien.";
+$a->strings["Map"] = "";
+$a->strings["View Album"] = "Album bekijken";
+$a->strings["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar.";
+$a->strings["%s's posts"] = "";
+$a->strings["%s's comments"] = "";
+$a->strings["%s's timeline"] = "";
 $a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt.";
+$a->strings["Tips for New Members"] = "Tips voor nieuwe leden";
+$a->strings["Do you really want to delete this video?"] = "Wil je deze video echt verwijderen?";
+$a->strings["Delete Video"] = "Verwijder video";
+$a->strings["No videos selected"] = "Geen video's geselecteerd";
+$a->strings["Recent Videos"] = "Recente video's";
+$a->strings["Upload New Videos"] = "Nieuwe video's uploaden";
+$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"] = "Instellingen opslaan";
+$a->strings["Delegate Page Management"] = "Paginabeheer uitbesteden";
+$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."] = "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd.";
+$a->strings["Existing Page Delegates"] = "Bestaande personen waaraan het paginabeheer is uitbesteed";
+$a->strings["Potential Delegates"] = "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed ";
+$a->strings["Add"] = "Toevoegen";
+$a->strings["No entries."] = "Geen gegevens.";
+$a->strings["People Search - %s"] = "";
+$a->strings["Forum Search - %s"] = "";
+$a->strings["Friendica Communications Server - Setup"] = "";
+$a->strings["Could not connect to database."] = "Kon geen toegang krijgen tot de database.";
+$a->strings["Could not create table."] = "Kon tabel niet aanmaken.";
+$a->strings["Your Friendica site database has been installed."] = "De database van je Friendica-website is geïnstalleerd.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Zie het bestand \"INSTALL.txt\".";
+$a->strings["Database already in use."] = "";
+$a->strings["System check"] = "Systeemcontrole";
+$a->strings["Next"] = "Volgende";
+$a->strings["Check again"] = "Controleer opnieuw";
+$a->strings["Database connection"] = "Verbinding met database";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. ";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat.";
+$a->strings["Database Server Name"] = "Servernaam database";
+$a->strings["Database Login Name"] = "Gebruikersnaam database";
+$a->strings["Database Login Password"] = "Wachtwoord database";
+$a->strings["For security reasons the password must not be empty"] = "";
+$a->strings["Database Name"] = "Naam database";
+$a->strings["Site administrator email address"] = "E-mailadres van de websitebeheerder";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken.";
+$a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor uw website";
+$a->strings["Site settings"] = "Website-instellingen";
+$a->strings["System Language:"] = "";
+$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kan geen command-line-versie van PHP vinden in het PATH van de webserver.";
+$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 <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Setup the worker'</a>"] = "";
+$a->strings["PHP executable path"] = "PATH van het PHP commando";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten.";
+$a->strings["Command line PHP"] = "PHP-opdrachtregel";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
+$a->strings["Found PHP version: "] = "Gevonden PHP versie:";
+$a->strings["PHP cli binary"] = "";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd.";
+$a->strings["This is required for message delivery to work."] = "Dit is nodig om het verzenden van berichten mogelijk te maken.";
+$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"] = "";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait.";
+$a->strings["Generate encryption keys"] = "";
+$a->strings["libCurl PHP module"] = "libCurl PHP module";
+$a->strings["GD graphics PHP module"] = "GD graphics PHP module";
+$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module";
+$a->strings["PDO or MySQLi PHP module"] = "";
+$a->strings["mb_string PHP module"] = "mb_string PHP module";
+$a->strings["XML PHP module"] = "";
+$a->strings["iconv PHP module"] = "";
+$a->strings["POSIX PHP module"] = "";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "";
+$a->strings["Error: The MySQL driver for PDO is not installed."] = "";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: iconv PHP module required but not installed."] = "";
+$a->strings["Error: POSIX PHP module required but not installed."] = "";
+$a->strings["Error, XML PHP module required but not installed."] = "";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen.";
+$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."] = "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel.";
+$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."] = "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php is schrijfbaar";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen.";
+$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."] = "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map.";
+$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."] = "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 is schrijfbaar";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
+$a->strings["Url rewrite is working"] = "";
+$a->strings["ImageMagick PHP extension is not installed"] = "";
+$a->strings["ImageMagick PHP extension is installed"] = "";
+$a->strings["ImageMagick supports 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."] = "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver.";
+$a->strings["<h1>What next</h1>"] = "<h1>Wat nu</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "";
+$a->strings["Go to your new Friendica node <a href=\"%s/register\">registration page</a> 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["Subscribing to OStatus contacts"] = "";
+$a->strings["No contact provided."] = "";
+$a->strings["Couldn't fetch information for contact."] = "";
+$a->strings["Couldn't fetch friends for contact."] = "";
+$a->strings["success"] = "Succesvol";
+$a->strings["failed"] = "Mislukt";
+$a->strings["ignored"] = "Verboden";
+$a->strings["Contact wasn't found or can't be unfollowed."] = "";
+$a->strings["Contact unfollowed"] = "";
+$a->strings["You aren't a friend of this contact."] = "";
+$a->strings["Unfollowing is currently not supported by your network."] = "";
+$a->strings["Disconnect/Unfollow"] = "";
+$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn";
+$a->strings["Events"] = "Gebeurtenissen";
 $a->strings["View"] = "";
 $a->strings["Previous"] = "Vorige";
-$a->strings["Next"] = "Volgende";
+$a->strings["today"] = "vandaag";
+$a->strings["month"] = "maand";
+$a->strings["week"] = "week";
+$a->strings["day"] = "dag";
 $a->strings["list"] = "";
 $a->strings["User not found"] = "";
 $a->strings["This calendar format is not supported"] = "";
 $a->strings["No exportable data found"] = "";
 $a->strings["calendar"] = "";
-$a->strings["No contacts in common."] = "Geen gedeelde contacten.";
-$a->strings["Common Friends"] = "Gedeelde Vrienden";
-$a->strings["Not available."] = "Niet beschikbaar";
-$a->strings["Global Directory"] = "Globale gids";
-$a->strings["Find on this site"] = "Op deze website zoeken";
-$a->strings["Results for:"] = "";
-$a->strings["Site Directory"] = "Websitegids";
-$a->strings["No entries (some entries may be hidden)."] = "Geen gegevens (sommige gegevens kunnen verborgen zijn).";
-$a->strings["People Search - %s"] = "";
-$a->strings["Forum Search - %s"] = "";
-$a->strings["No matches"] = "Geen resultaten";
-$a->strings["Item has been removed."] = "Item is verwijderd.";
 $a->strings["Event can not end before it has started."] = "";
 $a->strings["Event title and start time are required."] = "Titel en begintijd van de gebeurtenis zijn vereist.";
 $a->strings["Create New Event"] = "Maak een nieuwe gebeurtenis";
 $a->strings["Event details"] = "Gebeurtenis details";
 $a->strings["Starting date and Title are required."] = "";
 $a->strings["Event Starts:"] = "Gebeurtenis begint:";
+$a->strings["Required"] = "Vereist";
 $a->strings["Finish date/time is not known or not relevant"] = "Einddatum/tijd is niet gekend of niet relevant";
 $a->strings["Event Finishes:"] = "Gebeurtenis eindigt:";
 $a->strings["Adjust for viewer timezone"] = "Pas aan aan de tijdzone van de gebruiker";
 $a->strings["Description:"] = "Beschrijving:";
 $a->strings["Title:"] = "Titel:";
 $a->strings["Share this event"] = "Deel deze gebeurtenis";
-$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel.";
-$a->strings["is interested in:"] = "Is geïnteresseerd in:";
-$a->strings["Profile Match"] = "Profielmatch";
-$a->strings["Tips for New Members"] = "Tips voor nieuwe leden";
-$a->strings["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen.";
-$a->strings["Ignore/Hide"] = "Negeren/Verbergen";
-$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]";
-$a->strings["Recent Photos"] = "Recente foto's";
-$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden";
-$a->strings["everybody"] = "iedereen";
-$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar";
-$a->strings["Album not found."] = "Album niet gevonden";
-$a->strings["Delete Album"] = "Verwijder album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Wil je echt dit fotoalbum en alle foto's erin verwijderen?";
-$a->strings["Delete Photo"] = "Verwijder foto";
-$a->strings["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s";
-$a->strings["a photo"] = "een foto";
-$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg.";
-$a->strings["No photos selected"] = "Geen foto's geselecteerd";
-$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt.";
-$a->strings["Upload Photos"] = "Upload foto's";
-$a->strings["New album name: "] = "Nieuwe albumnaam: ";
-$a->strings["or existing album name: "] = "of bestaande albumnaam: ";
-$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload";
-$a->strings["Show to Groups"] = "Tonen aan groepen";
-$a->strings["Show to Contacts"] = "Tonen aan contacten";
-$a->strings["Private Photo"] = "Privé foto";
-$a->strings["Public Photo"] = "Publieke foto";
-$a->strings["Edit Album"] = "Album wijzigen";
-$a->strings["Show Newest First"] = "Toon niewste eerst";
-$a->strings["Show Oldest First"] = "Toon oudste eerst";
-$a->strings["View Photo"] = "Bekijk foto";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt.";
-$a->strings["Photo not available"] = "Foto is niet beschikbaar";
-$a->strings["View photo"] = "Bekijk foto";
-$a->strings["Edit photo"] = "Bewerk foto";
-$a->strings["Use as profile photo"] = "Gebruik als profielfoto";
-$a->strings["View Full Size"] = "Bekijk in volledig formaat";
-$a->strings["Tags: "] = "Labels: ";
-$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]";
-$a->strings["New album name"] = "Nieuwe albumnaam";
-$a->strings["Caption"] = "Onderschrift";
-$a->strings["Add a Tag"] = "Een label toevoegen";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping ";
-$a->strings["Do not rotate"] = "";
-$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)";
-$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)";
-$a->strings["Private photo"] = "Privé foto";
-$a->strings["Public photo"] = "Publieke foto";
-$a->strings["Map"] = "";
-$a->strings["View Album"] = "Album bekijken";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Registratie geslaagd. Kijk je e-mail na voor verdere instructies.";
-$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "";
-$a->strings["Registration successful."] = "";
-$a->strings["Your registration can not be processed."] = "Je registratie kan niet verwerkt worden.";
-$a->strings["Your registration is pending approval by the site owner."] = "Jouw registratie wacht op goedkeuring van de beheerder.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in.";
-$a->strings["Your OpenID (optional): "] = "Je OpenID (optioneel):";
-$a->strings["Include your profile in member directory?"] = "Je profiel in de ledengids opnemen?";
-$a->strings["Note for the admin"] = "";
-$a->strings["Leave a message for the admin, why you want to join this node"] = "";
-$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging.";
-$a->strings["Your invitation ID: "] = "Je uitnodigingsid:";
-$a->strings["Registration"] = "Registratie";
-$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "";
-$a->strings["Your Email Address: "] = "Je email adres:";
-$a->strings["New Password:"] = "Nieuw Wachtwoord:";
-$a->strings["Leave empty for an auto generated password."] = "";
-$a->strings["Confirm:"] = "Bevestig:";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan '<strong>bijnaam@\$sitename</strong>' zijn.";
-$a->strings["Choose a nickname: "] = "Kies een bijnaam:";
-$a->strings["Import your profile to this friendica instance"] = "";
+$a->strings["Basic"] = "";
+$a->strings["Advanced"] = "Geavanceerd";
+$a->strings["Failed to remove event"] = "";
+$a->strings["Event removed"] = "";
+$a->strings["Image uploaded but image cropping failed."] = "Afbeelding opgeladen, maar bijsnijden mislukt.";
+$a->strings["Image size reduction [%s] failed."] = "Verkleining van de afbeelding [%s] mislukt.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen.";
+$a->strings["Unable to process image"] = "Ik kan de afbeelding niet verwerken";
+$a->strings["Upload File:"] = "Upload bestand:";
+$a->strings["Select a profile:"] = "Kies een profiel:";
+$a->strings["or"] = "of";
+$a->strings["skip this step"] = "Deze stap overslaan";
+$a->strings["select a photo from your photo albums"] = "Kies een foto uit je fotoalbums";
+$a->strings["Crop Image"] = "Afbeelding bijsnijden";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Pas het afsnijden van de afbeelding aan voor het beste resultaat.";
+$a->strings["Done Editing"] = "Wijzigingen compleet";
+$a->strings["Image uploaded successfully."] = "Uploaden van afbeelding gelukt.";
 $a->strings["Account"] = "Account";
 $a->strings["Additional features"] = "Extra functies";
 $a->strings["Display"] = "Weergave";
 $a->strings["Social Networks"] = "Sociale netwerken";
-$a->strings["Plugins"] = "Plugins";
+$a->strings["Addons"] = "";
+$a->strings["Delegations"] = "";
 $a->strings["Connected apps"] = "Verbonden applicaties";
 $a->strings["Remove account"] = "Account verwijderen";
 $a->strings["Missing some important data!"] = "Een belangrijk gegeven ontbreekt!";
@@ -1274,34 +895,42 @@ $a->strings["Failed to connect with email account using the settings provided."]
 $a->strings["Email settings updated."] = "E-mail instellingen bijgewerkt..";
 $a->strings["Features updated"] = "Functies bijgewerkt";
 $a->strings["Relocate message has been send to your contacts"] = "";
+$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd.";
 $a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd.";
+$a->strings["The new password has been exposed in a public data dump, please choose another."] = "";
 $a->strings["Wrong password."] = "Verkeerd wachtwoord.";
 $a->strings["Password changed."] = "Wachtwoord gewijzigd.";
 $a->strings["Password update failed. Please try again."] = "Wachtwoord-)wijziging mislukt. Probeer opnieuw.";
 $a->strings[" Please use a shorter name."] = "Gebruik een kortere naam.";
 $a->strings[" Name too short."] = "Naam te kort.";
 $a->strings["Wrong Password"] = "Verkeerd wachtwoord";
-$a->strings[" Not valid email."] = "Geen geldig e-mailadres.";
-$a->strings[" Cannot change to that email."] = "Kan niet veranderen naar die e-mail.";
+$a->strings["Invalid email."] = "";
+$a->strings["Cannot change to that email."] = "";
 $a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt.";
 $a->strings["Private forum has no privacy permissions and no default privacy group."] = "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep.";
 $a->strings["Settings updated."] = "Instellingen bijgewerkt.";
 $a->strings["Add application"] = "Toepassing toevoegen";
-$a->strings["Save Settings"] = "Instellingen opslaan";
 $a->strings["Consumer Key"] = "Gebruikerssleutel";
 $a->strings["Consumer Secret"] = "Gebruikersgeheim";
 $a->strings["Redirect"] = "Doorverwijzing";
 $a->strings["Icon url"] = "URL pictogram";
 $a->strings["You can't edit this application."] = "Je kunt deze toepassing niet wijzigen.";
 $a->strings["Connected Apps"] = "Verbonden applicaties";
+$a->strings["Edit"] = "Bewerken";
 $a->strings["Client key starts with"] = "";
 $a->strings["No name"] = "Geen naam";
 $a->strings["Remove authorization"] = "Verwijder authorisatie";
-$a->strings["No Plugin settings configured"] = "";
-$a->strings["Plugin Settings"] = "Plugin Instellingen";
+$a->strings["No Addon settings configured"] = "";
+$a->strings["Addon Settings"] = "";
 $a->strings["Off"] = "Uit";
 $a->strings["On"] = "Aan";
 $a->strings["Additional Features"] = "Extra functies";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["enabled"] = "ingeschakeld";
+$a->strings["disabled"] = "uitgeschakeld";
+$a->strings["Built-in support for %s connectivity is %s"] = "Ingebouwde ondersteuning voor connectiviteit met %s is %s";
+$a->strings["GNU Social (OStatus)"] = "";
+$a->strings["Email access is disabled on this site."] = "E-mailtoegang is op deze website uitgeschakeld.";
 $a->strings["General Social Media Settings"] = "";
 $a->strings["Disable intelligent shortening"] = "";
 $a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "";
@@ -1311,11 +940,6 @@ $a->strings["Default group for OStatus contacts"] = "";
 $a->strings["Your legacy GNU Social account"] = "";
 $a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "";
 $a->strings["Repair OStatus subscriptions"] = "";
-$a->strings["Built-in support for %s connectivity is %s"] = "Ingebouwde ondersteuning voor connectiviteit met %s is %s";
-$a->strings["enabled"] = "ingeschakeld";
-$a->strings["disabled"] = "uitgeschakeld";
-$a->strings["GNU Social (OStatus)"] = "";
-$a->strings["Email access is disabled on this site."] = "E-mailtoegang is op deze website uitgeschakeld.";
 $a->strings["Email/Mailbox Setup"] = "E-mail Instellen";
 $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken.";
 $a->strings["Last successful email check:"] = "Laatste succesvolle e-mail controle:";
@@ -1328,9 +952,12 @@ $a->strings["Email password:"] = "E-mail wachtwoord:";
 $a->strings["Reply-to address:"] = "Antwoord adres:";
 $a->strings["Send public posts to all email contacts:"] = "Openbare posts naar alle e-mail contacten versturen:";
 $a->strings["Action after import:"] = "Actie na importeren:";
+$a->strings["Mark as seen"] = "Als 'gelezen' markeren";
 $a->strings["Move to folder"] = "Naar map verplaatsen";
 $a->strings["Move to folder:"] = "Verplaatsen naar map:";
 $a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten";
+$a->strings["%s - (Unsupported)"] = "";
+$a->strings["%s - (Experimental)"] = "";
 $a->strings["Display Settings"] = "Scherminstellingen";
 $a->strings["Display Theme:"] = "Schermthema:";
 $a->strings["Mobile Theme:"] = "Mobiel thema:";
@@ -1347,43 +974,55 @@ $a->strings["Beginning of week:"] = "";
 $a->strings["Don't show notices"] = "";
 $a->strings["Infinite scroll"] = "Oneindig scrollen";
 $a->strings["Automatic updates only at the top of the network page"] = "";
+$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "";
 $a->strings["Bandwith Saver Mode"] = "";
 $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"] = "";
 $a->strings["Custom Theme Settings"] = "";
 $a->strings["Content Settings"] = "";
 $a->strings["Theme settings"] = "Thema-instellingen";
+$a->strings["Unable to find your profile. Please contact your admin."] = "";
 $a->strings["Account Types"] = "";
 $a->strings["Personal Page Subtypes"] = "";
 $a->strings["Community Forum Subtypes"] = "";
 $a->strings["Personal Page"] = "";
-$a->strings["This account is a regular personal profile"] = "";
+$a->strings["Account for a personal profile."] = "";
 $a->strings["Organisation Page"] = "";
-$a->strings["This account is a profile for an organisation"] = "";
+$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = "";
 $a->strings["News Page"] = "";
-$a->strings["This account is a news account/reflector"] = "";
+$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = "";
 $a->strings["Community Forum"] = "";
-$a->strings["This account is a community forum where people can discuss with each other"] = "";
+$a->strings["Account for community discussions."] = "";
 $a->strings["Normal Account Page"] = "Normale accountpagina";
-$a->strings["This account is a normal personal profile"] = "Deze account is een normaal persoonlijk profiel";
+$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = "";
 $a->strings["Soapbox Page"] = "Zeepkist-pagina";
-$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen.";
+$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = "";
 $a->strings["Public Forum"] = "";
-$a->strings["Automatically approve all contact requests"] = "";
+$a->strings["Automatically approves all contact requests."] = "";
 $a->strings["Automatic Friend Page"] = "Automatisch Vriendschapspagina";
-$a->strings["Automatically approve all connection/friend requests as friends"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden.";
+$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "";
 $a->strings["Private Forum [Experimental]"] = "Privé-forum [experimenteel]";
-$a->strings["Private forum - approved members only"] = "Privé-forum - enkel voor goedgekeurde leden";
+$a->strings["Requires manual approval of contact requests."] = "";
 $a->strings["OpenID:"] = "OpenID:";
 $a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optioneel) Laat dit OpenID toe om in te loggen op deze account.";
 $a->strings["Publish your default profile in your local site directory?"] = "Je standaardprofiel in je lokale gids publiceren?";
+$a->strings["Your profile will be published in the global friendica directories (e.g. <a href=\"%s\">%s</a>). Your profile will be visible in public."] = "";
 $a->strings["Publish your default profile in the global social directory?"] = "Je standaardprofiel in de globale sociale gids publiceren?";
+$a->strings["Your profile will be published in this node's <a href=\"%s\">local directory</a>. 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?"] = "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?";
-$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "";
+$a->strings["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?"] = "Vrienden toestaan om op jou profielpagina te posten?";
+$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?"] = "Sta vrienden toe om jouw berichten te labelen?";
+$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?"] = "Sta je mij toe om jou als mogelijke vriend  voor te stellen aan nieuwe leden?";
+$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?"] = "Mogen onbekende personen jou privé berichten sturen?";
+$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = "";
 $a->strings["Profile is <strong>not published</strong>."] = "Profiel is <strong>niet gepubliceerd</strong>.";
 $a->strings["Your Identity Address is <strong>'%s'</strong> or '%s'."] = "";
 $a->strings["Automatically expire posts after this many days:"] = "Laat berichten automatisch vervallen na zo veel dagen:";
@@ -1397,11 +1036,14 @@ $a->strings["Expire photos:"] = "Laat foto's vervallen:";
 $a->strings["Only expire posts by others:"] = "Laat alleen berichten door anderen vervallen:";
 $a->strings["Account Settings"] = "Account Instellingen";
 $a->strings["Password Settings"] = "Wachtwoord Instellingen";
+$a->strings["New Password:"] = "Nieuw Wachtwoord:";
+$a->strings["Confirm:"] = "Bevestig:";
 $a->strings["Leave password fields blank unless changing"] = "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen";
 $a->strings["Current Password:"] = "Huidig wachtwoord:";
 $a->strings["Your current password to confirm the changes"] = "Je huidig wachtwoord om de wijzigingen te bevestigen";
 $a->strings["Password:"] = "Wachtwoord:";
 $a->strings["Basic Settings"] = "Basis Instellingen";
+$a->strings["Full Name:"] = "Volledige Naam:";
 $a->strings["Email Address:"] = "E-mailadres:";
 $a->strings["Your Timezone:"] = "Je Tijdzone:";
 $a->strings["Your Language:"] = "";
@@ -1435,69 +1077,382 @@ $a->strings["Activate desktop notifications"] = "";
 $a->strings["Show desktop popup on new notifications"] = "";
 $a->strings["Text-only notification emails"] = "";
 $a->strings["Send text only notification emails, without the html part"] = "";
+$a->strings["Show detailled notifications"] = "";
+$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"] = "";
 $a->strings["Change the behaviour of this account for special situations"] = "";
 $a->strings["Relocate"] = "";
 $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "";
 $a->strings["Resend relocate message to contacts"] = "";
-$a->strings["Do you really want to delete this video?"] = "Wil je deze video echt verwijderen?";
-$a->strings["Delete Video"] = "Verwijder video";
-$a->strings["No videos selected"] = "Geen video's geselecteerd";
-$a->strings["Recent Videos"] = "Recente video's";
-$a->strings["Upload New Videos"] = "Nieuwe video's uploaden";
-$a->strings["Invalid request."] = "";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "";
-$a->strings["Or - did you try to upload an empty file?"] = "";
-$a->strings["File exceeds size limit of %s"] = "";
-$a->strings["File upload failed."] = "Uploaden van bestand mislukt.";
+$a->strings["Status:"] = "Tijdlijn:";
+$a->strings["Homepage:"] = "Website:";
+$a->strings["Global Directory"] = "Globale gids";
+$a->strings["Find on this site"] = "Op deze website zoeken";
+$a->strings["Results for:"] = "";
+$a->strings["Site Directory"] = "Websitegids";
+$a->strings["Find"] = "Zoek";
+$a->strings["No entries (some entries may be hidden)."] = "Geen gegevens (sommige gegevens kunnen verborgen zijn).";
+$a->strings["Source input"] = "";
+$a->strings["BBCode::convert (raw HTML)"] = "";
+$a->strings["BBCode::convert"] = "";
+$a->strings["BBCode::convert => HTML::toBBCode"] = "";
+$a->strings["BBCode::toMarkdown"] = "";
+$a->strings["BBCode::toMarkdown => Markdown::convert"] = "";
+$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "";
+$a->strings["BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"] = "";
+$a->strings["Source input \\x28Diaspora format\\x29"] = "";
+$a->strings["Markdown::toBBCode"] = "";
+$a->strings["Raw HTML input"] = "";
+$a->strings["HTML Input"] = "";
+$a->strings["HTML::toBBCode"] = "";
+$a->strings["HTML::toPlaintext"] = "";
+$a->strings["Source text"] = "";
+$a->strings["BBCode"] = "";
+$a->strings["Markdown"] = "";
+$a->strings["HTML"] = "";
+$a->strings["The contact could not be added."] = "";
+$a->strings["You already added this contact."] = "Je hebt deze kontakt al toegevoegd";
+$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "";
+$a->strings["OStatus support is disabled. Contact can't be added."] = "";
+$a->strings["The network type couldn't be detected. Contact can't be added."] = "";
+$a->strings["Profile deleted."] = "Profiel verwijderd";
+$a->strings["Profile-"] = "Profiel-";
+$a->strings["New profile created."] = "Nieuw profiel aangemaakt.";
+$a->strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen.";
+$a->strings["Profile Name is required."] = "Profielnaam is vereist.";
+$a->strings["Marital Status"] = "Echtelijke staat";
+$a->strings["Romantic Partner"] = "Romantische Partner";
+$a->strings["Work/Employment"] = "Werk";
+$a->strings["Religion"] = "Godsdienst";
+$a->strings["Political Views"] = "Politieke standpunten";
+$a->strings["Gender"] = "Geslacht";
+$a->strings["Sexual Preference"] = "Seksuele Voorkeur";
+$a->strings["XMPP"] = "";
+$a->strings["Homepage"] = "Tijdlijn";
+$a->strings["Interests"] = "Interesses";
+$a->strings["Address"] = "Adres";
+$a->strings["Location"] = "Plaats";
+$a->strings["Profile updated."] = "Profiel bijgewerkt.";
+$a->strings[" and "] = "en";
+$a->strings["public profile"] = "publiek profiel";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s veranderde %2\$s naar &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = " - Bezoek %2\$s van %1\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepast %2\$s, %3\$s veranderd.";
+$a->strings["Hide contacts and friends:"] = "";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Je vrienden/contacten verbergen voor bezoekers van dit profiel?";
+$a->strings["Show more profile fields:"] = "";
+$a->strings["Profile Actions"] = "";
+$a->strings["Edit Profile Details"] = "Profieldetails bewerken";
+$a->strings["Change Profile Photo"] = "Profielfoto wijzigen";
+$a->strings["View this profile"] = "Dit profiel bekijken";
+$a->strings["Edit visibility"] = "Pas zichtbaarheid aan";
+$a->strings["Create a new profile using these settings"] = "Nieuw profiel aanmaken met deze instellingen";
+$a->strings["Clone this profile"] = "Dit profiel klonen";
+$a->strings["Delete this profile"] = "Dit profiel verwijderen";
+$a->strings["Basic information"] = "";
+$a->strings["Profile picture"] = "";
+$a->strings["Preferences"] = "";
+$a->strings["Status information"] = "";
+$a->strings["Additional information"] = "";
+$a->strings["Relation"] = "";
+$a->strings["Miscellaneous"] = "Diversen";
+$a->strings["Your Gender:"] = "Je Geslacht:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Echtelijke Staat:";
+$a->strings["Sexual Preference:"] = "Seksuele Voorkeur:";
+$a->strings["Example: fishing photography software"] = "Voorbeeld: vissen fotografie software";
+$a->strings["Profile Name:"] = "Profiel Naam:";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dit is jouw <strong>publiek</strong> profiel.<br />Het <strong>kan</strong> zichtbaar zijn voor iedereen op het internet.";
+$a->strings["Your Full Name:"] = "Je volledige naam:";
+$a->strings["Title/Description:"] = "Titel/Beschrijving:";
+$a->strings["Street Address:"] = "Postadres:";
+$a->strings["Locality/City:"] = "Gemeente/Stad:";
+$a->strings["Region/State:"] = "Regio/Staat:";
+$a->strings["Postal/Zip Code:"] = "Postcode:";
+$a->strings["Country:"] = "Land:";
+$a->strings["Age: "] = "Leeftijd:";
+$a->strings["Who: (if applicable)"] = "Wie: (indien toepasbaar)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl";
+$a->strings["Since [date]:"] = "Sinds [datum]:";
+$a->strings["Tell us about yourself..."] = "Vertel iets over jezelf...";
+$a->strings["XMPP (Jabber) address:"] = "";
+$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "";
+$a->strings["Homepage URL:"] = "Adres tijdlijn:";
+$a->strings["Hometown:"] = "Woonplaats:";
+$a->strings["Political Views:"] = "Politieke standpunten:";
+$a->strings["Religious Views:"] = "Geloof:";
+$a->strings["Public Keywords:"] = "Publieke Sleutelwoorden:";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)";
+$a->strings["Private Keywords:"] = "Privé Sleutelwoorden:";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)";
+$a->strings["Likes:"] = "Houdt van:";
+$a->strings["Dislikes:"] = "Houdt niet van:";
+$a->strings["Musical interests"] = "Muzikale interesses";
+$a->strings["Books, literature"] = "Boeken, literatuur";
+$a->strings["Television"] = "Televisie";
+$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/ontspanning";
+$a->strings["Hobbies/Interests"] = "Hobby's/Interesses";
+$a->strings["Love/romance"] = "Liefde/romance";
+$a->strings["Work/employment"] = "Werk";
+$a->strings["School/education"] = "School/opleiding";
+$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken";
+$a->strings["Profile Image"] = "Profiel afbeelding";
+$a->strings["visible to everybody"] = "zichtbaar voor iedereen";
+$a->strings["Edit/Manage Profiles"] = "Wijzig/Beheer Profielen";
+$a->strings["Change profile photo"] = "Profiel foto wijzigen";
+$a->strings["Create New Profile"] = "Maak nieuw profiel";
+$a->strings["%d contact edited."] = [
+       0 => "",
+       1 => "",
+];
+$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de contactgegevens";
+$a->strings["Could not locate selected profile."] = "Kon het geselecteerde profiel niet vinden.";
+$a->strings["Contact updated."] = "Contact bijgewerkt.";
+$a->strings["Contact has been blocked"] = "Contact is geblokkeerd";
+$a->strings["Contact has been unblocked"] = "Contact is gedeblokkeerd";
+$a->strings["Contact has been ignored"] = "Contact wordt genegeerd";
+$a->strings["Contact has been unignored"] = "Contact wordt niet meer genegeerd";
+$a->strings["Contact has been archived"] = "Contact is gearchiveerd";
+$a->strings["Contact has been unarchived"] = "Contact is niet meer gearchiveerd";
+$a->strings["Drop contact"] = "";
+$a->strings["Do you really want to delete this contact?"] = "Wil je echt dit contact verwijderen?";
+$a->strings["Contact has been removed."] = "Contact is verwijderd.";
+$a->strings["You are mutual friends with %s"] = "Je bent wederzijds bevriend met %s";
+$a->strings["You are sharing with %s"] = "Je deelt met %s";
+$a->strings["%s is sharing with you"] = "%s deelt met jou";
+$a->strings["Private communications are not available for this contact."] = "Privécommunicatie met dit contact is niet beschikbaar.";
+$a->strings["Never"] = "Nooit";
+$a->strings["(Update was successful)"] = "(Wijziging is geslaagd)";
+$a->strings["(Update was not successful)"] = "(Wijziging is niet geslaagd)";
+$a->strings["Suggest friends"] = "Stel vrienden voor";
+$a->strings["Network type: %s"] = "Netwerk type: %s";
+$a->strings["Communications lost with this contact!"] = "Communicatie met dit contact is verbroken!";
+$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"] = "Uitgeschakeld";
+$a->strings["Fetch information"] = "";
+$a->strings["Fetch keywords"] = "";
+$a->strings["Fetch information and keywords"] = "";
+$a->strings["Contact"] = "";
+$a->strings["Profile Visibility"] = "Zichtbaarheid profiel";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. ";
+$a->strings["Contact Information / Notes"] = "Contactinformatie / aantekeningen";
+$a->strings["Their personal note"] = "";
+$a->strings["Edit contact notes"] = "Wijzig aantekeningen over dit contact";
+$a->strings["Block/Unblock contact"] = "Blokkeer/deblokkeer contact";
+$a->strings["Ignore contact"] = "Negeer contact";
+$a->strings["Repair URL settings"] = "Repareer URL-instellingen";
+$a->strings["View conversations"] = "Toon gesprekken";
+$a->strings["Last update:"] = "Laatste wijziging:";
+$a->strings["Update public posts"] = "Openbare posts aanpassen";
+$a->strings["Update now"] = "Wijzig nu";
+$a->strings["Unblock"] = "Blokkering opheffen";
+$a->strings["Block"] = "Blokkeren";
+$a->strings["Unignore"] = "Negeer niet meer";
+$a->strings["Currently blocked"] = "Op dit moment geblokkeerd";
+$a->strings["Currently ignored"] = "Op dit moment genegeerd";
+$a->strings["Currently archived"] = "Op dit moment gearchiveerd";
+$a->strings["Awaiting connection acknowledge"] = "";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antwoorden of 'vind ik leuk's op je openbare posts <strong>kunnen</strong> nog zichtbaar zijn";
+$a->strings["Notification for new posts"] = "Meldingen voor nieuwe berichten";
+$a->strings["Send a notification of every new post of this contact"] = "";
+$a->strings["Blacklisted keywords"] = "";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "";
+$a->strings["XMPP:"] = "";
+$a->strings["Actions"] = "";
+$a->strings["Status"] = "Tijdlijn";
+$a->strings["Contact Settings"] = "";
+$a->strings["Suggestions"] = "Voorstellen";
+$a->strings["Suggest potential friends"] = "Stel vrienden voor";
+$a->strings["Show all contacts"] = "Toon alle contacten";
+$a->strings["Unblocked"] = "Niet geblokkeerd";
+$a->strings["Only show unblocked contacts"] = "Toon alleen niet-geblokkeerde contacten";
+$a->strings["Blocked"] = "Geblokkeerd";
+$a->strings["Only show blocked contacts"] = "Toon alleen geblokkeerde contacten";
+$a->strings["Ignored"] = "Genegeerd";
+$a->strings["Only show ignored contacts"] = "Toon alleen genegeerde contacten";
+$a->strings["Archived"] = "Gearchiveerd";
+$a->strings["Only show archived contacts"] = "Toon alleen gearchiveerde contacten";
+$a->strings["Hidden"] = "Verborgen";
+$a->strings["Only show hidden contacts"] = "Toon alleen verborgen contacten";
+$a->strings["Search your contacts"] = "Doorzoek je contacten";
+$a->strings["Archive"] = "Archiveer";
+$a->strings["Unarchive"] = "Archiveer niet meer";
+$a->strings["Batch Actions"] = "";
+$a->strings["Profile Details"] = "Profieldetails";
+$a->strings["View all contacts"] = "Alle contacten zien";
+$a->strings["View all common friends"] = "";
+$a->strings["Advanced Contact Settings"] = "Geavanceerde instellingen voor contacten";
+$a->strings["Mutual Friendship"] = "Wederzijdse vriendschap";
+$a->strings["is a fan of yours"] = "Is een fan van jou";
+$a->strings["you are a fan of"] = "Jij bent een fan van";
+$a->strings["Toggle Blocked status"] = "Schakel geblokkeerde status";
+$a->strings["Toggle Ignored status"] = "Schakel negeerstatus";
+$a->strings["Toggle Archive status"] = "Schakel archiveringsstatus";
+$a->strings["Delete contact"] = "Verwijder contact";
+$a->strings["Terms of Service"] = "";
+$a->strings["Privacy Statement"] = "";
+$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["At any point in time a logged in user can export their account data from the <a href=\"%1\$s/settings/uexport\">account settings</a>. If the user wants to delete their account they can do so at <a href=\"%1\$s/removeme\">%1\$s/removeme</a>. The deletion of the account will be permanent."] = "";
+$a->strings["This is Friendica, version"] = "Dit is Friendica, versie";
+$a->strings["running at web location"] = "draaiend op web-adres";
+$a->strings["Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "";
+$a->strings["Bug reports and issues: please visit"] = "Bug rapporten en problemen: bezoek";
+$a->strings["the bugtracker at github"] = "";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com";
+$a->strings["Installed addons/apps:"] = "";
+$a->strings["No installed addons/apps"] = "";
+$a->strings["Read about the <a href=\"%1\$s/tos\">Terms of Service</a> of this node."] = "";
+$a->strings["On this server the following remote servers are blocked."] = "";
+$a->strings["Reason for the block"] = "";
+$a->strings["No valid account found."] = "Geen geldige account gevonden.";
+$a->strings["Password reset request issued. Check your email."] = "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, 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"] = "Op %s werd gevraagd je wachtwoord opnieuw in te stellen";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld.";
+$a->strings["Request has expired, please make a new one."] = "";
+$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies.";
+$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:";
+$a->strings["Reset"] = "Opnieuw";
+$a->strings["Password Reset"] = "Wachtwoord opnieuw instellen";
+$a->strings["Your password has been reset as requested."] = "Je wachtwoord is opnieuw ingesteld zoals gevraagd.";
+$a->strings["Your new password is"] = "Je nieuwe wachtwoord is";
+$a->strings["Save or copy your new password - and then"] = "Bewaar of kopieer je nieuw wachtwoord - en dan";
+$a->strings["click here to login"] = "klik hier om in te loggen";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina.";
+$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"] = "";
+$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Registratie geslaagd. Kijk je e-mail na voor verdere instructies.";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "";
+$a->strings["Registration successful."] = "";
+$a->strings["Your registration can not be processed."] = "Je registratie kan niet verwerkt worden.";
+$a->strings["Your registration is pending approval by the site owner."] = "Jouw registratie wacht op goedkeuring van de beheerder.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in.";
+$a->strings["Your OpenID (optional): "] = "Je OpenID (optioneel):";
+$a->strings["Include your profile in member directory?"] = "Je profiel in de ledengids opnemen?";
+$a->strings["Note for the admin"] = "";
+$a->strings["Leave a message for the admin, why you want to join this node"] = "";
+$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging.";
+$a->strings["Your invitation code: "] = "";
+$a->strings["Registration"] = "Registratie";
+$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "";
+$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "";
+$a->strings["Leave empty for an auto generated password."] = "";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@%s</strong>'."] = "";
+$a->strings["Choose a nickname: "] = "Kies een bijnaam:";
+$a->strings["Register"] = "Registreer";
+$a->strings["Import your profile to this friendica instance"] = "";
 $a->strings["Theme settings updated."] = "Thema-instellingen aangepast.";
+$a->strings["Information"] = "Informatie";
+$a->strings["Overview"] = "";
+$a->strings["Federation Statistics"] = "";
+$a->strings["Configuration"] = "";
 $a->strings["Site"] = "Website";
 $a->strings["Users"] = "Gebruiker";
 $a->strings["Themes"] = "Thema's";
+$a->strings["Database"] = "";
 $a->strings["DB updates"] = "DB aanpassingen";
 $a->strings["Inspect Queue"] = "";
-$a->strings["Federation Statistics"] = "";
+$a->strings["Tools"] = "";
+$a->strings["Contact Blocklist"] = "";
+$a->strings["Server Blocklist"] = "";
+$a->strings["Delete Item"] = "";
 $a->strings["Logs"] = "Logs";
 $a->strings["View Logs"] = "";
+$a->strings["Diagnostics"] = "";
+$a->strings["PHP Info"] = "";
 $a->strings["probe address"] = "";
 $a->strings["check webfinger"] = "";
-$a->strings["Plugin Features"] = "Plugin Functies";
-$a->strings["diagnostics"] = "";
+$a->strings["Admin"] = "Beheer";
+$a->strings["Addon Features"] = "";
 $a->strings["User registrations waiting for confirmation"] = "Gebruikersregistraties wachten op bevestiging";
-$a->strings["unknown"] = "";
-$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 <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "";
 $a->strings["Administration"] = "Beheer";
-$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = "";
-$a->strings["ID"] = "ID";
-$a->strings["Recipient Name"] = "";
+$a->strings["Display Terms of Service"] = "";
+$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"] = "";
+$a->strings["Show some informations regarding the needed information to operate the node according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."] = "";
+$a->strings["The Terms of Service"] = "";
+$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"] = "";
+$a->strings["The reason why you blocked this domain."] = "";
+$a->strings["Delete domain"] = "";
+$a->strings["Check to delete this entry from the blocklist"] = "";
+$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"] = "";
+$a->strings["Server Domain"] = "";
+$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "";
+$a->strings["Block reason"] = "";
+$a->strings["Add Entry"] = "";
+$a->strings["Save changes to the blocklist"] = "";
+$a->strings["Current Entries in the Blocklist"] = "";
+$a->strings["Delete entry from blocklist"] = "";
+$a->strings["Delete entry from blocklist?"] = "";
+$a->strings["Server added to blocklist."] = "";
+$a->strings["Site blocklist updated."] = "";
+$a->strings["The contact has been blocked from the node"] = "";
+$a->strings["Could not find any contact entry for this URL (%s)"] = "";
+$a->strings["%s contact unblocked"] = [
+       0 => "",
+       1 => "",
+];
+$a->strings["Remote Contact Blocklist"] = "";
+$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "";
+$a->strings["Block Remote Contact"] = "";
+$a->strings["select all"] = "Alles selecteren";
+$a->strings["select none"] = "";
+$a->strings["No remote contact is blocked from this node."] = "";
+$a->strings["Blocked Remote Contacts"] = "";
+$a->strings["Block New Remote Contact"] = "";
+$a->strings["Photo"] = "";
+$a->strings["%s total blocked contact"] = [
+       0 => "",
+       1 => "",
+];
+$a->strings["URL of the remote contact to block."] = "";
+$a->strings["Delete this Item"] = "";
+$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"] = "";
+$a->strings["The GUID of the item you want to delete."] = "";
+$a->strings["Item marked for deletion."] = "";
+$a->strings["unknown"] = "";
+$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 <em>Auto Discovered Contact Directory</em> 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"] = "ID";
+$a->strings["Recipient Name"] = "";
 $a->strings["Recipient Profile"] = "";
+$a->strings["Network"] = "Netwerk";
 $a->strings["Created"] = "";
 $a->strings["Last Tried"] = "";
 $a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "";
-$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the <tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your Friendica installation.<br />"] = "";
-$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "";
+$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php bin/console.php dbstructure toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "";
+$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"] = "Normaal account";
-$a->strings["Soapbox Account"] = "Zeepkist-account";
-$a->strings["Community/Celebrity Account"] = "Account voor een groep/forum of beroemdheid";
+$a->strings["Automatic Follower Account"] = "";
+$a->strings["Public Forum Account"] = "";
 $a->strings["Automatic Friend Account"] = "Automatisch Vriendschapsaccount";
 $a->strings["Blog Account"] = "Blog Account";
-$a->strings["Private Forum"] = "Privéforum/-groep";
+$a->strings["Private Forum Account"] = "";
 $a->strings["Message queues"] = "Bericht-wachtrijen";
 $a->strings["Summary"] = "Samenvatting";
 $a->strings["Registered users"] = "Geregistreerde gebruikers";
 $a->strings["Pending registrations"] = "Registraties die in de wacht staan";
 $a->strings["Version"] = "Versie";
-$a->strings["Active plugins"] = "Actieve plug-ins";
+$a->strings["Active addons"] = "";
 $a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "";
-$a->strings["RINO2 needs mcrypt php extension to work."] = "";
 $a->strings["Site settings updated."] = "Site instellingen gewijzigd.";
 $a->strings["No community page"] = "";
 $a->strings["Public postings from users of this site"] = "";
-$a->strings["Global community page"] = "";
-$a->strings["Never"] = "Nooit";
-$a->strings["At post arrival"] = "";
-$a->strings["Disabled"] = "Uitgeschakeld";
+$a->strings["Public postings from the federated network"] = "";
+$a->strings["Public postings from local users and the federated network"] = "";
 $a->strings["Users, Global Contacts"] = "";
 $a->strings["Users, Global Contacts/fallback"] = "";
 $a->strings["One month"] = "";
@@ -1511,11 +1466,16 @@ $a->strings["Open"] = "Open";
 $a->strings["No SSL policy, links will track page SSL state"] = "Geen SSL beleid, links zullen SSL status van pagina volgen";
 $a->strings["Force all links to use SSL"] = "Verplicht alle links om SSL te gebruiken";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)";
+$a->strings["Don't check"] = "";
+$a->strings["check the stable version"] = "";
+$a->strings["check the development version"] = "";
+$a->strings["Republish users to directory"] = "";
 $a->strings["File upload"] = "Uploaden bestand";
 $a->strings["Policies"] = "Beleid";
 $a->strings["Auto Discovered Contact Directory"] = "";
 $a->strings["Performance"] = "Performantie";
 $a->strings["Worker"] = "";
+$a->strings["Message Relay"] = "";
 $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "";
 $a->strings["Site name"] = "Site naam";
 $a->strings["Host name"] = "";
@@ -1527,7 +1487,7 @@ $a->strings["Link to an icon that will be used for browsers."] = "";
 $a->strings["Touch icon"] = "";
 $a->strings["Link to an icon that will be used for tablets and mobiles."] = "";
 $a->strings["Additional Info"] = "";
-$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "";
+$a->strings["For public servers: you can add additional information here that will be listed at %s/servers."] = "";
 $a->strings["System language"] = "Systeemtaal";
 $a->strings["System theme"] = "Systeem thema";
 $a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - <a href='#' id='cnftheme'>verander thema instellingen</a>";
@@ -1537,8 +1497,6 @@ $a->strings["SSL link policy"] = "Beleid SSL-links";
 $a->strings["Determines whether generated links should be forced to use SSL"] = "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken";
 $a->strings["Force SSL"] = "";
 $a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "";
-$a->strings["Old style 'Share'"] = "";
-$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "";
 $a->strings["Hide help entry from navigation menu"] = "Verberg de 'help' uit het navigatiemenu";
 $a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven.";
 $a->strings["Single user instance"] = "Server voor één gebruiker";
@@ -1553,21 +1511,23 @@ $a->strings["Register policy"] = "Registratiebeleid";
 $a->strings["Maximum Daily Registrations"] = "Maximum aantal registraties per dag";
 $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."] = "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect.";
 $a->strings["Register text"] = "Registratietekst";
-$a->strings["Will be displayed prominently on the registration page."] = "Dit zal prominent op de registratiepagina getoond worden.";
+$a->strings["Will be displayed prominently on the registration page. You can use BBCode here."] = "";
 $a->strings["Accounts abandoned after x days"] = "Verlaten accounts na x dagen";
 $a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet.";
 $a->strings["Allowed friend domains"] = "Toegelaten vriend domeinen";
 $a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten.";
 $a->strings["Allowed email domains"] = "Toegelaten e-mail domeinen";
 $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"] = "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan.";
+$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"] = "";
+$a->strings["Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted."] = "";
 $a->strings["Block public"] = "Openbare toegang blokkeren";
 $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers.";
 $a->strings["Force publish"] = "Dwing publiceren af";
 $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden.";
 $a->strings["Global directory URL"] = "";
 $a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
-$a->strings["Allow threaded items"] = "Sta threads in conversaties toe";
-$a->strings["Allow infinite level threading for items on this site."] = "Sta oneindige niveaus threads in conversaties op deze website toe.";
 $a->strings["Private posts by default for new users"] = "Privéberichten als standaard voor nieuwe gebruikers";
 $a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar.";
 $a->strings["Don't include post content in email notifications"] = "De inhoud van het bericht niet insluiten bij e-mailnotificaties";
@@ -1584,16 +1544,12 @@ $a->strings["OpenID support"] = "OpenID ondersteuning";
 $a->strings["OpenID support for registration and logins."] = "OpenID ondersteuning voor registraties en logins.";
 $a->strings["Fullname check"] = "Controleer volledige naam";
 $a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel";
-$a->strings["UTF-8 Regular expressions"] = "UTF-8 reguliere uitdrukkingen";
-$a->strings["Use PHP UTF8 regular expressions"] = "Gebruik PHP UTF8 reguliere uitdrukkingen";
-$a->strings["Community Page Style"] = "";
-$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "";
+$a->strings["Community pages for visitors"] = "";
+$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"] = "Activeer OStatus ondersteuning";
 $a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
-$a->strings["OStatus conversation completion interval"] = "";
-$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "";
 $a->strings["Only import OStatus threads from our contacts"] = "";
 $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."] = "";
@@ -1608,14 +1564,12 @@ $a->strings["Proxy user"] = "Proxy-gebruiker";
 $a->strings["Proxy URL"] = "Proxy-URL";
 $a->strings["Network timeout"] = "Netwerk timeout";
 $a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen).";
-$a->strings["Delivery interval"] = "Afleverinterval";
-$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers.";
-$a->strings["Poll interval"] = "Poll-interval";
-$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt.";
 $a->strings["Maximum Load Average"] = "Maximum gemiddelde belasting";
 $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50.";
 $a->strings["Maximum Load Average (Frontend)"] = "";
 $a->strings["Maximum system load before the frontend quits service - default 50."] = "";
+$a->strings["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"] = "";
@@ -1632,10 +1586,8 @@ $a->strings["Search the local directory"] = "";
 $a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "";
 $a->strings["Publish server information"] = "";
 $a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See <a href='http://the-federation.info/'>the-federation.info</a> for details."] = "";
-$a->strings["Use MySQL full text engine"] = "Gebruik de tekst-zoekfunctie van MySQL";
-$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters.";
-$a->strings["Suppress Language"] = "";
-$a->strings["Suppress language information in meta information about a posting."] = "";
+$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"] = "";
 $a->strings["Suppress showing a list of hashtags at the end of the posting."] = "";
 $a->strings["Path to item cache"] = "Pad naar cache voor items";
@@ -1644,34 +1596,41 @@ $a->strings["Cache duration in seconds"] = "Cache tijdsduur in seconden";
 $a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "";
 $a->strings["Maximum numbers of comments per post"] = "";
 $a->strings["How much comments should be shown for each post? Default value is 100."] = "";
-$a->strings["Path for lock file"] = "Pad voor lock bestand";
-$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = "";
 $a->strings["Temp path"] = "Tijdelijk pad";
 $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"] = "Basispad voor installatie";
 $a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "";
 $a->strings["Disable picture proxy"] = "";
 $a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
-$a->strings["Enable old style pager"] = "";
-$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "";
 $a->strings["Only search in tags"] = "";
 $a->strings["On large systems the text search can slow down the system extremely."] = "";
 $a->strings["New base url"] = "";
-$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "";
+$a->strings["Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users."] = "";
 $a->strings["RINO Encryption"] = "";
 $a->strings["Encryption layer between nodes."] = "";
-$a->strings["Embedly API key"] = "";
-$a->strings["<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for web pages. This is an optional parameter."] = "";
-$a->strings["Enable 'worker' background processing"] = "";
-$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = "";
+$a->strings["Enabled"] = "";
 $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 poller calls in your crontab."] = "";
+$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"] = "";
 $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 (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "";
+$a->strings["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"] = "";
+$a->strings["tags"] = "";
+$a->strings["Server tags"] = "";
+$a->strings["Comma separated list of tags for the 'tags' subscription."] = "";
+$a->strings["Allow user tags"] = "";
+$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"] = "Wijziging succesvol gemarkeerd ";
 $a->strings["Database structure update %s was successfully applied."] = "";
 $a->strings["Executing of database structure update %s failed with error: %s"] = "";
@@ -1686,7 +1645,8 @@ $a->strings["This does not include updates prior to 1139, which did not return a
 $a->strings["Mark success (if update was manually applied)"] = "Markeren als succes (als aanpassing manueel doorgevoerd werd)";
 $a->strings["Attempt to execute this update step automatically"] = "Probeer deze stap automatisch uit te voeren";
 $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "";
-$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "";
+$a->strings["\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"] = "Registratie details voor %s";
 $a->strings["%s user blocked/unblocked"] = [
        0 => "%s gebruiker geblokkeerd/niet geblokkeerd",
        1 => "%s gebruikers geblokkeerd/niet geblokkeerd",
@@ -1698,19 +1658,17 @@ $a->strings["%s user deleted"] = [
 $a->strings["User '%s' deleted"] = "Gebruiker '%s' verwijderd";
 $a->strings["User '%s' unblocked"] = "Gebruiker '%s' niet meer geblokkeerd";
 $a->strings["User '%s' blocked"] = "Gebruiker '%s' geblokkeerd";
+$a->strings["Email"] = "E-mail";
 $a->strings["Register date"] = "Registratiedatum";
 $a->strings["Last login"] = "Laatste login";
 $a->strings["Last item"] = "Laatste item";
 $a->strings["Add User"] = "Gebruiker toevoegen";
-$a->strings["select all"] = "Alles selecteren";
 $a->strings["User registrations waiting for confirm"] = "Gebruikersregistraties wachten op een bevestiging";
 $a->strings["User waiting for permanent deletion"] = "";
 $a->strings["Request date"] = "Registratiedatum";
 $a->strings["No registrations."] = "Geen registraties.";
 $a->strings["Note from the user"] = "";
 $a->strings["Deny"] = "Weiger";
-$a->strings["Block"] = "Blokkeren";
-$a->strings["Unblock"] = "Blokkering opheffen";
 $a->strings["Site admin"] = "Sitebeheerder";
 $a->strings["Account expired"] = "Account verlopen";
 $a->strings["New User"] = "Nieuwe gebruiker";
@@ -1721,19 +1679,19 @@ $a->strings["Name of the new user."] = "Naam van nieuwe gebruiker";
 $a->strings["Nickname"] = "Bijnaam";
 $a->strings["Nickname of the new user."] = "Bijnaam van nieuwe gebruiker";
 $a->strings["Email address of the new user."] = "E-mailadres van nieuwe gebruiker";
-$a->strings["Plugin %s disabled."] = "Plugin %s uitgeschakeld.";
-$a->strings["Plugin %s enabled."] = "Plugin %s ingeschakeld.";
+$a->strings["Addon %s disabled."] = "";
+$a->strings["Addon %s enabled."] = "";
 $a->strings["Disable"] = "Uitschakelen";
 $a->strings["Enable"] = "Inschakelen";
 $a->strings["Toggle"] = "Schakelaar";
 $a->strings["Author: "] = "Auteur:";
 $a->strings["Maintainer: "] = "Onderhoud:";
-$a->strings["Reload active plugins"] = "";
-$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "";
+$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."] = "Geen thema's gevonden.";
 $a->strings["Screenshot"] = "Schermafdruk";
 $a->strings["Reload active themes"] = "";
-$a->strings["No themes found on the system. They should be paced in %1\$s"] = "";
+$a->strings["No themes found on the system. They should be placed in %1\$s"] = "";
 $a->strings["[Experimental]"] = "[Experimenteel]";
 $a->strings["[Unsupported]"] = "[Niet ondersteund]";
 $a->strings["Log settings updated."] = "Log instellingen gewijzigd";
@@ -1746,254 +1704,429 @@ $a->strings["Must be writable by web server. Relative to your Friendica top-leve
 $a->strings["Log level"] = "Log niveau";
 $a->strings["PHP logging"] = "";
 $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 <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s exist and is readable."] = "";
+$a->strings["Couldn't open <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s is readable."] = "";
 $a->strings["Lock feature %s"] = "";
 $a->strings["Manage Additional Features"] = "";
-$a->strings["%d contact edited."] = [
-       0 => "",
-       1 => "",
+$a->strings["Error decoding account file"] = "";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
+$a->strings["User '%s' already exists on this server!"] = "Gebruiker '%s' bestaat al op deze server!";
+$a->strings["User creation error"] = "Fout bij het aanmaken van de gebruiker";
+$a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel";
+$a->strings["%d contact not imported"] = [
+       0 => "%d contact werd niet geïmporteerd",
+       1 => "%d contacten werden niet geïmporteerd",
 ];
-$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de contactgegevens";
-$a->strings["Could not locate selected profile."] = "Kon het geselecteerde profiel niet vinden.";
-$a->strings["Contact updated."] = "Contact bijgewerkt.";
-$a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen.";
-$a->strings["Contact has been blocked"] = "Contact is geblokkeerd";
-$a->strings["Contact has been unblocked"] = "Contact is gedeblokkeerd";
-$a->strings["Contact has been ignored"] = "Contact wordt genegeerd";
-$a->strings["Contact has been unignored"] = "Contact wordt niet meer genegeerd";
-$a->strings["Contact has been archived"] = "Contact is gearchiveerd";
-$a->strings["Contact has been unarchived"] = "Contact is niet meer gearchiveerd";
-$a->strings["Drop contact"] = "";
-$a->strings["Do you really want to delete this contact?"] = "Wil je echt dit contact verwijderen?";
-$a->strings["Contact has been removed."] = "Contact is verwijderd.";
-$a->strings["You are mutual friends with %s"] = "Je bent wederzijds bevriend met %s";
-$a->strings["You are sharing with %s"] = "Je deelt met %s";
-$a->strings["%s is sharing with you"] = "%s deelt met jou";
-$a->strings["Private communications are not available for this contact."] = "Privécommunicatie met dit contact is niet beschikbaar.";
-$a->strings["(Update was successful)"] = "(Wijziging is geslaagd)";
-$a->strings["(Update was not successful)"] = "(Wijziging is niet geslaagd)";
-$a->strings["Suggest friends"] = "Stel vrienden voor";
-$a->strings["Network type: %s"] = "Netwerk type: %s";
-$a->strings["Communications lost with this contact!"] = "Communicatie met dit contact is verbroken!";
-$a->strings["Fetch further information for feeds"] = "";
-$a->strings["Fetch information"] = "";
-$a->strings["Fetch information and keywords"] = "";
-$a->strings["Contact"] = "";
-$a->strings["Profile Visibility"] = "Zichtbaarheid profiel";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. ";
-$a->strings["Contact Information / Notes"] = "Contactinformatie / aantekeningen";
-$a->strings["Edit contact notes"] = "Wijzig aantekeningen over dit contact";
-$a->strings["Block/Unblock contact"] = "Blokkeer/deblokkeer contact";
-$a->strings["Ignore contact"] = "Negeer contact";
-$a->strings["Repair URL settings"] = "Repareer URL-instellingen";
-$a->strings["View conversations"] = "Toon conversaties";
-$a->strings["Last update:"] = "Laatste wijziging:";
-$a->strings["Update public posts"] = "Openbare posts aanpassen";
-$a->strings["Update now"] = "Wijzig nu";
-$a->strings["Unignore"] = "Negeer niet meer";
-$a->strings["Currently blocked"] = "Op dit moment geblokkeerd";
-$a->strings["Currently ignored"] = "Op dit moment genegeerd";
-$a->strings["Currently archived"] = "Op dit moment gearchiveerd";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antwoorden of 'vind ik leuk's op je openbare posts <strong>kunnen</strong> nog zichtbaar zijn";
-$a->strings["Notification for new posts"] = "Meldingen voor nieuwe berichten";
-$a->strings["Send a notification of every new post of this contact"] = "";
-$a->strings["Blacklisted keywords"] = "";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "";
-$a->strings["Actions"] = "";
-$a->strings["Contact Settings"] = "";
-$a->strings["Suggestions"] = "Voorstellen";
-$a->strings["Suggest potential friends"] = "Stel vrienden voor";
-$a->strings["Show all contacts"] = "Toon alle contacten";
-$a->strings["Unblocked"] = "Niet geblokkeerd";
-$a->strings["Only show unblocked contacts"] = "Toon alleen niet-geblokkeerde contacten";
-$a->strings["Blocked"] = "Geblokkeerd";
-$a->strings["Only show blocked contacts"] = "Toon alleen geblokkeerde contacten";
-$a->strings["Ignored"] = "Genegeerd";
-$a->strings["Only show ignored contacts"] = "Toon alleen genegeerde contacten";
-$a->strings["Archived"] = "Gearchiveerd";
-$a->strings["Only show archived contacts"] = "Toon alleen gearchiveerde contacten";
-$a->strings["Hidden"] = "Verborgen";
-$a->strings["Only show hidden contacts"] = "Toon alleen verborgen contacten";
-$a->strings["Search your contacts"] = "Doorzoek je contacten";
-$a->strings["Archive"] = "Archiveer";
-$a->strings["Unarchive"] = "Archiveer niet meer";
-$a->strings["Batch Actions"] = "";
-$a->strings["View all contacts"] = "Alle contacten zien";
-$a->strings["View all common friends"] = "";
-$a->strings["Advanced Contact Settings"] = "Geavanceerde instellingen voor contacten";
-$a->strings["Mutual Friendship"] = "Wederzijdse vriendschap";
-$a->strings["is a fan of yours"] = "Is een fan van jou";
-$a->strings["you are a fan of"] = "Jij bent een fan van";
-$a->strings["Toggle Blocked status"] = "Schakel geblokkeerde status";
-$a->strings["Toggle Ignored status"] = "Schakel negeerstatus";
-$a->strings["Toggle Archive status"] = "Schakel archiveringsstatus";
-$a->strings["Delete contact"] = "Verwijder contact";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd.";
-$a->strings["Response from remote site was not understood."] = "Antwoord van de website op afstand werd niet begrepen.";
-$a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van website op afstand:";
-$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid.";
-$a->strings["Remote site reported: "] = "Website op afstand berichtte: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw.";
-$a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen.";
-$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen.";
-$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'";
-$a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons.";
-$a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou.";
-$a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken.";
-$a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen.";
-$a->strings["Unable to update your contact profile details on our system"] = "";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s";
-$a->strings["This introduction has already been accepted."] = "Verzoek is al goedgekeurd";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Profiel is ongeldig of bevat geen informatie";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar.";
-$a->strings["Warning: profile location has no profile photo."] = "Waarschuwing: Profieladres heeft geen profielfoto.";
-$a->strings["%d required parameter was not found at the given location"] = [
-       0 => "De %d vereiste parameter is niet op het gegeven adres gevonden",
-       1 => "De %d vereiste parameters zijn niet op het gegeven adres gevonden",
+$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord";
+$a->strings["System"] = "Systeem";
+$a->strings["Home"] = "Tijdlijn";
+$a->strings["Introductions"] = "Verzoeken";
+$a->strings["%s commented on %s's post"] = "%s gaf een reactie op het bericht van %s";
+$a->strings["%s created a new post"] = "%s schreef een nieuw bericht";
+$a->strings["%s liked %s's post"] = "%s vond het bericht van %s leuk";
+$a->strings["%s disliked %s's post"] = "%s vond het bericht van %s niet leuk";
+$a->strings["%s is 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 is nu bevriend met %s";
+$a->strings["Friend Suggestion"] = "Vriendschapsvoorstel";
+$a->strings["Friend/Connect Request"] = "Vriendschapsverzoek";
+$a->strings["New Follower"] = "Nieuwe Volger";
+$a->strings["Post to Email"] = "Verzenden per e-mail";
+$a->strings["Hide your profile details from unknown viewers?"] = "Je profieldetails verbergen voor onbekende bezoekers?";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
+$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen";
+$a->strings["show"] = "tonen";
+$a->strings["don't show"] = "niet tonen";
+$a->strings["Close"] = "Afsluiten";
+$a->strings["Birthday:"] = "Verjaardag:";
+$a->strings["YYYY-MM-DD or MM-DD"] = "";
+$a->strings["never"] = "nooit";
+$a->strings["less than a second ago"] = "minder dan een seconde geleden";
+$a->strings["year"] = "jaar";
+$a->strings["years"] = "jaren";
+$a->strings["months"] = "maanden";
+$a->strings["weeks"] = "weken";
+$a->strings["days"] = "dagen";
+$a->strings["hour"] = "uur";
+$a->strings["hours"] = "uren";
+$a->strings["minute"] = "minuut";
+$a->strings["minutes"] = "minuten";
+$a->strings["second"] = "seconde";
+$a->strings["seconds"] = "secondes";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden";
+$a->strings["view full size"] = "Volledig formaat";
+$a->strings["Image/photo"] = "Afbeelding/foto";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
+$a->strings["$1 wrote:"] = "$1 schreef:";
+$a->strings["Encrypted content"] = "Versleutelde inhoud";
+$a->strings["Invalid source protocol"] = "";
+$a->strings["Invalid link protocol"] = "";
+$a->strings["External link to forum"] = "";
+$a->strings["Nothing new here"] = "Niets nieuw hier";
+$a->strings["Clear notifications"] = "Notificaties verwijderen";
+$a->strings["Logout"] = "Uitloggen";
+$a->strings["End this session"] = "Deze sessie beëindigen";
+$a->strings["Your posts and conversations"] = "Jouw berichten en gesprekken";
+$a->strings["Your profile page"] = "Jouw profiel pagina";
+$a->strings["Your photos"] = "Jouw foto's";
+$a->strings["Videos"] = "Video's";
+$a->strings["Your videos"] = "";
+$a->strings["Your events"] = "Jouw gebeurtenissen";
+$a->strings["Personal notes"] = "Persoonlijke nota's";
+$a->strings["Your personal notes"] = "";
+$a->strings["Sign in"] = "Inloggen";
+$a->strings["Home Page"] = "Jouw tijdlijn";
+$a->strings["Create an account"] = "Maak een accoount";
+$a->strings["Help and documentation"] = "Hulp en documentatie";
+$a->strings["Apps"] = "Apps";
+$a->strings["Addon applications, utilities, games"] = "Extra toepassingen, hulpmiddelen of spelletjes";
+$a->strings["Search site content"] = "Doorzoek de inhoud van de website";
+$a->strings["Community"] = "Website";
+$a->strings["Conversations on this and other servers"] = "";
+$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender";
+$a->strings["Directory"] = "Gids";
+$a->strings["People directory"] = "Personengids";
+$a->strings["Information about this friendica instance"] = "";
+$a->strings["Conversations from your friends"] = "Gesprekken van je vrienden";
+$a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen";
+$a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters";
+$a->strings["Friend Requests"] = "Vriendschapsverzoeken";
+$a->strings["See all notifications"] = "Toon alle notificaties";
+$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren";
+$a->strings["Private mail"] = "Privéberichten";
+$a->strings["Inbox"] = "Inbox";
+$a->strings["Outbox"] = "Verzonden berichten";
+$a->strings["Manage"] = "Beheren";
+$a->strings["Manage other pages"] = "Andere pagina's beheren";
+$a->strings["Account settings"] = "Account instellingen";
+$a->strings["Profiles"] = "Profielen";
+$a->strings["Manage/Edit Profiles"] = "Beheer/Wijzig Profielen";
+$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten";
+$a->strings["Site setup and configuration"] = "Website opzetten en configureren";
+$a->strings["Navigation"] = "Navigatie";
+$a->strings["Site map"] = "Sitemap";
+$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld";
+$a->strings["Embedded content"] = "Ingebedde inhoud";
+$a->strings["Export"] = "Exporteer";
+$a->strings["Export calendar as ical"] = "Exporteer kalender als ical";
+$a->strings["Export calendar as csv"] = "Exporteer kalender als csv";
+$a->strings["General Features"] = "Algemene functies";
+$a->strings["Multiple Profiles"] = "Meerdere profielen";
+$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken";
+$a->strings["Photo Location"] = "";
+$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"] = "";
+$a->strings["Ability for visitors to download the public calendar"] = "";
+$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten";
+$a->strings["Post Preview"] = "Voorvertoning bericht";
+$a->strings["Allow previewing posts and comments before publishing them"] = "";
+$a->strings["Auto-mention Forums"] = "";
+$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "";
+$a->strings["Network Sidebar Widgets"] = "Zijbalkwidgets op netwerkpagina";
+$a->strings["Search by Date"] = "Zoeken op datum";
+$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten te selecteren volgens datumbereik";
+$a->strings["List Forums"] = "";
+$a->strings["Enable widget to display the forums your are connected with"] = "";
+$a->strings["Group Filter"] = "Groepsfilter";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen";
+$a->strings["Network Filter"] = "Netwerkfilter";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken";
+$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik";
+$a->strings["Network Tabs"] = "Netwerktabs";
+$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had";
+$a->strings["Network New Tab"] = "Nieuwe netwerktab";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)";
+$a->strings["Network Shared Links Tab"] = "";
+$a->strings["Enable tab to display only Network posts with links in them"] = "";
+$a->strings["Post/Comment Tools"] = "Bericht-/reactiehulpmiddelen";
+$a->strings["Multiple Deletion"] = "Meervoudige verwijdering";
+$a->strings["Select and delete multiple posts/comments at once"] = "Selecteer en verwijder meerdere berichten/reacties in een keer";
+$a->strings["Edit Sent Posts"] = "Bewerk verzonden berichten";
+$a->strings["Edit and correct posts and comments after sending"] = "Bewerk en corrigeer berichten en reacties na verzending";
+$a->strings["Tagging"] = "Labelen";
+$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te labelen";
+$a->strings["Post Categories"] = "Categorieën berichten";
+$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten";
+$a->strings["Saved Folders"] = "Bewaarde Mappen";
+$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen te bewaren";
+$a->strings["Dislike Posts"] = "Vind berichten niet leuk";
+$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten of reacties niet leuk te vinden";
+$a->strings["Star Posts"] = "Geef berichten een ster";
+$a->strings["Ability to mark special posts with a star indicator"] = "";
+$a->strings["Mute Post Notifications"] = "";
+$a->strings["Ability to mute notifications for a thread"] = "";
+$a->strings["Advanced Profile Settings"] = "";
+$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "";
+$a->strings["Tag Cloud"] = "";
+$a->strings["Provide a personal tag cloud on your profile page"] = "";
+$a->strings["Display Membership Date"] = "";
+$a->strings["Display membership date in profile"] = "";
+$a->strings["Add New Contact"] = "Nieuw Contact toevoegen";
+$a->strings["Enter address or web location"] = "Voeg een webadres of -locatie in:";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara";
+$a->strings["%d invitation available"] = [
+       0 => "%d uitnodiging beschikbaar",
+       1 => "%d uitnodigingen beschikbaar",
 ];
-$a->strings["Introduction complete."] = "Verzoek voltooid.";
-$a->strings["Unrecoverable protocol error."] = "Onherstelbare protocolfout. ";
-$a->strings["Profile unavailable."] = "Profiel onbeschikbaar";
-$a->strings["%s has received too many connection requests today."] = "%s heeft te veel verzoeken gehad vandaag.";
-$a->strings["Spam protection measures have been invoked."] = "Beveiligingsmaatregelen tegen spam zijn in werking getreden.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Wij adviseren vrienden om het over 24 uur nog een keer te proberen.";
-$a->strings["Invalid locator"] = "Ongeldige plaatsbepaler";
-$a->strings["Invalid email address."] = "Geen geldig e-mailadres";
-$a->strings["This account has not been configured for email. Request failed."] = "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail.";
-$a->strings["You have already introduced yourself here."] = "Je hebt jezelf hier al voorgesteld.";
-$a->strings["Apparently you are already friends with %s."] = "Blijkbaar bent u al bevriend met %s.";
-$a->strings["Invalid profile URL."] = "Ongeldig profiel adres.";
-$a->strings["Your introduction has been sent."] = "Je verzoek is verzonden.";
-$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "";
-$a->strings["Please login to confirm introduction."] = "Log in om je verzoek te bevestigen.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Je huidige identiteit is niet de juiste. Log met <strong>dit</strong> profiel in.";
-$a->strings["Confirm"] = "Bevestig";
-$a->strings["Hide this contact"] = "Verberg dit contact";
-$a->strings["Welcome home %s."] = "Welkom terug %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Bevestig je vriendschaps-/connectieverzoek voor %s.";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "";
-$a->strings["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Beantwoord het volgende:";
-$a->strings["Does %s know you?"] = "Kent %s jou?";
-$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Gefedereerde Sociale Web";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk.";
-$a->strings["Your Identity Address:"] = "Adres van uw identiteit:";
-$a->strings["Submit Request"] = "Aanvraag indienen";
-$a->strings["You already added this contact."] = "Je hebt deze kontakt al toegevoegd";
-$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "";
-$a->strings["OStatus support is disabled. Contact can't be added."] = "";
-$a->strings["The network type couldn't be detected. Contact can't be added."] = "";
-$a->strings["Contact added"] = "Contact toegevoegd";
-$a->strings["Friendica Communications Server - Setup"] = "";
-$a->strings["Could not connect to database."] = "Kon geen toegang krijgen tot de database.";
-$a->strings["Could not create table."] = "Kon tabel niet aanmaken.";
-$a->strings["Your Friendica site database has been installed."] = "De database van je Friendica-website is geïnstalleerd.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Zie het bestand \"INSTALL.txt\".";
-$a->strings["Database already in use."] = "";
-$a->strings["System check"] = "Systeemcontrole";
-$a->strings["Check again"] = "Controleer opnieuw";
-$a->strings["Database connection"] = "Verbinding met database";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. ";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat.";
-$a->strings["Database Server Name"] = "Servernaam database";
-$a->strings["Database Login Name"] = "Gebruikersnaam database";
-$a->strings["Database Login Password"] = "Wachtwoord database";
-$a->strings["Database Name"] = "Naam database";
-$a->strings["Site administrator email address"] = "E-mailadres van de websitebeheerder";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken.";
-$a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor uw website";
-$a->strings["Site settings"] = "Website-instellingen";
-$a->strings["System Language:"] = "";
-$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kan geen command-line-versie van PHP vinden in het PATH van de webserver.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "";
-$a->strings["PHP executable path"] = "PATH van het PHP commando";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten.";
-$a->strings["Command line PHP"] = "PHP-opdrachtregel";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
-$a->strings["Found PHP version: "] = "Gevonden PHP versie:";
-$a->strings["PHP cli binary"] = "";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd.";
-$a->strings["This is required for message delivery to work."] = "Dit is nodig om het verzenden van berichten mogelijk te maken.";
-$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"] = "";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait.";
-$a->strings["Generate encryption keys"] = "";
-$a->strings["libCurl PHP module"] = "libCurl PHP module";
-$a->strings["GD graphics PHP module"] = "GD graphics PHP module";
-$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module";
-$a->strings["mysqli PHP module"] = "mysqli PHP module";
-$a->strings["mb_string PHP module"] = "mb_string PHP module";
-$a->strings["mcrypt PHP module"] = "";
-$a->strings["XML PHP module"] = "";
-$a->strings["iconv module"] = "";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: mcrypt PHP module required but not installed."] = "";
-$a->strings["Error: iconv PHP module required but not installed."] = "";
-$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "";
-$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "";
-$a->strings["mcrypt_create_iv() function"] = "";
-$a->strings["Error, XML PHP module required but not installed."] = "";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen.";
-$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."] = "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel.";
-$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."] = "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php is schrijfbaar";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen.";
-$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."] = "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map.";
-$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."] = "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 is schrijfbaar";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
-$a->strings["Url rewrite is working"] = "";
-$a->strings["ImageMagick PHP extension is not installed"] = "";
-$a->strings["ImageMagick PHP extension is installed"] = "";
-$a->strings["ImageMagick supports 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."] = "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver.";
-$a->strings["<h1>What next</h1>"] = "<h1>Wat nu</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller.";
-$a->strings["Unable to locate original post."] = "Ik kan de originele post niet meer vinden.";
-$a->strings["Empty post discarded."] = "Lege post weggegooid.";
-$a->strings["System error. Post not saved."] = "Systeemfout. Post niet bewaard.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk.";
-$a->strings["You may visit them online at %s"] = "Je kunt ze online bezoeken op %s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen.";
-$a->strings["%s posted an update."] = "%s heeft een wijziging geplaatst.";
-$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
-       0 => "",
-       1 => "",
+$a->strings["Find People"] = "Zoek mensen";
+$a->strings["Enter name or interest"] = "Vul naam of interesse in";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeelden: Jan Peeters, Vissen";
+$a->strings["Similar Interests"] = "Dezelfde interesses";
+$a->strings["Random Profile"] = "Willekeurig Profiel";
+$a->strings["Invite Friends"] = "Vrienden uitnodigen";
+$a->strings["View Global Directory"] = "";
+$a->strings["Networks"] = "Netwerken";
+$a->strings["All Networks"] = "Alle netwerken";
+$a->strings["Everything"] = "Alles";
+$a->strings["Categories"] = "Categorieën";
+$a->strings["%d contact in common"] = [
+       0 => "%d gedeeld contact",
+       1 => "%d gedeelde contacten",
 ];
-$a->strings["Messages in this group won't be send to these receivers."] = "";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Privéberichten naar deze persoon kunnen openbaar gemaakt worden.";
-$a->strings["Invalid contact."] = "Ongeldig contact.";
-$a->strings["Commented Order"] = "Nieuwe reacties bovenaan";
-$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan";
-$a->strings["Posted Order"] = "Nieuwe berichten bovenaan";
-$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan";
-$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben";
-$a->strings["New"] = "Nieuw";
-$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum";
-$a->strings["Shared Links"] = "Gedeelde links";
-$a->strings["Interesting Links"] = "Interessante links";
-$a->strings["Starred"] = "Met ster";
-$a->strings["Favourite Posts"] = "Favoriete berichten";
-$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden";
-$a->strings["{0} sent you a message"] = "{0} stuurde jou een bericht";
-$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren";
-$a->strings["No contacts."] = "Geen contacten.";
+$a->strings["Frequently"] = "Frequent";
+$a->strings["Hourly"] = "elk uur";
+$a->strings["Twice daily"] = "Twee keer per dag";
+$a->strings["Daily"] = "dagelijks";
+$a->strings["Weekly"] = "wekelijks";
+$a->strings["Monthly"] = "maandelijks";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "Linkedln";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "Myspace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Diaspora-connector";
+$a->strings["GNU Social Connector"] = "";
+$a->strings["pnut"] = "";
+$a->strings["App.net"] = "";
+$a->strings["Male"] = "Man";
+$a->strings["Female"] = "Vrouw";
+$a->strings["Currently Male"] = "Momenteel mannelijk";
+$a->strings["Currently Female"] = "Momenteel vrouwelijk";
+$a->strings["Mostly Male"] = "Meestal mannelijk";
+$a->strings["Mostly Female"] = "Meestal vrouwelijk";
+$a->strings["Transgender"] = "Transgender";
+$a->strings["Intersex"] = "Interseksueel";
+$a->strings["Transsexual"] = "Transseksueel";
+$a->strings["Hermaphrodite"] = "Hermafrodiet";
+$a->strings["Neuter"] = "Genderneutraal";
+$a->strings["Non-specific"] = "Niet-specifiek";
+$a->strings["Other"] = "Anders";
+$a->strings["Males"] = "Mannen";
+$a->strings["Females"] = "Vrouwen";
+$a->strings["Gay"] = "Homo";
+$a->strings["Lesbian"] = "Lesbienne";
+$a->strings["No Preference"] = "Geen voorkeur";
+$a->strings["Bisexual"] = "Biseksueel";
+$a->strings["Autosexual"] = "Autoseksueel";
+$a->strings["Abstinent"] = "Onthouder";
+$a->strings["Virgin"] = "Maagd";
+$a->strings["Deviant"] = "Afwijkend";
+$a->strings["Fetish"] = "Fetisj";
+$a->strings["Oodles"] = "Veel";
+$a->strings["Nonsexual"] = "Niet seksueel";
+$a->strings["Single"] = "Alleenstaand";
+$a->strings["Lonely"] = "Eenzaam";
+$a->strings["Available"] = "Beschikbaar";
+$a->strings["Unavailable"] = "Onbeschikbaar";
+$a->strings["Has crush"] = "Verliefd";
+$a->strings["Infatuated"] = "Smoorverliefd";
+$a->strings["Dating"] = "Aan het daten";
+$a->strings["Unfaithful"] = "Ontrouw";
+$a->strings["Sex Addict"] = "Seksverslaafd";
+$a->strings["Friends"] = "Vrienden";
+$a->strings["Friends/Benefits"] = "Vriendschap plus";
+$a->strings["Casual"] = "Ongebonden/vluchtig";
+$a->strings["Engaged"] = "Verloofd";
+$a->strings["Married"] = "Getrouwd";
+$a->strings["Imaginarily married"] = "Denkbeeldig getrouwd";
+$a->strings["Partners"] = "Partners";
+$a->strings["Cohabiting"] = "Samenwonend";
+$a->strings["Common law"] = "getrouwd voor-de-wet";
+$a->strings["Happy"] = "Blij";
+$a->strings["Not looking"] = "Niet op zoek";
+$a->strings["Swinger"] = "Swinger";
+$a->strings["Betrayed"] = "Bedrogen";
+$a->strings["Separated"] = "Uit elkaar";
+$a->strings["Unstable"] = "Onstabiel";
+$a->strings["Divorced"] = "Gescheiden";
+$a->strings["Imaginarily divorced"] = "Denkbeeldig gescheiden";
+$a->strings["Widowed"] = "Weduwnaar/weduwe";
+$a->strings["Uncertain"] = "Onzeker";
+$a->strings["It's complicated"] = "Het is gecompliceerd";
+$a->strings["Don't care"] = "Kan me niet schelen";
+$a->strings["Ask me"] = "Vraag me";
+$a->strings["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]"] = "";
+$a->strings["\nError %d occurred during database update:\n%s\n"] = "";
+$a->strings["Errors encountered performing database changes: "] = "";
+$a->strings[": Database update"] = "";
+$a->strings["%s: updating %s table."] = "";
+$a->strings["[no subject]"] = "[geen onderwerp]";
+$a->strings["Requested account is not available."] = "Gevraagde account is niet beschikbaar.";
+$a->strings["Edit profile"] = "Bewerk profiel";
+$a->strings["Atom feed"] = "";
+$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen";
+$a->strings["g A l F d"] = "G l j F";
+$a->strings["F d"] = "d F";
+$a->strings["[today]"] = "[vandaag]";
+$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen";
+$a->strings["Birthdays this week:"] = "Verjaardagen deze week:";
+$a->strings["[No description]"] = "[Geen omschrijving]";
+$a->strings["Event Reminders"] = "Gebeurtenisherinneringen";
+$a->strings["Events this week:"] = "Gebeurtenissen deze week:";
+$a->strings["Member since:"] = "";
+$a->strings["j F, Y"] = "F j Y";
+$a->strings["j F"] = "F j";
+$a->strings["Age:"] = "Leeftijd:";
+$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s";
+$a->strings["Religion:"] = "Religie:";
+$a->strings["Hobbies/Interests:"] = "Hobby:";
+$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:";
+$a->strings["Musical interests:"] = "Muzikale interesse ";
+$a->strings["Books, literature:"] = "Boeken, literatuur:";
+$a->strings["Television:"] = "Televisie";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultuur/ontspanning:";
+$a->strings["Love/Romance:"] = "Liefde/romance:";
+$a->strings["Work/employment:"] = "Werk/beroep:";
+$a->strings["School/education:"] = "School/opleiding:";
+$a->strings["Forums:"] = "";
+$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. ";
+$a->strings["Default privacy group for new contacts"] = "";
+$a->strings["Everybody"] = "Iedereen";
+$a->strings["edit"] = "verander";
+$a->strings["Edit group"] = "Verander groep";
+$a->strings["Contacts not in any group"] = "";
+$a->strings["Create a new group"] = "Maak nieuwe groep";
+$a->strings["Edit groups"] = "";
+$a->strings["Drop Contact"] = "Verwijder contact";
+$a->strings["Organisation"] = "";
+$a->strings["News"] = "";
+$a->strings["Forum"] = "Forum";
+$a->strings["Connect URL missing."] = "";
+$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."] = "Deze website is niet geconfigureerd voor communicatie met andere netwerken.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Er werden geen compatibele communicatieprotocols of feeds ontdekt.";
+$a->strings["The profile address specified does not provide adequate information."] = "";
+$a->strings["An author or name was not found."] = "";
+$a->strings["No browser URL could be matched to this address."] = "";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact.";
+$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "";
+$a->strings["Unable to retrieve contact information."] = "";
+$a->strings["%s's birthday"] = "%s's verjaardag";
+$a->strings["Happy Birthday %s"] = "Gefeliciteerd %s";
+$a->strings["Starts:"] = "Begint:";
+$a->strings["Finishes:"] = "Eindigt:";
+$a->strings["all-day"] = "";
+$a->strings["Jun"] = "Jun";
+$a->strings["Sept"] = "Sep";
+$a->strings["No events to display"] = "";
+$a->strings["l, F j"] = "l j F";
+$a->strings["Edit event"] = "Gebeurtenis bewerken";
+$a->strings["Duplicate event"] = "";
+$a->strings["Delete event"] = "";
+$a->strings["D g:i A"] = "D g:i A";
+$a->strings["g:i A"] = "g:i A";
+$a->strings["Show map"] = "Toon kaart";
+$a->strings["Hide map"] = "Verberg kaart";
+$a->strings["Login failed"] = "";
+$a->strings["Not enough information to authenticate"] = "";
+$a->strings["An invitation is required."] = "Een uitnodiging is vereist.";
+$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden.";
+$a->strings["Invalid OpenID url"] = "Ongeldige OpenID url";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
+$a->strings["The error message was:"] = "De foutboodschap was:";
+$a->strings["Please enter the required information."] = "Vul de vereiste informatie in.";
+$a->strings["Please use a shorter name."] = "gebruik een kortere naam";
+$a->strings["Name too short."] = "Naam te kort";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn.";
+$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan.";
+$a->strings["Not a valid email address."] = "Geen geldig e-mailadres.";
+$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken.";
+$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "";
+$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt.";
+$a->strings["An error occurred during registration. Please try again."] = "";
+$a->strings["default"] = "standaard";
+$a->strings["An error occurred creating your default profile. Please try again."] = "";
+$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"] = "";
+$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["%s is now following %s."] = "%s volgt nu %s.";
+$a->strings["following"] = "volgend";
+$a->strings["%s stopped following %s."] = "%s stopte %s te volgen.";
+$a->strings["stopped following"] = "";
+$a->strings["%s\\'s birthday"] = "%s\\'s verjaardag";
+$a->strings["Sharing notification from Diaspora network"] = "Deelt notificatie van het Diaspora netwerk";
+$a->strings["Attachments:"] = "Bijlagen:";
+$a->strings["(no subject)"] = "(geen onderwerp)";
+$a->strings["This entry was edited"] = "";
+$a->strings["save to folder"] = "Bewaren in map";
+$a->strings["I will attend"] = "Ik zal er zijn";
+$a->strings["I will not attend"] = "Ik zal er niet zijn";
+$a->strings["I might attend"] = "Ik ga misschien";
+$a->strings["add star"] = "ster toevoegen";
+$a->strings["remove star"] = "ster verwijderen";
+$a->strings["toggle star status"] = "ster toevoegen of verwijderen";
+$a->strings["starred"] = "met ster";
+$a->strings["ignore thread"] = "";
+$a->strings["unignore thread"] = "";
+$a->strings["toggle ignore status"] = "";
+$a->strings["add tag"] = "label toevoegen";
+$a->strings["like"] = "leuk";
+$a->strings["dislike"] = "niet leuk";
+$a->strings["Share this"] = "Delen";
+$a->strings["share"] = "Delen";
+$a->strings["to"] = "aan";
 $a->strings["via"] = "via";
+$a->strings["Wall-to-Wall"] = "wall-to-wall";
+$a->strings["via Wall-To-Wall:"] = "via wall-to-wall";
+$a->strings["%d comment"] = [
+       0 => "%d reactie",
+       1 => "%d reacties",
+];
+$a->strings["Bold"] = "Vet";
+$a->strings["Italic"] = "Cursief";
+$a->strings["Underline"] = "Onderstrepen";
+$a->strings["Quote"] = "Citeren";
+$a->strings["Code"] = "Broncode";
+$a->strings["Image"] = "Afbeelding";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Video";
+$a->strings["Create a New Account"] = "Nieuwe account aanmaken";
+$a->strings["Password: "] = "Wachtwoord:";
+$a->strings["Remember me"] = "Onthou me";
+$a->strings["Or login using OpenID: "] = "Of log in met OpenID:";
+$a->strings["Forgot your password?"] = "Wachtwoord vergeten?";
+$a->strings["Website Terms of Service"] = "Gebruikersvoorwaarden website";
+$a->strings["terms of service"] = "servicevoorwaarden";
+$a->strings["Website Privacy Policy"] = "Privacybeleid website";
+$a->strings["privacy policy"] = "privacybeleid";
+$a->strings["Logged out."] = "Uitgelogd.";
+$a->strings["Delete this item?"] = "Dit item verwijderen?";
+$a->strings["show fewer"] = "Minder tonen";
+$a->strings["greenzero"] = "";
+$a->strings["purplezero"] = "";
+$a->strings["easterbunny"] = "";
+$a->strings["darkzero"] = "";
+$a->strings["comix"] = "";
+$a->strings["slackr"] = "";
+$a->strings["Variations"] = "";
 $a->strings["Repeat the image"] = "";
 $a->strings["Will repeat your image to fill the background."] = "";
 $a->strings["Stretch"] = "";
@@ -2003,50 +2136,35 @@ $a->strings["Resize to fill and retain aspect ratio."] = "";
 $a->strings["Resize best fit"] = "";
 $a->strings["Resize to best fit and retain aspect ratio."] = "";
 $a->strings["Default"] = "";
-$a->strings["Note"] = "";
+$a->strings["Note"] = "";
 $a->strings["Check image permissions if all users are allowed to visit the image"] = "";
 $a->strings["Select scheme"] = "";
 $a->strings["Navigation bar background color"] = "";
 $a->strings["Navigation bar icon color "] = "";
 $a->strings["Link color"] = "";
 $a->strings["Set the background color"] = "";
-$a->strings["Content background transparency"] = "";
+$a->strings["Content background opacity"] = "";
 $a->strings["Set the background image"] = "";
-$a->strings["Guest"] = "";
-$a->strings["Visitor"] = "";
+$a->strings["Login page background image"] = "Achtergrondafbeelding aanmeldpagina";
+$a->strings["Login page background color"] = "Achtergrondkleur aanmeldpagina";
+$a->strings["Leave background image and color empty for theme defaults"] = "Laat de achtergrondafbeelding en kleur leeg om de standaard van het thema te gebruiken";
+$a->strings["Guest"] = "Gast";
+$a->strings["Visitor"] = "Bezoeker";
 $a->strings["Alignment"] = "Uitlijning";
 $a->strings["Left"] = "Links";
 $a->strings["Center"] = "Gecentreerd";
 $a->strings["Color scheme"] = "Kleurschema";
 $a->strings["Posts font size"] = "Lettergrootte berichten";
 $a->strings["Textareas font size"] = "Lettergrootte tekstgebieden";
+$a->strings["Comma separated list of helper forums"] = "Kommagescheiden lijst van de helper forums";
+$a->strings["Set style"] = "Stijl instellen";
+$a->strings["Community Pages"] = "Forum/groepspagina's";
 $a->strings["Community Profiles"] = "Forum/groepsprofielen";
-$a->strings["Last users"] = "Laatste gebruikers";
+$a->strings["Help or @NewHere ?"] = "Help of @NewHere ?";
+$a->strings["Connect Services"] = "Diensten verbinden";
 $a->strings["Find Friends"] = "Zoek vrienden";
+$a->strings["Last users"] = "Laatste gebruikers";
 $a->strings["Local Directory"] = "Lokale gids";
-$a->strings["Quick Start"] = "";
-$a->strings["Connect Services"] = "Diensten verbinden";
-$a->strings["Comma separated list of helper forums"] = "";
-$a->strings["Set style"] = "";
-$a->strings["Community Pages"] = "Forum/groepspagina's";
-$a->strings["Help or @NewHere ?"] = "";
-$a->strings["greenzero"] = "";
-$a->strings["purplezero"] = "";
-$a->strings["easterbunny"] = "";
-$a->strings["darkzero"] = "";
-$a->strings["comix"] = "";
-$a->strings["slackr"] = "";
-$a->strings["Variations"] = "";
-$a->strings["Delete this item?"] = "Dit item verwijderen?";
-$a->strings["show fewer"] = "Minder tonen";
-$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden.";
-$a->strings["Create a New Account"] = "Nieuwe account aanmaken";
-$a->strings["Password: "] = "Wachtwoord:";
-$a->strings["Remember me"] = "Onthou me";
-$a->strings["Or login using OpenID: "] = "Of log in met OpenID:";
-$a->strings["Forgot your password?"] = "Wachtwoord vergeten?";
-$a->strings["Website Terms of Service"] = "Gebruikersvoorwaarden website";
-$a->strings["terms of service"] = "servicevoorwaarden";
-$a->strings["Website Privacy Policy"] = "Privacybeleid website";
-$a->strings["privacy policy"] = "privacybeleid";
+$a->strings["Quick Start"] = "Snelstart";
 $a->strings["toggle mobile"] = "mobiel thema omwisselen";
+$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden.";
index 83ebd74f5fb19d68bd64d0c92063b2239f23f344..19b7306dd5835ebe68588d349ec2aee4630e296e 100644 (file)
@@ -15,6 +15,7 @@
                <h3 class="connector">{{$general_settings}}</h3>
        </span>
 
+       {{include file="field_checkbox.tpl" field=$disable_cw}}
        {{include file="field_checkbox.tpl" field=$no_intelligent_shortening}}
        {{include file="field_checkbox.tpl" field=$ostatus_autofriend}}
        {{$default_group}}
index e5d21158c250d7eb86720a05148636bb8885fae3..7a18c46f778b7e8be5d7084ffa4989352b7c019e 100644 (file)
@@ -20,6 +20,7 @@
                                <div id="content-settings-content" class="panel-collapse collapse" role="tabpanel" aria-labelledby="content-settings">
                                        <div class="section-content-wrapper">
 
+                                               {{include file="field_checkbox.tpl" field=$disable_cw}}
                                                {{include file="field_checkbox.tpl" field=$no_intelligent_shortening}}
                                                {{include file="field_checkbox.tpl" field=$ostatus_autofriend}}
                                                {{$default_group}}