diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-11-24 10:18:24 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-11-24 10:18:24 +0000 |
commit | 827f064debf8e04ebe6183dc4cd96e0cd022300d (patch) | |
tree | 2feec3257b82924471417f51841f659117002515 /modules/node/node.module | |
parent | f191e197eedbaa23a8c68f2fad88196473edb4b4 (diff) | |
download | brdo-827f064debf8e04ebe6183dc4cd96e0cd022300d.tar.gz brdo-827f064debf8e04ebe6183dc4cd96e0cd022300d.tar.bz2 |
- Patch # #98366 by webchick and ac: simplified strings for translators.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 3e776427f..c85a59e2e 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1044,7 +1044,7 @@ function node_menu($may_cache) { if ($may_cache) { $items[] = array('path' => 'admin/content', 'title' => t('Content management'), - 'description' => t('Manage your site\'s content.'), + 'description' => t("Manage your site's content."), 'position' => 'left', 'weight' => -10, 'callback' => 'system_admin_menu_block_page', @@ -1054,7 +1054,7 @@ function node_menu($may_cache) { $items[] = array( 'path' => 'admin/content/node', 'title' => t('Posts'), - 'description' => t('View, edit, and delete your site\'s content.'), + 'description' => t("View, edit, and delete your site's content."), 'callback' => 'node_admin_content', 'access' => user_access('administer nodes') ); |