aboutsummaryrefslogtreecommitdiffstats
path: root/mod/settings.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-04-07 18:00:35 -0700
committerFriendika <info@friendika.com>2011-04-07 18:00:35 -0700
commit338ba485548f9ec1acbc9349f7db95e84c51e7eb (patch)
treed43dc2127c85e5a1df96a1aeb24e23d35d846b67 /mod/settings.php
parent3a6dfb9862c4d91f7a2f259bca447a469e19e8b5 (diff)
downloadvolse-hubzilla-338ba485548f9ec1acbc9349f7db95e84c51e7eb.tar.gz
volse-hubzilla-338ba485548f9ec1acbc9349f7db95e84c51e7eb.tar.bz2
volse-hubzilla-338ba485548f9ec1acbc9349f7db95e84c51e7eb.zip
more templates
Diffstat (limited to 'mod/settings.php')
-rw-r--r--mod/settings.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/mod/settings.php b/mod/settings.php
index 72b627d41..646ec55ea 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -285,6 +285,9 @@ function settings_content(&$a) {
else {
$opt_tpl = load_view_file("view/profile-in-directory.tpl");
$profile_in_dir = replace_macros($opt_tpl,array(
+ '$desc' => t('Publish your default profile in site directory?'),
+ '$yes_str' => t('Yes'),
+ '$no_str' => t('No'),
'$yes_selected' => (($profile['publish']) ? " checked=\"checked\" " : ""),
'$no_selected' => (($profile['publish'] == 0) ? " checked=\"checked\" " : "")
));
@@ -294,6 +297,9 @@ function settings_content(&$a) {
$opt_tpl = load_view_file("view/profile-in-netdir.tpl");
$profile_in_net_dir = replace_macros($opt_tpl,array(
+ '$desc' => t('Publish your default profile in global social directory?'),
+ '$yes_str' => t('Yes'),
+ '$no_str' => t('No'),
'$yes_selected' => (($profile['net-publish']) ? " checked=\"checked\" " : ""),
'$no_selected' => (($profile['net-publish'] == 0) ? " checked=\"checked\" " : "")
));