@lobehub/chat 1.79.8 → 1.79.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. package/.eslintrc.js +1 -0
  2. package/CHANGELOG.md +58 -0
  3. package/changelog/v1.json +18 -0
  4. package/locales/ar/models.json +9 -0
  5. package/locales/ar/oauth.json +7 -6
  6. package/locales/bg-BG/models.json +9 -0
  7. package/locales/bg-BG/oauth.json +7 -6
  8. package/locales/de-DE/models.json +9 -0
  9. package/locales/de-DE/oauth.json +7 -6
  10. package/locales/en-US/models.json +9 -0
  11. package/locales/en-US/oauth.json +7 -6
  12. package/locales/es-ES/models.json +9 -0
  13. package/locales/es-ES/oauth.json +7 -6
  14. package/locales/fa-IR/models.json +9 -0
  15. package/locales/fa-IR/oauth.json +7 -6
  16. package/locales/fr-FR/models.json +9 -0
  17. package/locales/fr-FR/oauth.json +7 -6
  18. package/locales/it-IT/models.json +9 -0
  19. package/locales/it-IT/oauth.json +7 -6
  20. package/locales/ja-JP/models.json +9 -0
  21. package/locales/ja-JP/oauth.json +7 -6
  22. package/locales/ko-KR/models.json +9 -0
  23. package/locales/ko-KR/oauth.json +7 -6
  24. package/locales/nl-NL/models.json +9 -0
  25. package/locales/nl-NL/oauth.json +7 -6
  26. package/locales/pl-PL/models.json +9 -0
  27. package/locales/pl-PL/oauth.json +7 -6
  28. package/locales/pt-BR/models.json +9 -0
  29. package/locales/pt-BR/oauth.json +7 -6
  30. package/locales/ru-RU/models.json +9 -0
  31. package/locales/ru-RU/oauth.json +7 -6
  32. package/locales/tr-TR/models.json +9 -0
  33. package/locales/tr-TR/oauth.json +7 -6
  34. package/locales/vi-VN/models.json +9 -0
  35. package/locales/vi-VN/oauth.json +7 -6
  36. package/locales/zh-CN/models.json +9 -0
  37. package/locales/zh-CN/oauth.json +7 -6
  38. package/locales/zh-TW/models.json +9 -0
  39. package/locales/zh-TW/oauth.json +7 -6
  40. package/package.json +1 -1
  41. package/src/app/(backend)/oidc/[...oidc]/route.ts +27 -201
  42. package/src/app/(backend)/oidc/consent/route.ts +58 -24
  43. package/src/app/(backend)/trpc/async/[trpc]/route.ts +1 -1
  44. package/src/app/(backend)/trpc/edge/[trpc]/route.ts +2 -2
  45. package/src/app/(backend)/trpc/lambda/[trpc]/route.ts +2 -2
  46. package/src/app/(backend)/trpc/tools/[trpc]/route.ts +2 -2
  47. package/src/app/[variants]/(main)/files/[id]/page.tsx +1 -1
  48. package/src/app/[variants]/oauth/consent/[uid]/Client.tsx +184 -57
  49. package/src/app/[variants]/oauth/consent/[uid]/ClientError.tsx +46 -0
  50. package/src/app/[variants]/oauth/consent/[uid]/page.tsx +19 -21
  51. package/src/components/Branding/ProductLogo/index.tsx +6 -1
  52. package/src/config/aiModels/openai.ts +63 -41
  53. package/src/config/modelProviders/openai.ts +17 -0
  54. package/src/const/settings/llm.ts +1 -1
  55. package/src/database/server/models/__tests__/adapter.test.ts +1 -5
  56. package/src/libs/oidc-provider/adapter.ts +47 -0
  57. package/src/libs/oidc-provider/config.ts +4 -5
  58. package/src/libs/oidc-provider/http-adapter.ts +60 -28
  59. package/src/libs/oidc-provider/provider.ts +41 -13
  60. package/src/libs/trpc/async/init.ts +1 -1
  61. package/src/{server → libs/trpc/edge}/context.ts +2 -2
  62. package/src/libs/trpc/{index.ts → edge/index.ts} +8 -8
  63. package/src/libs/trpc/{init.ts → edge/init.ts} +2 -2
  64. package/src/libs/trpc/{middleware → edge/middleware}/jwtPayload.test.ts +3 -3
  65. package/src/libs/trpc/{middleware → edge/middleware}/jwtPayload.ts +3 -2
  66. package/src/libs/trpc/lambda/context.ts +70 -0
  67. package/src/libs/trpc/lambda/index.ts +39 -1
  68. package/src/libs/trpc/lambda/init.ts +26 -0
  69. package/src/libs/trpc/lambda/middleware/index.ts +2 -0
  70. package/src/libs/trpc/{middleware → lambda/middleware}/keyVaults.ts +2 -1
  71. package/src/libs/trpc/lambda/{serverDatabase.ts → middleware/serverDatabase.ts} +2 -1
  72. package/src/libs/trpc/middleware/userAuth.test.ts +3 -3
  73. package/src/libs/trpc/middleware/userAuth.ts +1 -1
  74. package/src/libs/trpc/mock.ts +7 -0
  75. package/src/locales/default/oauth.ts +8 -6
  76. package/src/server/routers/edge/appStatus.ts +1 -1
  77. package/src/server/routers/edge/config/index.test.ts +2 -3
  78. package/src/server/routers/edge/config/index.ts +1 -1
  79. package/src/server/routers/edge/index.ts +1 -1
  80. package/src/server/routers/edge/upload.ts +1 -1
  81. package/src/server/routers/lambda/_template.ts +2 -2
  82. package/src/server/routers/lambda/agent.ts +2 -2
  83. package/src/server/routers/lambda/aiModel.ts +2 -2
  84. package/src/server/routers/lambda/aiProvider.ts +2 -2
  85. package/src/server/routers/lambda/chunk.ts +2 -3
  86. package/src/server/routers/lambda/exporter.ts +2 -2
  87. package/src/server/routers/lambda/file.ts +2 -2
  88. package/src/server/routers/lambda/importer.ts +2 -2
  89. package/src/server/routers/lambda/index.ts +1 -1
  90. package/src/server/routers/lambda/knowledgeBase.ts +2 -2
  91. package/src/server/routers/lambda/message.ts +2 -2
  92. package/src/server/routers/lambda/plugin.ts +2 -2
  93. package/src/server/routers/lambda/ragEval.ts +2 -3
  94. package/src/server/routers/lambda/session.ts +2 -2
  95. package/src/server/routers/lambda/sessionGroup.ts +2 -2
  96. package/src/server/routers/lambda/thread.ts +2 -2
  97. package/src/server/routers/lambda/topic.ts +2 -2
  98. package/src/server/routers/lambda/user.ts +2 -2
  99. package/src/server/routers/tools/__tests__/search.test.ts +2 -2
  100. package/src/server/routers/tools/index.ts +1 -1
  101. package/src/server/routers/tools/search.ts +3 -1
  102. package/src/server/services/oidc/index.ts +36 -1
  103. package/src/server/services/oidc/oidcProvider.ts +1 -3
  104. package/src/services/chat.ts +1 -0
  105. package/src/store/agent/slices/chat/selectors/__snapshots__/agent.test.ts.snap +1 -1
  106. package/src/store/user/slices/modelList/selectors/modelProvider.test.ts +1 -0
  107. package/src/store/user/slices/settings/selectors/__snapshots__/settings.test.ts.snap +8 -8
  108. package/src/server/mock.ts +0 -8
  109. /package/src/{server/asyncContext.ts → libs/trpc/async/context.ts} +0 -0
