Skip to content
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: 6 additions & 0 deletions .changeset/late-pots-teach.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@rocket.chat/i18n": patch
"@rocket.chat/ui-voip": patch
---

Fixes mismatched translations for Voice calling UI
3 changes: 3 additions & 0 deletions packages/i18n/src/locales/en.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,7 @@
"All_users": "All users",
"All_users_in_the_channel_can_write_new_messages": "All users in the channel can write new messages",
"All_visible": "All visible",
"Allow": "Allow",
"allow-external-voice-calls": "Allow External Voice Calls",
"allow-external-voice-calls_description": "Permission to allow users to make and receive calls with users from external integrations.",
"allow-internal-voice-calls": "Allow Internal Voice Calls",
Expand Down Expand Up @@ -4392,6 +4393,7 @@
"Registration_status": "Registration status",
"Registration_via_Admin": "Registration via Admin",
"Regular_Expressions": "Regular Expressions",
"Reject": "Reject",
"Reject_call": "Reject call",
"Reject_invitation": "Reject invitation",
"Reject_dm_invitation_description": "You're rejecting the invitation to join {{username}} in a conversation. This cannot be undone.",
Expand Down Expand Up @@ -5801,6 +5803,7 @@
"VoIP_allow_and_call": "Allow and call",
"VoIP_allow_and_accept": "Allow and accept",
"VoIP_cancel_and_reject": "Cancel and reject",
"Voice": "Voice",
"Voice_Call": "Voice Call",
"Voice_Call_Extension": "Voice Call Extension",
"Voice_and_omnichannel": "Voice and omnichannel",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-voip/src/components/PeerInfo/useInfoSlots.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const getMutedSlot = (muted: boolean, t: ReturnType<typeof useTranslation>['t'])
const getHeldSlot = (held: boolean, t: ReturnType<typeof useTranslation>['t']) => {
if (held) {
return {
text: t('On hold'),
text: t('On_Hold'),
type: 'info',
} as const;
}
Expand Down
Loading