missing strings fixed. see #102
This commit is contained in:
parent
00e415b40f
commit
82629fb495
1 changed files with 2 additions and 2 deletions
|
|
@ -241,13 +241,13 @@ document.addEventListener('DOMContentLoaded', async () => {
|
|||
additionalInfoRow.style.display = 'table-row';
|
||||
let subspan = chatgptWebAdditionalPropToggle.querySelector('td span');
|
||||
if (subspan) {
|
||||
subspan.innerText = browser.i18n.getMessage('customPrompts_hide_additional_info');
|
||||
subspan.innerText = browser.i18n.getMessage('customPrompts_hide_additional_info') + ' [ChatGPT Web]';
|
||||
}
|
||||
} else {
|
||||
additionalInfoRow.style.display = 'none';
|
||||
let subspan = chatgptWebAdditionalPropToggle.querySelector('td span');
|
||||
if (subspan) {
|
||||
subspan.innerText = browser.i18n.getMessage('customPrompts_show_additional_info');
|
||||
subspan.innerText = browser.i18n.getMessage('customPrompts_show_additional_info') + ' [ChatGPT Web]';
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue