I just started using this module...it's an interesting approach that solves lots of problems. I appreciate the hard work that has gone into this, it's working pretty well for me.

IMHO the ability to change the value on the "Add Another Item" button would go a long way in improving the user interface.

My node-type is a schedule to which you can add any number of days, and then add any number of exercises to each day. There are a few small UI bugs that pop up when adding another item, but which seem to be covered elsewhere in the issue queue. At the moment there are two levels of "Add Another Item" buttons, and if the top level could be "Add Another Day" it would clear things up. To my knowledge there is no other way to accomplish this (ie: Locale or String Override) as each of these would change all instances of a string.

Thanks-

Comments

stickybenson’s picture

I have run into a similar situation where the user gets confused because it states "Item" whereas "Person" would make much more sense. Being able to change this string would be quite handy!

vood002’s picture

@stickybenson,

I'm currently just using a javascript override...the only way I could think to do it, but certainly simple and effective enough.

Something along these lines should work for you within a drupal_add_js:

<?php
Drupal.behaviors.myBehavior = function (context) {
  $("#id_of_the_button_you_want_to_rename").attr('value','The string you want to change the button value to');	
}
?>