package/.eslintrc.js CHANGED
@@ -17,6 +17,7 @@ config.rules['unicorn/prefer-spread'] = 0;
17
17
  config.rules['unicorn/catch-error-name'] = 0;
18
18
  config.rules['unicorn/no-array-for-each'] = 0;
19
19
  config.rules['unicorn/prefer-number-properties'] = 0;
20
+ config.rules['unicorn/no-array-callback-reference'] = 0;
20
21
 
21
22
  config.overrides = [
22
23
  {
package/CHANGELOG.md CHANGED
@@ -2,6 +2,64 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.79.10](https://github.com/lobehub/lobe-chat/compare/v1.79.9...v1.79.10)
6
+
7
+ <sup>Released on **2025-04-15**</sup>
8
+
9
+ #### 💄 Styles
10
+
11
+ - **misc**: Make gpt-4.1-mini default model.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Styles
19
+
20
+ - **misc**: Make gpt-4.1-mini default model, closes [#7414](https://github.com/lobehub/lobe-chat/issues/7414) ([724fcee](https://github.com/lobehub/lobe-chat/commit/724fcee))
21
+
22
+ </details>
23
+
24
+ <div align="right">
25
+
26
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27
+
28
+ </div>
29
+
30
+ ### [Version 1.79.9](https://github.com/lobehub/lobe-chat/compare/v1.79.8...v1.79.9)
31
+
32
+ <sup>Released on **2025-04-15**</sup>
33
+
34
+ #### ♻ Code Refactoring
35
+
36
+ - **misc**: Refactor trpc to have a clear obligation.
37
+
38
+ #### 💄 Styles
39
+
40
+ - **misc**: Add GPT-4.1 models.
41
+
42
+ <br/>
43
+
44
+ <details>
45
+ <summary><kbd>Improvements and Fixes</kbd></summary>
46
+
47
+ #### Code refactoring
48
+
49
+ - **misc**: Refactor trpc to have a clear obligation, closes [#7412](https://github.com/lobehub/lobe-chat/issues/7412) ([01c0120](https://github.com/lobehub/lobe-chat/commit/01c0120))
50
+
51
+ #### Styles
52
+
53
+ - **misc**: Add GPT-4.1 models, closes [#7410](https://github.com/lobehub/lobe-chat/issues/7410) ([3c4d7df](https://github.com/lobehub/lobe-chat/commit/3c4d7df))
54
+
55
+ </details>
56
+
57
+ <div align="right">
58
+
59
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
60
+
61
+ </div>
62
+
5
63
  ### [Version 1.79.8](https://github.com/lobehub/lobe-chat/compare/v1.79.7...v1.79.8)
6
64
 
7
65
  <sup>Released on **2025-04-12**</sup>
package/changelog/v1.json CHANGED
@@ -1,4 +1,22 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "improvements": [
5
+ "Make gpt-4.1-mini default model."
6
+ ]
7
+ },
8
+ "date": "2025-04-15",
9
+ "version": "1.79.10"
10
+ },
11
+ {
12
+ "children": {
13
+ "improvements": [
14
+ "Add GPT-4.1 models."
15
+ ]
16
+ },
17
+ "date": "2025-04-15",
18
+ "version": "1.79.9"
19
+ },
2
20
  {
3
21
  "children": {
4
22
  "fixes": [
@@ -1067,6 +1067,15 @@
1067
1067
  "gpt-4-vision-preview": {
1068
1068
  "description": "نموذج GPT-4 Turbo الأحدث يتمتع بقدرات بصرية. الآن، يمكن استخدام الطلبات البصرية باستخدام نمط JSON واستدعاء الوظائف. GPT-4 Turbo هو إصدار معزز يوفر دعمًا فعالًا من حيث التكلفة للمهام متعددة الوسائط. يجد توازنًا بين الدقة والكفاءة، مما يجعله مناسبًا للتطبيقات التي تتطلب تفاعلات في الوقت الحقيقي."
1069
1069
  },
1070
+ "gpt-4.1": {
1071
+ "description": "GPT-4.1 هو نموذجنا الرائد للمهام المعقدة. إنه مثالي لحل المشكلات عبر مجالات متعددة."
1072
+ },
1073
+ "gpt-4.1-mini": {
1074
+ "description": "يوفر GPT-4.1 mini توازنًا بين الذكاء والسرعة والتكلفة، مما يجعله نموذجًا جذابًا للعديد من الاستخدامات."
1075
+ },
1076
+ "gpt-4.1-nano": {
1077
+ "description": "يوفر GPT-4.1 mini توازنًا بين الذكاء والسرعة والتكلفة، مما يجعله نموذجًا جذابًا للعديد من الاستخدامات."
1078
+ },
1070
1079
  "gpt-4.5-preview": {
1071
1080
  "description": "نسخة المعاينة البحثية لـ GPT-4.5، وهي أكبر وأقوى نموذج GPT لدينا حتى الآن. تتمتع بمعرفة واسعة عن العالم وتفهم أفضل لنوايا المستخدم، مما يجعلها بارعة في المهام الإبداعية والتخطيط الذاتي. يمكن لـ GPT-4.5 قبول المدخلات النصية والصورية وتوليد مخرجات نصية (بما في ذلك المخرجات الهيكلية). تدعم ميزات المطورين الأساسية مثل استدعاء الدوال، وواجهة برمجة التطبيقات الجماعية، والمخرجات المتدفقة. تتألق GPT-4.5 بشكل خاص في المهام التي تتطلب التفكير الإبداعي، والتفكير المفتوح، والحوار (مثل الكتابة، والتعلم، أو استكشاف أفكار جديدة). تاريخ انتهاء المعرفة هو أكتوبر 2023."
1072
1081
  },
@@ -4,7 +4,7 @@
4
4
  "accept": "موافقة",
5
5
  "deny": "رفض"
6
6
  },
7
- "description": "تطبيق {clientId} يطلب الوصول إلى حسابك في LobeChat",
7
+ "description": "تطبيق {{clientName}} يطلب إذن حسابك",
8
8
  "error": {
9
9
  "sessionInvalid": {
10
10
  "message": "جلسة التفويض منتهية أو غير صالحة، يرجى إعادة بدء عملية التفويض.",
@@ -16,16 +16,17 @@
16
16
  "title": "نوع التفاعل غير مدعوم"
17
17
  }
18
18
  },
19
- "permissionsTitle": "يطلب التطبيق الأذونات التالية:",
19
+ "permissionsTitle": "طلب الأذونات التالية:",
20
+ "redirectUri": "سيتم إعادة التوجيه إلى بعد نجاح التفويض",
20
21
  "scope": {
21
22
  "email": "الوصول إلى عنوان بريدك الإلكتروني",
22
- "offline_access": "الاستمرار في الوصول إلى بياناتك أثناء عدم الاتصال",
23
+ "offline_access": "السماح للتطبيق بالوصول إلى بياناتك",
23
24
  "openid": "استخدام حسابك في LobeChat للتحقق من الهوية",
24
25
  "profile": "الوصول إلى معلومات ملفك الشخصي الأساسية (الاسم، الصورة، إلخ)",
25
- "sync:read": "قراءة بيانات المزامنة الخاصة بك",
26
- "sync:write": "كتابة وتحديث بيانات المزامنة الخاصة بك"
26
+ "sync-read": "قراءة بيانات المزامنة الخاصة بك",
27
+ "sync-write": "كتابة وتحديث بيانات المزامنة الخاصة بك"
27
28
  },
28
- "title": "طلب التفويض"
29
+ "title": "تفويض {{clientName}}"
29
30
  },
30
31
  "failed": {
31
32
  "backToHome": "العودة إلى الصفحة الرئيسية",
@@ -1067,6 +1067,15 @@
1067
1067
  "gpt-4-vision-preview": {
1068
1068
  "description": "Най-новият модел GPT-4 Turbo разполага с визуални функции. Сега визуалните заявки могат да се използват с JSON формат и извиквания на функции. GPT-4 Turbo е подобрена версия, която предлага икономически ефективна поддръжка за мултимодални задачи. Той намира баланс между точност и ефективност, подходящ за приложения, изискващи взаимодействие в реално време."
1069
1069
  },
1070
+ "gpt-4.1": {
1071
+ "description": "GPT-4.1 е нашият флагмански модел за сложни задачи. Той е изключително подходящ за решаване на проблеми в различни области."
1072
+ },
1073
+ "gpt-4.1-mini": {
1074
+ "description": "GPT-4.1 mini предлага баланс между интелигентност, скорост и разходи, което го прави привлекателен модел за много случаи на употреба."
1075
+ },
1076
+ "gpt-4.1-nano": {
1077
+ "description": "GPT-4.1 mini предлага баланс между интелигентност, скорост и разходи, което го прави привлекателен модел за много случаи на употреба."
1078
+ },
1070
1079
  "gpt-4.5-preview": {
1071
1080
  "description": "Изследователската предварителна версия на GPT-4.5, която е нашият най-голям и мощен GPT модел до момента. Тя притежава обширни знания за света и може по-добре да разбира намеренията на потребителите, което я прави изключително ефективна в креативни задачи и автономно планиране. GPT-4.5 приема текстови и изображен вход и генерира текстови изход (включително структурирани изходи). Поддържа ключови функции за разработчици, като извикване на функции, пакетно API и потоков изход. В задачи, изискващи креативно, открито мислене и диалог (като писане, учене или изследване на нови идеи), GPT-4.5 показва особени способности. Крайната дата на знанията е октомври 2023."
1072
1081
  },
@@ -4,7 +4,7 @@
4
4
  "accept": "Разреши",
5
5
  "deny": "Отказ"
6
6
  },
7
- "description": "Приложението {clientId} иска достъп до вашия LobeChat акаунт",
7
+ "description": "Приложението {{clientName}} иска разрешение за вашия акаунт",
8
8
  "error": {
9
9
  "sessionInvalid": {
10
10
  "message": "Сесията за разрешение е изтекла или невалидна, моля, стартирайте отново процеса на разрешение.",
@@ -16,16 +16,17 @@
16
16
  "title": "Неподдържан тип взаимодействие"
17
17
  }
18
18
  },
19
- "permissionsTitle": "Приложението иска следните разрешения:",
19
+ "permissionsTitle": "Искаме следните разрешения:",
20
+ "redirectUri": "Ще бъдете пренасочени след успешното разрешение",
20
21
  "scope": {
21
22
  "email": "Достъп до вашия имейл адрес",
22
- "offline_access": "Достъп до вашите данни, докато сте офлайн",
23
+ "offline_access": "Позволете на клиента да получи достъп до вашите данни",
23
24
  "openid": "Аутентификация с вашия LobeChat акаунт",
24
25
  "profile": "Достъп до основната ви информация (име, аватар и др.)",
25
- "sync:read": "Четене на вашите синхронизирани данни",
26
- "sync:write": "Записване и актуализиране на вашите синхронизирани данни"
26
+ "sync-read": "Четене на вашите синхронизирани данни",
27
+ "sync-write": "Записване и актуализиране на вашите синхронизирани данни"
27
28
  },
28
- "title": "Заявка за разрешение"
29
+ "title": "Разрешаване на {{clientName}}"
29
30
  },
30
31
  "failed": {
31
32
  "backToHome": "Върнете се на началната страница",
@@ -1067,6 +1067,15 @@
1067
1067
  "gpt-4-vision-preview": {
1068
1068
  "description": "Das neueste GPT-4 Turbo-Modell verfügt über visuelle Funktionen. Jetzt können visuelle Anfragen im JSON-Format und durch Funktionsaufrufe gestellt werden. GPT-4 Turbo ist eine verbesserte Version, die kosteneffiziente Unterstützung für multimodale Aufgaben bietet. Es findet ein Gleichgewicht zwischen Genauigkeit und Effizienz und eignet sich für Anwendungen, die Echtzeitanpassungen erfordern."
1069
1069
  },
1070
+ "gpt-4.1": {
1071
+ "description": "GPT-4.1 ist unser Flaggschiffmodell für komplexe Aufgaben. Es eignet sich hervorragend zur Lösung von Problemen über verschiedene Bereiche hinweg."
1072
+ },
1073
+ "gpt-4.1-mini": {
1074
+ "description": "GPT-4.1 mini bietet ein Gleichgewicht zwischen Intelligenz, Geschwindigkeit und Kosten, was es zu einem attraktiven Modell für viele Anwendungsfälle macht."
1075
+ },
1076
+ "gpt-4.1-nano": {
1077
+ "description": "GPT-4.1 mini bietet ein Gleichgewicht zwischen Intelligenz, Geschwindigkeit und Kosten, was es zu einem attraktiven Modell für viele Anwendungsfälle macht."
1078
+ },
1070
1079
  "gpt-4.5-preview": {
1071
1080
  "description": "Die Forschungs-Vorschau von GPT-4.5, unserem bisher größten und leistungsstärksten GPT-Modell. Es verfügt über umfangreiches Weltwissen und kann die Absichten der Benutzer besser verstehen, was es in kreativen Aufgaben und autonomer Planung herausragend macht. GPT-4.5 akzeptiert Text- und Bild-Eingaben und generiert Textausgaben (einschließlich strukturierter Ausgaben). Es unterstützt wichtige Entwicklerfunktionen wie Funktionsaufrufe, Batch-APIs und Streaming-Ausgaben. In Aufgaben, die kreatives, offenes Denken und Dialog erfordern (wie Schreiben, Lernen oder das Erkunden neuer Ideen), zeigt GPT-4.5 besonders gute Leistungen. Der Wissensstand ist bis Oktober 2023."
1072
1081
  },
@@ -4,7 +4,7 @@
4
4
  "accept": "Zustimmen",
5
5
  "deny": "Ablehnen"
6
6
  },
7
- "description": "Die Anwendung {clientId} fordert Zugriff auf Ihr LobeChat-Konto an",
7
+ "description": "Die Anwendung {{clientName}} beantragt die Autorisierung Ihres Kontos",
8
8
  "error": {
9
9
  "sessionInvalid": {
10
10
  "message": "Die Autorisierungssitzung ist abgelaufen oder ungültig. Bitte starten Sie den Autorisierungsprozess erneut.",
@@ -16,16 +16,17 @@
16
16
  "title": "Nicht unterstützter Interaktionstyp"
17
17
  }
18
18
  },
19
- "permissionsTitle": "Die Anwendung fordert die folgenden Berechtigungen an:",
19
+ "permissionsTitle": "Anforderung der folgenden Berechtigungen:",
20
+ "redirectUri": "Nach erfolgreicher Autorisierung werden Sie umgeleitet zu",
20
21
  "scope": {
21
22
  "email": "Zugriff auf Ihre E-Mail-Adresse",
22
- "offline_access": "Zugriff auf Ihre Daten auch im Offline-Modus",
23
+ "offline_access": "Erlauben Sie dem Client, auf Ihre Daten zuzugreifen",
23
24
  "openid": "Authentifizierung mit Ihrem LobeChat-Konto",
24
25
  "profile": "Zugriff auf Ihre Profilinformationen (Name, Avatar usw.)",
25
- "sync:read": "Lesen Ihrer Synchronisierungsdaten",
26
- "sync:write": "Schreiben und Aktualisieren Ihrer Synchronisierungsdaten"
26
+ "sync-read": "Lesen Sie Ihre synchronisierten Daten",
27
+ "sync-write": "Schreiben und Aktualisieren Sie Ihre synchronisierten Daten"
27
28
  },
28
- "title": "Autorisierungsanfrage"
29
+ "title": "Autorisierung von {{clientName}}"
29
30
  },
30
31
  "failed": {
31
32
  "backToHome": "Zurück zur Startseite",
@@ -1067,6 +1067,15 @@
1067
1067
  "gpt-4-vision-preview": {
1068
1068
  "description": "The latest GPT-4 Turbo model features visual capabilities. Now, visual requests can be made using JSON format and function calls. GPT-4 Turbo is an enhanced version that provides cost-effective support for multimodal tasks. It strikes a balance between accuracy and efficiency, making it suitable for applications requiring real-time interaction."
1069
1069
  },
1070
+ "gpt-4.1": {
1071
+ "description": "GPT-4.1 is our flagship model for complex tasks. It excels at solving problems across various domains."
1072
+ },
1073
+ "gpt-4.1-mini": {
1074
+ "description": "GPT-4.1 mini offers a balance of intelligence, speed, and cost, making it an attractive model for many use cases."
1075
+ },
1076
+ "gpt-4.1-nano": {
1077
+ "description": "GPT-4.1 nano provides a balance of intelligence, speed, and cost, making it an appealing model for numerous applications."
1078
+ },
1070
1079
  "gpt-4.5-preview": {
1071
1080
  "description": "The research preview of GPT-4.5, our largest and most powerful GPT model to date. It possesses extensive world knowledge and better understands user intent, excelling in creative tasks and autonomous planning. GPT-4.5 accepts both text and image inputs and generates text outputs (including structured outputs). It supports key developer features such as function calling, batch API, and streaming output. GPT-4.5 particularly shines in tasks that require creativity, open-ended thinking, and dialogue, such as writing, learning, or exploring new ideas. Knowledge cutoff date is October 2023."
1072
1081
  },
@@ -4,7 +4,7 @@
4
4
  "accept": "Authorize",
5
5
  "deny": "Deny"
6
6
  },
7
- "description": "The application {clientId} is requesting access to your LobeChat account",
7
+ "description": "The application {{clientName}} is requesting authorization for your account",
8
8
  "error": {
9
9
  "sessionInvalid": {
10
10
  "message": "The authorization session has expired or is invalid. Please restart the authorization process.",
@@ -16,16 +16,17 @@
16
16
  "title": "Unsupported Interaction Type"
17
17
  }
18
18
  },
19
- "permissionsTitle": "The application requests the following permissions:",
19
+ "permissionsTitle": "Requesting the following permissions:",
20
+ "redirectUri": "You will be redirected to after successful authorization",
20
21
  "scope": {
21
22
  "email": "Access your email address",
22
- "offline_access": "Continue to access your data while you are offline",
23
+ "offline_access": "Allow the client to access your data",
23
24
  "openid": "Authenticate using your LobeChat account",
24
25
  "profile": "Access your basic profile information (name, avatar, etc.)",
25
- "sync:read": "Read your sync data",
26
- "sync:write": "Write and update your sync data"
26
+ "sync-read": "Read your synchronized data",
27
+ "sync-write": "Write and update your synchronized data"
27
28
  },
28
- "title": "Authorization Request"
29
+ "title": "Authorize {{clientName}}"
29
30
  },
30
31
  "failed": {
31
32
  "backToHome": "Back to Home",
@@ -1067,6 +1067,15 @@
1067
1067
  "gpt-4-vision-preview": {
1068
1068
  "description": "El último modelo GPT-4 Turbo cuenta con funciones visuales. Ahora, las solicitudes visuales pueden utilizar el modo JSON y llamadas a funciones. GPT-4 Turbo es una versión mejorada que ofrece soporte rentable para tareas multimodales. Encuentra un equilibrio entre precisión y eficiencia, adecuado para aplicaciones que requieren interacción en tiempo real."
1069
1069
  },
1070
+ "gpt-4.1": {
1071
+ "description": "GPT-4.1 es nuestro modelo insignia para tareas complejas. Es ideal para resolver problemas en múltiples dominios."
1072
+ },
1073
+ "gpt-4.1-mini": {
1074
+ "description": "GPT-4.1 mini ofrece un equilibrio entre inteligencia, velocidad y costo, lo que lo convierte en un modelo atractivo para muchos casos de uso."
1075
+ },
1076
+ "gpt-4.1-nano": {
1077
+ "description": "GPT-4.1 mini ofrece un equilibrio entre inteligencia, velocidad y costo, lo que lo convierte en un modelo atractivo para muchos casos de uso."
1078
+ },
1070
1079
  "gpt-4.5-preview": {
1071
1080
  "description": "Versión de investigación de GPT-4.5, que es nuestro modelo GPT más grande y potente hasta la fecha. Posee un amplio conocimiento del mundo y puede comprender mejor la intención del usuario, lo que lo hace destacar en tareas creativas y planificación autónoma. GPT-4.5 acepta entradas de texto e imagen y genera salidas de texto (incluidas salidas estructuradas). Soporta funciones clave para desarrolladores, como llamadas a funciones, API por lotes y salida en streaming. En tareas que requieren pensamiento creativo, abierto y diálogo (como escritura, aprendizaje o exploración de nuevas ideas), GPT-4.5 brilla especialmente. La fecha límite de conocimiento es octubre de 2023."
1072
1081
  },
@@ -4,7 +4,7 @@
4
4
  "accept": "Autorizar",
5
5
  "deny": "Denegar"
6
6
  },
7
- "description": "La aplicación {clientId} solicita acceso a su cuenta de LobeChat",
7
+ "description": "La aplicación {{clientName}} solicita autorización para su cuenta",
8
8
  "error": {
9
9
  "sessionInvalid": {
10
10
  "message": "La sesión de autorización ha expirado o es inválida, por favor inicie nuevamente el proceso de autorización.",
@@ -16,16 +16,17 @@
16
16
  "title": "Tipo de interacción no soportado"
17
17
  }
18
18
  },
19
- "permissionsTitle": "La aplicación solicita los siguientes permisos:",
19
+ "permissionsTitle": "Solicitar los siguientes permisos:",
20
+ "redirectUri": "Se redirigirá a después de la autorización exitosa",
20
21
  "scope": {
21
22
  "email": "Acceder a su dirección de correo electrónico",
22
- "offline_access": "Continuar accediendo a sus datos mientras está desconectado",
23
+ "offline_access": "Permitir que el cliente acceda a sus datos",
23
24
  "openid": "Autenticarse con su cuenta de LobeChat",
24
25
  "profile": "Acceder a su información básica de perfil (nombre, foto, etc.)",
25
- "sync:read": "Leer sus datos de sincronización",
26
- "sync:write": "Escribir y actualizar sus datos de sincronización"
26
+ "sync-read": "Leer sus datos sincronizados",
27
+ "sync-write": "Escribir y actualizar sus datos sincronizados"
27
28
  },
28
- "title": "Solicitud de autorización"
29
+ "title": "Autorizar {{clientName}}"
29
30
  },
