aboutsummaryrefslogtreecommitdiffstats
path: root/mod/menu.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-02-02 16:51:11 -0800
committerfriendica <info@friendica.com>2014-02-02 16:51:11 -0800
commit3eed73d5195bbf736e2e243b512155b6933108a1 (patch)
tree643f36eff872a4d3c3c6edbacfa20ab23d558b38 /mod/menu.php
parent2768262f9386e063efb4d7e276c5a7108c40d44b (diff)
downloadvolse-hubzilla-3eed73d5195bbf736e2e243b512155b6933108a1.tar.gz
volse-hubzilla-3eed73d5195bbf736e2e243b512155b6933108a1.tar.bz2
volse-hubzilla-3eed73d5195bbf736e2e243b512155b6933108a1.zip
minor text change "can" -> "may"
Diffstat (limited to 'mod/menu.php')
-rw-r--r--mod/menu.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/menu.php b/mod/menu.php
index 3d6b9939c..dd8fe8300 100644
--- a/mod/menu.php
+++ b/mod/menu.php
@@ -78,7 +78,7 @@ function menu_content(&$a) {
'$header' => t('New Menu'),
'$menu_name' => array('menu_name', t('Menu name'), '', t('Must be unique, only seen by you'), '*'),
'$menu_desc' => array('menu_desc', t('Menu title'), '', t('Menu title as seen by others'), ''),
- '$menu_bookmark' => array('menu_bookmark', t('Allow bookmarks'), 0 , t('Menu can be used to store saved bookmarks'), ''),
+ '$menu_bookmark' => array('menu_bookmark', t('Allow bookmarks'), 0 , t('Menu may be used to store saved bookmarks'), ''),
'$submit' => t('Create')
));
return $o;
@@ -107,7 +107,7 @@ 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 can 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'), ''),
'$submit' => t('Modify')
));
return $o;