Fix it. If you using U can post and another user can change your nextgen gallery title and description.
Open Nextgen Plugin in root folder > Admin > media-upload.php
Find:
function ngg_wp_upload_tabs ($tabs) {
$newtab = array('nextgen' => __('NextGEN Gallery','nggallery'));
return array_merge($tabs,$newtab);
}
Replace With :
function ngg_wp_upload_tabs ($tabs) {
$newtab = array('' => __(''));
return array_merge($tabs,$newtab);
}
Or with this :
function ngg_wp_upload_tabs ($tabs) {
$newtab = array(‘library’ => __(‘Media Library’));
return array_merge($tabs,$newtab);
}