Просмотр исходного кода

feat: update tab label in index.jsx for clarity on pricing settings

CaIon 5 месяцев назад
Родитель
Сommit
0c417e8ec6
3 измененных файлов с 3 добавлено и 1 удалено
  1. 1 0
      web/src/i18n/locales/en.json
  2. 1 0
      web/src/i18n/locales/fr.json
  3. 1 1
      web/src/pages/Setting/index.jsx

+ 1 - 0
web/src/i18n/locales/en.json

@@ -232,6 +232,7 @@
   "邀请新用户奖励额度": "Referral bonus quota",
   "新用户使用邀请码奖励额度": "New user invitation code bonus quota",
   "保存额度设置": "Save Quota Settings",
+  "分组与模型定价设置": "Group and Model Pricing Settings",
   "倍率设置": "Ratio Settings",
   "模型倍率": "Model ratio",
   "为一个 JSON 文本": "Is a JSON text",

+ 1 - 0
web/src/i18n/locales/fr.json

@@ -231,6 +231,7 @@
   "邀请新用户奖励额度": "Quota de bonus de parrainage",
   "新用户使用邀请码奖励额度": "Quota de bonus de code d'invitation pour nouvel utilisateur",
   "保存额度设置": "Enregistrer les paramètres de quota",
+  "分组与模型定价设置": "Paramètres de groupe et de tarification du modèle",
   "倍率设置": "Paramètres de ratio",
   "模型倍率": "Ratio de modèle",
   "为一个 JSON 文本": "Est un texte JSON",

+ 1 - 1
web/src/pages/Setting/index.jsx

@@ -108,7 +108,7 @@ const Setting = () => {
       tab: (
         <span style={{ display: 'flex', alignItems: 'center', gap: '5px' }}>
           <Calculator size={18} />
-          {t('倍率设置')}
+          {t('分组与模型定价设置')}
         </span>
       ),
       content: <RatioSetting />,