30
31
  "failed": {
31
32
  "backToHome": "Volver a la página de inicio",
@@ -1067,6 +1067,15 @@
1067
1067
  "gpt-4-vision-preview": {
1068
1068
  "description": "جدیدترین مدل GPT-4 Turbo دارای قابلیت‌های بصری است. اکنون درخواست‌های بصری می‌توانند از حالت JSON و فراخوانی توابع استفاده کنند. GPT-4 Turbo نسخه‌ای پیشرفته است که پشتیبانی مقرون‌به‌صرفه‌ای برای وظایف چندوجهی ارائه می‌دهد. این مدل بین دقت و کارایی تعادل برقرار می‌کند و برای سناریوهای کاربردی که نیاز به تعاملات بلادرنگ دارند، مناسب است."
1069
1069
  },
1070
+ "gpt-4.1": {
1071
+ "description": "GPT-4.1 مدل پرچمدار ما برای وظایف پیچیده است. این مدل برای حل مسائل در زمینه‌های مختلف بسیار مناسب است."
1072
+ },
1073
+ "gpt-4.1-mini": {
1074
+ "description": "GPT-4.1 mini تعادلی بین هوش، سرعت و هزینه ارائه می‌دهد و آن را به مدلی جذاب در بسیاری از موارد استفاده تبدیل می‌کند."
1075
+ },
1076
+ "gpt-4.1-nano": {
1077
+ "description": "GPT-4.1 mini تعادلی بین هوش، سرعت و هزینه ارائه می‌دهد و آن را به مدلی جذاب در بسیاری از موارد استفاده تبدیل می‌کند."
1078
+ },
1070
1079
  "gpt-4.5-preview": {
1071
1080
  "description": "نسخه پیش‌نمایش تحقیقاتی GPT-4.5، بزرگ‌ترین و قدرتمندترین مدل GPT ما تا به امروز است. این مدل دارای دانش وسیع جهانی است و می‌تواند بهتر از قبل نیت‌های کاربران را درک کند، که باعث می‌شود در وظایف خلاقانه و برنامه‌ریزی مستقل عملکرد فوق‌العاده‌ای داشته باشد. GPT-4.5 قادر به پذیرش ورودی‌های متنی و تصویری است و خروجی‌های متنی (شامل خروجی‌های ساختاریافته) تولید می‌کند. از ویژگی‌های کلیدی توسعه‌دهندگان مانند فراخوانی توابع، API دسته‌ای و خروجی جریانی پشتیبانی می‌کند. در وظایفی که نیاز به تفکر خلاق، تفکر باز و گفتگو دارند (مانند نوشتن، یادگیری یا کاوش ایده‌های جدید)، GPT-4.5 به‌ویژه عملکرد خوبی دارد. تاریخ قطع دانش در اکتبر 2023 است."
1072
1081
  },
@@ -4,7 +4,7 @@
4
4
  "accept": "اجازه",
5
5
  "deny": "رد"
6
6
  },
