diff --git a/products/ASC.People/Client/src/components/pages/GroupAction/Section/Body/index.js b/products/ASC.People/Client/src/components/pages/GroupAction/Section/Body/index.js index 0aea1dc831..8f8669c8e3 100644 --- a/products/ASC.People/Client/src/components/pages/GroupAction/Section/Body/index.js +++ b/products/ASC.People/Client/src/components/pages/GroupAction/Section/Body/index.js @@ -435,7 +435,7 @@ class SectionBodyContent extends React.Component { isRequired={false} hasError={false} isVertical={true} - labelText="Members" + labelText={t("Members")} > @@ -59,6 +61,7 @@ class GroupAction extends React.Component { function mapStateToProps(state) { return { settings: state.auth.settings, + language: state.auth.user.cultureName || state.auth.settings.culture, group: state.group.targetGroup }; } diff --git a/products/ASC.People/Client/src/components/pages/GroupAction/locales/en/translation.json b/products/ASC.People/Client/src/components/pages/GroupAction/locales/en/translation.json index 5a83d5466b..db08768428 100644 --- a/products/ASC.People/Client/src/components/pages/GroupAction/locales/en/translation.json +++ b/products/ASC.People/Client/src/components/pages/GroupAction/locales/en/translation.json @@ -8,5 +8,6 @@ "CustomAddEmployee": "Add {{typeUser, lowercase}}", "CustomNewDepartment": "New {{department, lowercase}}", "CustomEditDepartment": "Edit {{department, lowercase}}", - "CustomDepartmentName": "{{department}} name" + "CustomDepartmentName": "{{department}} name", + "Members": "Members" } \ No newline at end of file diff --git a/products/ASC.People/Client/src/components/pages/GroupAction/locales/ru/translation.json b/products/ASC.People/Client/src/components/pages/GroupAction/locales/ru/translation.json new file mode 100644 index 0000000000..9ddeb9d2da --- /dev/null +++ b/products/ASC.People/Client/src/components/pages/GroupAction/locales/ru/translation.json @@ -0,0 +1,13 @@ +{ + "SaveButton": "Сохранить", + "CancelButton": "Отмена", + + + + "CustomHeadOfDepartment": "{{headOfDepartment}}", + "CustomAddEmployee": "Добавить {{typeUser, lowercase}}", + "CustomNewDepartment": "Новый {{department, lowercase}}", + "CustomEditDepartment": "Редактирование {{department, lowercase}}", + "CustomDepartmentName": "Имя {{department}}", + "Members": "Участники" +} \ No newline at end of file