satof3 1 год назад
Родитель
Сommit
63f394c72c

+ 1 - 0
apps/app/public/static/locales/en_US/translation.json

@@ -513,6 +513,7 @@
       "pages": "Reference Pages",
       "instruction": "Assistant Instructions"
     },
+    "page_access_permission": "Page access permission",
     "access_scope": {
       "owner": "All pages accessible by {{username}}",
       "groups": "Specify groups",

+ 1 - 0
apps/app/public/static/locales/fr_FR/translation.json

@@ -508,6 +508,7 @@
       "pages": "Pages de référence",
       "instruction": "Instructions de l'assistant"
     },
+    "page_access_permission": "Autorisation d'accès à la page",
     "access_scope": {
       "owner": "Toutes les pages accessibles par {{username}}",
       "groups": "Spécifier les groupes",

+ 1 - 0
apps/app/public/static/locales/ja_JP/translation.json

@@ -546,6 +546,7 @@
       "pages": "参照ページ",
       "instruction": "アシスタントへの指示"
     },
+    "page_access_permission": "ページのアクセス権限",
     "access_scope": {
       "owner": "{{username}} がアクセス可能な全てのページ",
       "groups": "グループを指定",

+ 1 - 0
apps/app/public/static/locales/zh_CN/translation.json

@@ -503,6 +503,7 @@
       "pages": "参考页面",
       "instruction": "助理指示"
     },
+    "page_access_permission": "页面访问权限",
     "access_scope": {
       "owner": "{{username}} 可访问的所有页面",
       "groups": "指定群组",

+ 1 - 1
apps/app/src/features/openai/client/components/AiAssistant/AiAssistantManagementModal/AccessScopeDropdown.tsx

@@ -40,7 +40,7 @@ export const AccessScopeDropdown: React.FC<Props> = (props: Props) => {
 
   return (
     <div className="mb-4">
-      <Label className="text-secondary mb-2">ページのアクセス権限</Label>
+      <Label className="text-secondary mb-2">{t('modal_ai_assistant.page_access_permission')}</Label>
       <UncontrolledDropdown>
         <DropdownToggle
           disabled={isDisabled}