7
- "description": "برنامه {clientId} درخواست دسترسی به حساب LobeChat شما را دارد",
7
+ "description": "برنامه {{clientName}} درخواست مجوز حساب شما را دارد",
8
8
  "error": {
9
9
  "sessionInvalid": {
10
10
  "message": "جلسه مجوز منقضی یا نامعتبر است، لطفاً فرآیند مجوز را دوباره آغاز کنید.",
@@ -16,16 +16,17 @@
16
16
  "title": "نوع تعامل پشتیبانی نمی‌شود"
17
17
  }
18
18
  },
19
- "permissionsTitle": "برنامه درخواست دسترسی به مجوزهای زیر را دارد:",
19
+ "permissionsTitle": "درخواست مجوزهای زیر:",
20
+ "redirectUri": "پس از موفقیت در مجوز، به آدرس زیر هدایت می‌شوید",
20
21
  "scope": {
21
22
  "email": "دسترسی به آدرس ایمیل شما",
22
- "offline_access": "دسترسی به داده‌های شما در حالت آفلاین",
23
+ "offline_access": "اجازه دسترسی به داده‌های شما توسط کلاینت",
23
24
  "openid": "احراز هویت با حساب LobeChat شما",
24
25
  "profile": "دسترسی به اطلاعات پروفایل شما (نام، تصویر پروفایل و غیره)",
25
- "sync:read": "خواندن داده‌های همگام‌سازی شما",
26
- "sync:write": "نوشتن و به‌روزرسانی داده‌های همگام‌سازی شما"
26
+ "sync-read": "خواندن داده‌های همگام‌سازی شده شما",
27
+ "sync-write": "نوشتن و به‌روزرسانی داده‌های همگام‌سازی شده شما"
27
28
  },
