diff --git a/tgui/packages/tgui/interfaces/CrewManifest.jsx b/tgui/packages/tgui/interfaces/CrewManifest.jsx
index 4039eb8fc3a2f..3353750855ed4 100644
--- a/tgui/packages/tgui/interfaces/CrewManifest.jsx
+++ b/tgui/packages/tgui/interfaces/CrewManifest.jsx
@@ -2,15 +2,16 @@ import { Icon, Section, Table, Tooltip } from 'tgui-core/components';
import { classes } from 'tgui-core/react';
import { useBackend } from '../backend';
+import { DEPARTMENTS_RU, JOBS_RU } from '../bandastation/ru_jobs';
import { Window } from '../layouts';
const commandJobs = [
- 'Head of Personnel',
- 'Head of Security',
- 'Chief Engineer',
- 'Research Director',
- 'Chief Medical Officer',
- 'Quartermaster',
+ JOBS_RU['Head of Personnel'],
+ JOBS_RU['Head of Security'],
+ JOBS_RU['Chief Engineer'],
+ JOBS_RU['Research Director'],
+ JOBS_RU['Chief Medical Officer'],
+ JOBS_RU['Quartermaster'],
];
export const CrewManifest = (props) => {
@@ -26,9 +27,9 @@ export const CrewManifest = (props) => {
className={'CrewManifest--' + dept}
key={dept}
title={
- dept +
+ (DEPARTMENTS_RU[dept] || dept) +
(dept !== 'Misc'
- ? ` (${positions[dept].open} positions open)`
+ ? ` (позиций открыто: ${positions[dept].open})`
: '')
}
>
@@ -57,8 +58,8 @@ export const CrewManifest = (props) => {
)}
- {crewMember.trim === 'Captain' && (
-
+ {crewMember.trim === JOBS_RU['Captain'] && (
+
{
)}
{commandJobs.includes(crewMember.trim) && (
-
+