itizawa hace 6 años
padre
commit
efcfd40d7d

+ 2 - 1
resource/locales/en-US/translation.json

@@ -528,7 +528,8 @@
       "group_search_filter_detail4": "<code>(&(cn=group1)(memberUid=&#123;&#123;dn&#125;&#125;))</code> hits the groups which has <code>cn=group1</code> and <code>memberUid</code> includes the user's <code>uid</code>(when <code>Group DN Property</code> is not changed from the default value.)",
       "group_search_user_DN_property": "User DN Property",
       "group_search_user_DN_property_detail": "The property of user object to use in <code>&#123;&#123;dn&#125;&#125;</code> interpolation of <code>Group Search Filter</code>.",
-      "test_config": "Test Saved Configuration"
+      "test_config": "Test Saved Configuration",
+      "updated_ldap": "Succeeded to update LDAP setting"
     },
     "SAML": {
       "name": "SAML",

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

@@ -523,7 +523,8 @@
       "group_search_filter_detail4": "<code>(&(cn=group1)(memberUid=&#123;&#123;dn&#125;&#125;))</code> は <code>cn=group1</code> と、ユーザーの <code>uid</code> を含む <code>memberUid</code> を持つグループにヒットします(<code>ユーザーの DN プロパティー</code> がデフォルトから変更されていない場合)",
       "group_search_user_DN_property": "ユーザーの DN プロパティー",
       "group_search_user_DN_property_detail": "<code>グループ検索フィルター</code> 内の <code>&#123;&#123;dn&#125;&#125;</code> で置換される、ユーザーオブジェクトのプロパティー",
-      "test_config": "ログインテスト"
+      "test_config": "ログインテスト",
+      "updated_ldap": "LDAP設定 を更新しました"
     },
     "SAML": {
       "name": "SAML",

+ 1 - 1
src/client/js/components/Admin/Security/LdapSecuritySetting.jsx

@@ -42,7 +42,7 @@ class LdapSecuritySetting extends React.Component {
 
     try {
       await adminLdapSecurityContainer.updateLdapSetting();
-      toastSuccess(t('security_setting.SAML.updated_saml'));
+      toastSuccess(t('security_setting.ldap.updated_ldap'));
     }
     catch (err) {
       toastError(err);