28
- "title": "درخواست مجوز"
29
+ "title": "مجوز {{clientName}}"
29
30
  },
30
31
  "failed": {
31
32
  "backToHome": "بازگشت به صفحه اصلی",
@@ -1067,6 +1067,15 @@
1067
1067
  "gpt-4-vision-preview": {
1068
1068
  "description": "Le dernier modèle GPT-4 Turbo dispose de fonctionnalités visuelles. Désormais, les requêtes visuelles peuvent être effectuées en utilisant le mode JSON et les appels de fonction. GPT-4 Turbo est une version améliorée, offrant un soutien rentable pour les tâches multimodales. Il trouve un équilibre entre précision et efficacité, adapté aux applications nécessitant des interactions en temps réel."
1069
1069
  },
1070
+ "gpt-4.1": {
1071
+ "description": "GPT-4.1 est notre modèle phare pour des tâches complexes. Il est particulièrement adapté à la résolution de problèmes interdomaines."
1072
+ },
1073
+ "gpt-4.1-mini": {
1074
+ "description": "GPT-4.1 mini offre un équilibre entre intelligence, rapidité et coût, ce qui en fait un modèle attrayant pour de nombreux cas d'utilisation."
1075
+ },
1076
+ "gpt-4.1-nano": {
1077
+ "description": "GPT-4.1 mini offre un équilibre entre intelligence, rapidité et coût, ce qui en fait un modèle attrayant pour de nombreux cas d'utilisation."
1078
+ },
1070
1079
  "gpt-4.5-preview": {
1071
1080
  "description": "La version de recherche préliminaire de GPT-4.5, qui est notre modèle GPT le plus grand et le plus puissant à ce jour. Il possède une vaste connaissance du monde et comprend mieux les intentions des utilisateurs, ce qui le rend exceptionnel dans les tâches créatives et la planification autonome. GPT-4.5 accepte les entrées textuelles et visuelles et génère des sorties textuelles (y compris des sorties structurées). Il prend en charge des fonctionnalités clés pour les développeurs, telles que les appels de fonctions, l'API par lots et les sorties en continu. GPT-4.5 excelle particulièrement dans les tâches nécessitant créativité, pensée ouverte et dialogue (comme l'écriture, l'apprentissage ou l'exploration de nouvelles idées). La date limite des connaissances est fixée à octobre 2023."
1072
1081
  },
@@ -4,7 +4,7 @@
4
4
  "accept": "Autoriser",
5
5
  "deny": "Refuser"
6
6
  },
