Merge pull request #4727 from tobiasd/20180402-register

added TOS module
This commit is contained in:
Hypolite Petovan 2018-04-03 10:39:53 -04:00 committed by GitHub
commit 2cf35cd8f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 3222 additions and 3035 deletions

View file

@ -109,6 +109,9 @@ function admin_post(App $a)
}
$return_path = 'admin/themes/' . $theme;
break;
case 'tos':
admin_page_tos_post($a);
break;
case 'features':
admin_page_features_post($a);
break;
@ -181,7 +184,8 @@ function admin_content(App $a)
'users' => ["admin/users/" , L10n::t("Users") , "users"],
'addons' => ["admin/addons/" , L10n::t("Addons") , "addons"],
'themes' => ["admin/themes/" , L10n::t("Themes") , "themes"],
'features' => ["admin/features/" , L10n::t("Additional features") , "features"] ]],
'features' => ["admin/features/" , L10n::t("Additional features") , "features"],
'tos' => ["admin/tos/" , L10n::t("Terms of Service") , "tos"] ]],
'database' => [ L10n::t('Database'), [
'dbsync' => ["admin/dbsync/" , L10n::t('DB updates') , "dbsync"],
'queue' => ["admin/queue/" , L10n::t('Inspect Queue') , "queue"], ]],
@ -265,6 +269,9 @@ function admin_content(App $a)
case 'deleteitem':
$o = admin_page_deleteitem($a);
break;
case 'tos':
$o = admin_page_tos($a);
break;
default:
notice(L10n::t("Item not found."));
}
@ -281,6 +288,50 @@ function admin_content(App $a)
}
}
/**
* @brief Subpage to define the display of a Terms of Usage page.
*
* @param App $a
* @return string
*/
function admin_page_tos(App $a)
{
$t = get_markup_template('admin/tos.tpl');
return replace_macros($t, [
'$title' => L10n::t('Administration'),
'$page' => L10n::t('Terms of Service'),
'$displaytos' => ['displaytos', L10n::t('Display Terms of Service'), Config::get('system', 'tosdisplay'), L10n::t('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.')],
'$displayprivstatement' => ['displayprivstatement', L10n::t('Display Privacy Statement'), Config::get('system','tosprivstatement'), L10n::t('Show some informations regarding the needed information to operate the node according e.g. to <a href="%s" target="_blank">EU-GDPR</a>.','https://en.wikipedia.org/wiki/General_Data_Protection_Regulation')],
'$tostext' => ['tostext', L10n::t('The Terms of Usage'), Config::get('system', 'tostext'), L10n::t('Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.')],
'$form_security_token' => get_form_security_token("admin_tos"),
'$submit' => L10n::t('Save Settings'),
]);
}
/**
* @brief Process send data from Admin TOS Page
*
* @param App $a
*/
function admin_page_tos_post(App $a)
{
check_form_security_token_redirectOnErr('/admin/tos', 'admin_tos');
if (!x($_POST, "page_tos")) {
return;
}
$displaytos = ((x($_POST, 'displaytos')) ? True : False);
$displayprivstatement = ((x($_POST, 'displayprivstatement')) ? True : False);
$tostext = ((x($_POST, 'tostext')) ? strip_tags(trim($_POST['tostext'])) : '');
Config::set('system', 'tosdisplay', $displaytos);
Config::set('system', 'tosprivstatement', $displayprivstatement);
Config::set('system', 'tostext', $tostext);
goaway('admin/tos');
return; // NOTREACHED
}
/**
* @brief Subpage to modify the server wide block list via the admin panel.
*
@ -920,7 +971,7 @@ function admin_page_site_post(App $a)
$daily_registrations = ((x($_POST,'max_daily_registrations')) ? intval(trim($_POST['max_daily_registrations'])) :0);
$abandon_days = ((x($_POST,'abandon_days')) ? intval(trim($_POST['abandon_days'])) : 0);
$register_text = ((x($_POST,'register_text')) ? notags(trim($_POST['register_text'])) : '');
$register_text = ((x($_POST,'register_text')) ? strip_tags(trim($_POST['register_text'])) : '');
$allowed_sites = ((x($_POST,'allowed_sites')) ? notags(trim($_POST['allowed_sites'])) : '');
$allowed_email = ((x($_POST,'allowed_email')) ? notags(trim($_POST['allowed_email'])) : '');
@ -1325,7 +1376,7 @@ function admin_page_site(App $a)
'$register_policy' => ['register_policy', L10n::t("Register policy"), $a->config['register_policy'], "", $register_choices],
'$daily_registrations' => ['max_daily_registrations', L10n::t("Maximum Daily Registrations"), Config::get('system', 'max_daily_registrations'), L10n::t("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.")],
'$register_text' => ['register_text', L10n::t("Register text"), $a->config['register_text'], L10n::t("Will be displayed prominently on the registration page.")],
'$register_text' => ['register_text', L10n::t("Register text"), $a->config['register_text'], L10n::t("Will be displayed prominently on the registration page. You can use BBCode here.")],
'$abandon_days' => ['abandon_days', L10n::t('Accounts abandoned after x days'), Config::get('system','account_abandon_days'), L10n::t('Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.')],
'$allowed_sites' => ['allowed_sites', L10n::t("Allowed friend domains"), Config::get('system','allowed_sites'), L10n::t("Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains")],
'$allowed_email' => ['allowed_email', L10n::t("Allowed email domains"), Config::get('system','allowed_email'), L10n::t("Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains")],
@ -1547,6 +1598,8 @@ function admin_page_users_post(App $a)
If you are new and do not know anybody here, they may help
you to make some new and interesting friends.
If you ever want to delete your account, you can do so at %1$s/removeme
Thank you and welcome to %4$s.'));
$preamble = sprintf($preamble, $user['username'], $a->config['sitename']);

View file

@ -116,6 +116,11 @@ function friendica_content(App $a)
} else {
$o .= '<p>' . L10n::t('No installed addons/apps') . '</p>' . PHP_EOL;
}
if (Config::get('system', 'tosdisplay'))
{
$o .= '<p>'.L10n::t('Read about the <a href="%1$s/tos">Terms of Service</a> of this node.', System::baseurl()).'</p>';
}
$blocklist = Config::get('system', 'blocklist');
if (count($blocklist)) {

View file

@ -262,7 +262,7 @@ function register_content(App $a)
'$invite_id' => $invite_id,
'$realpeople' => $realpeople,
'$regtitle' => L10n::t('Registration'),
'$registertext' => x($a->config, 'register_text') ? BBCode::convert($a->config['register_text']) : "",
'$registertext' => BBCode::convert(Config::get('config', 'register_text', '')),
'$fillwith' => $fillwith,
'$fillext' => $fillext,
'$oidlabel' => $oidlabel,
@ -284,6 +284,9 @@ function register_content(App $a)
'$sitename' => $a->get_hostname(),
'$importh' => L10n::t('Import'),
'$importt' => L10n::t('Import your profile to this friendica instance'),
'$showtoslink' => Config::get('system', 'tosdisplay'),
'$tostext' => L10n::t('Terms of Service'),
'$baseurl' => System::baseurl(),
'$form_security_token' => get_form_security_token("register")
]);
return $o;

View file

@ -6,6 +6,9 @@ namespace Friendica;
* All modules in Friendica should extend BaseModule, although not all modules
* need to extend all the methods described here
*
* The filename of the module in src/Module needs to match the class name
* exactly to make the module available.
*
* @author Hypolite Petovan mrpetovan@gmail.com
*/
abstract class BaseModule extends BaseObject

View file

