
I will first state that I am 3 days new to modifying a Character Sheets beyond graphic changes. That said I have been using roll20 for sometime. I am trying to modify the names of a few skills on the existing Genesys Character sheet (ex. Mechanics -> Tech-Use). I was able to update the Translator file to do this, and see the new name on the Character sheet... however when I use the dice roll button, the results (roll table) that shows up in the chat still utilize the old/base name (Mechanics) of the skill rather than the translator modified one (Tech-Use). I tracked down the code where it is happening: <tr data-i18n-list-item="mechanics" class="hide-mechanics hide-skill-row"> <td> <label data-i18n="mechanicsint">Mechanics (Int)</label> <label class="hideskills"><input type="checkbox" name="attr_hide-mechanics" value="1"/> <span data-i18n="hide">Hide</span></label> </td> <td><input name='attr_careerskillMechanics' type="checkbox" value="1"></td> <td><input type="number" name="attr_rankMechanics" max="6" min="0" value="0" /></td> <td> <input class="sheet-yd" type="hidden" name="attr_yMechanics" value="(((@{intellect} + @{rankMechanics}) - abs(@{intellect} - @{rankMechanics})) / 2)" disabled><span></span> <input class="sheet-gd" type="hidden" name="attr_gMechanics" value="((((@{intellect} + @{rankMechanics}) + abs(@{intellect} - @{rankMechanics})) / 2) - @{yMechanics})" disabled><span></span> </td> <td> <div class="sheet-dice-icon"></div> <div class="sheet-dice-input"> <input type="text" name="attr_diceMechanics" /> </div> </td> <td><button type='roll' name='roll_Mechanics' value='!eed characterID(@{character_id}) label(skill:Mechanics) @{diceMechanics} skill(@{rankMechanics}|@{intellect}|Mechanics) @{dicePool} (gmdice)'></button></td> This seems to be the "problem", in the button call: label(skill:Mechanics) However I am not sure what proper syntax would be change the code to use the translator value. Wondering if there is a more experienced soul who could advise me, and perhaps point me to the best place to learn about using the translator values.