7
- "description": "L'application {clientId} demande l'accès à votre compte LobeChat",
7
+ "description": "L'application {{clientName}} demande l'autorisation de votre compte",
8
8
  "error": {
9
9
  "sessionInvalid": {
10
10
  "message": "La session d'autorisation a expiré ou est invalide, veuillez relancer le processus d'autorisation.",
@@ -16,16 +16,17 @@
16
16
  "title": "Type d'interaction non pris en charge"
17
17
  }
18
18
  },
19
- "permissionsTitle": "L'application demande les permissions suivantes :",
19
+ "permissionsTitle": "Demander les autorisations suivantes :",
20
+ "redirectUri": "Vous serez redirigé vers après une autorisation réussie",
20
21
  "scope": {
21
22
  "email": "Accéder à votre adresse e-mail",
22
- "offline_access": "Continuer à accéder à vos données lorsque vous êtes hors ligne",
23
+ "offline_access": "Autoriser le client à accéder à vos données",
23
24
  "openid": "S'authentifier avec votre compte LobeChat",
24
25
  "profile": "Accéder à vos informations de profil (nom, photo, etc.)",
25
- "sync:read": "Lire vos données de synchronisation",
26
- "sync:write": "Écrire et mettre à jour vos données de synchronisation"
26
+ "sync-read": "Lire vos données synchronisées",
27
+ "sync-write": "Écrire et mettre à jour vos données synchronisées"
27
28
  },
