Skip to content

Commit

Permalink
Merge pull request #50 from FlexConfirmMail/translate-tooltip-of-buttons
Browse files Browse the repository at this point in the history
Localize tooltip of buttons
  • Loading branch information
HashidaTKS authored Jul 25, 2024
2 parents 3a29146 + e0d17d3 commit 3d69d08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webextensions/options/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,15 +240,15 @@ function rebuildUserRulesUI() {
</select></label></p>
<button id=${safeAttrValue('userRule-ui-button-moveUp:' + id)}
class="userRule-button-moveUp ${configs.allowRearrangeRules ? '' : 'hidden'}"
title="config_userRules_moveUp_tooltiptext"
title="${safeLocalizedText('config_userRules_moveUp_tooltiptext')}"
>${safeLocalizedText('config_userRules_moveUp_label')}</button>
<button id=${safeAttrValue('userRule-ui-button-moveDown:' + id)}
class="userRule-button-moveDown ${configs.allowRearrangeRules ? '' : 'hidden'}"
title="config_userRules_moveDown_tooltiptext"
title="${safeLocalizedText('config_userRules_moveDown_tooltiptext')}"
>${safeLocalizedText('config_userRules_moveDown_label')}</button>
<button id=${safeAttrValue('userRule-ui-button-remove:' + id)}
class="userRule-button-remove ${configs.allowRemoveRules ? '' : 'hidden'}"
title="config_userRules_remove_tooltiptext"
title="${safeLocalizedText('config_userRules_remove_tooltiptext')}"
>${safeLocalizedText('config_userRules_remove_label')}</button>
</div>
<ul id=${safeAttrValue('userRule-ui-itemsSource-group:' + id)}>
Expand Down

0 comments on commit 3d69d08

Please sign in to comment.