In my configuration project I have Set a limitied number of buttons for my users. Now with 2.5 release I need to put the esri_editing_SaveEditsBtn in the tool bar too. The only problem is that I want the caption to say "Save Edits" and not "Save". I have the Save Project button their too, but want to the edits button to have the different caption. Is there a way to simply do this or do i need to define a button with a new class and put Project.Current.SaveEditsAsync(); as the only function in that class? Then make the new button ref in the daml with my updated caption?

//OLD, i want to changed the caption for this Button to say "Save Edits" to distinguish it from Save for Project
<button refID="esri_editing_SaveEditsBtn" size="large" />
//I want to do something like this to override it? Or do I have to do the code to accomplish this
<button id="esri_editing_SaveEditsBtn" caption="Save Edits"
</button>