28
- "title": "Demande d'autorisation"
29
+ "title": "Autoriser {{clientName}}"
29
30
  },
30
31
  "failed": {
31
32
  "backToHome": "Retour à l'accueil",
@@ -1067,6 +1067,15 @@
1067
1067
  "gpt-4-vision-preview": {
1068
1068
  "description": "L'ultimo modello GPT-4 Turbo ha funzionalità visive. Ora, le richieste visive possono essere effettuate utilizzando il formato JSON e le chiamate di funzione. GPT-4 Turbo è una versione potenziata che offre supporto economico per compiti multimodali. Trova un equilibrio tra accuratezza ed efficienza, adatta a scenari di applicazione che richiedono interazioni in tempo reale."
1069
1069
  },
1070
+ "gpt-4.1": {
1071
+ "description": "GPT-4.1 è il nostro modello di punta per compiti complessi. È particolarmente adatto per risolvere problemi trasversali."
1072
+ },
1073
+ "gpt-4.1-mini": {
1074
+ "description": "GPT-4.1 mini offre un equilibrio tra intelligenza, velocità e costo, rendendolo un modello attraente per molti casi d'uso."
1075
+ },
1076
+ "gpt-4.1-nano": {
1077
+ "description": "GPT-4.1 mini offre un equilibrio tra intelligenza, velocità e costo, rendendolo un modello attraente per molti casi d'uso."
1078
+ },
1070
1079
  "gpt-4.5-preview": {
1071
1080
  "description": "Anteprima di ricerca di GPT-4.5, il nostro modello GPT più grande e potente fino ad oggi. Possiede una vasta conoscenza del mondo e comprende meglio le intenzioni degli utenti, eccellendo in compiti creativi e nella pianificazione autonoma. GPT-4.5 accetta input testuali e visivi e genera output testuali (inclusi output strutturati). Supporta funzionalità chiave per gli sviluppatori, come chiamate di funzione, API in batch e output in streaming. GPT-4.5 si distingue particolarmente in compiti che richiedono pensiero creativo, aperto e dialogo (come scrittura, apprendimento o esplorazione di nuove idee). La data di scadenza delle conoscenze è ottobre 2023."
1072
1081
  },
@@ -4,7 +4,7 @@
4
4
  "accept": "Autorizza",
5
5
  "deny": "Rifiuta"
6
6
  },
7
- "description": "L'app {clientId} richiede accesso al tuo account LobeChat",
7
+ "description": "L'applicazione {{clientName}} richiede l'autorizzazione per il tuo account",
8
8
  "error": {
9
9
  "sessionInvalid": {
10
10
  "message": "La sessione di autorizzazione è scaduta o non valida, per favore riavvia il processo di autorizzazione.",
@@ -16,16 +16,17 @@
16
16
  "title": "Tipo di interazione non supportato"
17
17
  }
18
18
  },
19
- "permissionsTitle": "L'app richiede i seguenti permessi:",
19
+ "permissionsTitle": "Richiesta delle seguenti autorizzazioni:",
20
+ "redirectUri": "Verrai reindirizzato a dopo un'autorizzazione riuscita",
20
21
  "scope": {
21
22
  "email": "Accesso al tuo indirizzo email",
22
- "offline_access": "Continua ad accedere ai tuoi dati quando sei offline",
23
+ "offline_access": "Consenti all'accesso del client ai tuoi dati",
23
24
  "openid": "Autenticati con il tuo account LobeChat",
24
25
  "profile": "Accesso alle tue informazioni di base (nome, foto profilo, ecc.)",
25
- "sync:read": "Leggi i tuoi dati di sincronizzazione",
26
- "sync:write": "Scrivi e aggiorna i tuoi dati di sincronizzazione"
26
+ "sync-read": "Leggi i tuoi dati sincronizzati",
27
+ "sync-write": "Scrivi e aggiorna i tuoi dati sincronizzati"
27
28
  },
28
- "title": "Richiesta di autorizzazione"
29
+ "title": "Autorizzazione per {{clientName}}"
29
30
  },
30
31
  "failed": {
31
32
  "backToHome": "Torna alla home",
@@ -1067,6 +1067,15 @@
1067
1067
  "gpt-4-vision-preview": {
1068
1068
  "description": "最新のGPT-4 Turboモデルは視覚機能を備えています。現在、視覚リクエストはJSON形式と関数呼び出しを使用して行うことができます。GPT-4 Turboは、マルチモーダルタスクに対してコスト効率の高いサポートを提供する強化版です。正確性と効率のバランスを取り、リアルタイムのインタラクションが必要なアプリケーションシナリオに適しています。"
1069
1069
  },
1070
+ "gpt-4.1": {
1071
+ "description": "GPT-4.1は、複雑なタスクに使用するためのフラッグシップモデルです。さまざまな分野の問題を解決するのに非常に適しています。"
1072
+ },
1073
+ "gpt-4.1-mini": {
1074
+ "description": "GPT-4.1 miniは、知性、速度、コストのバランスを提供し、多くのユースケースにおいて魅力的なモデルとなっています。"
1075
+ },
1076
+ "gpt-4.1-nano": {
1077
+ "description": "GPT-4.1 miniは、知性、速度、コストのバランスを提供し、多くのユースケースにおいて魅力的なモデルとなっています。"
1078
+ },
1070
1079
  "gpt-4.5-preview": {
1071
1080
  "description": "GPT-4.5の研究プレビュー版で、これまでで最大かつ最強のGPTモデルです。広範な世界知識を持ち、ユーザーの意図をよりよく理解することができるため、創造的なタスクや自律的な計画において優れたパフォーマンスを発揮します。GPT-4.5はテキストと画像の入力を受け付け、テキスト出力(構造化出力を含む)を生成します。関数呼び出し、バッチAPI、ストリーミング出力など、重要な開発者機能をサポートしています。創造的でオープンな思考や対話が求められるタスク(執筆、学習、新しいアイデアの探求など)において、GPT-4.5は特に優れた性能を発揮します。知識のカットオフ日は2023年10月です。"
1072
1081
  },
@@ -4,7 +4,7 @@
4
4
  "accept": "承認",
5
5
  "deny": "拒否"
6
6
  },
