diff options
author | Mario <mario@mariovavti.com> | 2018-08-12 11:59:07 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-08-12 13:59:49 +0200 |
commit | 99066ae939dcdfdf5d3f44bd1d2455dceb1fe68e (patch) | |
tree | 433e83cb3c5d6f5d3d46a2b77d9f02649c03f8d4 | |
parent | 7c842f31705449f4032df996a929289747fe6ab1 (diff) | |
download | volse-hubzilla-99066ae939dcdfdf5d3f44bd1d2455dceb1fe68e.tar.gz volse-hubzilla-99066ae939dcdfdf5d3f44bd1d2455dceb1fe68e.tar.bz2 volse-hubzilla-99066ae939dcdfdf5d3f44bd1d2455dceb1fe68e.zip |
Merge branch 'patch-16' into 'dev'
Add translation for missed string
See merge request hubzilla/core!1253
(cherry picked from commit 5ff0f09a4509955dede91fdb38711e1c389c9ae4)
d3362dfa Add translation for missed string
-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.")), |