diff --git a/static/webui/script.js b/static/webui/script.js index 109d7ce4..9c00d30e 100644 --- a/static/webui/script.js +++ b/static/webui/script.js @@ -1059,6 +1059,13 @@ function updateInventory() { const td = document.createElement("td"); td.textContent = itemMap[item.ItemType]?.name ?? item.ItemType; tr.appendChild(td); + if (item.ItemType == "/Lotus/Types/Boosters/ReviveBooster") { + td.textContent += " "; + const abbr = document.createElement("abbr"); + abbr.innerHTML = ``; + abbr.title = loc("code_reviveBoosterDesc"); + td.appendChild(abbr); + } } { const td = document.createElement("td"); diff --git a/static/webui/translations/de.js b/static/webui/translations/de.js index 930cb94b..8666af40 100644 --- a/static/webui/translations/de.js +++ b/static/webui/translations/de.js @@ -80,6 +80,7 @@ dict = { code_drifterFaceName: `Drifter-Gesicht: |INDEX|`, code_operatorFaceName: `Operator-Gesicht: |INDEX|`, code_reviveBooster: `Wiederbelebungsbooster`, + code_reviveBoosterDesc: `[UNTRANSLATED] Set revive count to 4. Disable self-revive restriction on Archon Hunt missions.`, code_succChange: `Erfolgreich geändert.`, code_requiredInvigorationUpgrade: `Du musst sowohl ein Offensiv- als auch ein Support-Upgrade auswählen.`, code_feature_1: `[UNTRANSLATED] Orokin Reactor`, diff --git a/static/webui/translations/en.js b/static/webui/translations/en.js index ef124b68..b5a808b4 100644 --- a/static/webui/translations/en.js +++ b/static/webui/translations/en.js @@ -79,6 +79,7 @@ dict = { code_drifterFaceName: `Drifter Visage |INDEX|`, code_operatorFaceName: `Operator Visage |INDEX|`, code_reviveBooster: `Revive Booster`, + code_reviveBoosterDesc: `Set revive count to 4. Disable self-revive restriction on Archon Hunt missions.`, code_succChange: `Successfully changed.`, code_requiredInvigorationUpgrade: `You must select both an offensive & utility upgrade.`, code_feature_1: `Orokin Reactor`, diff --git a/static/webui/translations/es.js b/static/webui/translations/es.js index bca3f965..04a4a08a 100644 --- a/static/webui/translations/es.js +++ b/static/webui/translations/es.js @@ -80,6 +80,7 @@ dict = { code_drifterFaceName: `Rostro del Viajero |INDEX|`, code_operatorFaceName: `Rostro del operador |INDEX|`, code_reviveBooster: `Potenciador de reanimaciones`, + code_reviveBoosterDesc: `[UNTRANSLATED] Set revive count to 4. Disable self-revive restriction on Archon Hunt missions.`, code_succChange: `Cambiado correctamente`, code_requiredInvigorationUpgrade: `Debes seleccionar una mejora ofensiva y una mejora de utilidad.`, code_feature_1: `[UNTRANSLATED] Orokin Reactor`, diff --git a/static/webui/translations/fr.js b/static/webui/translations/fr.js index cf280014..ac91f3a8 100644 --- a/static/webui/translations/fr.js +++ b/static/webui/translations/fr.js @@ -80,6 +80,7 @@ dict = { code_drifterFaceName: `Visage du Voyageur |INDEX|`, code_operatorFaceName: `Visage de l'Opérateur |INDEX|`, code_reviveBooster: `Booster de Réanimation`, + code_reviveBoosterDesc: `[UNTRANSLATED] Set revive count to 4. Disable self-revive restriction on Archon Hunt missions.`, code_succChange: `Changement effectué.`, code_requiredInvigorationUpgrade: `Invigoration offensive et défensive requises.`, code_feature_1: `[UNTRANSLATED] Orokin Reactor`, diff --git a/static/webui/translations/ru.js b/static/webui/translations/ru.js index 6b5a51a4..d5b0c633 100644 --- a/static/webui/translations/ru.js +++ b/static/webui/translations/ru.js @@ -80,6 +80,7 @@ dict = { code_drifterFaceName: `Внешность скитальца: |INDEX|`, code_operatorFaceName: `Внешность оператора: |INDEX|`, code_reviveBooster: `Усилитель возрождения`, + code_reviveBoosterDesc: `Устанавливает количество возрождений на 4. Снимает ограничение на самовоскрешение на миссиях Охоты на архонтов.`, code_succChange: `Успешно изменено.`, code_requiredInvigorationUpgrade: `Вы должны выбрать как атакующее, так и вспомогательное улучшение.`, code_feature_1: `Реактор Орокин`, diff --git a/static/webui/translations/uk.js b/static/webui/translations/uk.js index 0bad609f..b45d11e1 100644 --- a/static/webui/translations/uk.js +++ b/static/webui/translations/uk.js @@ -80,6 +80,7 @@ dict = { code_drifterFaceName: `Зовнішність мандрівника: |INDEX|`, code_operatorFaceName: `Зовнішність оператора: |INDEX|`, code_reviveBooster: `Збільшувач зцілення`, + code_reviveBoosterDesc: `[UNTRANSLATED] Set revive count to 4. Disable self-revive restriction on Archon Hunt missions.`, code_succChange: `Успішно змінено.`, code_requiredInvigorationUpgrade: `Ви повинні вибрати як атакуюче, так і допоміжне вдосконалення.`, code_feature_1: `[UNTRANSLATED] Orokin Reactor`, diff --git a/static/webui/translations/zh.js b/static/webui/translations/zh.js index 2c5f6af4..4affcf65 100644 --- a/static/webui/translations/zh.js +++ b/static/webui/translations/zh.js @@ -80,6 +80,7 @@ dict = { code_drifterFaceName: `漂泊者面部 |INDEX|`, code_operatorFaceName: `指挥官面部 |INDEX|`, code_reviveBooster: `复活加速器`, + code_reviveBoosterDesc: `[UNTRANSLATED] Set revive count to 4. Disable self-revive restriction on Archon Hunt missions.`, code_succChange: `更改成功`, code_requiredInvigorationUpgrade: `[UNTRANSLATED] You must select both an offensive & utility upgrade.`, code_feature_1: `[UNTRANSLATED] Orokin Reactor`,