diff --git a/tgui/packages/tgui/interfaces/ExperimentConfigure.jsx b/tgui/packages/tgui/interfaces/ExperimentConfigure.jsx index d91bc564e4449..069cd840979f0 100644 --- a/tgui/packages/tgui/interfaces/ExperimentConfigure.jsx +++ b/tgui/packages/tgui/interfaces/ExperimentConfigure.jsx @@ -84,16 +84,14 @@ export const TechwebServer = (props) => { ? act('clear_server') : act('select_server', { ref: server.ref }) } - content={server.selected ? 'Disconnect' : 'Connect'} + content={server.selected ? 'Отключиться' : 'Подключиться'} backgroundColor={server.selected ? 'good' : 'rgba(0, 0, 0, 0.4)'} className="ExperimentTechwebServer__ConnectButton" /> - - Connectivity to this web is maintained by the following servers... - + Соединение к этой сети поддерживают следующие сервера... {server.all_servers.map((individual_servers, new_index) => ( {individual_servers} @@ -127,11 +125,11 @@ export const ExperimentConfigure = (props) => { -
+
{webs.size > 0 - ? 'Please select a techweb to connect to...' - : 'Found no servers connected to a techweb!'} + ? 'Пожалуйста, выберите техсеть для подключения...' + : 'Не найдены сервера, подключенные к техсети!'} {webs.size > 0 && Array.from(webs, ([techweb, techwebs]) => ( @@ -142,17 +140,17 @@ export const ExperimentConfigure = (props) => { {techwebs.some((e) => e.selected) && (
{(experiments.length && always_active && - 'This device is configured to attempt to perform all available' + - ' experiments, so no further configuration is necessary.') || + 'Это устройство настроено для выполнения всех доступных' + + ' экспериментов. Дальнейшие настройки не нужны.') || (experiments.length && - 'Select one of the following experiments...') || - 'No experiments found on this web'} + 'Выберите один из следующих экспериментов...') || + 'Не найдены эксперименты в этой сети'} {experiments.map((exp, i) => { @@ -171,7 +169,7 @@ export const ExperimentConfigure = (props) => { disabled={!experiments.some((e) => e.selected)} icon="flask" > - Perform Experiment + Выполнить эксперимент )} diff --git a/tgui/packages/tgui/interfaces/Techweb.jsx b/tgui/packages/tgui/interfaces/Techweb.jsx index c041d646d7d99..e9b83d459fcf0 100644 --- a/tgui/packages/tgui/interfaces/Techweb.jsx +++ b/tgui/packages/tgui/interfaces/Techweb.jsx @@ -105,10 +105,10 @@ const TechwebStart = (props) => { return (
- Console Locked + Консоль заблокирована
); @@ -117,7 +117,7 @@ const TechwebStart = (props) => { return (
- No research techweb found, please synchronize the console. + Не обнаружена техсеть. Пожалуйста, синхронизируйте консоль.
); @@ -157,7 +157,7 @@ export const TechwebContent = (props) => { - Available points: + Доступные очки:
    {Object.keys(points).map((k) => (
  • @@ -168,20 +168,20 @@ export const TechwebContent = (props) => {
- Security protocols: + Протоколы защиты: - {sec_protocols ? 'Engaged' : 'Disengaged'} + {sec_protocols ? 'включены' : 'отключены'}
{d_disk && ( @@ -191,7 +191,7 @@ export const TechwebContent = (props) => { setTechwebRoute({ route: 'disk', diskType: 'design' }) } > - Design Disk Inserted + Диск дизайнов вставлен )} @@ -203,7 +203,7 @@ export const TechwebContent = (props) => { setTechwebRoute({ route: 'disk', diskType: 'tech' }) } > - Tech Disk Inserted + Диск технологий вставлен )} @@ -269,7 +269,7 @@ const TechwebOverview = (props) => { - Web View + Просмотр техсети @@ -277,19 +277,19 @@ const TechwebOverview = (props) => { selected={!searching && tabIndex === 0} onClick={() => switchTab(0)} > - Researched + Изученные switchTab(1)} > - Available + Доступные switchTab(2)} > - Future + Будущие {!!searching && Search Results} @@ -346,20 +346,20 @@ const TechwebDiskMenu = (props) => { - Stored Data + Записанная информация {diskType === 'tech' && ( )} @@ -520,7 +520,7 @@ const TechNode = (props) => { }} value={expcompl / required_experiments.length} > - Experiments ({expcompl}/{required_experiments.length}) + Эксперименты ({expcompl}/{required_experiments.length}) ); @@ -536,7 +536,7 @@ const TechNode = (props) => { }} value={techcompl / prereq_ids.length} > - Tech ({techcompl}/{prereq_ids.length}) + Технологии ({techcompl}/{prereq_ids.length}) ); @@ -563,7 +563,7 @@ const TechNode = (props) => { setTabIndex(0); }} > - Details + Детали )} {tier > 0 && ( @@ -572,7 +572,7 @@ const TechNode = (props) => { disabled={!can_unlock || tier > 1} onClick={() => act('researchNode', { node_id: id })} > - Research + Изучить )} @@ -631,7 +631,7 @@ const TechNode = (props) => { {required_experiments.length > 0 && ( {required_experiments.map((k, index) => { const thisExp = experiments[k]; @@ -645,7 +645,7 @@ const TechNode = (props) => { {Object.keys(discount_experiments).length > 0 && ( {Object.keys(discount_experiments).map((k, index) => { const thisExp = experiments[k]; @@ -655,8 +655,8 @@ const TechNode = (props) => { return ( - Provides a discount of {discount_experiments[k]} points to all - required point pools. + Предоставляет скидку в виде {discount_experiments[k]} очков + подходящим технологиям. ); @@ -679,14 +679,14 @@ const LockedExperiment = (props) => { - Undiscovered Experiment + Неизвестный эксперимент ??? - This experiment has not been discovered yet, continue researching nodes - in the tree to discover the contents of this experiment. + Этот эксперимент еще не известен. Продолжайте изучать узлы в сети + технологий, чтобы распознать его. );