Selaa lähdekoodia

Merge pull request #1911 from weseek/imprv/fix-4-17

change #4 line
Yuki Takei 6 vuotta sitten
vanhempi
sitoutus
e11eca3634

+ 2 - 2
resource/locales/en-US/admin/admin.json

@@ -105,9 +105,9 @@
     },
     "behavior": "Behavior",
     "behavior_desc": {
-      "growi_text1": "Both of <code>/page</code> and <code>/page/</code> shows the same page",
+      "growi_text1": "Both of <code>/page</code> and <code>/page/</code> shows the same page",
       "growi_text2": "<code>/nonexistent_page</code> shows editing form",
-      "growi_text3": "All pages shows the list of sub pages <b>if using GROWI Enhanced Layout</b>",
+      "growi_text3": "All pages show the list of sub pages <b>if using GROWI Enhanced Layout</b>",
       "crowi_text1": "<code>/page</code> shows the page",
       "crowi_text2": "<code>/page/</code> shows the list of sub pages",
       "crowi_text3": "If portal is applied to <code>/page/</code> , the portal and the list of sub pages are shown",

+ 4 - 4
resource/locales/en-US/translation.json

@@ -393,13 +393,13 @@
     "Guest Users Access": "Guest Users Access",
     "Fixed by env var": "This is fixed by the env var <code>%s=%s</code>.",
     "Register limitation": "Register limitation",
-    "Register limitation desc": "Restricts ways to register new user.",
+    "Register limitation desc": "Restriction of new users' registration",
     "The whitelist of registration permission E-mail address": "The whitelist of registration permission E-mail address",
     "users_without_account": "Users without account is not accessible",
     "example": "Example",
-    "restrict_emails": "You can restrict registerable e-mail address.",
-    "for_instance": " For instance, if you use growi within a company, you can write ",
-    "only_those": " Only those whose e-mail address including the company address can register.",
+    "restrict_emails": "You can restrict email registration to your wiki by writing an email domain (beginning with @). ",
+    "for_example": " For example, if you would like to restrict registration to users within the growi.org domain, you can write ",
+    "in_this_case": "; in this case, only users within the growi.org domain would be able to register, and all other users would be rejected.",
     "insert_single": "Please insert single e-mail address per line.",
     "page_listing_1": "Page listing/searching<br>restricted by 'Only Me'",
     "page_listing_1_desc": "Show pages that are restricted by 'Only Me' option when listing/searching",

+ 2 - 2
resource/locales/ja/translation.json

@@ -395,8 +395,8 @@
     "users_without_account": "アカウントを持たないユーザーはアクセス不可",
     "example": "例",
     "restrict_emails": "登録可能なメールアドレスを制限することができます。",
-    "for_instance": "例えば、",
-    "only_those": "と記載することで、そのドメインのメールアドレスを持っている人のみ登録可能になります。",
+    "for_example": "例えば、",
+    "in_this_case": "と記載することで、そのドメインのメールアドレスを持っている人のみ登録可能になります。",
     "insert_single": "1行に1メールアドレス入力してください。",
     "page_listing_1": "ページのリスト表示と検索<br>'自分のみ'に閲覧制限しているページ",
     "page_listing_1_desc": "ページのリスト表示や検索結果において、'自分のみ'に閲覧制限をしているページをアクセス権のないユーザーにも表示します。",

+ 2 - 2
src/client/js/components/Admin/Security/LocalSecuritySetting.jsx

@@ -159,8 +159,8 @@ class LocalSecuritySetting extends React.Component {
                     defaultValue={adminLocalSecurityContainer.state.registrationWhiteList.join('\n')}
                     onChange={e => adminLocalSecurityContainer.changeRegistrationWhiteList(e.target.value)}
                   />
-                  <p className="help-block small">{t('security_setting.restrict_emails')}<br />{t('security_setting.for_instance')}
-                    <code>@growi.org</code>{t('security_setting.only_those')}<br />
+                  <p className="help-block small">{t('security_setting.restrict_emails')}<br />{t('security_setting.for_example')}
+                    <code>@growi.org</code>{t('security_setting.in_this_case')}<br />
                     {t('security_setting.insert_single')}
                   </p>
                 </div>