diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-05-29 15:23:51 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-05-29 15:23:51 +0200 |
commit | d11d130021959828a03ac67ff77f607201f525e0 (patch) | |
tree | 2e57925ee2479614bf1d0a85f43930895bc3959f /mod/menu.php | |
parent | b8d328076384ff48be47f59366aea8b1e1cc04a1 (diff) | |
download | volse-hubzilla-d11d130021959828a03ac67ff77f607201f525e0.tar.gz volse-hubzilla-d11d130021959828a03ac67ff77f607201f525e0.tar.bz2 volse-hubzilla-d11d130021959828a03ac67ff77f607201f525e0.zip |
add some yes/no labels and minor template fixes
Diffstat (limited to 'mod/menu.php')
-rw-r--r-- | mod/menu.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/menu.php b/mod/menu.php index 2f502ca17..f46dc9471 100644 --- a/mod/menu.php +++ b/mod/menu.php @@ -142,9 +142,9 @@ function menu_content(&$a) { '$editcontents' => t('Edit menu contents'), '$menu_name' => array('menu_name', t('Menu name'), $m['menu_name'], t('Must be unique, only seen by you'), '*'), '$menu_desc' => array('menu_desc', t('Menu title'), $m['menu_desc'], t('Menu title as seen by others'), ''), - '$menu_bookmark' => array('menu_bookmark', t('Allow bookmarks'), (($m['menu_flags'] & MENU_BOOKMARK) ? 1 : 0), t('Menu may be used to store saved bookmarks'), ''), + '$menu_bookmark' => array('menu_bookmark', t('Allow bookmarks'), (($m['menu_flags'] & MENU_BOOKMARK) ? 1 : 0), t('Menu may be used to store saved bookmarks'), array(t('No'), t('Yes'))), '$menu_system' => (($m['menu_flags'] & MENU_SYSTEM) ? 1 : 0), - '$submit' => t('Modify') + '$submit' => t('Submit and proceed') )); return $o; |