Client: fixed VDR Room description after merge

This commit is contained in:
Dmitry Sychugov 2024-06-10 16:11:48 +05:00
parent d15445301c
commit 86f4555c1b
4 changed files with 8 additions and 3 deletions

View File

@ -10,7 +10,6 @@
"MakeRoomPrivateTitle": "Make the Room Private",
"PeopleSelectorInfo": "Only a room admin or a DocSpace admin can become the owner of the room",
"PublicRoomBarDescription": "This room is available to anyone with the link. External users will have View Only permission for all the files.",
"VirtualDataRoomDescription": "Use VDR for advanced file security and transparency while filling and signing documents step-by-step. Set watermarks, automatically index and track all content, restrict downloading and copying.",
"PublicRoomSystemFoldersDescription": "System folders store copies of forms at different stages of completion. Forms that are being filled are stored in the In progress folder, and completed forms are stored in the Complete folder.",
"PublicRoomSystemFoldersTitle": "System Folders",
"RoomEditing": "Room editing",

View File

@ -14,6 +14,8 @@ export const getRoomTypeTitleTranslation = (
// return t("Common:ReviewRoomTitle");
// case RoomsType.ReadOnlyRoom:
// return t("Common:ViewOnlyRoomTitle");
case RoomsType.VirtualDataRoom:
return t("Common:VirtualDataRoom");
case RoomsType.CustomRoom:
return t("Common:CustomRoomTitle");
case RoomsType.PublicRoom:
@ -38,6 +40,8 @@ export const getRoomTypeDescriptionTranslation = (
// return t("Common:ReviewRoomDescription");
// case RoomsType.ReadOnlyRoom:
// return t("Common:ViewOnlyRoomDescription");
case RoomsType.VirtualDataRoom:
return t("Common:VirtualDataRoomDescription");
case RoomsType.CustomRoom:
return t("Common:CustomRoomDescription");
case RoomsType.PublicRoom:

View File

@ -77,7 +77,7 @@ export const ROOMS_TYPE_TRANSLATIONS = Object.freeze({
5: "Files:CustomRooms",
6: "Files:PublicRoom",
8: "Files:VirtualDataRoom",
8: "Common:VirtualDataRoom",
});
export const ROOMS_PROVIDER_TYPE_NAME = Object.freeze({

View File

@ -469,5 +469,7 @@
"ViewOnlyRooms": "View-only",
"CustomRooms": "Custom",
"FormRoom": "Form room",
"NewRoom": "New room"
"NewRoom": "New room",
"VirtualDataRoomDescription": "Use VDR for advanced file security and transparency while filling and signing documents step-by-step. Set watermarks, automatically index and track all content, restrict downloading and copying.",
"VirtualDataRoom": "Virtual Data Room"
}