Changing Menubar text
Hi everyone,
So I have a standard menu-bar component that I'm using on an IdeaPage quilt. I have one menu-bar that controls options for the idea itself and then one for each comment on the idea. The problem is that both types of menu-bar dropdown utilize the same text key, menubar.button.thread_options. This is problematic because I'd like the Idea options to use the default, "Idea options" but for each comment, I'd like the dropdown text to read "Comment options". How can I get the dropdown to use different text depending on the context? Does the "menu-bar" component take any parameters that would help with this?
Cheers,
Tripp
Our text keys are not node aware. They would know the difference between a root message and a comment, an Idea and a Blog, but not one Idea from another Idea.
Best bet might be using a psuedo class like:
options-menu:after{
content: 'Comment Options';
}