diff options
author | Mario <mario@mariovavti.com> | 2018-08-12 13:59:07 +0200 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-08-12 13:59:07 +0200 |
commit | 5ff0f09a4509955dede91fdb38711e1c389c9ae4 (patch) | |
tree | 0dc84b6840fff3986b3e1fef623eb982797d392c /Zotlabs/Module/Admin | |
parent | 7890157f52378ec7a643e76e3b5c88fa23795d32 (diff) | |
parent | d3362dfa0c7e1cbd76342e83c480effc1b8765f8 (diff) | |
download | volse-hubzilla-5ff0f09a4509955dede91fdb38711e1c389c9ae4.tar.gz volse-hubzilla-5ff0f09a4509955dede91fdb38711e1c389c9ae4.tar.bz2 volse-hubzilla-5ff0f09a4509955dede91fdb38711e1c389c9ae4.zip |
Merge branch 'patch-16' into 'dev'
Add translation for missed string
See merge request hubzilla/core!1253
Diffstat (limited to 'Zotlabs/Module/Admin')
-rw-r--r-- | Zotlabs/Module/Admin/Site.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Admin/Site.php b/Zotlabs/Module/Admin/Site.php index 292de4c3a..5912a7c97 100644 --- a/Zotlabs/Module/Admin/Site.php +++ b/Zotlabs/Module/Admin/Site.php @@ -332,7 +332,7 @@ class Site { '$register_policy' => array('register_policy', t("Does this site allow new member registration?"), get_config('system','register_policy'), "", $register_choices), '$invite_only' => array('invite_only', t("Invitation only"), get_config('system','invitation_only'), t("Only allow new member registrations with an invitation code. Above register policy must be set to Yes.")), '$minimum_age' => array('minimum_age', t("Minimum age"), (x(get_config('system','minimum_age'))?get_config('system','minimum_age'):13), t("Minimum age (in years) for who may register on this site.")), - '$access_policy' => array('access_policy', t("Which best describes the types of account offered by this hub?"), get_config('system','access_policy'), "This is displayed on the public server site list.", $access_choices), + '$access_policy' => array('access_policy', t("Which best describes the types of account offered by this hub?"), get_config('system','access_policy'), t("This is displayed on the public server site list."), $access_choices), '$register_text' => array('register_text', t("Register text"), htmlspecialchars(get_config('system','register_text'), ENT_QUOTES, 'UTF-8'), t("Will be displayed prominently on the registration page.")), '$role' => $role, '$frontpage' => array('frontpage', t("Site homepage to show visitors (default: login box)"), get_config('system','frontpage'), t("example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file.")), |