7
- "description": "{clientId} アプリがあなたの LobeChat アカウントへのアクセスを要求しています",
7
+ "description": "アプリケーション {{clientName}} があなたのアカウントの承認を要求しています",
8
8
  "error": {
9
9
  "sessionInvalid": {
10
10
  "message": "承認セッションが期限切れまたは無効です。再度承認プロセスを開始してください。",
@@ -16,16 +16,17 @@
16
16
  "title": "サポートされていないインタラクションタイプ"
17
17
  }
18
18
  },
19
- "permissionsTitle": "アプリが以下の権限を要求しています:",
19
+ "permissionsTitle": "以下の権限をリクエストします:",
20
+ "redirectUri": "承認が成功した後、次の場所にリダイレクトされます",
20
21
  "scope": {
21
22
  "email": "あなたのメールアドレスにアクセス",
22
- "offline_access": "オフラインの際もデータにアクセス",
23
+ "offline_access": "クライアントがあなたのデータにアクセスすることを許可",
23
24
  "openid": "あなたの LobeChat アカウントで認証",
24
25
  "profile": "基本的なプロフィール情報(名前、アバターなど)にアクセス",
25
- "sync:read": "あなたの同期データを読み取る",
26
- "sync:write": "あなたの同期データを書き込み、更新する"
26
+ "sync-read": "あなたの同期データを読み取る",
27
+ "sync-write": "あなたの同期データを書き込み、更新する"
27
28
  },
28
- "title": "承認リクエスト"
29
+ "title": "{{clientName}} の承認"
29
30
  },
30
31
  "failed": {
31
32
  "backToHome": "ホームに戻る",
@@ -1067,6 +1067,15 @@
1067
1067
  "gpt-4-vision-preview": {
1068
1068
  "description": "최신 GPT-4 Turbo 모델은 시각적 기능을 갖추고 있습니다. 이제 시각적 요청은 JSON 형식과 함수 호출을 사용하여 처리할 수 있습니다. GPT-4 Turbo는 다중 모드 작업을 위한 비용 효율적인 지원을 제공하는 향상된 버전입니다. 정확성과 효율성 간의 균형을 찾아 실시간 상호작용이 필요한 응용 프로그램에 적합합니다."
1069
1069
  },
1070
+ "gpt-4.1": {
1071
+ "description": "GPT-4.1은 복잡한 작업을 위한 우리의 플래그십 모델입니다. 다양한 분야의 문제를 해결하는 데 매우 적합합니다."
1072
+ },
1073
+ "gpt-4.1-mini": {
1074
+ "description": "GPT-4.1 mini는 지능, 속도 및 비용 간의 균형을 제공하여 많은 사용 사례에서 매력적인 모델이 됩니다."
1075
+ },
1076
+ "gpt-4.1-nano": {
1077
+ "description": "GPT-4.1 mini는 지능, 속도 및 비용 간의 균형을 제공하여 많은 사용 사례에서 매력적인 모델이 됩니다."
1078
+ },
1070
1079
  "gpt-4.5-preview": {
1071
1080
  "description": "GPT-4.5 연구 미리보기 버전으로, 지금까지 우리가 만든 가장 크고 강력한 GPT 모델입니다. 광범위한 세계 지식을 보유하고 있으며 사용자 의도를 더 잘 이해하여 창의적인 작업과 자율 계획에서 뛰어난 성능을 발휘합니다. GPT-4.5는 텍스트와 이미지 입력을 수용하고 텍스트 출력을 생성합니다(구조화된 출력 포함). 함수 호출, 배치 API 및 스트리밍 출력을 포함한 주요 개발자 기능을 지원합니다. 창의적이고 개방적인 사고 및 대화가 필요한 작업(예: 글쓰기, 학습 또는 새로운 아이디어 탐색)에서 특히 뛰어난 성능을 보입니다. 지식 기준일은 2023년 10월입니다."
1072
1081
  },
@@ -4,7 +4,7 @@
4
4
  "accept": "허가",
5
5
  "deny": "거부"
6
6
  },
7
- "description": "{clientId} 애플리케이션이 귀하의 LobeChat 계정에 접근을 요청합니다",
7
+ "description": "애플리케이션 {{clientName}}이(가) 귀하의 계정 권한을 요청합니다.",
8
8
  "error": {
9
9
  "sessionInvalid": {
10
10
  "message": "허가 세션이 만료되었거나 유효하지 않습니다. 허가 프로세스를 다시 시작하십시오.",
@@ -16,16 +16,17 @@
16
16
  "title": "지원되지 않는 상호작용 유형"
17
17
  }
18
18
  },
19
- "permissionsTitle": "애플리케이션이 다음 권한을 요청합니다:",
19
+ "permissionsTitle": "다음 권한 요청:",
20
+ "redirectUri": "권한 부여가 성공적으로 완료된 후 리디렉션됩니다.",
20
21
  "scope": {
21
22
  "email": "귀하의 이메일 주소에 접근",
22
- "offline_access": "오프라인 상태에서도 귀하의 데이터에 접근",
23
+ "offline_access": "클라이언트가 귀하의 데이터에 접근할 수 있도록 허용",
23
24
  "openid": "귀하의 LobeChat 계정으로 인증",
24
25
  "profile": "귀하의 기본 프로필 정보(이름, 프로필 사진 등)에 접근",
25
- "sync:read": "귀하의 동기화 데이터 읽기",
26
- "sync:write": "귀하의 동기화 데이터 쓰기 및 업데이트"
26
+ "sync-read": "귀하의 동기화 데이터를 읽습니다",
27
+ "sync-write": "귀하의 동기화 데이터를 작성하고 업데이트합니다"
27
28
  },
28
- "title": "허가 요청"
29
+ "title": "권한 부여 {{clientName}}"
29
30
  },
30
31
  "failed": {
31
32
  "backToHome": "홈으로 돌아가기",