Changing "Stories" to something else?

Hi!
Sorry if this has been asked (or is somewhere completely obvious), but I couldn’t find the topic.
If I wanted to change the “Stories” terminology to something else, like “Objects” would that be possible?
Where would I do that?

Thanks!
Jovi

Actually I found this. In custom.php line 109

function mh_item_label($which=null){
	if($which=='singular'){
		return ($singular=get_theme_option('item_label_singular')) ? $singular : __('Item'); // changed from "Story:
	}
	elseif($which=='plural'){
		return ($plural=get_theme_option('item_label_plural')) ? $plural : __('Items');
	}else{
		return __('Item');
	}
}

Hi @thejovijuan, there’s actually a theme setting where you can change the labels used for Stories and Tours.

Thanks! I feel really dumb right now… :slight_smile:

Well, you tracked down the relevant function in the right file so that’s something! :laughing: