i18n fixes. Bug 489. Patch from nbachiyski.

git-svn-id: https://develop.svn.wordpress.org/trunk@1879 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2004-11-25 04:11:57 +00:00
parent 5710a6ac38
commit 8b86dd5112
2 changed files with 5 additions and 5 deletions

View File

@@ -15,8 +15,8 @@ $menu[40] = array(__('Presentation'), 8, 'themes.php');
$menu[45] = array(__('Upload'), get_settings('fileupload_minlevel'), 'upload.php');
ksort($menu); // So other files can plugin
$submenu['post.php'][5] = array('Write Post', 1, 'post.php');
$submenu['post.php'][10] = array('Write Page', 5, 'page-new.php');
$submenu['post.php'][5] = array(__('Write Post'), 1, 'post.php');
$submenu['post.php'][10] = array(__('Write Page'), 5, 'page-new.php');
$submenu['edit.php'][5] = array(__('Posts'), 1, 'edit.php');
$submenu['edit.php'][10] = array(__('Pages'), 5, 'edit-pages.php');
@@ -53,4 +53,4 @@ if (! user_can_access_admin_page()) {
die( __('You have do not have sufficient permissions to access this page.') );
}
?>
?>