Skip to content

Commit 2f1b9c7

Browse files
authored
Merge pull request #88550 from KioCoan/fixComposerNotVisible
[Payment due @thesahindia] Show a read-only banner in ReportFooter instead of an empty footer
2 parents 9cc90a7 + d5262c6 commit 2f1b9c7

11 files changed

Lines changed: 34 additions & 0 deletions

File tree

src/languages/de.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -865,6 +865,7 @@ const translations: TranslationDeepObject<typeof en> = {
865865
},
866866
},
867867
adminOnlyCanPost: 'Nur Admins können Nachrichten in diesem Raum senden.',
868+
readOnlyConversation: 'Diese Konversation ist schreibgeschützt.',
868869
reportAction: {
869870
asCopilot: 'als Copilot für',
870871
assistedBy: (agentName: string) => `unterstützt von ${agentName}`,

src/languages/en.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -894,6 +894,7 @@ const translations = {
894894
},
895895
},
896896
adminOnlyCanPost: 'Only admins can send messages in this room.',
897+
readOnlyConversation: 'This conversation is read-only.',
897898
reportAction: {
898899
asCopilot: 'as copilot for',
899900
assistedBy: (agentName: string) => `assisted by ${agentName}`,

src/languages/es.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -795,6 +795,7 @@ const translations: TranslationDeepObject<typeof en> = {
795795
},
796796
},
797797
adminOnlyCanPost: 'Solo los administradores pueden enviar mensajes en esta sala.',
798+
readOnlyConversation: 'Esta conversación es de solo lectura.',
798799
reportAction: {
799800
asCopilot: 'como copiloto de',
800801
assistedBy: (agentName: string) => `asistido por ${agentName}`,

src/languages/fr.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -868,6 +868,7 @@ const translations: TranslationDeepObject<typeof en> = {
868868
},
869869
},
870870
adminOnlyCanPost: 'Seuls les administrateurs peuvent envoyer des messages dans ce salon.',
871+
readOnlyConversation: 'Cette conversation est en lecture seule.',
871872
reportAction: {
872873
asCopilot: 'en tant que copilote pour',
873874
assistedBy: (agentName: string) => `assisté par ${agentName}`,

src/languages/it.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -866,6 +866,7 @@ const translations: TranslationDeepObject<typeof en> = {
866866
},
867867
},
868868
adminOnlyCanPost: 'Solo gli amministratori possono inviare messaggi in questa stanza.',
869+
readOnlyConversation: 'Questa conversazione è di sola lettura.',
869870
reportAction: {
870871
asCopilot: 'come copilota per',
871872
assistedBy: (agentName: string) => `assistito da ${agentName}`,

src/languages/ja.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -852,6 +852,7 @@ const translations: TranslationDeepObject<typeof en> = {
852852
},
853853
},
854854
adminOnlyCanPost: 'このルームでメッセージを送信できるのは管理者のみです。',
855+
readOnlyConversation: 'この会話は読み取り専用です。',
855856
reportAction: {
856857
asCopilot: '共同操縦者として',
857858
assistedBy: (agentName: string) => `${agentName}がアシスト`,

src/languages/nl.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -864,6 +864,7 @@ const translations: TranslationDeepObject<typeof en> = {
864864
},
865865
},
866866
adminOnlyCanPost: 'Alleen beheerders kunnen berichten sturen in deze ruimte.',
867+
readOnlyConversation: 'Deze conversatie is alleen-lezen.',
867868
reportAction: {
868869
asCopilot: 'als copiloot voor',
869870
assistedBy: (agentName: string) => `bijgestaan door ${agentName}`,

src/languages/pl.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -865,6 +865,7 @@ const translations: TranslationDeepObject<typeof en> = {
865865
},
866866
},
867867
adminOnlyCanPost: 'Tylko administratorzy mogą wysyłać wiadomości w tym pokoju.',
868+
readOnlyConversation: 'Ta rozmowa jest tylko do odczytu.',
868869
reportAction: {
869870
asCopilot: 'jako drugi pilot dla',
870871
assistedBy: (agentName: string) => `wspierany przez ${agentName}`,

src/languages/pt-BR.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -864,6 +864,7 @@ const translations: TranslationDeepObject<typeof en> = {
864864
},
865865
},
866866
adminOnlyCanPost: 'Apenas administradores podem enviar mensagens nesta sala.',
867+
readOnlyConversation: 'Esta conversa é somente leitura.',
867868
reportAction: {
868869
asCopilot: 'como copiloto de',
869870
assistedBy: (agentName: string) => `assistido por ${agentName}`,

src/languages/zh-hans.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -840,6 +840,7 @@ const translations: TranslationDeepObject<typeof en> = {
840840
},
841841
},
842842
adminOnlyCanPost: '只有管理员可以在此房间中发送消息。',
843+
readOnlyConversation: '此对话仅可查看。',
843844
reportAction: {
844845
asCopilot: '作为副驾驶,用于',
845846
assistedBy: (agentName: string) => `由${agentName}协助`,

0 commit comments

Comments
 (0)