@ -614,11 +614,12 @@ class User
'));
$body = deindent(L10n::t('
The login details are as follows:
Site Location: %3$s
Login Name: %1$s
Password: %5$s
You may change your password from your account Settings page after logging
Site Location: %1$s
Login Name: %2$s
Password: %3$s
You may change your password from your account "Settings" page after logging
in.
Please take a few moments to review the other account settings on that page.
@ -627,7 +628,7 @@ class User
' . "\x28" . 'on the "Profiles" page' . "\x29" . ' so that other people can easily find you.
We recommend setting your full name, adding a profile photo,
adding some profile keywords ' . "\x28" . 'very useful in making new friends' . "\x29" . ' - and
adding some profile "keywords" ' . "\x28" . 'very useful in making new friends' . "\x29" . ' - and
perhaps what country you live in; if you do not wish to be more specific
than that.
@ -635,8 +636,9 @@ class User
If you are new and do not know anybody here, they may help
you to make some new and interesting friends.
If you ever want to delete your account, you can do so at %1$s/removeme
Thank you and welcome to %2$s.'));
Thank you and welcome to %4$s.'));
$preamble = sprintf($preamble, $username, $sitename);
$body = sprintf($body, $email, $sitename, $siteurl, $username, $password);

59
src/Module/Tos.php Normal file
View file

@ -0,0 +1,59 @@
<?php
/**
* @file mod/tos.php
*
* This module displays the Terms of Service for a node, if the admin
* wants them to be displayed.
*/
namespace Friendica\Module;
use Friendica\BaseModule;
use Friendica\Core\Config;
use Friendica\Core\L10n;
use Friendica\Core\System;
use Friendica\Content\Text\BBCode;
class Tos extends BaseModule
{
/**
* @brief initialize the TOS module.
*
* If this is a single user instance, we expect the user to know their
* dealings with their own node so a TOS is not necessary.
*
**/
public static function init()
{
if (strlen(Config::get('system','singleuser'))) {
goaway(System::baseUrl()."/profile/" . Config::get('system','singleuser'));
}
}
/**
* @brief generate the content of the /tos page
*
* The content of the /tos page is generated from two parts.
* (1) a free form part the admin of the node can set in the admin panel
* (2) an optional privacy statement that gives some transparency about
* what information are needed by the software to provide the service.
* This privacy statement has fixed text, so it can be translated easily.
*
* @return string
**/
public static function content() {
$tpl = get_markup_template('tos.tpl');
if (Config::get('system', 'tosdisplay'))
{
return replace_macros($tpl, [
'$title' => L10n::t("Terms of Service"),
'$tostext' => BBCode::convert(Config::get('system', 'tostext')),
'$displayprivstatement' => Config::get('system', 'tosprivstatement'),
'$privstatementtitle' => L10n::t("Privacy Statement"),
'$privoperate' => L10n::t('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.'),
'$privdelete' => L10n::t('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.', System::baseurl())
]);
} else {
return;
}
}
}

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-03-28 08:41+0200\n"
"POT-Creation-Date: 2018-04-03 06:50+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"
@ -36,6 +36,11 @@ msgid ""
"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 ""
#: include/api.php:1199
#, php-format
msgid "Daily posting limit of %d post reached. The post was rejected."
@ -133,11 +138,11 @@ msgstr ""
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr ""
#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:354
#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:355
msgid "Likes"
msgstr ""
#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:358
#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:359
msgid "Dislikes"
msgstr ""
@ -160,8 +165,8 @@ msgstr ""
msgid "Select"
msgstr ""
#: include/conversation.php:745 mod/photos.php:1570 mod/admin.php:1731
#: mod/contacts.php:830 mod/contacts.php:1035 mod/settings.php:738
#: include/conversation.php:745 mod/photos.php:1570 mod/contacts.php:830
#: mod/contacts.php:1035 mod/settings.php:738 mod/admin.php:1798
#: src/Object/Post.php:179
msgid "Delete"
msgstr ""
@ -212,7 +217,7 @@ msgstr ""
#: include/conversation.php:1061 include/conversation.php:1077
#: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89
#: mod/directory.php:160 mod/dirfind.php:217 src/Model/Contact.php:580
#: 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 ""
@ -453,8 +458,8 @@ msgstr ""
#: mod/fbrowser.php:134 mod/suggest.php:41 mod/dfrn_request.php:663
#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149 mod/message.php:141
#: mod/photos.php:248 mod/photos.php:324 mod/videos.php:147
#: mod/contacts.php:475 mod/follow.php:161 mod/settings.php:676
#: mod/settings.php:702 mod/unfollow.php:117
#: mod/contacts.php:475 mod/unfollow.php:117 mod/settings.php:676
#: mod/settings.php:702 mod/follow.php:161
msgid "Cancel"
msgstr ""
@ -506,11 +511,6 @@ msgid_plural "Undecided"
msgstr[0] ""
msgstr[1] ""
#: include/dba.php:57
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr ""
#: include/enotify.php:31
msgid "Friendica Notification"
msgstr ""
@ -802,9 +802,9 @@ msgstr ""
msgid "Please visit %s to approve or reject the request."
msgstr ""
#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21 mod/admin.php:269
#: mod/admin.php:1787 mod/admin.php:2035 mod/display.php:72 mod/display.php:252
#: mod/display.php:354
#: 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 ""
@ -813,13 +813,13 @@ msgid "Do you really want to delete this item?"
msgstr ""
#: include/items.php:384 mod/api.php:110 mod/suggest.php:38
#: mod/dfrn_request.php:653 mod/register.php:237 mod/message.php:138
#: mod/contacts.php:472 mod/follow.php:150 mod/profiles.php:635
#: mod/profiles.php:638 mod/profiles.php:660 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/dfrn_request.php:653 mod/message.php:138 mod/contacts.php:472
#: 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/register.php:237
msgid "Yes"
msgstr ""
@ -827,21 +827,21 @@ msgstr ""
#: 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/manage.php:131 mod/wall_attach.php:74
#: mod/wall_attach.php:77 mod/poke.php:150 mod/regmod.php:108
#: mod/viewcontacts.php:57 mod/wall_upload.php:103 mod/wall_upload.php:106
#: mod/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/register.php:53 mod/editpost.php:18
#: mod/fsuggest.php:80 mod/group.php:26 mod/message.php:59 mod/message.php:104
#: 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/cal.php:304 mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43
#: mod/delegate.php:54 mod/dirfind.php:25 mod/events.php:194 mod/follow.php:17
#: mod/follow.php:54 mod/follow.php:118 mod/item.php:160
#: mod/ostatus_subscribe.php:16 mod/profile_photo.php:30
#: mod/profile_photo.php:176 mod/profile_photo.php:187
#: mod/profile_photo.php:200 mod/profiles.php:181 mod/profiles.php:605
#: mod/settings.php:43 mod/settings.php:142 mod/settings.php:665
#: mod/unfollow.php:15 mod/unfollow.php:57 mod/unfollow.php:90 index.php:416
#: mod/contacts.php:386 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/register.php:53 index.php:416
msgid "Permission denied."
msgstr ""
@ -849,9 +849,9 @@ msgstr ""
msgid "Archives"
msgstr ""
#: include/items.php:477 view/theme/vier/theme.php:259
#: src/Content/ForumManager.php:130 src/Content/Widget.php:312
#: src/Object/Post.php:424 src/App.php:518
#: 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 ""
@ -928,13 +928,14 @@ msgid "Tags"
msgstr ""
#: include/text.php:1027 mod/viewcontacts.php:131 mod/contacts.php:814
#: mod/contacts.php:875 view/theme/frio/theme.php:270 src/Content/Nav.php:147
#: src/Content/Nav.php:212 src/Model/Profile.php:957 src/Model/Profile.php:960
#: 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 ""
#: include/text.php:1030 view/theme/vier/theme.php:254
#: src/Content/ForumManager.php:125 src/Content/Nav.php:151
#: include/text.php:1030 src/Content/ForumManager.php:125
#: src/Content/Nav.php:151 view/theme/vier/theme.php:254
msgid "Forums"
msgstr ""
@ -1200,13 +1201,13 @@ msgid ""
"and/or create new posts for you?"
msgstr ""
#: mod/api.php:111 mod/dfrn_request.php:653 mod/register.php:238
#: mod/follow.php:150 mod/profiles.php:635 mod/profiles.php:639
#: mod/profiles.php:660 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/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 ""
@ -1299,10 +1300,10 @@ msgstr ""
#: mod/message.php:265 mod/message.php:432 mod/photos.php:1080
#: mod/photos.php:1160 mod/photos.php:1445 mod/photos.php:1491
#: mod/photos.php:1530 mod/photos.php:1603 mod/contacts.php:610
#: mod/events.php:530 mod/install.php:251 mod/install.php:290
#: mod/profiles.php:671 view/theme/duepuntozero/config.php:71
#: view/theme/frio/config.php:113 view/theme/quattro/config.php:73
#: view/theme/vier/config.php:119 src/Object/Post.php:790
#: mod/install.php:251 mod/install.php:290 mod/events.php:530
#: mod/profiles.php:672 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 ""
@ -1320,9 +1321,9 @@ msgid ""
"entries from this contact."
msgstr ""
#: mod/crepair.php:158 mod/admin.php:439 mod/admin.php:1714 mod/admin.php:1726
#: mod/admin.php:1739 mod/admin.php:1755 mod/settings.php:677
#: mod/settings.php:703
#: 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 ""
@ -1358,8 +1359,8 @@ msgstr ""
msgid "New photo from this URL"
msgstr ""
#: mod/fbrowser.php:34 view/theme/frio/theme.php:261 src/Content/Nav.php:102
#: src/Model/Profile.php:904
#: mod/fbrowser.php:34 src/Content/Nav.php:102 src/Model/Profile.php:904
#: view/theme/frio/theme.php:261
msgid "Photos"
msgstr ""
@ -1391,7 +1392,7 @@ msgstr ""
msgid "Help:"
msgstr ""
#: mod/help.php:54 view/theme/vier/theme.php:298 src/Content/Nav.php:134
#: mod/help.php:54 src/Content/Nav.php:134 view/theme/vier/theme.php:298
msgid "Help"
msgstr ""
@ -1447,8 +1448,8 @@ msgid ""
"join."
msgstr ""
#: mod/newmember.php:19 mod/admin.php:1839 mod/admin.php:2108
#: mod/settings.php:124 view/theme/frio/theme.php:269 src/Content/Nav.php:206
#: 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 ""
@ -1472,13 +1473,13 @@ msgid ""
msgstr ""
#: mod/newmember.php:24 mod/profperm.php:113 mod/contacts.php:671
#: mod/contacts.php:863 view/theme/frio/theme.php:260 src/Content/Nav.php:101
#: src/Model/Profile.php:730 src/Model/Profile.php:863
#: src/Model/Profile.php:896
#: 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 ""
#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:690
#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:691
msgid "Upload Profile Photo"
msgstr ""
@ -1649,15 +1650,10 @@ msgstr ""
msgid "Ignore/Hide"
msgstr ""
#: mod/suggest.php:114 view/theme/vier/theme.php:203 src/Content/Widget.php:64
#: mod/suggest.php:114 src/Content/Widget.php:64 view/theme/vier/theme.php:203
msgid "Friend Suggestions"
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 ""
#: mod/uimport.php:55 mod/register.php:191
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
@ -1699,60 +1695,16 @@ msgid ""
"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 ""
#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
#, php-format
msgid "%1$s welcomes %2$s"
msgstr ""
#: mod/friendica.php:77
msgid "This is Friendica, version"
msgstr ""
#: mod/friendica.php:78
msgid "running at web location"
msgstr ""
#: mod/friendica.php:82
msgid ""
"Please visit <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 ""
#: mod/friendica.php:86
msgid "the bugtracker at github"
msgstr ""
#: mod/friendica.php:89
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr ""
#: mod/friendica.php:103
msgid "Installed addons/apps:"
msgstr ""
#: mod/friendica.php:117
msgid "No installed addons/apps"
msgstr ""
#: mod/friendica.php:122
msgid "On this server the following remote servers are blocked."
msgstr ""
#: mod/friendica.php:123 mod/dfrn_request.php:351 mod/admin.php:302
#: mod/admin.php:320 src/Model/Contact.php:1228
msgid "Blocked domain"
msgstr ""
#: mod/friendica.php:123 mod/admin.php:303 mod/admin.php:321
msgid "Reason for the block"
msgstr ""
#: mod/match.php:48
msgid "No keywords to match. Please add keywords to your default profile."
msgstr ""
@ -1831,7 +1783,7 @@ msgstr ""
msgid "if applicable"
msgstr ""
#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1729
#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1796
msgid "Approve"
msgstr ""
@ -1884,13 +1836,13 @@ msgstr ""
msgid "Subscriber"
msgstr ""
#: mod/notifications.php:247 mod/contacts.php:660 mod/directory.php:149
#: mod/events.php:518 src/Model/Profile.php:417 src/Model/Event.php:60
#: mod/notifications.php:247 mod/contacts.php:660 mod/events.php:518
#: mod/directory.php:148 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 ""
#: mod/notifications.php:249 mod/contacts.php:664 mod/directory.php:155
#: mod/notifications.php:249 mod/contacts.php:664 mod/directory.php:154
#: src/Model/Profile.php:423 src/Model/Profile.php:806
msgid "About:"
msgstr ""
@ -1900,13 +1852,13 @@ msgstr ""
msgid "Tags:"
msgstr ""
#: mod/notifications.php:253 mod/directory.php:152 src/Model/Profile.php:420
#: mod/notifications.php:253 mod/directory.php:151 src/Model/Profile.php:420
#: src/Model/Profile.php:745
msgid "Gender:"
msgstr ""
#: mod/notifications.php:258 mod/admin.php:439 mod/admin.php:449
#: mod/contacts.php:656 mod/follow.php:166 mod/unfollow.php:122
#: mod/notifications.php:258 mod/contacts.php:656 mod/unfollow.php:122
#: mod/follow.php:166 mod/admin.php:490 mod/admin.php:500
msgid "Profile URL"
msgstr ""
@ -1944,8 +1896,8 @@ msgstr ""
msgid "Login failed."
msgstr ""
#: mod/dfrn_confirm.php:74 mod/profiles.php:38 mod/profiles.php:148
#: mod/profiles.php:195 mod/profiles.php:617
#: 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 ""
@ -2137,20 +2089,6 @@ msgid ""
"important, please visit http://friendi.ca"
msgstr ""
#: mod/manage.php:180
msgid "Manage Identities and/or Pages"
msgstr ""
#: mod/manage.php:181
msgid ""
"Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions"
msgstr ""
#: mod/manage.php:182
msgid "Select an identity to manage: "
msgstr ""
#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83
#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112
#: mod/wall_upload.php:155 mod/wall_upload.php:158
@ -2174,6 +2112,20 @@ msgstr ""
msgid "File upload failed."
msgstr ""
#: mod/manage.php:180
msgid "Manage Identities and/or Pages"
msgstr ""
#: mod/manage.php:181
msgid ""
"Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions"
msgstr ""
#: mod/manage.php:182
msgid "Select an identity to manage: "
msgstr ""
#: mod/dfrn_request.php:94
msgid "This introduction has already been accepted."
msgstr ""
@ -2243,6 +2195,11 @@ msgstr ""
msgid "Disallowed profile URL."
msgstr ""
#: 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 ""
#: mod/dfrn_request.php:419 mod/contacts.php:230
msgid "Failed to update contact record."
msgstr ""
@ -2285,10 +2242,10 @@ msgstr ""
msgid "Please confirm your introduction/connection request to %s."
msgstr ""
#: mod/dfrn_request.php:607 mod/probe.php:13 mod/search.php:98
#: mod/search.php:104 mod/viewcontacts.php:45 mod/webfinger.php:16
#: mod/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/directory.php:42 mod/display.php:203
#: mod/display.php:203 mod/directory.php:42
msgid "Public access denied."
msgstr ""
@ -2347,18 +2304,14 @@ msgid ""
"bar."
msgstr ""
#: mod/dfrn_request.php:660 mod/follow.php:157 mod/unfollow.php:113
#: mod/dfrn_request.php:660 mod/unfollow.php:113 mod/follow.php:157
msgid "Your Identity Address:"
msgstr ""
#: mod/dfrn_request.php:662 mod/follow.php:62 mod/unfollow.php:65
#: mod/dfrn_request.php:662 mod/unfollow.php:65 mod/follow.php:62
msgid "Submit Request"
msgstr ""
#: mod/filer.php:34
msgid "- select -"
msgstr ""
#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814
msgid "l F d, Y \\@ g:i A"
msgstr ""
@ -2526,42 +2479,6 @@ msgstr ""
msgid "Your password has been changed at %s"
msgstr ""
#: mod/notify.php:77
msgid "No more system notifications."
msgstr ""
#: mod/ping.php:292
msgid "{0} wants to be your friend"
msgstr ""
#: mod/ping.php:307
msgid "{0} sent you a message"
msgstr ""
#: mod/ping.php:322
msgid "{0} requested registration"
msgstr ""
#: mod/poke.php:192
msgid "Poke/Prod"
msgstr ""
#: mod/poke.php:193
msgid "poke, prod or do other things to somebody"
msgstr ""
#: mod/poke.php:194
msgid "Recipient"
msgstr ""
#: mod/poke.php:195
msgid "Choose what you wish to do to recipient"
msgstr ""
#: mod/poke.php:198
msgid "Make this post private"
msgstr ""
#: mod/probe.php:14 mod/webfinger.php:17
msgid "Only logged in users are permitted to perform a probing."
msgstr ""
@ -2617,86 +2534,6 @@ msgstr ""
msgid "Please enter your password for verification:"
msgstr ""
#: 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 ""
#: mod/search.php:105
msgid "Only logged in users are permitted to perform a search."
msgstr ""
#: mod/search.php:129
msgid "Too Many Requests"
msgstr ""
#: mod/search.php:130
msgid "Only one search per minute is permitted for not logged in users."
msgstr ""
#: mod/search.php:228 mod/community.php:136
msgid "No results."
msgstr ""
#: mod/search.php:234
#, php-format
msgid "Items tagged with: %s"
msgstr ""
#: mod/search.php:236 mod/contacts.php:819
#, php-format
msgid "Results for: %s"
msgstr ""
#: 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 ""
#: mod/tagrm.php:85
msgid "Remove Item Tag"
msgstr ""
#: mod/tagrm.php:87
msgid "Select a tag to remove: "
msgstr ""
#: mod/tagrm.php:98 mod/delegate.php:177
msgid "Remove"
msgstr ""
#: mod/uexport.php:44
msgid "Export account"
msgstr ""
#: mod/uexport.php:44
msgid ""
"Export your account info and contacts. Use this to make a backup of your "
"account and/or to move it to another server."
msgstr ""
#: mod/uexport.php:45
msgid "Export all"
msgstr ""
#: mod/uexport.php:45
msgid ""
"Export your accout info, contacts and all your items as json. Could be a "
"very big file, and could take a lot of time. Use this to make a full backup "
"of your account (photos are not exported)"
msgstr ""
#: mod/uexport.php:52 mod/settings.php:108
msgid "Export personal data"
msgstr ""
#: mod/viewcontacts.php:87
msgid "No contacts."
msgstr ""
@ -2705,25 +2542,6 @@ msgstr ""
msgid "Access denied."
msgstr ""
#: 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 ""
#: mod/wall_upload.php:231 mod/item.php:471 src/Object/Image.php:953
#: src/Object/Image.php:969 src/Object/Image.php:977 src/Object/Image.php:1002
msgid "Wall Photos"
msgstr ""
#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307
msgid "Image upload failed."
msgstr ""
#: mod/wallmessage.php:49 mod/wallmessage.php:112
#, php-format
msgid "Number of daily wall messages for %s exceeded. Message failed."
@ -2772,109 +2590,143 @@ msgstr ""
msgid "Subject:"
msgstr ""
#: mod/register.php:99
msgid ""
"Registration successful. Please check your email for further instructions."
#: mod/uexport.php:44
msgid "Export account"
msgstr ""
#: mod/register.php:103
#: 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 ""
#: mod/uexport.php:45
msgid "Export all"
msgstr ""
#: mod/uexport.php:45
msgid ""
"Export your accout info, contacts and all your items as json. Could be a "
"very big file, and could take a lot of time. Use this to make a full backup "
"of your account (photos are not exported)"
msgstr ""
#: mod/uexport.php:52 mod/settings.php:108
msgid "Export personal data"
msgstr ""
#: mod/filer.php:34
msgid "- select -"
msgstr ""
#: mod/notify.php:77
msgid "No more system notifications."
msgstr ""
#: mod/ping.php:292
msgid "{0} wants to be your friend"
msgstr ""
#: mod/ping.php:307
msgid "{0} sent you a message"
msgstr ""
#: mod/ping.php:322
msgid "{0} requested registration"
msgstr ""
#: mod/poke.php:192
msgid "Poke/Prod"
msgstr ""
#: mod/poke.php:193
msgid "poke, prod or do other things to somebody"
msgstr ""
#: mod/poke.php:194
msgid "Recipient"
msgstr ""
#: mod/poke.php:195
msgid "Choose what you wish to do to recipient"
msgstr ""
#: mod/poke.php:198
msgid "Make this post private"
msgstr ""
#: mod/subthread.php:113
#, 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."
msgid "%1$s is following %2$s's %3$s"
msgstr ""
#: mod/register.php:110
msgid "Registration successful."
#: mod/tagrm.php:47
msgid "Tag removed"
msgstr ""
#: mod/register.php:115
msgid "Your registration can not be processed."
#: mod/tagrm.php:85
msgid "Remove Item Tag"
msgstr ""
#: mod/register.php:162
msgid "Your registration is pending approval by the site owner."
#: mod/tagrm.php:87
msgid "Select a tag to remove: "
msgstr ""
#: mod/register.php:220
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
#: mod/tagrm.php:98 mod/delegate.php:177
msgid "Remove"
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 ""
#: mod/register.php:234
msgid "Include your profile in member directory?"
msgstr ""
#: mod/register.php:259
msgid "Note for the admin"
msgstr ""
#: 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 ""
#: mod/register.php:264 mod/admin.php:1283
msgid "Registration"
msgstr ""
#: 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 mod/settings.php:1199
msgid "New Password:"
msgstr ""
#: mod/register.php:273
msgid "Leave empty for an auto generated password."
msgstr ""
#: mod/register.php:274 mod/settings.php:1200
msgid "Confirm:"
msgstr ""
#: mod/register.php:275
#: 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 ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be '<strong>nickname@%s</strong>'."
msgid "Image exceeds size limit of %s"
msgstr ""
#: mod/register.php:276
msgid "Choose a nickname: "
#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162
msgid "Unable to process image."
msgstr ""
#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283
msgid "Register"
#: mod/wall_upload.php:231 mod/item.php:471 src/Object/Image.php:953
#: src/Object/Image.php:969 src/Object/Image.php:977 src/Object/Image.php:1002
msgid "Wall Photos"
msgstr ""
#: mod/register.php:286
msgid "Import your profile to this friendica instance"
#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307
msgid "Image upload failed."
msgstr ""
#: 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 ""
#: mod/search.php:105
msgid "Only logged in users are permitted to perform a search."
msgstr ""
#: mod/search.php:129
msgid "Too Many Requests"
msgstr ""
#: mod/search.php:130
msgid "Only one search per minute is permitted for not logged in users."
msgstr ""
#: mod/search.php:228 mod/community.php:136
msgid "No results."
msgstr ""
#: mod/search.php:234
#, php-format
msgid "Items tagged with: %s"
msgstr ""
#: 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
@ -2931,6 +2783,14 @@ msgstr ""
msgid "Example: bob@example.com, mary@example.com"
msgstr ""
#: mod/feedtest.php:20
msgid "You must be logged in to use this module"
msgstr ""
#: mod/feedtest.php:48
msgid "Source URL"
msgstr ""
#: mod/fsuggest.php:72
msgid "Friend suggestion sent."
msgstr ""
@ -3012,6 +2872,36 @@ msgstr ""
msgid "Add Contact"
msgstr ""
#: mod/item.php:114
msgid "Unable to locate original post."
msgstr ""
#: mod/item.php:274
msgid "Empty post discarded."
msgstr ""
#: mod/item.php:799
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social network."
msgstr ""
#: mod/item.php:801
#, php-format
msgid "You may visit them online at %s"
msgstr ""
#: mod/item.php:802
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr ""
#: mod/item.php:806
#, php-format
msgid "%s posted an update."
msgstr ""
#: mod/message.php:30 src/Content/Nav.php:198
msgid "New Message"
msgstr ""
@ -3020,7 +2910,7 @@ msgstr ""
msgid "Unable to locate contact information."
msgstr ""
#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:195
#: mod/message.php:112 src/Content/Nav.php:195 view/theme/frio/theme.php:268
msgid "Messages"
msgstr ""
@ -3140,7 +3030,7 @@ msgstr ""
msgid "Sort by Post Date"
msgstr ""
#: mod/network.php:940 mod/profiles.php:686
#: mod/network.php:940 mod/profiles.php:687
#: src/Core/NotificationsManager.php:185
msgid "Personal"
msgstr ""
@ -3177,6 +3067,10 @@ msgstr ""
msgid "Personal Notes"
msgstr ""
#: mod/oexchange.php:30
msgid "Post successful."
msgstr ""
#: mod/photos.php:108 src/Model/Profile.php:907
msgid "Photo Albums"
msgstr ""
@ -3406,7 +3300,7 @@ msgstr ""
msgid "%s's timeline"
msgstr ""
#: mod/profile.php:173 mod/cal.php:142 mod/display.php:313
#: mod/profile.php:173 mod/display.php:313 mod/cal.php:142
msgid "Access to this profile has been restricted."
msgstr ""
@ -3434,1828 +3328,6 @@ msgstr ""
msgid "Upload New Videos"
msgstr ""
#: mod/admin.php:106
msgid "Theme settings updated."
msgstr ""
#: mod/admin.php:176 src/Content/Nav.php:174
msgid "Information"
msgstr ""
#: mod/admin.php:177
msgid "Overview"
msgstr ""
#: mod/admin.php:178 mod/admin.php:654
msgid "Federation Statistics"
msgstr ""
#: mod/admin.php:179
msgid "Configuration"
msgstr ""
#: mod/admin.php:180 mod/admin.php:1280
msgid "Site"
msgstr ""
#: mod/admin.php:181 mod/admin.php:1208 mod/admin.php:1721 mod/admin.php:1737
msgid "Users"
msgstr ""
#: mod/admin.php:182 mod/admin.php:1837 mod/admin.php:1897 mod/settings.php:87
msgid "Addons"
msgstr ""
#: mod/admin.php:183 mod/admin.php:2106 mod/admin.php:2150
msgid "Themes"
msgstr ""
#: mod/admin.php:184 mod/settings.php:65
msgid "Additional features"
msgstr ""
#: mod/admin.php:185
msgid "Database"
msgstr ""
#: mod/admin.php:186
msgid "DB updates"
msgstr ""
#: mod/admin.php:187 mod/admin.php:689
msgid "Inspect Queue"
msgstr ""
#: mod/admin.php:188
msgid "Tools"
msgstr ""
#: mod/admin.php:189
msgid "Contact Blocklist"
msgstr ""
#: mod/admin.php:190 mod/admin.php:311
msgid "Server Blocklist"
msgstr ""
#: mod/admin.php:191 mod/admin.php:470
msgid "Delete Item"
msgstr ""
#: mod/admin.php:192 mod/admin.php:193 mod/admin.php:2224
msgid "Logs"
msgstr ""
#: mod/admin.php:194 mod/admin.php:2291
msgid "View Logs"
msgstr ""
#: mod/admin.php:196
msgid "Diagnostics"
msgstr ""
#: mod/admin.php:197
msgid "PHP Info"
msgstr ""
#: mod/admin.php:198
msgid "probe address"
msgstr ""
#: mod/admin.php:199
msgid "check webfinger"
msgstr ""
#: mod/admin.php:218 src/Content/Nav.php:217
msgid "Admin"
msgstr ""
#: mod/admin.php:219
msgid "Addon Features"
msgstr ""
#: mod/admin.php:220
msgid "User registrations waiting for confirmation"
msgstr ""
#: mod/admin.php:302
msgid "The blocked domain"
msgstr ""
#: mod/admin.php:303 mod/admin.php:316
msgid "The reason why you blocked this domain."
msgstr ""
#: mod/admin.php:304
msgid "Delete domain"
msgstr ""
#: mod/admin.php:304
msgid "Check to delete this entry from the blocklist"
msgstr ""
#: mod/admin.php:310 mod/admin.php:427 mod/admin.php:469 mod/admin.php:653
#: mod/admin.php:688 mod/admin.php:784 mod/admin.php:1279 mod/admin.php:1720
#: mod/admin.php:1836 mod/admin.php:1896 mod/admin.php:2105 mod/admin.php:2149
#: mod/admin.php:2223 mod/admin.php:2290
msgid "Administration"
msgstr ""
#: mod/admin.php:312
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:313
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:314
msgid "Add new entry to block list"
msgstr ""
#: mod/admin.php:315
msgid "Server Domain"
msgstr ""
#: mod/admin.php:315
msgid ""
"The domain of the new server to add to the block list. Do not include the "
"protocol."
msgstr ""
#: mod/admin.php:316
msgid "Block reason"
msgstr ""
#: mod/admin.php:317
msgid "Add Entry"
msgstr ""
#: mod/admin.php:318
msgid "Save changes to the blocklist"
msgstr ""
#: mod/admin.php:319
msgid "Current Entries in the Blocklist"
msgstr ""
#: mod/admin.php:322
msgid "Delete entry from blocklist"
msgstr ""
#: mod/admin.php:325
msgid "Delete entry from blocklist?"
msgstr ""
#: mod/admin.php:351
msgid "Server added to blocklist."
msgstr ""
#: mod/admin.php:367
msgid "Site blocklist updated."
msgstr ""
#: mod/admin.php:390 src/Core/Console/GlobalCommunityBlock.php:72
msgid "The contact has been blocked from the node"
msgstr ""
#: mod/admin.php:392 src/Core/Console/GlobalCommunityBlock.php:69
#, php-format
msgid "Could not find any contact entry for this URL (%s)"
msgstr ""
#: mod/admin.php:399
#, php-format
msgid "%s contact unblocked"
msgid_plural "%s contacts unblocked"
msgstr[0] ""
msgstr[1] ""
#: mod/admin.php:428
msgid "Remote Contact Blocklist"
msgstr ""
#: mod/admin.php:429
msgid ""
"This page allows you to prevent any message from a remote contact to reach "
"your node."
msgstr ""
#: mod/admin.php:430
msgid "Block Remote Contact"
msgstr ""
#: mod/admin.php:431 mod/admin.php:1723
msgid "select all"
msgstr ""
#: mod/admin.php:432
msgid "select none"
msgstr ""
#: mod/admin.php:433 mod/admin.php:1732 mod/contacts.php:637
#: mod/contacts.php:827 mod/contacts.php:1011
msgid "Block"
msgstr ""
#: mod/admin.php:434 mod/admin.php:1733 mod/contacts.php:637
#: mod/contacts.php:827 mod/contacts.php:1011
msgid "Unblock"
msgstr ""
#: mod/admin.php:435
msgid "No remote contact is blocked from this node."
msgstr ""
#: mod/admin.php:437
msgid "Blocked Remote Contacts"
msgstr ""
#: mod/admin.php:438
msgid "Block New Remote Contact"
msgstr ""
#: mod/admin.php:439
msgid "Photo"
msgstr ""
#: mod/admin.php:439 mod/profiles.php:393
msgid "Address"
msgstr ""
#: mod/admin.php:447
#, php-format
msgid "%s total blocked contact"
msgid_plural "%s total blocked contacts"
msgstr[0] ""
msgstr[1] ""
#: mod/admin.php:449
msgid "URL of the remote contact to block."
msgstr ""
#: mod/admin.php:471
msgid "Delete this Item"
msgstr ""
#: mod/admin.php:472
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:473
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:474
msgid "GUID"
msgstr ""
#: mod/admin.php:474
msgid "The GUID of the item you want to delete."
msgstr ""
#: mod/admin.php:513
msgid "Item marked for deletion."
msgstr ""
#: mod/admin.php:584
msgid "unknown"
msgstr ""
#: mod/admin.php:647
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:648
msgid ""
"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
"will improve the data displayed here."
msgstr ""
#: mod/admin.php:660
#, php-format
msgid ""
"Currently this node is aware of %d nodes with %d registered users from the "
"following platforms:"
msgstr ""
#: mod/admin.php:691
msgid "ID"
msgstr ""
#: mod/admin.php:692
msgid "Recipient Name"
msgstr ""
#: mod/admin.php:693
msgid "Recipient Profile"
msgstr ""
#: mod/admin.php:694 view/theme/frio/theme.php:266
#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:178
msgid "Network"
msgstr ""
#: mod/admin.php:695
msgid "Created"
msgstr ""
#: mod/admin.php:696
msgid "Last Tried"
msgstr ""
#: mod/admin.php:697
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:721
#, 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:728
#, 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:738
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:744
msgid "The worker was never executed. Please check your database structure!"
msgstr ""
#: mod/admin.php:747
#, 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:752 mod/admin.php:1672
msgid "Normal Account"
msgstr ""
#: mod/admin.php:753 mod/admin.php:1673
msgid "Automatic Follower Account"
msgstr ""
#: mod/admin.php:754 mod/admin.php:1674
msgid "Public Forum Account"
msgstr ""
#: mod/admin.php:755 mod/admin.php:1675
msgid "Automatic Friend Account"
msgstr ""
#: mod/admin.php:756
msgid "Blog Account"
msgstr ""
#: mod/admin.php:757
msgid "Private Forum Account"
msgstr ""
#: mod/admin.php:779
msgid "Message queues"
msgstr ""
#: mod/admin.php:785
msgid "Summary"
msgstr ""
#: mod/admin.php:787
msgid "Registered users"
msgstr ""
#: mod/admin.php:789
msgid "Pending registrations"
msgstr ""
#: mod/admin.php:790
msgid "Version"
msgstr ""
#: mod/admin.php:795
msgid "Active addons"
msgstr ""
#: mod/admin.php:826
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
msgstr ""
#: mod/admin.php:1144
msgid "Site settings updated."
msgstr ""
#: mod/admin.php:1171 mod/settings.php:903
msgid "No special theme for mobile devices"
msgstr ""
#: mod/admin.php:1200
msgid "No community page"
msgstr ""
#: mod/admin.php:1201
msgid "Public postings from users of this site"
msgstr ""
#: mod/admin.php:1202
msgid "Public postings from the federated network"
msgstr ""
#: mod/admin.php:1203
msgid "Public postings from local users and the federated network"
msgstr ""
#: mod/admin.php:1207 mod/admin.php:1370 mod/admin.php:1380
#: mod/contacts.php:572
msgid "Disabled"
msgstr ""
#: mod/admin.php:1209
msgid "Users, Global Contacts"
msgstr ""
#: mod/admin.php:1210
msgid "Users, Global Contacts/fallback"
msgstr ""
#: mod/admin.php:1214
msgid "One month"
msgstr ""
#: mod/admin.php:1215
msgid "Three months"
msgstr ""
#: mod/admin.php:1216
msgid "Half a year"
msgstr ""
#: mod/admin.php:1217
msgid "One year"
msgstr ""
#: mod/admin.php:1222
msgid "Multi user instance"
msgstr ""
#: mod/admin.php:1245
msgid "Closed"
msgstr ""
#: mod/admin.php:1246
msgid "Requires approval"
msgstr ""
#: mod/admin.php:1247
msgid "Open"
msgstr ""
#: mod/admin.php:1251
msgid "No SSL policy, links will track page SSL state"
msgstr ""
#: mod/admin.php:1252
msgid "Force all links to use SSL"
msgstr ""
#: mod/admin.php:1253
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr ""
#: mod/admin.php:1257
msgid "Don't check"
msgstr ""
#: mod/admin.php:1258
msgid "check the stable version"
msgstr ""
#: mod/admin.php:1259
msgid "check the development version"
msgstr ""
#: mod/admin.php:1281 mod/admin.php:1898 mod/admin.php:2151 mod/admin.php:2225
#: mod/admin.php:2372 mod/delegate.php:168 mod/settings.php:675
#: mod/settings.php:784 mod/settings.php:870 mod/settings.php:959
#: mod/settings.php:1192
msgid "Save Settings"
msgstr ""
#: mod/admin.php:1282
msgid "Republish users to directory"
msgstr ""
#: mod/admin.php:1284
msgid "File upload"
msgstr ""
#: mod/admin.php:1285
msgid "Policies"
msgstr ""
#: mod/admin.php:1286 mod/contacts.php:895 mod/events.php:532
#: src/Model/Profile.php:865
msgid "Advanced"
msgstr ""
#: mod/admin.php:1287
msgid "Auto Discovered Contact Directory"
msgstr ""
#: mod/admin.php:1288
msgid "Performance"
msgstr ""
#: mod/admin.php:1289
msgid "Worker"
msgstr ""
#: mod/admin.php:1290
msgid "Message Relay"
msgstr ""
#: mod/admin.php:1291
msgid ""
"Relocate - WARNING: advanced function. Could make this server unreachable."
msgstr ""
#: mod/admin.php:1294
msgid "Site name"
msgstr ""
#: mod/admin.php:1295
msgid "Host name"
msgstr ""
#: mod/admin.php:1296
msgid "Sender Email"
msgstr ""
#: mod/admin.php:1296
msgid ""
"The email address your server shall use to send notification emails from."
msgstr ""
#: mod/admin.php:1297
msgid "Banner/Logo"
msgstr ""
#: mod/admin.php:1298
msgid "Shortcut icon"
msgstr ""
#: mod/admin.php:1298
msgid "Link to an icon that will be used for browsers."
msgstr ""
#: mod/admin.php:1299
msgid "Touch icon"
msgstr ""
#: mod/admin.php:1299
msgid "Link to an icon that will be used for tablets and mobiles."
msgstr ""
#: mod/admin.php:1300
msgid "Additional Info"
msgstr ""
#: mod/admin.php:1300
#, php-format
msgid ""
"For public servers: you can add additional information here that will be "
"listed at %s/servers."
msgstr ""
#: mod/admin.php:1301
msgid "System language"
msgstr ""
#: mod/admin.php:1302
msgid "System theme"
msgstr ""
#: mod/admin.php:1302
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr ""
#: mod/admin.php:1303
msgid "Mobile system theme"
msgstr ""
#: mod/admin.php:1303
msgid "Theme for mobile devices"
msgstr ""
#: mod/admin.php:1304
msgid "SSL link policy"
msgstr ""
#: mod/admin.php:1304
msgid "Determines whether generated links should be forced to use SSL"
msgstr ""
#: mod/admin.php:1305
msgid "Force SSL"
msgstr ""
#: mod/admin.php:1305
msgid ""
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
"to endless loops."
msgstr ""
#: mod/admin.php:1306
msgid "Hide help entry from navigation menu"
msgstr ""
#: mod/admin.php:1306
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:1307
msgid "Single user instance"
msgstr ""
#: mod/admin.php:1307
msgid "Make this instance multi-user or single-user for the named user"
msgstr ""
#: mod/admin.php:1308
msgid "Maximum image size"
msgstr ""
#: mod/admin.php:1308
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr ""
#: mod/admin.php:1309
msgid "Maximum image length"
msgstr ""
#: mod/admin.php:1309
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr ""
#: mod/admin.php:1310
msgid "JPEG image quality"
msgstr ""
#: mod/admin.php:1310
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr ""
#: mod/admin.php:1312
msgid "Register policy"
msgstr ""
#: mod/admin.php:1313
msgid "Maximum Daily Registrations"
msgstr ""
#: mod/admin.php:1313
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:1314
msgid "Register text"
msgstr ""
#: mod/admin.php:1314
msgid "Will be displayed prominently on the registration page."
msgstr ""
#: mod/admin.php:1315
msgid "Accounts abandoned after x days"
msgstr ""
#: mod/admin.php:1315
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr ""
#: mod/admin.php:1316
msgid "Allowed friend domains"
msgstr ""
#: mod/admin.php:1316
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:1317
msgid "Allowed email domains"
msgstr ""
#: mod/admin.php:1317
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:1318
msgid "No OEmbed rich content"
msgstr ""
#: mod/admin.php:1318
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr ""
#: mod/admin.php:1319
msgid "Allowed OEmbed domains"
msgstr ""
#: mod/admin.php:1319
msgid ""
"Comma separated list of domains which oembed content is allowed to be "
"displayed. Wildcards are accepted."
msgstr ""
#: mod/admin.php:1320
msgid "Block public"
msgstr ""
#: mod/admin.php:1320
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:1321
msgid "Force publish"
msgstr ""
#: mod/admin.php:1321
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr ""
#: mod/admin.php:1322
msgid "Global directory URL"
msgstr ""
#: mod/admin.php:1322
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr ""
#: mod/admin.php:1323
msgid "Private posts by default for new users"
msgstr ""
#: mod/admin.php:1323
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr ""
#: mod/admin.php:1324
msgid "Don't include post content in email notifications"
msgstr ""
#: mod/admin.php:1324
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:1325
msgid "Disallow public access to addons listed in the apps menu."
msgstr ""
#: mod/admin.php:1325
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr ""
#: mod/admin.php:1326
msgid "Don't embed private images in posts"
msgstr ""
#: mod/admin.php:1326
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:1327
msgid "Allow Users to set remote_self"
msgstr ""
#: mod/admin.php:1327
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:1328
msgid "Block multiple registrations"
msgstr ""
#: mod/admin.php:1328
msgid "Disallow users to register additional accounts for use as pages."
msgstr ""
#: mod/admin.php:1329
msgid "OpenID support"
msgstr ""
#: mod/admin.php:1329
msgid "OpenID support for registration and logins."
msgstr ""
#: mod/admin.php:1330
msgid "Fullname check"
msgstr ""
#: mod/admin.php:1330
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr ""
#: mod/admin.php:1331
msgid "Community pages for visitors"
msgstr ""
#: mod/admin.php:1331
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr ""
#: mod/admin.php:1332
msgid "Posts per user on community page"
msgstr ""
#: mod/admin.php:1332
msgid ""
"The maximum number of posts per user on the community page. (Not valid for "
"'Global Community')"
msgstr ""
#: mod/admin.php:1333
msgid "Enable OStatus support"
msgstr ""
#: mod/admin.php:1333
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:1334
msgid "Only import OStatus threads from our contacts"
msgstr ""
#: mod/admin.php:1334
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:1335
msgid "OStatus support can only be enabled if threading is enabled."
msgstr ""
#: mod/admin.php:1337
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub "
"directory."
msgstr ""
#: mod/admin.php:1338
msgid "Enable Diaspora support"
msgstr ""
#: mod/admin.php:1338
msgid "Provide built-in Diaspora network compatibility."
msgstr ""
#: mod/admin.php:1339
msgid "Only allow Friendica contacts"
msgstr ""
#: mod/admin.php:1339
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr ""
#: mod/admin.php:1340
msgid "Verify SSL"
msgstr ""
#: mod/admin.php:1340
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:1341
msgid "Proxy user"
msgstr ""
#: mod/admin.php:1342
msgid "Proxy URL"
msgstr ""
#: mod/admin.php:1343
msgid "Network timeout"
msgstr ""
#: mod/admin.php:1343
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
#: mod/admin.php:1344
msgid "Maximum Load Average"
msgstr ""
#: mod/admin.php:1344
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr ""
#: mod/admin.php:1345
msgid "Maximum Load Average (Frontend)"
msgstr ""
#: mod/admin.php:1345
msgid "Maximum system load before the frontend quits service - default 50."
msgstr ""
#: mod/admin.php:1346
msgid "Minimal Memory"
msgstr ""
#: mod/admin.php:1346
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr ""
#: mod/admin.php:1347
msgid "Maximum table size for optimization"
msgstr ""
#: mod/admin.php:1347
msgid ""
"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
"Enter -1 to disable it."
msgstr ""
#: mod/admin.php:1348
msgid "Minimum level of fragmentation"
msgstr ""
#: mod/admin.php:1348
msgid ""
"Minimum fragmenation level to start the automatic optimization - default "
"value is 30%."
msgstr ""
#: mod/admin.php:1350
msgid "Periodical check of global contacts"
msgstr ""
#: mod/admin.php:1350
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:1351
msgid "Days between requery"
msgstr ""
#: mod/admin.php:1351
msgid "Number of days after which a server is requeried for his contacts."
msgstr ""
#: mod/admin.php:1352
msgid "Discover contacts from other servers"
msgstr ""
#: mod/admin.php:1352
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:1353
msgid "Timeframe for fetching global contacts"
msgstr ""
#: mod/admin.php:1353
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:1354
msgid "Search the local directory"
msgstr ""
#: mod/admin.php:1354
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:1356
msgid "Publish server information"
msgstr ""
#: mod/admin.php:1356
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:1358
msgid "Check upstream version"
msgstr ""
#: mod/admin.php:1358
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:1359
msgid "Suppress Tags"
msgstr ""
#: mod/admin.php:1359
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr ""
#: mod/admin.php:1360
msgid "Path to item cache"
msgstr ""
#: mod/admin.php:1360
msgid "The item caches buffers generated bbcode and external images."
msgstr ""
#: mod/admin.php:1361
msgid "Cache duration in seconds"
msgstr ""
#: mod/admin.php:1361
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:1362
msgid "Maximum numbers of comments per post"
msgstr ""
#: mod/admin.php:1362
msgid "How much comments should be shown for each post? Default value is 100."
msgstr ""
#: mod/admin.php:1363
msgid "Temp path"
msgstr ""
#: mod/admin.php:1363
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:1364
msgid "Base path to installation"
msgstr ""
#: mod/admin.php:1364
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:1365
msgid "Disable picture proxy"
msgstr ""
#: mod/admin.php:1365
msgid ""
"The picture proxy increases performance and privacy. It shouldn't be used on "
"systems with very low bandwith."
msgstr ""
#: mod/admin.php:1366
msgid "Only search in tags"
msgstr ""
#: mod/admin.php:1366
msgid "On large systems the text search can slow down the system extremely."
msgstr ""
#: mod/admin.php:1368
msgid "New base url"
msgstr ""
#: mod/admin.php:1368
msgid ""
"Change base url for this server. Sends relocate message to all Friendica and "
"Diaspora* contacts of all users."
msgstr ""
#: mod/admin.php:1370
msgid "RINO Encryption"
msgstr ""
#: mod/admin.php:1370
msgid "Encryption layer between nodes."
msgstr ""
#: mod/admin.php:1370
msgid "Enabled"
msgstr ""
#: mod/admin.php:1372
msgid "Maximum number of parallel workers"
msgstr ""
#: mod/admin.php:1372
msgid ""
"On shared hosters set this to 2. On larger systems, values of 10 are great. "
"Default value is 4."
msgstr ""
#: mod/admin.php:1373
msgid "Don't use 'proc_open' with the worker"
msgstr ""
#: mod/admin.php:1373
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:1374
msgid "Enable fastlane"
msgstr ""
#: mod/admin.php:1374
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:1375
msgid "Enable frontend worker"
msgstr ""
#: mod/admin.php:1375
#, 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:1377
msgid "Subscribe to relay"
msgstr ""
#: mod/admin.php:1377
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:1378
msgid "Relay server"
msgstr ""
#: mod/admin.php:1378
msgid ""
"Address of the relay server where public posts should be send to. For "
"example https://relay.diasp.org"
msgstr ""
#: mod/admin.php:1379
msgid "Direct relay transfer"
msgstr ""
#: mod/admin.php:1379
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr ""
#: mod/admin.php:1380
msgid "Relay scope"
msgstr ""
#: mod/admin.php:1380
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:1380
msgid "all"
msgstr ""
#: mod/admin.php:1380
msgid "tags"
msgstr ""
#: mod/admin.php:1381
msgid "Server tags"
msgstr ""
#: mod/admin.php:1381
msgid "Comma separated list of tags for the 'tags' subscription."
msgstr ""
#: mod/admin.php:1382
msgid "Allow user tags"
msgstr ""
#: mod/admin.php:1382
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:1410
msgid "Update has been marked successful"
msgstr ""
#: mod/admin.php:1417
#, php-format
msgid "Database structure update %s was successfully applied."
msgstr ""
#: mod/admin.php:1420
#, php-format
msgid "Executing of database structure update %s failed with error: %s"
msgstr ""
#: mod/admin.php:1433
#, php-format
msgid "Executing %s failed with error: %s"
msgstr ""
#: mod/admin.php:1435
#, php-format
msgid "Update %s was successfully applied."
msgstr ""
#: mod/admin.php:1438
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
#: mod/admin.php:1441
#, php-format
msgid "There was no additional update function %s that needed to be called."
msgstr ""
#: mod/admin.php:1461
msgid "No failed updates."
msgstr ""
#: mod/admin.php:1462
msgid "Check database structure"
msgstr ""
#: mod/admin.php:1467
msgid "Failed Updates"
msgstr ""
#: mod/admin.php:1468
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr ""
#: mod/admin.php:1469
msgid "Mark success (if update was manually applied)"
msgstr ""
#: mod/admin.php:1470
msgid "Attempt to execute this update step automatically"
msgstr ""
#: mod/admin.php:1509
#, 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:1512
#, php-format
msgid ""
"\n"
"\t\t\tThe login details are as follows:\n"
"\n"
"\t\t\tSite Location:\t%1$s\n"
"\t\t\tLogin Name:\t\t%2$s\n"
"\t\t\tPassword:\t\t%3$s\n"
"\n"
"\t\t\tYou may change your password from your account \"Settings\" page after "
"logging\n"
"\t\t\tin.\n"
"\n"
"\t\t\tPlease take a few moments to review the other account settings on that "
"page.\n"
"\n"
"\t\t\tYou may also wish to add some basic information to your default "
"profile\n"
"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
"\n"
"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
"and\n"
"\t\t\tperhaps what country you live in; if you do not wish to be more "
"specific\n"
"\t\t\tthan that.\n"
"\n"
"\t\t\tWe fully respect your right to privacy, and none of these items are "
"necessary.\n"
"\t\t\tIf you are new and do not know anybody here, they may help\n"
"\t\t\tyou to make some new and interesting friends.\n"
"\n"
"\t\t\tThank you and welcome to %4$s."
msgstr ""
#: mod/admin.php:1544 src/Model/User.php:647
#, php-format
msgid "Registration details for %s"
msgstr ""
#: mod/admin.php:1554
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] ""
msgstr[1] ""
#: mod/admin.php:1560
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] ""
msgstr[1] ""
#: mod/admin.php:1607
#, php-format
msgid "User '%s' deleted"
msgstr ""
#: mod/admin.php:1615
#, php-format
msgid "User '%s' unblocked"
msgstr ""
#: mod/admin.php:1615
#, php-format
msgid "User '%s' blocked"
msgstr ""
#: mod/admin.php:1714 mod/admin.php:1726 mod/admin.php:1739 mod/admin.php:1757
#: src/Content/ContactSelector.php:82
msgid "Email"
msgstr ""
#: mod/admin.php:1714 mod/admin.php:1739
msgid "Register date"
msgstr ""
#: mod/admin.php:1714 mod/admin.php:1739
msgid "Last login"
msgstr ""
#: mod/admin.php:1714 mod/admin.php:1739
msgid "Last item"
msgstr ""
#: mod/admin.php:1714 mod/settings.php:56
msgid "Account"
msgstr ""
#: mod/admin.php:1722
msgid "Add User"
msgstr ""
#: mod/admin.php:1724
msgid "User registrations waiting for confirm"
msgstr ""
#: mod/admin.php:1725
msgid "User waiting for permanent deletion"
msgstr ""
#: mod/admin.php:1726
msgid "Request date"
msgstr ""
#: mod/admin.php:1727
msgid "No registrations."
msgstr ""
#: mod/admin.php:1728
msgid "Note from the user"
msgstr ""
#: mod/admin.php:1730
msgid "Deny"
msgstr ""
#: mod/admin.php:1734
msgid "Site admin"
msgstr ""
#: mod/admin.php:1735
msgid "Account expired"
msgstr ""
#: mod/admin.php:1738
msgid "New User"
msgstr ""
#: mod/admin.php:1739
msgid "Deleted since"
msgstr ""
#: mod/admin.php:1744
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:1745
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:1755
msgid "Name of the new user."
msgstr ""
#: mod/admin.php:1756
msgid "Nickname"
msgstr ""
#: mod/admin.php:1756
msgid "Nickname of the new user."
msgstr ""
#: mod/admin.php:1757
msgid "Email address of the new user."
msgstr ""
#: mod/admin.php:1799
#, php-format
msgid "Addon %s disabled."
msgstr ""
#: mod/admin.php:1803
#, php-format
msgid "Addon %s enabled."
msgstr ""
#: mod/admin.php:1813 mod/admin.php:2062
msgid "Disable"
msgstr ""
#: mod/admin.php:1816 mod/admin.php:2065
msgid "Enable"
msgstr ""
#: mod/admin.php:1838 mod/admin.php:2107
msgid "Toggle"
msgstr ""
#: mod/admin.php:1846 mod/admin.php:2116
msgid "Author: "
msgstr ""
#: mod/admin.php:1847 mod/admin.php:2117
msgid "Maintainer: "
msgstr ""
#: mod/admin.php:1899
msgid "Reload active addons"
msgstr ""
#: mod/admin.php:1904
#, 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:2024
msgid "No themes found."
msgstr ""
#: mod/admin.php:2098
msgid "Screenshot"
msgstr ""
#: mod/admin.php:2152
msgid "Reload active themes"
msgstr ""
#: mod/admin.php:2157
#, php-format
msgid "No themes found on the system. They should be placed in %1$s"
msgstr ""
#: mod/admin.php:2158
msgid "[Experimental]"
msgstr ""
#: mod/admin.php:2159
msgid "[Unsupported]"
msgstr ""
#: mod/admin.php:2183
msgid "Log settings updated."
msgstr ""
#: mod/admin.php:2215
msgid "PHP log currently enabled."
msgstr ""
#: mod/admin.php:2217
msgid "PHP log currently disabled."
msgstr ""
#: mod/admin.php:2226
msgid "Clear"
msgstr ""
#: mod/admin.php:2230
msgid "Enable Debugging"
msgstr ""
#: mod/admin.php:2231
msgid "Log file"
msgstr ""
#: mod/admin.php:2231
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr ""
#: mod/admin.php:2232
msgid "Log level"
msgstr ""
#: mod/admin.php:2234
msgid "PHP logging"
msgstr ""
#: mod/admin.php:2235
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:2266
#, 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:2270
#, 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:2361 mod/admin.php:2362 mod/settings.php:775
msgid "Off"
msgstr ""
#: mod/admin.php:2361 mod/admin.php:2362 mod/settings.php:775
msgid "On"
msgstr ""
#: mod/admin.php:2362
#, php-format
msgid "Lock feature %s"
msgstr ""
#: mod/admin.php:2370
msgid "Manage Additional Features"
msgstr ""
#: mod/babel.php:22
msgid "Source input"
msgstr ""
#: mod/babel.php:28
msgid "BBCode::convert (raw HTML("
msgstr ""
#: mod/babel.php:33
msgid "BBCode::convert"
msgstr ""
#: mod/babel.php:39
msgid "BBCode::convert => HTML::toBBCode"
msgstr ""
#: mod/babel.php:45
msgid "BBCode::toMarkdown"
msgstr ""
#: mod/babel.php:51
msgid "BBCode::toMarkdown => Markdown::convert"
msgstr ""
#: mod/babel.php:57
msgid "BBCode::toMarkdown => Markdown::toBBCode"
msgstr ""
#: mod/babel.php:63
msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
msgstr ""
#: mod/babel.php:70
msgid "Source input \\x28Diaspora format\\x29"
msgstr ""
#: mod/babel.php:76
msgid "Markdown::toBBCode"
msgstr ""
#: mod/babel.php:83
msgid "Raw HTML input"
msgstr ""
#: mod/babel.php:88
msgid "HTML Input"
msgstr ""
#: mod/babel.php:94
msgid "HTML::toBBCode"
msgstr ""
#: mod/babel.php:100
msgid "HTML::toPlaintext"
msgstr ""
#: mod/babel.php:108
msgid "Source text"
msgstr ""
#: mod/babel.php:109
msgid "BBCode"
msgstr ""
#: mod/babel.php:110
msgid "Markdown"
msgstr ""
#: mod/babel.php:111
msgid "HTML"
msgstr ""
#: mod/cal.php:274 mod/events.php:391 view/theme/frio/theme.php:263
#: view/theme/frio/theme.php:267 src/Content/Nav.php:104
#: src/Content/Nav.php:169 src/Model/Profile.php:924 src/Model/Profile.php:935
msgid "Events"
msgstr ""
#: mod/cal.php:275 mod/events.php:392
msgid "View"
msgstr ""
#: mod/cal.php:276 mod/events.php:394
msgid "Previous"
msgstr ""
#: mod/cal.php:277 mod/events.php:395 mod/install.php:209
msgid "Next"
msgstr ""
#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
msgid "today"
msgstr ""
#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
#: src/Model/Event.php:413
msgid "month"
msgstr ""
#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
#: src/Model/Event.php:414
msgid "week"
msgstr ""
#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
#: src/Model/Event.php:415
msgid "day"
msgstr ""
#: mod/cal.php:284 mod/events.php:404
msgid "list"
msgstr ""
#: mod/cal.php:297 src/Model/User.php:204
msgid "User not found"
msgstr ""
#: mod/cal.php:313
msgid "This calendar format is not supported"
msgstr ""
#: mod/cal.php:315
msgid "No exportable data found"
msgstr ""
#: mod/cal.php:332
msgid "calendar"
msgstr ""
#: mod/contacts.php:157
#, php-format
msgid "%d contact edited."
@ -5366,6 +3438,11 @@ msgid ""
"are taken from the meta header in the feed item and are posted as hash tags."
msgstr ""
#: mod/contacts.php:572 mod/admin.php:1272 mod/admin.php:1435
#: mod/admin.php:1445
msgid "Disabled"
msgstr ""
#: mod/contacts.php:573
msgid "Fetch information"
msgstr ""
@ -5437,6 +3514,16 @@ msgstr ""
msgid "Update now"
msgstr ""
#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
#: mod/admin.php:485 mod/admin.php:1800
msgid "Unblock"
msgstr ""
#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
#: mod/admin.php:484 mod/admin.php:1799
msgid "Block"
msgstr ""
#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
msgid "Unignore"
msgstr ""
@ -5488,8 +3575,8 @@ msgstr ""
msgid "Actions"
msgstr ""
#: mod/contacts.php:669 mod/contacts.php:855 view/theme/frio/theme.php:259
#: src/Content/Nav.php:100 src/Model/Profile.php:888
#: 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 ""
@ -5553,7 +3640,7 @@ msgstr ""
msgid "Search your contacts"
msgstr ""
#: mod/contacts.php:820 mod/directory.php:210 src/Content/Widget.php:63
#: mod/contacts.php:820 mod/directory.php:209 src/Content/Widget.php:63
msgid "Find"
msgstr ""
@ -5573,7 +3660,7 @@ msgstr ""
msgid "Batch Actions"
msgstr ""
#: mod/contacts.php:858 mod/follow.php:183 mod/unfollow.php:132
#: mod/contacts.php:858 mod/unfollow.php:132 mod/follow.php:186
#: src/Model/Profile.php:891
msgid "Status Messages and Posts"
msgstr ""
@ -5590,6 +3677,11 @@ msgstr ""
msgid "View all common friends"
msgstr ""
#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1351
#: src/Model/Profile.php:865
msgid "Advanced"
msgstr ""
#: mod/contacts.php:898
msgid "Advanced Contact Settings"
msgstr ""
@ -5649,6 +3741,13 @@ 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
msgid "Save Settings"
msgstr ""
#: mod/delegate.php:169 src/Content/Nav.php:204
msgid "Delegate Page Management"
msgstr ""
@ -5680,34 +3779,6 @@ msgstr ""
msgid "No entries."
msgstr ""
#: mod/directory.php:153 src/Model/Profile.php:421 src/Model/Profile.php:769
msgid "Status:"
msgstr ""
#: mod/directory.php:154 src/Model/Profile.php:422 src/Model/Profile.php:786
msgid "Homepage:"
msgstr ""
#: mod/directory.php:203 view/theme/vier/theme.php:201
msgid "Global Directory"
msgstr ""
#: mod/directory.php:205
msgid "Find on this site"
msgstr ""
#: mod/directory.php:207
msgid "Results for:"
msgstr ""
#: mod/directory.php:209
msgid "Site Directory"
msgstr ""
#: mod/directory.php:214
msgid "No entries (some entries may be hidden)."
msgstr ""
#: mod/dirfind.php:49
#, php-format
msgid "People Search - %s"
@ -5718,98 +3789,6 @@ msgstr ""
msgid "Forum Search - %s"
msgstr ""
#: mod/events.php:105 mod/events.php:107
msgid "Event can not end before it has started."
msgstr ""
#: mod/events.php:114 mod/events.php:116
msgid "Event title and start time are required."
msgstr ""
#: mod/events.php:393
msgid "Create New Event"
msgstr ""
#: mod/events.php:506
msgid "Event details"
msgstr ""
#: mod/events.php:507
msgid "Starting date and Title are required."
msgstr ""
#: mod/events.php:508 mod/events.php:509
msgid "Event Starts:"
msgstr ""
#: mod/events.php:508 mod/events.php:520 mod/profiles.php:699
msgid "Required"
msgstr ""
#: mod/events.php:510 mod/events.php:526
msgid "Finish date/time is not known or not relevant"
msgstr ""
#: mod/events.php:512 mod/events.php:513
msgid "Event Finishes:"
msgstr ""
#: mod/events.php:514 mod/events.php:527
msgid "Adjust for viewer timezone"
msgstr ""
#: mod/events.php:516
msgid "Description:"
msgstr ""
#: mod/events.php:520 mod/events.php:522
msgid "Title:"
msgstr ""
#: mod/events.php:523 mod/events.php:524
msgid "Share this event"
msgstr ""
#: mod/events.php:531 src/Model/Profile.php:864
msgid "Basic"
msgstr ""
#: mod/events.php:552
msgid "Failed to remove event"
msgstr ""
#: mod/events.php:554
msgid "Event removed"
msgstr ""
#: mod/feedtest.php:20
msgid "You must be logged in to use this module"
msgstr ""
#: mod/feedtest.php:48
msgid "Source URL"
msgstr ""
#: mod/follow.php:45
msgid "The contact could not be added."
msgstr ""
#: 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/install.php:114
msgid "Friendica Communications Server - Setup"
msgstr ""
@ -5844,6 +3823,10 @@ msgstr ""
msgid "System check"
msgstr ""
#: mod/install.php:209 mod/cal.php:277 mod/events.php:395
msgid "Next"
msgstr ""
#: mod/install.php:210
msgid "Check again"
msgstr ""
@ -6166,40 +4149,6 @@ msgid ""
"administrator email. This will allow you to enter the site admin panel."
msgstr ""
#: mod/item.php:114
msgid "Unable to locate original post."
msgstr ""
#: mod/item.php:274
msgid "Empty post discarded."
msgstr ""
#: mod/item.php:799
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social network."
msgstr ""
#: mod/item.php:801
#, php-format
msgid "You may visit them online at %s"
msgstr ""
#: mod/item.php:802
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr ""
#: mod/item.php:806
#, php-format
msgid "%s posted an update."
msgstr ""
#: mod/oexchange.php:30
msgid "Post successful."
msgstr ""
#: mod/ostatus_subscribe.php:21
msgid "Subscribing to OStatus contacts"
msgstr ""
@ -6228,6 +4177,139 @@ msgstr ""
msgid "ignored"
msgstr ""
#: mod/unfollow.php:34
msgid "Contact wasn't found or can't be unfollowed."
msgstr ""
#: mod/unfollow.php:47
msgid "Contact unfollowed"
msgstr ""
#: mod/unfollow.php:73
msgid "You aren't a friend of this contact."
msgstr ""
#: mod/unfollow.php:79
msgid "Unfollowing is currently not supported by your network."
msgstr ""
#: 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 ""
#: mod/cal.php:275 mod/events.php:392
msgid "View"
msgstr ""
#: mod/cal.php:276 mod/events.php:394
msgid "Previous"
msgstr ""
#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
msgid "today"
msgstr ""
#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
#: src/Model/Event.php:413
msgid "month"
msgstr ""
#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
#: src/Model/Event.php:414
msgid "week"
msgstr ""
#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
#: src/Model/Event.php:415
msgid "day"
msgstr ""
#: mod/cal.php:284 mod/events.php:404
msgid "list"
msgstr ""
#: mod/cal.php:297 src/Core/Console/NewPassword.php:74 src/Model/User.php:204
msgid "User not found"
msgstr ""
#: mod/cal.php:313
msgid "This calendar format is not supported"
msgstr ""
#: mod/cal.php:315
msgid "No exportable data found"
msgstr ""
#: mod/cal.php:332
msgid "calendar"
msgstr ""
#: mod/events.php:105 mod/events.php:107
msgid "Event can not end before it has started."
msgstr ""
#: mod/events.php:114 mod/events.php:116
msgid "Event title and start time are required."
msgstr ""
#: mod/events.php:393
msgid "Create New Event"
msgstr ""
#: mod/events.php:506
msgid "Event details"
msgstr ""
#: mod/events.php:507
msgid "Starting date and Title are required."
msgstr ""
#: mod/events.php:508 mod/events.php:509
msgid "Event Starts:"
msgstr ""
#: mod/events.php:508 mod/events.php:520 mod/profiles.php:700
msgid "Required"
msgstr ""
#: mod/events.php:510 mod/events.php:526
msgid "Finish date/time is not known or not relevant"
msgstr ""
#: mod/events.php:512 mod/events.php:513
msgid "Event Finishes:"
msgstr ""
#: mod/events.php:514 mod/events.php:527
msgid "Adjust for viewer timezone"
msgstr ""
#: mod/events.php:516
msgid "Description:"
msgstr ""
#: mod/events.php:520 mod/events.php:522
msgid "Title:"
msgstr ""
#: mod/events.php:523 mod/events.php:524
msgid "Share this event"
msgstr ""
#: mod/events.php:531 src/Model/Profile.php:864
msgid "Basic"
msgstr ""
#: mod/events.php:552
msgid "Failed to remove event"
msgstr ""
#: mod/events.php:554
msgid "Event removed"
msgstr ""
#: mod/profile_photo.php:55
msgid "Image uploaded but image cropping failed."
msgstr ""
@ -6284,347 +4366,12 @@ msgstr ""
msgid "Image uploaded successfully."
msgstr ""
#: mod/profiles.php:57
msgid "Profile deleted."
#: mod/settings.php:56 mod/admin.php:1781
msgid "Account"
msgstr ""
#: mod/profiles.php:73 mod/profiles.php:109
msgid "Profile-"
msgstr ""
#: mod/profiles.php:92 mod/profiles.php:131
msgid "New profile created."
msgstr ""
#: mod/profiles.php:115
msgid "Profile unavailable to clone."
msgstr ""
#: mod/profiles.php:205
msgid "Profile Name is required."
msgstr ""
#: mod/profiles.php:346
msgid "Marital Status"
msgstr ""
#: mod/profiles.php:350
msgid "Romantic Partner"
msgstr ""
#: mod/profiles.php:362
msgid "Work/Employment"
msgstr ""
#: mod/profiles.php:365
msgid "Religion"
msgstr ""
#: mod/profiles.php:369
msgid "Political Views"
msgstr ""
#: mod/profiles.php:373
msgid "Gender"
msgstr ""
#: mod/profiles.php:377
msgid "Sexual Preference"
msgstr ""
#: mod/profiles.php:381
msgid "XMPP"
msgstr ""
#: mod/profiles.php:385
msgid "Homepage"
msgstr ""
#: mod/profiles.php:389 mod/profiles.php:685
msgid "Interests"
msgstr ""
#: mod/profiles.php:400 mod/profiles.php:681
msgid "Location"
msgstr ""
#: mod/profiles.php:485
msgid "Profile updated."
msgstr ""
#: mod/profiles.php:563
msgid " and "
msgstr ""
#: mod/profiles.php:572
msgid "public profile"
msgstr ""
#: mod/profiles.php:575
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr ""
#: mod/profiles.php:576
#, php-format
msgid " - Visit %1$s's %2$s"
msgstr ""
#: mod/profiles.php:578
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr ""
#: mod/profiles.php:632
msgid "Hide contacts and friends:"
msgstr ""
#: mod/profiles.php:637
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr ""
#: mod/profiles.php:657
msgid "Show more profile fields:"
msgstr ""
#: mod/profiles.php:669
msgid "Profile Actions"
msgstr ""
#: mod/profiles.php:670
msgid "Edit Profile Details"
msgstr ""
#: mod/profiles.php:672
msgid "Change Profile Photo"
msgstr ""
#: mod/profiles.php:673
msgid "View this profile"
msgstr ""
#: mod/profiles.php:674 mod/profiles.php:769 src/Model/Profile.php:393
msgid "Edit visibility"
msgstr ""
#: mod/profiles.php:675
msgid "Create a new profile using these settings"
msgstr ""
#: mod/profiles.php:676
msgid "Clone this profile"
msgstr ""
#: mod/profiles.php:677
msgid "Delete this profile"
msgstr ""
#: mod/profiles.php:679
msgid "Basic information"
msgstr ""
#: mod/profiles.php:680
msgid "Profile picture"
msgstr ""
#: mod/profiles.php:682
msgid "Preferences"
msgstr ""
#: mod/profiles.php:683
msgid "Status information"
msgstr ""
#: mod/profiles.php:684
msgid "Additional information"
msgstr ""
#: mod/profiles.php:687
msgid "Relation"
msgstr ""
#: mod/profiles.php:688 src/Util/Temporal.php:81 src/Util/Temporal.php:83
msgid "Miscellaneous"
msgstr ""
#: mod/profiles.php:691
msgid "Your Gender:"
msgstr ""
#: mod/profiles.php:692
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr ""
#: mod/profiles.php:693 src/Model/Profile.php:782
msgid "Sexual Preference:"
msgstr ""
#: mod/profiles.php:694
msgid "Example: fishing photography software"
msgstr ""
#: mod/profiles.php:699
msgid "Profile Name:"
msgstr ""
#: mod/profiles.php:701
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr ""
#: mod/profiles.php:702
msgid "Your Full Name:"
msgstr ""
#: mod/profiles.php:703
msgid "Title/Description:"
msgstr ""
#: mod/profiles.php:706
msgid "Street Address:"
msgstr ""
#: mod/profiles.php:707
msgid "Locality/City:"
msgstr ""
#: mod/profiles.php:708
msgid "Region/State:"
msgstr ""
#: mod/profiles.php:709
msgid "Postal/Zip Code:"
msgstr ""
#: mod/profiles.php:710
msgid "Country:"
msgstr ""
#: mod/profiles.php:711 src/Util/Temporal.php:149
msgid "Age: "
msgstr ""
#: mod/profiles.php:714
msgid "Who: (if applicable)"
msgstr ""
#: mod/profiles.php:714
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr ""
#: mod/profiles.php:715
msgid "Since [date]:"
msgstr ""
#: mod/profiles.php:717
msgid "Tell us about yourself..."
msgstr ""
#: mod/profiles.php:718
msgid "XMPP (Jabber) address:"
msgstr ""
#: mod/profiles.php:718
msgid ""
"The XMPP address will be propagated to your contacts so that they can follow "
"you."
msgstr ""
#: mod/profiles.php:719
msgid "Homepage URL:"
msgstr ""
#: mod/profiles.php:720 src/Model/Profile.php:790
msgid "Hometown:"
msgstr ""
#: mod/profiles.php:721 src/Model/Profile.php:798
msgid "Political Views:"
msgstr ""
#: mod/profiles.php:722
msgid "Religious Views:"
msgstr ""
#: mod/profiles.php:723
msgid "Public Keywords:"
msgstr ""
#: mod/profiles.php:723
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr ""
#: mod/profiles.php:724
msgid "Private Keywords:"
msgstr ""
#: mod/profiles.php:724
msgid "(Used for searching profiles, never shown to others)"
msgstr ""
#: mod/profiles.php:725 src/Model/Profile.php:814
msgid "Likes:"
msgstr ""
#: mod/profiles.php:726 src/Model/Profile.php:818
msgid "Dislikes:"
msgstr ""
#: mod/profiles.php:727
msgid "Musical interests"
msgstr ""
#: mod/profiles.php:728
msgid "Books, literature"
msgstr ""
#: mod/profiles.php:729
msgid "Television"
msgstr ""
#: mod/profiles.php:730
msgid "Film/dance/culture/entertainment"
msgstr ""
#: mod/profiles.php:731
msgid "Hobbies/Interests"
msgstr ""
#: mod/profiles.php:732
msgid "Love/romance"
msgstr ""
#: mod/profiles.php:733
msgid "Work/employment"
msgstr ""
#: mod/profiles.php:734
msgid "School/education"
msgstr ""
#: mod/profiles.php:735
msgid "Contact information and Social Networks"
msgstr ""
#: mod/profiles.php:766 src/Model/Profile.php:389
msgid "Profile Image"
msgstr ""
#: mod/profiles.php:768 src/Model/Profile.php:392
msgid "visible to everybody"
msgstr ""
#: mod/profiles.php:775
msgid "Edit/Manage Profiles"
msgstr ""
#: mod/profiles.php:776 src/Model/Profile.php:379 src/Model/Profile.php:401
msgid "Change profile photo"
msgstr ""
#: mod/profiles.php:777 src/Model/Profile.php:380
msgid "Create New Profile"
#: mod/settings.php:65 mod/admin.php:187
msgid "Additional features"
msgstr ""
#: mod/settings.php:73
@ -6635,6 +4382,10 @@ msgstr ""
msgid "Social Networks"
msgstr ""
#: mod/settings.php:87 mod/admin.php:185 mod/admin.php:1904 mod/admin.php:1964
msgid "Addons"
msgstr ""
#: mod/settings.php:94 src/Content/Nav.php:204
msgid "Delegations"
msgstr ""
@ -6675,7 +4426,7 @@ msgstr ""
msgid "Empty passwords are not allowed. Password unchanged."
msgstr ""
#: mod/settings.php:394
#: 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."
@ -6685,11 +4436,11 @@ msgstr ""
msgid "Wrong password."
msgstr ""
#: mod/settings.php:407
#: mod/settings.php:407 src/Core/Console/NewPassword.php:85
msgid "Password changed."
msgstr ""
#: mod/settings.php:409
#: mod/settings.php:409 src/Core/Console/NewPassword.php:82
msgid "Password update failed. Please try again."
msgstr ""
@ -6777,6 +4528,14 @@ msgstr ""
msgid "Addon Settings"
msgstr ""
#: mod/settings.php:775 mod/admin.php:2428 mod/admin.php:2429
msgid "Off"
msgstr ""
#: mod/settings.php:775 mod/admin.php:2428 mod/admin.php:2429
msgid "On"
msgstr ""
#: mod/settings.php:782
msgid "Additional Features"
msgstr ""
@ -6913,6 +4672,10 @@ msgstr ""
msgid "Move to folder:"
msgstr ""
#: 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)"
@ -7273,6 +5036,14 @@ msgstr ""
msgid "Password Settings"
msgstr ""
#: mod/settings.php:1199 mod/register.php:273
msgid "New Password:"
msgstr ""
#: mod/settings.php:1200 mod/register.php:274
msgid "Confirm:"
msgstr ""
#: mod/settings.php:1200
msgid "Leave password fields blank unless changing"
msgstr ""
@ -7463,284 +5234,2321 @@ msgstr ""
msgid "Resend relocate message to contacts"
msgstr ""
#: mod/unfollow.php:34
msgid "Contact wasn't found or can't be unfollowed."
#: mod/directory.php:152 src/Model/Profile.php:421 src/Model/Profile.php:769
msgid "Status:"
msgstr ""
#: mod/unfollow.php:47
msgid "Contact unfollowed"
#: mod/directory.php:153 src/Model/Profile.php:422 src/Model/Profile.php:786
msgid "Homepage:"
msgstr ""
#: mod/unfollow.php:73
msgid "You aren't a friend of this contact."
#: mod/directory.php:202 view/theme/vier/theme.php:201
msgid "Global Directory"
msgstr ""
#: mod/unfollow.php:79
msgid "Unfollowing is currently not supported by your network."
#: mod/directory.php:204
msgid "Find on this site"
msgstr ""
#: view/theme/duepuntozero/config.php:54 src/Model/User.php:488
msgid "default"
#: mod/directory.php:206
msgid "Results for:"
msgstr ""
#: view/theme/duepuntozero/config.php:55
msgid "greenzero"
#: mod/directory.php:208
msgid "Site Directory"
msgstr ""
#: view/theme/duepuntozero/config.php:56
msgid "purplezero"
#: mod/directory.php:213
msgid "No entries (some entries may be hidden)."
msgstr ""
#: view/theme/duepuntozero/config.php:57
msgid "easterbunny"
#: mod/babel.php:22
msgid "Source input"
msgstr ""
#: view/theme/duepuntozero/config.php:58
msgid "darkzero"
#: mod/babel.php:28
msgid "BBCode::convert (raw HTML)"
msgstr ""
#: view/theme/duepuntozero/config.php:59
msgid "comix"
#: mod/babel.php:33
msgid "BBCode::convert"
msgstr ""
#: view/theme/duepuntozero/config.php:60
msgid "slackr"
#: mod/babel.php:39
msgid "BBCode::convert => HTML::toBBCode"
msgstr ""
#: view/theme/duepuntozero/config.php:74
msgid "Variations"
#: mod/babel.php:45
msgid "BBCode::toMarkdown"
msgstr ""
#: view/theme/frio/php/Image.php:25
msgid "Repeat the image"
#: mod/babel.php:51
msgid "BBCode::toMarkdown => Markdown::convert"
msgstr ""
#: view/theme/frio/php/Image.php:25
msgid "Will repeat your image to fill the background."
#: mod/babel.php:57
msgid "BBCode::toMarkdown => Markdown::toBBCode"
msgstr ""
#: view/theme/frio/php/Image.php:27
msgid "Stretch"
#: mod/babel.php:63
msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
msgstr ""
#: view/theme/frio/php/Image.php:27
msgid "Will stretch to width/height of the image."
#: mod/babel.php:70
msgid "Source input \\x28Diaspora format\\x29"
msgstr ""
#: view/theme/frio/php/Image.php:29
msgid "Resize fill and-clip"
#: mod/babel.php:76
msgid "Markdown::toBBCode"
msgstr ""
#: view/theme/frio/php/Image.php:29
msgid "Resize to fill and retain aspect ratio."
#: mod/babel.php:83
msgid "Raw HTML input"
msgstr ""
#: view/theme/frio/php/Image.php:31
msgid "Resize best fit"
#: mod/babel.php:88
msgid "HTML Input"
msgstr ""
#: view/theme/frio/php/Image.php:31
msgid "Resize to best fit and retain aspect ratio."
#: mod/babel.php:94
msgid "HTML::toBBCode"
msgstr ""
#: view/theme/frio/config.php:97
msgid "Default"
#: mod/babel.php:100
msgid "HTML::toPlaintext"
msgstr ""
#: view/theme/frio/config.php:109
msgid "Note"
#: mod/babel.php:108
msgid "Source text"
msgstr ""
#: view/theme/frio/config.php:109
msgid "Check image permissions if all users are allowed to visit the image"
#: mod/babel.php:109
msgid "BBCode"
msgstr ""
#: view/theme/frio/config.php:116
msgid "Select scheme"
#: mod/babel.php:110
msgid "Markdown"
msgstr ""
#: view/theme/frio/config.php:117
msgid "Navigation bar background color"
#: mod/babel.php:111
msgid "HTML"
msgstr ""
#: view/theme/frio/config.php:118
msgid "Navigation bar icon color "
#: mod/follow.php:45
msgid "The contact could not be added."
msgstr ""
#: view/theme/frio/config.php:119
msgid "Link color"
#: mod/follow.php:73
msgid "You already added this contact."
msgstr ""
#: view/theme/frio/config.php:120
msgid "Set the background color"
#: mod/follow.php:83
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr ""
#: view/theme/frio/config.php:121
msgid "Content background opacity"
#: mod/follow.php:90
msgid "OStatus support is disabled. Contact can't be added."
msgstr ""
#: view/theme/frio/config.php:122
msgid "Set the background image"
#: mod/follow.php:97
msgid "The network type couldn't be detected. Contact can't be added."
msgstr ""
#: view/theme/frio/config.php:127
msgid "Login page background image"
#: mod/profiles.php:58
msgid "Profile deleted."
msgstr ""
#: view/theme/frio/config.php:130
msgid "Login page background color"
#: mod/profiles.php:74 mod/profiles.php:110
msgid "Profile-"
msgstr ""
#: view/theme/frio/config.php:130
msgid "Leave background image and color empty for theme defaults"
#: mod/profiles.php:93 mod/profiles.php:132
msgid "New profile created."
msgstr ""
#: view/theme/frio/theme.php:238
msgid "Guest"
#: mod/profiles.php:116
msgid "Profile unavailable to clone."
msgstr ""
#: view/theme/frio/theme.php:243
msgid "Visitor"
#: mod/profiles.php:206
msgid "Profile Name is required."
msgstr ""
#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
#: src/Module/Login.php:311
msgid "Logout"
#: mod/profiles.php:347
msgid "Marital Status"
msgstr ""
#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
msgid "End this session"
#: mod/profiles.php:351
msgid "Romantic Partner"
msgstr ""
#: view/theme/frio/theme.php:259 src/Content/Nav.php:100
#: src/Content/Nav.php:181
msgid "Your posts and conversations"
#: mod/profiles.php:363
msgid "Work/Employment"
msgstr ""
#: view/theme/frio/theme.php:260 src/Content/Nav.php:101
msgid "Your profile page"
#: mod/profiles.php:366
msgid "Religion"
msgstr ""
#: view/theme/frio/theme.php:261 src/Content/Nav.php:102
msgid "Your photos"
#: mod/profiles.php:370
msgid "Political Views"
msgstr ""
#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
#: src/Model/Profile.php:912 src/Model/Profile.php:915
msgid "Videos"
#: mod/profiles.php:374
msgid "Gender"
msgstr ""
#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
msgid "Your videos"
#: mod/profiles.php:378
msgid "Sexual Preference"
msgstr ""
#: view/theme/frio/theme.php:263 src/Content/Nav.php:104
msgid "Your events"
#: mod/profiles.php:382
msgid "XMPP"
msgstr ""
#: view/theme/frio/theme.php:266 src/Content/Nav.php:178
msgid "Conversations from your friends"
#: mod/profiles.php:386
msgid "Homepage"
msgstr ""
#: view/theme/frio/theme.php:267 src/Content/Nav.php:169
#: src/Model/Profile.php:927 src/Model/Profile.php:938
msgid "Events and Calendar"
#: mod/profiles.php:390 mod/profiles.php:686
msgid "Interests"
msgstr ""
#: view/theme/frio/theme.php:268 src/Content/Nav.php:195
msgid "Private mail"
#: mod/profiles.php:394 mod/admin.php:490
msgid "Address"
msgstr ""
#: view/theme/frio/theme.php:269 src/Content/Nav.php:206
msgid "Account settings"
#: mod/profiles.php:401 mod/profiles.php:682
msgid "Location"
msgstr ""
#: view/theme/frio/theme.php:270 src/Content/Nav.php:212
msgid "Manage/edit friends and contacts"
#: mod/profiles.php:486
msgid "Profile updated."
msgstr ""
#: view/theme/quattro/config.php:76
msgid "Alignment"
#: mod/profiles.php:564
msgid " and "
msgstr ""
#: view/theme/quattro/config.php:76
msgid "Left"
#: mod/profiles.php:573
msgid "public profile"
msgstr ""
#: view/theme/quattro/config.php:76
msgid "Center"
#: mod/profiles.php:576
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr ""
#: view/theme/quattro/config.php:77
msgid "Color scheme"
#: mod/profiles.php:577
#, php-format
msgid " - Visit %1$s's %2$s"
msgstr ""
#: view/theme/quattro/config.php:78
msgid "Posts font size"
#: mod/profiles.php:579
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr ""
#: view/theme/quattro/config.php:79
msgid "Textareas font size"
#: mod/profiles.php:633
msgid "Hide contacts and friends:"
msgstr ""
#: view/theme/vier/config.php:75
msgid "Comma separated list of helper forums"
#: mod/profiles.php:638
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr ""
#: view/theme/vier/config.php:115 src/Core/ACL.php:309
msgid "don't show"
#: mod/profiles.php:658
msgid "Show more profile fields:"
msgstr ""
#: view/theme/vier/config.php:115 src/Core/ACL.php:308
msgid "show"
#: mod/profiles.php:670
msgid "Profile Actions"
msgstr ""
#: view/theme/vier/config.php:122
msgid "Set style"
#: mod/profiles.php:671
msgid "Edit Profile Details"
msgstr ""
#: view/theme/vier/config.php:123
msgid "Community Pages"
#: mod/profiles.php:673
msgid "Change Profile Photo"
msgstr ""
#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150
msgid "Community Profiles"
#: mod/profiles.php:674
msgid "View this profile"
msgstr ""
#: view/theme/vier/config.php:125
msgid "Help or @NewHere ?"
#: mod/profiles.php:675 mod/profiles.php:770 src/Model/Profile.php:393
msgid "Edit visibility"
msgstr ""
#: view/theme/vier/config.php:126 view/theme/vier/theme.php:389
msgid "Connect Services"
#: mod/profiles.php:676
msgid "Create a new profile using these settings"
msgstr ""
#: view/theme/vier/config.php:127 view/theme/vier/theme.php:199
msgid "Find Friends"
#: mod/profiles.php:677
msgid "Clone this profile"
msgstr ""
#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181
msgid "Last users"
#: mod/profiles.php:678
msgid "Delete this profile"
msgstr ""
#: view/theme/vier/theme.php:200
msgid "Local Directory"
#: mod/profiles.php:680
msgid "Basic information"
msgstr ""
#: view/theme/vier/theme.php:202 src/Content/Widget.php:65
msgid "Similar Interests"
#: mod/profiles.php:681
msgid "Profile picture"
msgstr ""
#: view/theme/vier/theme.php:204 src/Content/Widget.php:67
msgid "Invite Friends"
#: mod/profiles.php:683
msgid "Preferences"
msgstr ""
#: view/theme/vier/theme.php:256 src/Content/ForumManager.php:127
msgid "External link to forum"
#: mod/profiles.php:684
msgid "Status information"
msgstr ""
#: view/theme/vier/theme.php:292
msgid "Quick Start"
#: mod/profiles.php:685
msgid "Additional information"
msgstr ""
#: mod/profiles.php:688
msgid "Relation"
msgstr ""
#: mod/profiles.php:689 src/Util/Temporal.php:81 src/Util/Temporal.php:83
msgid "Miscellaneous"
msgstr ""
#: mod/profiles.php:692
msgid "Your Gender:"
msgstr ""
#: mod/profiles.php:693
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr ""
#: mod/profiles.php:694 src/Model/Profile.php:782
msgid "Sexual Preference:"
msgstr ""
#: mod/profiles.php:695
msgid "Example: fishing photography software"
msgstr ""
#: mod/profiles.php:700
msgid "Profile Name:"
msgstr ""
#: mod/profiles.php:702
msgid ""
"This is your <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 ""
#: mod/profiles.php:704
msgid "Title/Description:"
msgstr ""
#: mod/profiles.php:707
msgid "Street Address:"
msgstr ""
#: mod/profiles.php:708
msgid "Locality/City:"
msgstr ""
#: mod/profiles.php:709
msgid "Region/State:"
msgstr ""
#: mod/profiles.php:710
msgid "Postal/Zip Code:"
msgstr ""
#: mod/profiles.php:711
msgid "Country:"
msgstr ""
#: mod/profiles.php:712 src/Util/Temporal.php:149
msgid "Age: "
msgstr ""
#: mod/profiles.php:715
msgid "Who: (if applicable)"
msgstr ""
#: mod/profiles.php:715
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr ""
#: mod/profiles.php:716
msgid "Since [date]:"
msgstr ""
#: mod/profiles.php:718
msgid "Tell us about yourself..."
msgstr ""
#: mod/profiles.php:719
msgid "XMPP (Jabber) address:"
msgstr ""
#: 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 ""
#: mod/profiles.php:721 src/Model/Profile.php:790
msgid "Hometown:"
msgstr ""
#: mod/profiles.php:722 src/Model/Profile.php:798
msgid "Political Views:"
msgstr ""
#: mod/profiles.php:723
msgid "Religious Views:"
msgstr ""
#: mod/profiles.php:724
msgid "Public Keywords:"
msgstr ""
#: mod/profiles.php:724
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr ""
#: mod/profiles.php:725
msgid "Private Keywords:"
msgstr ""
#: mod/profiles.php:725
msgid "(Used for searching profiles, never shown to others)"
msgstr ""
#: mod/profiles.php:726 src/Model/Profile.php:814
msgid "Likes:"
msgstr ""
#: mod/profiles.php:727 src/Model/Profile.php:818
msgid "Dislikes:"
msgstr ""
#: mod/profiles.php:728
msgid "Musical interests"
msgstr ""
#: mod/profiles.php:729
msgid "Books, literature"
msgstr ""
#: mod/profiles.php:730
msgid "Television"
msgstr ""
#: mod/profiles.php:731
msgid "Film/dance/culture/entertainment"
msgstr ""
#: mod/profiles.php:732
msgid "Hobbies/Interests"
msgstr ""
#: mod/profiles.php:733
msgid "Love/romance"
msgstr ""
#: mod/profiles.php:734
msgid "Work/employment"
msgstr ""
#: mod/profiles.php:735
msgid "School/education"
msgstr ""
#: mod/profiles.php:736
msgid "Contact information and Social Networks"
msgstr ""
#: mod/profiles.php: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"
msgstr ""
#: mod/profiles.php:777 src/Model/Profile.php:379 src/Model/Profile.php:401
msgid "Change profile photo"
msgstr ""
#: mod/profiles.php:778 src/Model/Profile.php:380
msgid "Create New Profile"
msgstr ""
#: 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 ""
#: 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 ""
#: mod/register.php:234
msgid "Include your profile in member directory?"
msgstr ""
#: mod/register.php:259
msgid "Note for the admin"
msgstr ""
#: 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 ""
#: mod/register.php:264 mod/admin.php:1348
msgid "Registration"
msgstr ""
#: 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 ""
#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283
msgid "Register"
msgstr ""
#: mod/register.php:286
msgid "Import your profile to this friendica instance"
msgstr ""
#: mod/register.php:288 mod/admin.php:188 mod/admin.php:302 mod/tos.php:48
msgid "Terms of Service"
msgstr ""
#: mod/friendica.php:77
msgid "This is Friendica, version"
msgstr ""
#: mod/friendica.php:78
msgid "running at web location"
msgstr ""
#: mod/friendica.php:82
msgid ""
"Please visit <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 ""
#: mod/friendica.php:86
msgid "the bugtracker at github"
msgstr ""
#: mod/friendica.php:89
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr ""
#: mod/friendica.php:103
msgid "Installed addons/apps:"
msgstr ""
#: mod/friendica.php:117
msgid "No installed addons/apps"
msgstr ""
#: mod/friendica.php:122
#, php-format
msgid "Read about the <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 ""
#: mod/admin.php:106
msgid "Theme settings updated."
msgstr ""
#: mod/admin.php:179 src/Content/Nav.php:174
msgid "Information"
msgstr ""
#: mod/admin.php:180
msgid "Overview"
msgstr ""
#: mod/admin.php:181 mod/admin.php:718
msgid "Federation Statistics"
msgstr ""
#: mod/admin.php:182
msgid "Configuration"
msgstr ""
#: mod/admin.php:183 mod/admin.php:1345
msgid "Site"
msgstr ""
#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1788 mod/admin.php:1804
msgid "Users"
msgstr ""
#: mod/admin.php:186 mod/admin.php:2173 mod/admin.php:2217
msgid "Themes"
msgstr ""
#: mod/admin.php:189
msgid "Database"
msgstr ""
#: mod/admin.php:190
msgid "DB updates"
msgstr ""
#: mod/admin.php:191 mod/admin.php:753
msgid "Inspect Queue"
msgstr ""
#: mod/admin.php:192
msgid "Tools"
msgstr ""
#: 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 ""
#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2291
msgid "Logs"
msgstr ""
#: mod/admin.php:198 mod/admin.php:2358
msgid "View Logs"
msgstr ""
#: mod/admin.php:200
msgid "Diagnostics"
msgstr ""
#: mod/admin.php:201
msgid "PHP Info"
msgstr ""
#: mod/admin.php:202
msgid "probe address"
msgstr ""
#: mod/admin.php:203
msgid "check webfinger"
msgstr ""
#: mod/admin.php:222 src/Content/Nav.php:217
msgid "Admin"
msgstr ""
#: 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 ""
#: mod/admin.php:303
msgid "Display Terms of Service"
msgstr ""
#: 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 ""
#: 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 Usage"
msgstr ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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/admin.php:500
msgid "URL of the remote contact to block."
msgstr ""
#: mod/admin.php:522
msgid "Delete this Item"
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."
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 ""
#: 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 ""
#: 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 ""
#: mod/admin.php:757
msgid "Recipient Profile"
msgstr ""
#: mod/admin.php:758 src/Core/NotificationsManager.php:178
#: src/Content/Nav.php:178 view/theme/frio/theme.php:266
msgid "Network"
msgstr ""
#: mod/admin.php:759
msgid "Created"
msgstr ""
#: 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 ""
#: 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 ""
#: mod/admin.php:849
msgid "Summary"
msgstr ""
#: mod/admin.php:851
msgid "Registered users"
msgstr ""
#: mod/admin.php:853
msgid "Pending registrations"
msgstr ""
#: mod/admin.php:854
msgid "Version"
msgstr ""
#: 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 ""
#: 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 ""
#: mod/admin.php:1280
msgid "Three months"
msgstr ""
#: mod/admin.php:1281
msgid "Half a year"
msgstr ""
#: mod/admin.php:1282
msgid "One year"
msgstr ""
#: mod/admin.php:1287
msgid "Multi user instance"
msgstr ""
#: mod/admin.php:1310
msgid "Closed"
msgstr ""
#: mod/admin.php:1311
msgid "Requires approval"
msgstr ""
#: mod/admin.php:1312
msgid "Open"
msgstr ""
#: 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 ""
#: 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 ""
#: mod/admin.php:1350
msgid "Policies"
msgstr ""
#: mod/admin.php:1352
msgid "Auto Discovered Contact Directory"
msgstr ""
#: mod/admin.php:1353
msgid "Performance"
msgstr ""
#: 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 ""
#: mod/admin.php:1360
msgid "Host name"
msgstr ""
#: mod/admin.php:1361
msgid "Sender Email"
msgstr ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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 ""
#: mod/admin.php:1394
msgid "OpenID support for registration and logins."
msgstr ""
#: 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 ""
#: 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 ""
#: 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 ""
#: mod/admin.php:1403
msgid "Provide built-in Diaspora network compatibility."
msgstr ""
#: mod/admin.php:1404
msgid "Only allow Friendica contacts"
msgstr ""
#: 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 ""
#: 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 ""
#: mod/admin.php:1407
msgid "Proxy URL"
msgstr ""
#: mod/admin.php:1408
msgid "Network timeout"
msgstr ""
#: 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 ""
#: mod/admin.php:1435
msgid "Encryption layer between nodes."
msgstr ""
#: mod/admin.php:1435
msgid "Enabled"
msgstr ""
#: 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 ""
#: 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 ""
#: mod/admin.php:1445
msgid "tags"
msgstr ""
#: mod/admin.php:1446
msgid "Server tags"
msgstr ""
#: mod/admin.php:1446
msgid "Comma separated list of tags for the 'tags' subscription."
msgstr ""
#: mod/admin.php:1447
msgid "Allow user tags"
msgstr ""
#: 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 ""
#: mod/admin.php:1532
msgid "Failed Updates"
msgstr ""
#: 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] ""
msgstr[1] ""
#: mod/admin.php:1674
#, php-format
msgid "User '%s' deleted"
msgstr ""
#: 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 ""
#: mod/admin.php:1781 mod/admin.php:1806
msgid "Register date"
msgstr ""
#: mod/admin.php:1781 mod/admin.php:1806
msgid "Last login"
msgstr ""
#: mod/admin.php:1781 mod/admin.php:1806
msgid "Last item"
msgstr ""
#: mod/admin.php:1789
msgid "Add User"
msgstr ""
#: 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 ""
#: 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 ""
#: mod/admin.php:1801
msgid "Site admin"
msgstr ""
#: mod/admin.php:1802
msgid "Account expired"
msgstr ""
#: mod/admin.php:1805
msgid "New User"
msgstr ""
#: mod/admin.php:1806
msgid "Deleted since"
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?"
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 ""
#: mod/admin.php:1823
msgid "Nickname"
msgstr ""
#: mod/admin.php:1823
msgid "Nickname of the new user."
msgstr ""
#: mod/admin.php:1824
msgid "Email address of the new user."
msgstr ""
#: mod/admin.php:1866
#, php-format
msgid "Addon %s disabled."
msgstr ""
#: mod/admin.php:1870
#, php-format
msgid "Addon %s enabled."
msgstr ""
#: mod/admin.php:1880 mod/admin.php:2129
msgid "Disable"
msgstr ""
#: mod/admin.php:1883 mod/admin.php:2132
msgid "Enable"
msgstr ""
#: mod/admin.php:1905 mod/admin.php:2174
msgid "Toggle"
msgstr ""
#: mod/admin.php:1913 mod/admin.php:2183
msgid "Author: "
msgstr ""
#: mod/admin.php:1914 mod/admin.php:2184
msgid "Maintainer: "
msgstr ""
#: 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 ""
#: mod/admin.php:2165
msgid "Screenshot"
msgstr ""
#: 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 ""
#: mod/admin.php:2226
msgid "[Unsupported]"
msgstr ""
#: mod/admin.php:2250
msgid "Log settings updated."
msgstr ""
#: mod/admin.php:2282
msgid "PHP log currently enabled."
msgstr ""
#: mod/admin.php:2284
msgid "PHP log currently disabled."
msgstr ""
#: mod/admin.php:2293
msgid "Clear"
msgstr ""
#: mod/admin.php:2297
msgid "Enable Debugging"
msgstr ""
#: mod/admin.php:2298
msgid "Log file"
msgstr ""
#: 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 ""
#: 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 ""
#: mod/tos.php:51
msgid "Privacy Statement"
msgstr ""
#: mod/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
#, 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 ""
#: src/Core/UserImport.php:104
@ -7775,27 +7583,6 @@ msgstr[1] ""
msgid "Done. You can now login with your username and password"
msgstr ""
#: src/Core/ACL.php:295
msgid "Post to Email"
msgstr ""
#: src/Core/ACL.php:301
msgid "Hide your profile details from unknown viewers?"
msgstr ""
#: src/Core/ACL.php:300
#, php-format
msgid "Connectors disabled, since \"%s\" is enabled."
msgstr ""
#: src/Core/ACL.php:307
msgid "Visible to everybody"
msgstr ""
#: src/Core/ACL.php:319
msgid "Close"
msgstr ""
#: src/Core/NotificationsManager.php:171
msgid "System"
msgstr ""
@ -7861,6 +7648,35 @@ msgstr ""
msgid "New Follower"
msgstr ""
#: src/Core/ACL.php:295
msgid "Post to Email"
msgstr ""
#: src/Core/ACL.php:301
msgid "Hide your profile details from unknown viewers?"
msgstr ""
#: src/Core/ACL.php:300
#, php-format
msgid "Connectors disabled, since \"%s\" is enabled."
msgstr ""
#: src/Core/ACL.php:307
msgid "Visible to everybody"
msgstr ""
#: src/Core/ACL.php:308 view/theme/vier/config.php:115
msgid "show"
msgstr ""
#: src/Core/ACL.php:309 view/theme/vier/config.php:115
msgid "don't show"
msgstr ""
#: src/Core/ACL.php:319
msgid "Close"
msgstr ""
#: src/Util/Temporal.php:147 src/Model/Profile.php:758
msgid "Birthday:"
msgstr ""
@ -7930,8 +7746,8 @@ msgstr ""
msgid "view full size"
msgstr ""
#: src/Content/Text/BBCode.php:978 src/Content/Text/BBCode.php:1735
#: src/Content/Text/BBCode.php:1736
#: src/Content/Text/BBCode.php:978 src/Content/Text/BBCode.php:1739
#: src/Content/Text/BBCode.php:1740
msgid "Image/photo"
msgstr ""
@ -7940,19 +7756,19 @@ msgstr ""
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
msgstr ""
#: src/Content/Text/BBCode.php:1670 src/Content/Text/BBCode.php:1692
#: src/Content/Text/BBCode.php:1674 src/Content/Text/BBCode.php:1696
msgid "$1 wrote:"
msgstr ""
#: src/Content/Text/BBCode.php:1744 src/Content/Text/BBCode.php:1745
#: src/Content/Text/BBCode.php:1748 src/Content/Text/BBCode.php:1749
msgid "Encrypted content"
msgstr ""
#: src/Content/Text/BBCode.php:1862
#: src/Content/Text/BBCode.php:1866
msgid "Invalid source protocol"
msgstr ""
#: src/Content/Text/BBCode.php:1873
#: src/Content/Text/BBCode.php:1877
msgid "Invalid link protocol"
msgstr ""
@ -8264,6 +8080,10 @@ msgstr ""
msgid "Ask me"
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 ""
@ -8272,6 +8092,41 @@ msgstr ""
msgid "Clear notifications"
msgstr ""
#: src/Content/Nav.php:97 src/Module/Login.php:311
#: view/theme/frio/theme.php:256
msgid "Logout"
msgstr ""
#: src/Content/Nav.php:97 view/theme/frio/theme.php:256
msgid "End this session"
msgstr ""
#: src/Content/Nav.php:100 src/Content/Nav.php:181
#: view/theme/frio/theme.php:259
msgid "Your posts and conversations"
msgstr ""
#: src/Content/Nav.php:101 view/theme/frio/theme.php:260
msgid "Your profile page"
msgstr ""
#: src/Content/Nav.php:102 view/theme/frio/theme.php:261
msgid "Your photos"
msgstr ""
#: src/Content/Nav.php:103 src/Model/Profile.php:912 src/Model/Profile.php:915
#: view/theme/frio/theme.php:262
msgid "Videos"
msgstr ""
#: src/Content/Nav.php:103 view/theme/frio/theme.php:262
msgid "Your videos"
msgstr ""
#: src/Content/Nav.php:104 view/theme/frio/theme.php:263
msgid "Your events"
msgstr ""
#: src/Content/Nav.php:105
msgid "Personal notes"
msgstr ""
@ -8316,6 +8171,11 @@ msgstr ""
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 ""
#: src/Content/Nav.php:172
msgid "Directory"
msgstr ""
@ -8328,6 +8188,10 @@ msgstr ""
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 ""
@ -8348,6 +8212,10 @@ msgstr ""
msgid "Mark all system notifications seen"
msgstr ""
#: src/Content/Nav.php:195 view/theme/frio/theme.php:268
msgid "Private mail"
msgstr ""
#: src/Content/Nav.php:196
msgid "Inbox"
msgstr ""
@ -8364,6 +8232,10 @@ msgstr ""
msgid "Manage other pages"
msgstr ""
#: src/Content/Nav.php:206 view/theme/frio/theme.php:269
msgid "Account settings"
msgstr ""
#: src/Content/Nav.php:209 src/Model/Profile.php:372
msgid "Profiles"
msgstr ""
@ -8372,6 +8244,10 @@ msgstr ""
msgid "Manage/Edit Profiles"
msgstr ""
#: src/Content/Nav.php:212 view/theme/frio/theme.php:270
msgid "Manage/edit friends and contacts"
msgstr ""
#: src/Content/Nav.php:217
msgid "Site setup and configuration"
msgstr ""
@ -8384,6 +8260,26 @@ msgstr ""
msgid "Site map"
msgstr ""
#: src/Content/OEmbed.php:253
msgid "Embedding disabled"
msgstr ""
#: src/Content/OEmbed.php:373
msgid "Embedded content"
msgstr ""
#: src/Content/Widget/CalendarExport.php:61
msgid "Export"
msgstr ""
#: src/Content/Widget/CalendarExport.php:62
msgid "Export calendar as ical"
msgstr ""
#: src/Content/Widget/CalendarExport.php:63
msgid "Export calendar as csv"
msgstr ""
#: src/Content/Feature.php:79
msgid "General Features"
msgstr ""
@ -8595,26 +8491,6 @@ msgstr ""
msgid "Display membership date in profile"
msgstr ""
#: src/Content/OEmbed.php:253
msgid "Embedding disabled"
msgstr ""
#: src/Content/OEmbed.php:373
msgid "Embedded content"
msgstr ""
#: src/Content/Widget/CalendarExport.php:61
msgid "Export"
msgstr ""
#: src/Content/Widget/CalendarExport.php:62
msgid "Export calendar as ical"
msgstr ""
#: src/Content/Widget/CalendarExport.php:63
msgid "Export calendar as csv"
msgstr ""
#: src/Content/Widget.php:33
msgid "Add New Contact"
msgstr ""
@ -8646,10 +8522,18 @@ msgstr ""
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 ""
#: src/Content/Widget.php:67 view/theme/vier/theme.php:204
msgid "Invite Friends"
msgstr ""
#: src/Content/Widget.php:68
msgid "View Global Directory"
msgstr ""
@ -8843,6 +8727,56 @@ msgstr ""
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 ""
#: src/Model/Group.php:381
msgid "edit"
msgstr ""
#: src/Model/Group.php:405
msgid "Edit group"
msgstr ""
#: src/Model/Group.php:406
msgid "Contacts not in any group"
msgstr ""
#: src/Model/Group.php:407
msgid "Create a new group"
msgstr ""
#: src/Model/Group.php:409
msgid "Edit groups"
msgstr ""
#: src/Model/Contact.php:645
msgid "Drop Contact"
msgstr ""
@ -8984,56 +8918,6 @@ msgstr ""
msgid "Hide map"
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 ""
#: src/Model/Group.php:381
msgid "edit"
msgstr ""
#: src/Model/Group.php:405
msgid "Edit group"
msgstr ""
#: src/Model/Group.php:406
msgid "Contacts not in any group"
msgstr ""
#: src/Model/Group.php:407
msgid "Create a new group"
msgstr ""
#: src/Model/Group.php:409
msgid "Edit groups"
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/User.php:144
msgid "Login failed"
msgstr ""
@ -9108,6 +8992,10 @@ msgstr ""
msgid "An error occurred during registration. Please try again."
msgstr ""
#: src/Model/User.php:488 view/theme/duepuntozero/config.php:54
msgid "default"
msgstr ""
#: src/Model/User.php:493
msgid "An error occurred creating your default profile. Please try again."
msgstr ""
@ -9145,55 +9033,11 @@ msgid ""
"\t\t"
msgstr ""
#: src/Model/User.php:615
#, php-format
msgid ""
"\n"
"\t\t\tThe login details are as follows:\n"
"\t\t\t\tSite Location:\t%3$s\n"
"\t\t\t\tLogin Name:\t%1$s\n"
"\t\t\t\tPassword:\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"
"\n"
"\t\t\tThank you and welcome to %2$s."
msgstr ""
#: src/Protocol/DFRN.php:1396
#, php-format
msgid "%s\\'s birthday"
msgstr ""
#: src/Protocol/Diaspora.php:2647
msgid "Sharing notification from Diaspora network"
msgstr ""
#: src/Protocol/Diaspora.php:3732
msgid "Attachments:"
msgstr ""
#: src/Protocol/OStatus.php:1799
#, php-format
msgid "%s is now following %s."
@ -9212,50 +9056,18 @@ msgstr ""
msgid "stopped following"
msgstr ""
#: src/Protocol/Diaspora.php:2647
msgid "Sharing notification from Diaspora network"
msgstr ""
#: src/Protocol/Diaspora.php:3732
msgid "Attachments:"
msgstr ""
#: src/Worker/Delivery.php:390
msgid "(no subject)"
msgstr ""
#: src/Module/Login.php:282
msgid "Create a New Account"
msgstr ""
#: src/Module/Login.php:315
msgid "Password: "
msgstr ""
#: src/Module/Login.php:316
msgid "Remember me"
msgstr ""
#: src/Module/Login.php:319
msgid "Or login using OpenID: "
msgstr ""
#: src/Module/Login.php:325
msgid "Forgot your password?"
msgstr ""
#: src/Module/Login.php:328
msgid "Website Terms of Service"
msgstr ""
#: src/Module/Login.php:329
msgid "terms of service"
msgstr ""
#: src/Module/Login.php:331
msgid "Website Privacy Policy"
msgstr ""
#: src/Module/Login.php:332
msgid "privacy policy"
msgstr ""
#: src/Module/Logout.php:28
msgid "Logged out."
msgstr ""
#: src/Object/Post.php:128
msgid "This entry was edited"
msgstr ""
@ -9379,19 +9191,243 @@ msgstr ""
msgid "Video"
msgstr ""
#: src/App.php:517
#: src/Module/Login.php:282
msgid "Create a New Account"
msgstr ""
#: src/Module/Login.php:315
msgid "Password: "
msgstr ""
#: src/Module/Login.php:316
msgid "Remember me"
msgstr ""
#: src/Module/Login.php:319
msgid "Or login using OpenID: "
msgstr ""
#: src/Module/Login.php:325
msgid "Forgot your password?"
msgstr ""
#: src/Module/Login.php:328
msgid "Website Terms of Service"
msgstr ""
#: src/Module/Login.php:329
msgid "terms of service"
msgstr ""
#: src/Module/Login.php:331
msgid "Website Privacy Policy"
msgstr ""
#: src/Module/Login.php:332
msgid "privacy policy"
msgstr ""
#: src/Module/Logout.php:28
msgid "Logged out."
msgstr ""
#: src/App.php:511
msgid "Delete this item?"
msgstr ""
#: src/App.php:519
#: src/App.php:513
msgid "show fewer"
msgstr ""
#: view/theme/duepuntozero/config.php:55
msgid "greenzero"
msgstr ""
#: view/theme/duepuntozero/config.php:56
msgid "purplezero"
msgstr ""
#: view/theme/duepuntozero/config.php:57
msgid "easterbunny"
msgstr ""
#: view/theme/duepuntozero/config.php:58
msgid "darkzero"
msgstr ""
#: view/theme/duepuntozero/config.php:59
msgid "comix"
msgstr ""
#: view/theme/duepuntozero/config.php:60
msgid "slackr"
msgstr ""
#: view/theme/duepuntozero/config.php:74
msgid "Variations"
msgstr ""
#: view/theme/frio/php/Image.php:25
msgid "Repeat the image"
msgstr ""
#: 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 ""
#: 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 ""
#: 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 ""
#: view/theme/frio/config.php:117
msgid "Navigation bar background color"
msgstr ""
#: view/theme/frio/config.php:118
msgid "Navigation bar icon color "
msgstr ""
#: view/theme/frio/config.php:119
msgid "Link color"
msgstr ""
#: view/theme/frio/config.php:120
msgid "Set the background color"
msgstr ""
#: view/theme/frio/config.php:121
msgid "Content background opacity"
msgstr ""
#: view/theme/frio/config.php:122
msgid "Set the background image"
msgstr ""
#: view/theme/frio/config.php:127
msgid "Login page background image"
msgstr ""
#: view/theme/frio/config.php:130
msgid "Login page background color"
msgstr ""
#: 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 ""
#: view/theme/frio/theme.php:243
msgid "Visitor"
msgstr ""
#: view/theme/quattro/config.php:76
msgid "Alignment"
msgstr ""
#: view/theme/quattro/config.php:76
msgid "Left"
msgstr ""
#: view/theme/quattro/config.php:76
msgid "Center"
msgstr ""
#: view/theme/quattro/config.php:77
msgid "Color scheme"
msgstr ""
#: view/theme/quattro/config.php:78
msgid "Posts font size"
msgstr ""
#: view/theme/quattro/config.php:79
msgid "Textareas font size"
msgstr ""
#: view/theme/vier/config.php:75
msgid "Comma separated list of helper forums"
msgstr ""
#: view/theme/vier/config.php:122
msgid "Set style"
msgstr ""
#: view/theme/vier/config.php:123
msgid "Community Pages"
msgstr ""
#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150
msgid "Community Profiles"
msgstr ""
#: 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 ""
#: view/theme/vier/theme.php:292
msgid "Quick Start"
msgstr ""
#: index.php:444
msgid "toggle mobile"
msgstr ""
#: boot.php:791
#, php-format
msgid "Update %s failed. See error logs."
msgstr ""
#: index.php:444
msgid "toggle mobile"
msgstr ""

View file

@ -0,0 +1,12 @@
<div id="adminpage">
<h1>{{$title}} - {{$page}}</h1>
<p>{{$intro}}</p>
<form action="{{$baseurl}}/admin/tos" method="post">
<input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
{{include file="field_checkbox.tpl" field=$displaytos}}
{{include file="field_checkbox.tpl" field=$displayprivstatement}}
{{include file="field_textarea.tpl" field=$tostext}}
<div class="submit"><input type="submit" name="page_tos" value="{{$submit|escape:'html'}}" /></div>
</form>
</div>

View file

@ -64,6 +64,10 @@
{{$publish}}
{{if $showtoslink}}
<p><a href="{{$baseurl}}/tos">{{$tostext}}</a></p>
{{/if}}
<div id="register-submit-wrapper">
<input type="submit" name="submit" id="register-submit-button" value="{{$regbutt|escape:'html'}}" />
</div>

10
view/templates/tos.tpl Normal file
View file

@ -0,0 +1,10 @@
<h1>{{$title}}</h1>
{{$tostext}}
{{if $displayprivstatement}}
<h2>{{$privstatementtitle}}</h2>
<p>{{$privoperate}}</p>
<p>{{$privdelete}}</p>
{{/if}}