Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(i18n): address copy review for group deletion [WPB-11558] #18471

Merged
merged 3 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/i18n/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -1061,9 +1061,9 @@
"modalConversationOptionsToggleServiceMessage": "Could not change services state.",
"modalConversationRemoveAction": "Remove",
"modalConversationRemoveCloseBtn": "Close window 'Remove'",
"modalConversationRemoveGroupAction": "Remove",
"modalConversationRemoveGroupHeadline": "Remove group conversation?",
"modalConversationRemoveGroupMessage": "This will delete the group on this device. There is no option to restore the content.",
"modalConversationRemoveGroupAction": "Delete for Me",
"modalConversationRemoveGroupHeadline": "Delete {conversation} group for me?",
"modalConversationRemoveGroupMessage": "You won’t be able to access the group and its content. There is no option to restore it.",
"modalConversationRemoveGuestsHeadline": "Disable guest access?",
"modalConversationRemoveGuestsMessage": "Current guests will be removed from the conversation. New guests will not be allowed.",
"modalConversationRemoveGuestsOrServicesAction": "Disable",
Expand Down
2 changes: 1 addition & 1 deletion src/script/view_model/ActionsViewModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ export class ActionsViewModel {
},
text: {
message: t('modalConversationRemoveGroupMessage'),
title: t('modalConversationRemoveGroupHeadline'),
title: t('modalConversationRemoveGroupHeadline', {conversation: conversationEntity.display_name()}),
},
});
};
Expand Down
18 changes: 9 additions & 9 deletions src/types/i18n.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1065,9 +1065,9 @@ declare module 'I18n/en-US.json' {
'modalConversationOptionsToggleServiceMessage': `Could not change services state.`;
'modalConversationRemoveAction': `Remove`;
'modalConversationRemoveCloseBtn': `Close window \'Remove\'`;
'modalConversationRemoveGroupAction': `Remove`;
'modalConversationRemoveGroupHeadline': `Remove group conversation?`;
'modalConversationRemoveGroupMessage': `This will delete the group on this device. There is no option to restore the content.`;
'modalConversationRemoveGroupAction': `Delete for Me`;
'modalConversationRemoveGroupHeadline': `Delete {conversation} group for me?`;
'modalConversationRemoveGroupMessage': `You won’t be able to access the group and its content. There is no option to restore it.`;
'modalConversationRemoveGuestsHeadline': `Disable guest access?`;
'modalConversationRemoveGuestsMessage': `Current guests will be removed from the conversation. New guests will not be allowed.`;
'modalConversationRemoveGuestsOrServicesAction': `Disable`;
Expand Down Expand Up @@ -1512,7 +1512,7 @@ declare module 'I18n/en-US.json' {
'teamCreationSuccessListItem1': `Invite your first team members, and start working together`;
'teamCreationSuccessListItem2': `Customize your team settings`;
'teamCreationSuccessListTitle': `Go to Team Management to:`;
'teamCreationSuccessSubTitle': `You’re now the owner of the team ({teamName}).`;
'teamCreationSuccessSubTitle': `You’re now the owner of the team {teamName}.`;
'teamCreationSuccessTitle': `Congratulations {name}!`;
'teamCreationTitle': `Create your team`;
'teamName.headline': `Name your team`;
Expand Down Expand Up @@ -1607,18 +1607,18 @@ declare module 'I18n/en-US.json' {
'videoCallOverlayMicrophone': `Microphone`;
'videoCallOverlayOpenFullScreen': `Open the call in full screen`;
'videoCallOverlayOpenPopupWindow': `Open in a new window`;
'videoCallOverlayParticipantsRaisedHandListLabel': `Hand raised ({count})`;
'videoCallOverlayParticipantsListLabel': `Participants ({count})`;
'videoCallParticipantRaisedTheirHandUp': `{name} has raised their hand up`;
'videoCallParticipantRaisedSortByTime': `Person waiting the longest is on the top of the list.`;
'videoCallParticipantRaisedHandRaiseDuration': `Hand raised for {duration}`;
'videoCallParticipantRaisedSelfHandUp': `You have raised your hand up`;
'videoCallOverlayParticipantsRaisedHandListLabel': `Raised hands ({count})`;
'videoCallOverlayShareScreen': `Share Screen`;
'videoCallOverlayShowParticipantsList': `Show participants list`;
'videoCallOverlayViewModeAll': `Show all participants`;
'videoCallOverlayViewModeLabel': `View mode`;
'videoCallOverlayViewModeSpeakers': `Show active speakers only`;
'videoCallParticipantConnecting': `Connecting...`;
'videoCallParticipantRaisedHandRaiseDuration': `Hand raised for {duration}`;
'videoCallParticipantRaisedSelfHandUp': `You have raised your hand up`;
'videoCallParticipantRaisedSortByTime': `Top in the list raised their hand first.`;
'videoCallParticipantRaisedTheirHandUp': `{name} has raised their hand up`;
'videoCallPaused': `Video paused`;
'videoCallScreenShareEndConfirm': `End screen share`;
'videoCallScreenShareEndConfirmDescription': `If you minimize the window, your screen share will end.`;
Expand Down
Loading