浏览代码

fix(participants-pane) enable translation of invite button

Copy over existing "invite" translations where the participants
pane is already translated.

Signed-off-by: Christoph Settgast <csett86@web.de>
j8
Christoph Settgast 4 年前
父节点
当前提交
106ce79375
共有 4 个文件被更改,包括 4 次插入1 次删除
  1. 1
    0
      lang/main-it.json
  2. 1
    0
      lang/main-te.json
  3. 1
    0
      lang/main.json
  4. 1
    1
      react/features/participants-pane/components/InviteButton.js

+ 1
- 0
lang/main-it.json 查看文件

535
             "participantsList": "({{count}}) partecipanti"
535
             "participantsList": "({{count}}) partecipanti"
536
         },
536
         },
537
         "actions": {
537
         "actions": {
538
+            "invite": "Invita persone",
538
             "muteAll": "Silenzia tutti",
539
             "muteAll": "Silenzia tutti",
539
             "stopVideo": "Ferma il video"
540
             "stopVideo": "Ferma il video"
540
         }
541
         }

+ 1
- 0
lang/main-te.json 查看文件

535
             "participantsList": "సదస్యులు ({{count}})"
535
             "participantsList": "సదస్యులు ({{count}})"
536
         },
536
         },
537
         "actions": {
537
         "actions": {
538
+            "invite": "ప్రజలను ఆహ్వానించు",
538
             "muteAll": "అందరినీ మౌనించు",
539
             "muteAll": "అందరినీ మౌనించు",
539
             "stopVideo": "వీడియో ఆపివేయి"
540
             "stopVideo": "వీడియో ఆపివేయి"
540
         }
541
         }

+ 1
- 0
lang/main.json 查看文件

532
             "participantsList": "Meeting participants ({{count}})"
532
             "participantsList": "Meeting participants ({{count}})"
533
         },
533
         },
534
         "actions": {
534
         "actions": {
535
+            "invite": "Invite Someone",
535
             "muteAll": "Mute all",
536
             "muteAll": "Mute all",
536
             "stopVideo": "Stop video"
537
             "stopVideo": "Stop video"
537
         }
538
         }

+ 1
- 1
react/features/participants-pane/components/InviteButton.js 查看文件

26
             <Icon
26
             <Icon
27
                 size = { 20 }
27
                 size = { 20 }
28
                 src = { IconInviteMore } />
28
                 src = { IconInviteMore } />
29
-            <span>Invite Someone</span>
29
+            <span>{t('participantsPane.actions.invite')}</span>
30
         </ParticipantInviteButton>
30
         </ParticipantInviteButton>
31
     );
31
     );
32
 };
32
 };

正在加载...
取消
保存