浏览代码

fix(invite): tweak invite modal copy and avatar sizes (#2818)

master
virtuacoplenny 7 年前
父节点
当前提交
4bd94fc94c
没有帐户链接到提交者的电子邮件
共有 3 个文件被更改,包括 14 次插入6 次删除
  1. 8
    0
      css/modals/invite/_add-people.scss
  2. 5
    5
      lang/main.json
  3. 1
    1
      react/features/invite/components/AddPeopleDialog.web.js

+ 8
- 0
css/modals/invite/_add-people.scss 查看文件

13
         }
13
         }
14
 
14
 
15
         .add-telephone-icon {
15
         .add-telephone-icon {
16
+            display: flex;
17
+            height: 28px;
16
             transform: scaleX(-1);
18
             transform: scaleX(-1);
19
+            width: 28px;
20
+
21
+            i {
22
+                line-height: 28px;
23
+                margin: auto;
24
+            }
17
         }
25
         }
18
     }
26
     }
19
 }
27
 }

+ 5
- 5
lang/main.json 查看文件

467
         "statusMessage": "is now __status__"
467
         "statusMessage": "is now __status__"
468
     },
468
     },
469
     "addPeople": {
469
     "addPeople": {
470
-        "add": "Add",
470
+        "add": "Invite",
471
         "countryNotSupported": "We do not support this destination yet.",
471
         "countryNotSupported": "We do not support this destination yet.",
472
         "countryReminder": "Calling outside the US? Please make sure you start with the country code!",
472
         "countryReminder": "Calling outside the US? Please make sure you start with the country code!",
473
         "disabled": "You can't invite people.",
473
         "disabled": "You can't invite people.",
478
         "noResults": "No matching search results",
478
         "noResults": "No matching search results",
479
         "noValidNumbers": "Please enter a phone number",
479
         "noValidNumbers": "Please enter a phone number",
480
         "notAvailable": "You can't invite people.",
480
         "notAvailable": "You can't invite people.",
481
-        "searchNumbers": "Enter a phone number to invite",
482
-        "searchPeople": "Enter a name to invite",
483
-        "searchPeopleAndNumbers": "Enter a name or phone number to invite",
481
+        "searchNumbers": "Add phone numbers",
482
+        "searchPeople": "Search for people",
483
+        "searchPeopleAndNumbers": "Search for people or add their phone numbers",
484
         "telephone": "Telephone: __number__",
484
         "telephone": "Telephone: __number__",
485
-        "title": "Invite people to your meeting",
485
+        "title": "Invite people to this meeting",
486
         "failedToAdd": "Failed to add members"
486
         "failedToAdd": "Failed to add members"
487
     },
487
     },
488
     "inlineDialogFailure": {
488
     "inlineDialogFailure": {

+ 1
- 1
react/features/invite/components/AddPeopleDialog.web.js 查看文件

502
             return {
502
             return {
503
                 content: user.name,
503
                 content: user.name,
504
                 elemBefore: <Avatar
504
                 elemBefore: <Avatar
505
-                    size = 'medium'
505
+                    size = 'small'
506
                     src = { user.avatar } />,
506
                     src = { user.avatar } />,
507
                 item: user,
507
                 item: user,
508
                 tag: {
508
                 tag: {

正在加载...
取消
保存