"Mark as..." dropdown in item-sidebar.php is not pulling from translation, because it's trying to pull whole sentence, eg.
<option><?php _e("Mark as...", 'bender'); ?></option>
should be
<option><?php _e("Mark as", 'bender'); ?>...</option>
Problem with all the items in the dropdown list.