- {[t('Load Balancing'), t('Rate Limiting'), t('Cost Tracking')].map(
+ {[t('Pay-as-you-go'), t('Transparent Billing'), t('Real-time Balance')].map(
(step, i) => (
diff --git a/web/default/src/features/home/components/sections/how-it-works.tsx b/web/default/src/features/home/components/sections/how-it-works.tsx
index b4f7fb285f27..2e81e408b634 100644
--- a/web/default/src/features/home/components/sections/how-it-works.tsx
+++ b/web/default/src/features/home/components/sections/how-it-works.tsx
@@ -26,24 +26,20 @@ export function HowItWorks() {
const steps = [
{
num: '1',
- title: t('Configure'),
- desc: t(
- 'Add your API keys, set up channels and configure access permissions'
- ),
+ title: t('Sign up account'),
+ desc: t('Register and claim your 20 CNY free credit'),
icon:
,
},
{
num: '2',
- title: t('Connect'),
- desc: t(
- 'Connect through OpenAI, Claude, Gemini, and other compatible API routes'
- ),
+ title: t('Connect your app'),
+ desc: t('Get your API key and plug it into Cherry Studio or your code'),
icon:
,
},
{
num: '3',
- title: t('Monitor'),
- desc: t('Track usage, costs and performance with real-time analytics'),
+ title: t('Start calling'),
+ desc: t('Pay-as-you-go — track usage and cost anytime'),
icon:
,
},
]
@@ -53,10 +49,10 @@ export function HowItWorks() {
- {t('How It Works')}
+ {t('Getting Started')}
- {t('Three steps to get started')}
+ {t('Start in three steps')}
diff --git a/web/default/src/features/home/components/sections/stats.tsx b/web/default/src/features/home/components/sections/stats.tsx
index c3a5bc1d4b17..9df84fbe05ec 100644
--- a/web/default/src/features/home/components/sections/stats.tsx
+++ b/web/default/src/features/home/components/sections/stats.tsx
@@ -98,10 +98,10 @@ export function Stats(_props: StatsProps) {
const { t } = useTranslation()
const stats: StatItem[] = [
- { end: 50, suffix: '+', label: t('upstream services integrated') },
- { end: 100, suffix: '+', label: t('model billing support') },
- { end: 50, suffix: '+', label: t('compatible API routes') },
- { end: 10, suffix: '+', label: t('scheduling controls') },
+ { end: 100, suffix: '%', label: t('Service availability') },
+ { end: 20, suffix: '元', label: t('Free credit on sign-up') },
+ { end: 7, suffix: '×24', label: t('Always-on stable service') },
+ { end: 10, suffix: '+', label: t('Mainstream domestic models') },
]
return (
diff --git a/web/default/src/features/pricing/components/edit-pricing-dialog.tsx b/web/default/src/features/pricing/components/edit-pricing-dialog.tsx
new file mode 100644
index 000000000000..3386cf588782
--- /dev/null
+++ b/web/default/src/features/pricing/components/edit-pricing-dialog.tsx
@@ -0,0 +1,213 @@
+import { useEffect, useState } from 'react'
+import { useTranslation } from 'react-i18next'
+import { toast } from 'sonner'
+import {
+ getSystemOptions,
+ updateSystemOption,
+} from '@/features/system-settings/api'
+import {
+ Dialog,
+ DialogContent,
+ DialogFooter,
+ DialogHeader,
+ DialogTitle,
+} from '@/components/ui/dialog'
+import { Button } from '@/components/ui/button'
+import { Input } from '@/components/ui/input'
+
+interface EditPricingDialogProps {
+ open: boolean
+ onOpenChange: (open: boolean) => void
+ modelName: string
+ onSaved: () => void
+}
+
+type Mode = 'per-token' | 'per-request'
+
+// Read one ratio/price map (JSON-string option) by key from the option list.
+function readMap(
+ arr: { key: string; value: string }[],
+ key: string
+): Record
{
+ const raw = arr.find((o) => o.key === key)?.value
+ try {
+ return raw ? JSON.parse(raw) : {}
+ } catch {
+ return {}
+ }
+}
+
+export function EditPricingDialog({
+ open,
+ onOpenChange,
+ modelName,
+ onSaved,
+}: EditPricingDialogProps) {
+ const { t } = useTranslation()
+ const [mode, setMode] = useState('per-token')
+ const [ratio, setRatio] = useState('')
+ const [completionRatio, setCompletionRatio] = useState('')
+ const [price, setPrice] = useState('')
+ const [saving, setSaving] = useState(false)
+
+ useEffect(() => {
+ if (!open || !modelName) return
+ let alive = true
+ ;(async () => {
+ try {
+ const res = await getSystemOptions()
+ if (!alive) return
+ const arr = res.data ?? []
+ const mr = readMap(arr, 'ModelRatio')
+ const cr = readMap(arr, 'CompletionRatio')
+ const mp = readMap(arr, 'ModelPrice')
+ const hasPrice = mp[modelName] !== undefined && mp[modelName] !== ''
+ setMode(hasPrice ? 'per-request' : 'per-token')
+ setRatio(mr[modelName] != null ? String(mr[modelName]) : '')
+ setCompletionRatio(cr[modelName] != null ? String(cr[modelName]) : '')
+ setPrice(hasPrice ? String(mp[modelName]) : '')
+ } catch {
+ // ignore load errors
+ }
+ })()
+ return () => {
+ alive = false
+ }
+ }, [open, modelName])
+
+ const toNum = (s: string): number | null => {
+ if (s === '') return null
+ const n = Number(s)
+ return Number.isFinite(n) ? n : null
+ }
+
+ const handleSave = async () => {
+ setSaving(true)
+ try {
+ // Re-read latest maps to avoid clobbering other models' entries.
+ const res = await getSystemOptions()
+ const arr = res.data ?? []
+ const mr = readMap(arr, 'ModelRatio')
+ const cr = readMap(arr, 'CompletionRatio')
+ const mp = readMap(arr, 'ModelPrice')
+
+ if (mode === 'per-token') {
+ const r = toNum(ratio)
+ if (r == null || r <= 0) {
+ throw new Error(t('Please enter a valid input ratio'))
+ }
+ mr[modelName] = r
+ const c = toNum(completionRatio)
+ if (c != null) cr[modelName] = c
+ else delete cr[modelName]
+ delete mp[modelName]
+ } else {
+ const p = toNum(price)
+ if (p == null || p < 0) {
+ throw new Error(t('Please enter a valid fixed price'))
+ }
+ mp[modelName] = p
+ delete mr[modelName]
+ delete cr[modelName]
+ }
+
+ // UpdateOptionRequest is a single {key, value}; one call per map.
+ // Backend (model/option.go) refreshes in-memory ratio maps immediately
+ // on each PUT, so the change takes effect for the next request.
+ await updateSystemOption({
+ key: 'ModelRatio',
+ value: JSON.stringify(mr),
+ })
+ await updateSystemOption({
+ key: 'CompletionRatio',
+ value: JSON.stringify(cr),
+ })
+ await updateSystemOption({
+ key: 'ModelPrice',
+ value: JSON.stringify(mp),
+ })
+
+ toast.success(t('Pricing saved — takes effect immediately'))
+ onSaved()
+ onOpenChange(false)
+ } catch (e: unknown) {
+ const msg = e instanceof Error ? e.message : t('Save failed')
+ toast.error(msg || t('Save failed'))
+ } finally {
+ setSaving(false)
+ }
+ }
+
+ return (
+
+
+
+
+ {t('Edit Pricing')} — {modelName}
+
+
+
+
+ setMode('per-token')}
+ >
+ {t('Per-token')}
+
+ setMode('per-request')}
+ >
+ {t('Per-request')}
+
+
+ {mode === 'per-token' ? (
+ <>
+
+
+ {t('Input ratio (ModelRatio)')}
+
+ setRatio(e.target.value)}
+ placeholder='1'
+ />
+
+
+
+ {t('Completion ratio')}
+
+ setCompletionRatio(e.target.value)}
+ placeholder='2'
+ />
+
+ >
+ ) : (
+
+
+ {t('Fixed price ($) per call')}
+
+ setPrice(e.target.value)}
+ placeholder='0.01'
+ />
+
+ )}
+
+
+ onOpenChange(false)}>
+ {t('Cancel')}
+
+
+ {saving ? t('Saving...') : t('Save')}
+
+
+
+
+ )
+}
diff --git a/web/default/src/features/pricing/components/model-details.tsx b/web/default/src/features/pricing/components/model-details.tsx
index aa00053b8fc6..48de8dc0a6be 100644
--- a/web/default/src/features/pricing/components/model-details.tsx
+++ b/web/default/src/features/pricing/components/model-details.tsx
@@ -16,7 +16,7 @@ along with this program. If not, see .
For commercial licensing, please contact support@quantumnous.com
*/
-import { useMemo } from 'react'
+import { useMemo, useState } from 'react'
import { useQuery } from '@tanstack/react-query'
import { useNavigate, useParams, useSearch } from '@tanstack/react-router'
import { ArrowLeft, Code2, HeartPulse, Info, Timer } from 'lucide-react'
@@ -24,6 +24,9 @@ import { useTranslation } from 'react-i18next'
import { getLobeIcon } from '@/lib/lobe-icon'
import { cn } from '@/lib/utils'
import { Button } from '@/components/ui/button'
+import { useAuthStore } from '@/stores/auth-store'
+import { ROLE } from '@/lib/roles'
+import { EditPricingDialog } from './edit-pricing-dialog'
import {
Sheet,
SheetContent,
@@ -261,6 +264,10 @@ function OverviewSummaryGrid(props: { model: PricingModel }) {
function ModelHeader(props: { model: PricingModel }) {
const { t } = useTranslation()
const model = props.model
+ const { auth } = useAuthStore()
+ const isAdmin = (auth.user?.role ?? 0) >= ROLE.ADMIN
+ const { refetch } = usePricingData()
+ const [editOpen, setEditOpen] = useState(false)
const modelIconKey = model.icon || model.vendor_icon
const modelIcon = modelIconKey ? getLobeIcon(modelIconKey, 20) : null
const description = model.description || model.vendor_description || null
@@ -285,6 +292,22 @@ function ModelHeader(props: { model: PricingModel }) {
successTooltip={t('Copied!')}
aria-label={t('Copy model name')}
/>
+ {isAdmin && (
+ setEditOpen(true)}
+ >
+ {t('Edit Pricing')}
+
+ )}
+ refetch()}
+ />
{model.vendor_name && (
diff --git a/web/default/src/i18n/locales/en.json b/web/default/src/i18n/locales/en.json
index 97e47f5552c9..5c08d1402cd7 100644
--- a/web/default/src/i18n/locales/en.json
+++ b/web/default/src/i18n/locales/en.json
@@ -3,6 +3,57 @@
"360": "360",
"1000": "1000",
"10000": "10000",
+ "Edit Pricing": "编辑定价",
+ "Per-token": "Per-token",
+ "Per-request": "Per-request",
+ "Input ratio (ModelRatio)": "输入倍率",
+ "Completion ratio": "Completion ratio",
+ "Fixed price ($) per call": "固定价($/次)",
+ "Pricing saved — takes effect immediately": "定价已保存,立即生效",
+ "Please enter a valid input ratio": "请输入有效的输入倍率",
+ "Please enter a valid fixed price": "请输入有效的固定价",
+ "Save failed": "Save failed",
+ "Saving...": "Saving...",
+ "One key, all AI models": "一个密钥 · 畅用全网大模型",
+ "One API key,": "一个 API 密钥,",
+ "access all AI models": "接入所有 AI 大模型",
+ "PaopaoApi aggregates mainstream domestic LLMs — GLM, DeepSeek, MiniMax, Kimi and more. Pay-as-you-go at lower cost; OpenAI-compatible so you can plug into Cherry Studio and other clients in minutes. 20 CNY free credit on sign-up.": "泡泡Api 聚合 GLM、DeepSeek、MiniMax、Kimi 等国内主流大模型,按量计费、价格更省;兼容 OpenAI 协议,几分钟接入 Cherry Studio 等客户端,注册即送 20 元额度。",
+ "OpenAI-compatible — configure your favorite client in one click.": "兼容 OpenAI 等主流协议,一键配置常用客户端。",
+ "All Models in One": "模型齐全",
+ "One key for GLM, DeepSeek, MiniMax, Kimi and more domestic LLMs": "一个密钥用遍 GLM、DeepSeek、MiniMax、Kimi 等国内主流模型",
+ "Stable & Reliable": "稳定可靠",
+ "100% availability, low latency, no dropped requests": "100% 可用性,低延迟、不掉单",
+ "Better Pricing": "价格实惠",
+ "Pay-as-you-go, cheaper than direct access, transparent billing": "按量计费,比直连更省,账单透明",
+ "Pay-as-you-go": "按量计费",
+ "Real-time Balance": "实时余额",
+ "Easy to Connect": "接入简单",
+ "OpenAI-compatible — set up your client in one click": "兼容 OpenAI 协议,一键配置常用客户端",
+ "New User Bonus": "新人福利",
+ "20 CNY free credit on sign-up": "注册即送 20 元额度",
+ "Multi-platform": "多端支持",
+ "Works with Cherry Studio and other popular clients": "支持 Cherry Studio 等常用客户端",
+ "Real-time usage and balance at a glance": "实时用量与余额一目了然",
+ "Community Support": "社区支持",
+ "Active community and thorough docs": "活跃社群与完善文档",
+ "Core Advantages": "核心优势",
+ "Why choose": "为什么选择",
+ "PaopaoApi?": "泡泡Api?",
+ "Service availability": "服务可用性",
+ "Free credit on sign-up": "新人注册赠送额度",
+ "Always-on stable service": "全天候稳定运行",
+ "Mainstream domestic models": "主流国产模型",
+ "Getting Started": "快速上手",
+ "Start in three steps": "三步即可开始",
+ "Sign up account": "注册账号",
+ "Register and claim your 20 CNY free credit": "注册账号,领取 20 元新人额度",
+ "Connect your app": "配置接入",
+ "Get your API key and plug it into Cherry Studio or your code": "获取专属 API 密钥,填入 Cherry Studio 或你的代码",
+ "Start calling": "开始调用",
+ "Pay-as-you-go — track usage and cost anytime": "按量计费,随时查看用量与花费",
+ "Ready to start?": "准备好开始了吗?",
+ "Claim your 20 CNY credit": "领取 20 元新人额度",
+ "Sign up for PaopaoApi, get your key, and start calling GLM, DeepSeek and more in minutes.": "注册泡泡Api,获取密钥,几分钟即可调用 GLM、DeepSeek 等主流模型。",
"_copy": "_copy",
",": ", ",
", and": ", and",
@@ -619,6 +670,7 @@
"Calculated price: ${{price}} per 1M tokens": "Calculated price: ${{price}} per 1M tokens",
"Calculated ratio: {{ratio}}": "Calculated ratio: {{ratio}}",
"Calculating...": "Calculating...",
+ "Call Count": "Call Count",
"Call Count Distribution": "Call Count Distribution",
"Call Count Ranking": "Call Count Ranking",
"Call Proportion": "Call Proportion",
@@ -824,7 +876,6 @@
"Completion": "Completion",
"Completion price": "Completion price",
"Completion price ($/1M tokens)": "Completion price ($/1M tokens)",
- "Completion ratio": "Completion ratio",
"Compliance confirmation required": "Compliance confirmation required",
"Compliance confirmed": "Compliance confirmed",
"Compliance confirmed successfully": "Compliance confirmed successfully",
@@ -985,6 +1036,7 @@
"Core Features": "Core Features",
"Core pricing": "Core pricing",
"Cost": "Cost",
+ "Cost Consumption": "Cost Consumption",
"Cost in USD per request, regardless of tokens used.": "Cost in USD per request, regardless of tokens used.",
"Cost Tracking": "Cost Tracking",
"Count must be between {{min}} and {{max}}": "Count must be between {{min}} and {{max}}",
@@ -2939,9 +2991,7 @@
"Per-call": "Per-call",
"Per-feature metered windows split by model or capability.": "Per-feature metered windows split by model or capability.",
"Per-group performance": "Per-group performance",
- "Per-request": "Per-request",
"Per-request (fixed price)": "Per-request (fixed price)",
- "Per-token": "Per-token",
"Per-token (ratio based)": "Per-token (ratio based)",
"Per-token logit bias map": "Per-token logit bias map",
"Percentage:": "Percentage:",
@@ -3491,7 +3541,6 @@
"Save Creem settings": "Save Creem settings",
"Save drawing settings": "Save drawing settings",
"Save Epay settings": "Save Epay settings",
- "Save failed": "Save failed",
"Save failed, please retry": "Save failed, please retry",
"Save general settings": "Save general settings",
"Save group ratios": "Save group ratios",
@@ -3518,7 +3567,6 @@
"Save Waffo Pancake settings": "Save Waffo Pancake settings",
"Save Worker settings": "Save Worker settings",
"Saved successfully": "Saved successfully",
- "Saving...": "Saving...",
"Scan QR Code": "Scan QR Code",
"Scan the QR code to follow the official account and reply with “验证码” to receive your verification code.": "Scan the QR code to follow the official account and send the message “验证码” to receive your verification code.",
"Scan the QR code with WeChat to bind your account": "Scan the QR code with WeChat to bind your account",
@@ -4352,6 +4400,8 @@
"User Agent": "User Agent",
"User Agreement": "User Agreement",
"User Analytics": "User Analytics",
+ "User Call Count Ranking": "User Call Count Ranking",
+ "User Call Count Trend": "User Call Count Trend",
"User Consumption Ranking": "User Consumption Ranking",
"User Consumption Trend": "User Consumption Trend",
"User created successfully": "User created successfully",
diff --git a/web/default/src/i18n/locales/fr.json b/web/default/src/i18n/locales/fr.json
index 3eeee06bb2e7..ac3e0f7c4ac0 100644
--- a/web/default/src/i18n/locales/fr.json
+++ b/web/default/src/i18n/locales/fr.json
@@ -3,6 +3,57 @@
"360": "360",
"1000": "1000",
"10000": "10000",
+ "Edit Pricing": "编辑定价",
+ "Per-token": "Par jeton",
+ "Per-request": "Par requête",
+ "Input ratio (ModelRatio)": "输入倍率",
+ "Completion ratio": "Ratio de complétion",
+ "Fixed price ($) per call": "固定价($/次)",
+ "Pricing saved — takes effect immediately": "定价已保存,立即生效",
+ "Please enter a valid input ratio": "请输入有效的输入倍率",
+ "Please enter a valid fixed price": "请输入有效的固定价",
+ "Save failed": "Échec de l'enregistrement",
+ "Saving...": "Enregistrement en cours...",
+ "One key, all AI models": "一个密钥 · 畅用全网大模型",
+ "One API key,": "一个 API 密钥,",
+ "access all AI models": "接入所有 AI 大模型",
+ "PaopaoApi aggregates mainstream domestic LLMs — GLM, DeepSeek, MiniMax, Kimi and more. Pay-as-you-go at lower cost; OpenAI-compatible so you can plug into Cherry Studio and other clients in minutes. 20 CNY free credit on sign-up.": "泡泡Api 聚合 GLM、DeepSeek、MiniMax、Kimi 等国内主流大模型,按量计费、价格更省;兼容 OpenAI 协议,几分钟接入 Cherry Studio 等客户端,注册即送 20 元额度。",
+ "OpenAI-compatible — configure your favorite client in one click.": "兼容 OpenAI 等主流协议,一键配置常用客户端。",
+ "All Models in One": "模型齐全",
+ "One key for GLM, DeepSeek, MiniMax, Kimi and more domestic LLMs": "一个密钥用遍 GLM、DeepSeek、MiniMax、Kimi 等国内主流模型",
+ "Stable & Reliable": "稳定可靠",
+ "100% availability, low latency, no dropped requests": "100% 可用性,低延迟、不掉单",
+ "Better Pricing": "价格实惠",
+ "Pay-as-you-go, cheaper than direct access, transparent billing": "按量计费,比直连更省,账单透明",
+ "Pay-as-you-go": "按量计费",
+ "Real-time Balance": "实时余额",
+ "Easy to Connect": "接入简单",
+ "OpenAI-compatible — set up your client in one click": "兼容 OpenAI 协议,一键配置常用客户端",
+ "New User Bonus": "新人福利",
+ "20 CNY free credit on sign-up": "注册即送 20 元额度",
+ "Multi-platform": "多端支持",
+ "Works with Cherry Studio and other popular clients": "支持 Cherry Studio 等常用客户端",
+ "Real-time usage and balance at a glance": "实时用量与余额一目了然",
+ "Community Support": "社区支持",
+ "Active community and thorough docs": "活跃社群与完善文档",
+ "Core Advantages": "核心优势",
+ "Why choose": "为什么选择",
+ "PaopaoApi?": "泡泡Api?",
+ "Service availability": "服务可用性",
+ "Free credit on sign-up": "新人注册赠送额度",
+ "Always-on stable service": "全天候稳定运行",
+ "Mainstream domestic models": "主流国产模型",
+ "Getting Started": "快速上手",
+ "Start in three steps": "三步即可开始",
+ "Sign up account": "注册账号",
+ "Register and claim your 20 CNY free credit": "注册账号,领取 20 元新人额度",
+ "Connect your app": "配置接入",
+ "Get your API key and plug it into Cherry Studio or your code": "获取专属 API 密钥,填入 Cherry Studio 或你的代码",
+ "Start calling": "开始调用",
+ "Pay-as-you-go — track usage and cost anytime": "按量计费,随时查看用量与花费",
+ "Ready to start?": "准备好开始了吗?",
+ "Claim your 20 CNY credit": "领取 20 元新人额度",
+ "Sign up for PaopaoApi, get your key, and start calling GLM, DeepSeek and more in minutes.": "注册泡泡Api,获取密钥,几分钟即可调用 GLM、DeepSeek 等主流模型。",
"_copy": "_copie",
",": ", ",
", and": ", et",
@@ -619,6 +670,7 @@
"Calculated price: ${{price}} per 1M tokens": "Prix calculé : ${{price}} par 1M tokens",
"Calculated ratio: {{ratio}}": "Ratio calculé : {{ratio}}",
"Calculating...": "Calcul en cours...",
+ "Call Count": "Call Count",
"Call Count Distribution": "Distribution du nombre d'appels",
"Call Count Ranking": "Classement du nombre d'appels",
"Call Proportion": "Proportion d'appels",
@@ -824,7 +876,6 @@
"Completion": "Achèvement",
"Completion price": "Prix de complétion",
"Completion price ($/1M tokens)": "Prix de la complétion (USD/1M jetons)",
- "Completion ratio": "Ratio de complétion",
"Compliance confirmation required": "Confirmation de conformité requise",
"Compliance confirmed": "Conformité confirmée",
"Compliance confirmed successfully": "Conformité confirmée avec succès",
@@ -985,6 +1036,7 @@
"Core Features": "Fonctionnalités principales",
"Core pricing": "Tarification principale",
"Cost": "Coût",
+ "Cost Consumption": "Cost Consumption",
"Cost in USD per request, regardless of tokens used.": "Coût en USD par requête, quel que soit le nombre de jetons utilisés.",
"Cost Tracking": "Suivi des coûts",
"Count must be between {{min}} and {{max}}": "Le nombre doit être compris entre {{min}} et {{max}}",
@@ -2939,9 +2991,7 @@
"Per-call": "Par appel",
"Per-feature metered windows split by model or capability.": "Fenêtres mesurées par fonction, réparties par modèle ou capacité.",
"Per-group performance": "Performance par groupe",
- "Per-request": "Par requête",
"Per-request (fixed price)": "Par requête (prix fixe)",
- "Per-token": "Par jeton",
"Per-token (ratio based)": "Par jeton (basé sur un ratio)",
"Per-token logit bias map": "Carte de biais des logits par jeton",
"Percentage:": "Pourcentage :",
@@ -3491,7 +3541,6 @@
"Save Creem settings": "Enregistrer les paramètres Creem",
"Save drawing settings": "Enregistrer les paramètres de dessin",
"Save Epay settings": "Enregistrer les paramètres Epay",
- "Save failed": "Échec de l'enregistrement",
"Save failed, please retry": "Échec de l'enregistrement, veuillez réessayer",
"Save general settings": "Enregistrer les paramètres généraux",
"Save group ratios": "Enregistrer les ratios de groupes",
@@ -3518,7 +3567,6 @@
"Save Waffo Pancake settings": "Enregistrer les paramètres Waffo Pancake",
"Save Worker settings": "Enregistrer les paramètres Worker",
"Saved successfully": "Enregistré avec succès",
- "Saving...": "Enregistrement en cours...",
"Scan QR Code": "Scanner le code QR",
"Scan the QR code to follow the official account and reply with “验证码” to receive your verification code.": "Scannez le code QR pour suivre le compte officiel et répondez par « 验证码 » pour recevoir votre code de vérification.",
"Scan the QR code with WeChat to bind your account": "Scannez le code QR avec WeChat pour lier votre compte",
@@ -4352,6 +4400,8 @@
"User Agent": "Agent utilisateur",
"User Agreement": "Accord utilisateur",
"User Analytics": "Statistiques utilisateur",
+ "User Call Count Ranking": "User Call Count Ranking",
+ "User Call Count Trend": "User Call Count Trend",
"User Consumption Ranking": "Classement de consommation",
"User Consumption Trend": "Tendance de consommation",
"User created successfully": "Utilisateur créé avec succès",
diff --git a/web/default/src/i18n/locales/ja.json b/web/default/src/i18n/locales/ja.json
index 529a33200362..d9517087b0ee 100644
--- a/web/default/src/i18n/locales/ja.json
+++ b/web/default/src/i18n/locales/ja.json
@@ -3,6 +3,57 @@
"360": "360",
"1000": "1000",
"10000": "10000",
+ "Edit Pricing": "编辑定价",
+ "Per-token": "トークン単位",
+ "Per-request": "リクエスト単位",
+ "Input ratio (ModelRatio)": "输入倍率",
+ "Completion ratio": "補完倍率",
+ "Fixed price ($) per call": "固定价($/次)",
+ "Pricing saved — takes effect immediately": "定价已保存,立即生效",
+ "Please enter a valid input ratio": "请输入有效的输入倍率",
+ "Please enter a valid fixed price": "请输入有效的固定价",
+ "Save failed": "保存に失敗しました",
+ "Saving...": "保存中...",
+ "One key, all AI models": "一个密钥 · 畅用全网大模型",
+ "One API key,": "一个 API 密钥,",
+ "access all AI models": "接入所有 AI 大模型",
+ "PaopaoApi aggregates mainstream domestic LLMs — GLM, DeepSeek, MiniMax, Kimi and more. Pay-as-you-go at lower cost; OpenAI-compatible so you can plug into Cherry Studio and other clients in minutes. 20 CNY free credit on sign-up.": "泡泡Api 聚合 GLM、DeepSeek、MiniMax、Kimi 等国内主流大模型,按量计费、价格更省;兼容 OpenAI 协议,几分钟接入 Cherry Studio 等客户端,注册即送 20 元额度。",
+ "OpenAI-compatible — configure your favorite client in one click.": "兼容 OpenAI 等主流协议,一键配置常用客户端。",
+ "All Models in One": "模型齐全",
+ "One key for GLM, DeepSeek, MiniMax, Kimi and more domestic LLMs": "一个密钥用遍 GLM、DeepSeek、MiniMax、Kimi 等国内主流模型",
+ "Stable & Reliable": "稳定可靠",
+ "100% availability, low latency, no dropped requests": "100% 可用性,低延迟、不掉单",
+ "Better Pricing": "价格实惠",
+ "Pay-as-you-go, cheaper than direct access, transparent billing": "按量计费,比直连更省,账单透明",
+ "Pay-as-you-go": "按量计费",
+ "Real-time Balance": "实时余额",
+ "Easy to Connect": "接入简单",
+ "OpenAI-compatible — set up your client in one click": "兼容 OpenAI 协议,一键配置常用客户端",
+ "New User Bonus": "新人福利",
+ "20 CNY free credit on sign-up": "注册即送 20 元额度",
+ "Multi-platform": "多端支持",
+ "Works with Cherry Studio and other popular clients": "支持 Cherry Studio 等常用客户端",
+ "Real-time usage and balance at a glance": "实时用量与余额一目了然",
+ "Community Support": "社区支持",
+ "Active community and thorough docs": "活跃社群与完善文档",
+ "Core Advantages": "核心优势",
+ "Why choose": "为什么选择",
+ "PaopaoApi?": "泡泡Api?",
+ "Service availability": "服务可用性",
+ "Free credit on sign-up": "新人注册赠送额度",
+ "Always-on stable service": "全天候稳定运行",
+ "Mainstream domestic models": "主流国产模型",
+ "Getting Started": "快速上手",
+ "Start in three steps": "三步即可开始",
+ "Sign up account": "注册账号",
+ "Register and claim your 20 CNY free credit": "注册账号,领取 20 元新人额度",
+ "Connect your app": "配置接入",
+ "Get your API key and plug it into Cherry Studio or your code": "获取专属 API 密钥,填入 Cherry Studio 或你的代码",
+ "Start calling": "开始调用",
+ "Pay-as-you-go — track usage and cost anytime": "按量计费,随时查看用量与花费",
+ "Ready to start?": "准备好开始了吗?",
+ "Claim your 20 CNY credit": "领取 20 元新人额度",
+ "Sign up for PaopaoApi, get your key, and start calling GLM, DeepSeek and more in minutes.": "注册泡泡Api,获取密钥,几分钟即可调用 GLM、DeepSeek 等主流模型。",
"_copy": "_copy",
",": ", ",
", and": "、および",
@@ -619,6 +670,7 @@
"Calculated price: ${{price}} per 1M tokens": "計算価格:${{price}} / 1M トークン",
"Calculated ratio: {{ratio}}": "計算倍率:{{ratio}}",
"Calculating...": "計算中...",
+ "Call Count": "Call Count",
"Call Count Distribution": "呼び出し回数分布",
"Call Count Ranking": "呼び出し回数ランキング",
"Call Proportion": "呼び出し比率",
@@ -824,7 +876,6 @@
"Completion": "補完",
"Completion price": "補完価格",
"Completion price ($/1M tokens)": "完了価格 (トークン100万あたり$)",
- "Completion ratio": "補完倍率",
"Compliance confirmation required": "コンプライアンス確認が必要です",
"Compliance confirmed": "コンプライアンス確認済み",
"Compliance confirmed successfully": "コンプライアンス確認が完了しました",
@@ -985,6 +1036,7 @@
"Core Features": "主要機能",
"Core pricing": "基本料金",
"Cost": "コスト",
+ "Cost Consumption": "Cost Consumption",
"Cost in USD per request, regardless of tokens used.": "使用されたトークンに関係なく、リクエストあたりのUSDでのコスト。",
"Cost Tracking": "コスト追跡",
"Count must be between {{min}} and {{max}}": "カウントは{{min}}から{{max}}の間である必要があります",
@@ -2939,9 +2991,7 @@
"Per-call": "呼び出しごと",
"Per-feature metered windows split by model or capability.": "機能ごとの従量制ウィンドウ。モデルまたは能力別に分かれます。",
"Per-group performance": "グループ別パフォーマンス",
- "Per-request": "リクエスト単位",
"Per-request (fixed price)": "リクエストごと (固定価格)",
- "Per-token": "トークン単位",
"Per-token (ratio based)": "トークンごと (比率ベース)",
"Per-token logit bias map": "トークンごとの logit バイアス",
"Percentage:": "パーセンテージ:",
@@ -3491,7 +3541,6 @@
"Save Creem settings": "Creem設定を保存",
"Save drawing settings": "描画設定を保存",
"Save Epay settings": "Epay設定を保存",
- "Save failed": "保存に失敗しました",
"Save failed, please retry": "保存に失敗しました。もう一度お試しください",
"Save general settings": "一般設定を保存",
"Save group ratios": "グループ比率を保存",
@@ -3518,7 +3567,6 @@
"Save Waffo Pancake settings": "Waffo Pancake 設定を保存",
"Save Worker settings": "Worker設定を保存",
"Saved successfully": "保存しました",
- "Saving...": "保存中...",
"Scan QR Code": "QRコードをスキャン",
"Scan the QR code to follow the official account and reply with “验证码” to receive your verification code.": "公式アカウントのQRコードを読み取り、「验证码」と返信して認証コードを受け取ってください。",
"Scan the QR code with WeChat to bind your account": "WeChatでQRコードをスキャンしてアカウントをバインド",
@@ -4352,6 +4400,8 @@
"User Agent": "ユーザーエージェント",
"User Agreement": "ユーザー利用規約",
"User Analytics": "ユーザー統計",
+ "User Call Count Ranking": "User Call Count Ranking",
+ "User Call Count Trend": "User Call Count Trend",
"User Consumption Ranking": "ユーザー消費ランキング",
"User Consumption Trend": "ユーザー消費トレンド",
"User created successfully": "ユーザーの作成に成功しました",
diff --git a/web/default/src/i18n/locales/ru.json b/web/default/src/i18n/locales/ru.json
index 4c7da7b10275..2029d8cb829c 100644
--- a/web/default/src/i18n/locales/ru.json
+++ b/web/default/src/i18n/locales/ru.json
@@ -3,6 +3,57 @@
"360": "360",
"1000": "1000",
"10000": "10000",
+ "Edit Pricing": "编辑定价",
+ "Per-token": "За токен",
+ "Per-request": "За запрос",
+ "Input ratio (ModelRatio)": "输入倍率",
+ "Completion ratio": "Коэффициент завершения",
+ "Fixed price ($) per call": "固定价($/次)",
+ "Pricing saved — takes effect immediately": "定价已保存,立即生效",
+ "Please enter a valid input ratio": "请输入有效的输入倍率",
+ "Please enter a valid fixed price": "请输入有效的固定价",
+ "Save failed": "Не удалось сохранить",
+ "Saving...": "Сохранение...",
+ "One key, all AI models": "一个密钥 · 畅用全网大模型",
+ "One API key,": "一个 API 密钥,",
+ "access all AI models": "接入所有 AI 大模型",
+ "PaopaoApi aggregates mainstream domestic LLMs — GLM, DeepSeek, MiniMax, Kimi and more. Pay-as-you-go at lower cost; OpenAI-compatible so you can plug into Cherry Studio and other clients in minutes. 20 CNY free credit on sign-up.": "泡泡Api 聚合 GLM、DeepSeek、MiniMax、Kimi 等国内主流大模型,按量计费、价格更省;兼容 OpenAI 协议,几分钟接入 Cherry Studio 等客户端,注册即送 20 元额度。",
+ "OpenAI-compatible — configure your favorite client in one click.": "兼容 OpenAI 等主流协议,一键配置常用客户端。",
+ "All Models in One": "模型齐全",
+ "One key for GLM, DeepSeek, MiniMax, Kimi and more domestic LLMs": "一个密钥用遍 GLM、DeepSeek、MiniMax、Kimi 等国内主流模型",
+ "Stable & Reliable": "稳定可靠",
+ "100% availability, low latency, no dropped requests": "100% 可用性,低延迟、不掉单",
+ "Better Pricing": "价格实惠",
+ "Pay-as-you-go, cheaper than direct access, transparent billing": "按量计费,比直连更省,账单透明",
+ "Pay-as-you-go": "按量计费",
+ "Real-time Balance": "实时余额",
+ "Easy to Connect": "接入简单",
+ "OpenAI-compatible — set up your client in one click": "兼容 OpenAI 协议,一键配置常用客户端",
+ "New User Bonus": "新人福利",
+ "20 CNY free credit on sign-up": "注册即送 20 元额度",
+ "Multi-platform": "多端支持",
+ "Works with Cherry Studio and other popular clients": "支持 Cherry Studio 等常用客户端",
+ "Real-time usage and balance at a glance": "实时用量与余额一目了然",
+ "Community Support": "社区支持",
+ "Active community and thorough docs": "活跃社群与完善文档",
+ "Core Advantages": "核心优势",
+ "Why choose": "为什么选择",
+ "PaopaoApi?": "泡泡Api?",
+ "Service availability": "服务可用性",
+ "Free credit on sign-up": "新人注册赠送额度",
+ "Always-on stable service": "全天候稳定运行",
+ "Mainstream domestic models": "主流国产模型",
+ "Getting Started": "快速上手",
+ "Start in three steps": "三步即可开始",
+ "Sign up account": "注册账号",
+ "Register and claim your 20 CNY free credit": "注册账号,领取 20 元新人额度",
+ "Connect your app": "配置接入",
+ "Get your API key and plug it into Cherry Studio or your code": "获取专属 API 密钥,填入 Cherry Studio 或你的代码",
+ "Start calling": "开始调用",
+ "Pay-as-you-go — track usage and cost anytime": "按量计费,随时查看用量与花费",
+ "Ready to start?": "准备好开始了吗?",
+ "Claim your 20 CNY credit": "领取 20 元新人额度",
+ "Sign up for PaopaoApi, get your key, and start calling GLM, DeepSeek and more in minutes.": "注册泡泡Api,获取密钥,几分钟即可调用 GLM、DeepSeek 等主流模型。",
"_copy": "_копировать",
",": ", ",
", and": ", и",
@@ -619,6 +670,7 @@
"Calculated price: ${{price}} per 1M tokens": "Расчётная цена: ${{price}} за 1М токенов",
"Calculated ratio: {{ratio}}": "Расчётный коэффициент: {{ratio}}",
"Calculating...": "Вычисление...",
+ "Call Count": "Call Count",
"Call Count Distribution": "Распределение количества вызовов",
"Call Count Ranking": "Рейтинг по количеству вызовов",
"Call Proportion": "Доля вызовов",
@@ -824,7 +876,6 @@
"Completion": "Вывод",
"Completion price": "Цена завершения",
"Completion price ($/1M tokens)": "Цена завершения ($/1 млн токенов)",
- "Completion ratio": "Коэффициент завершения",
"Compliance confirmation required": "Требуется подтверждение соответствия",
"Compliance confirmed": "Соответствие подтверждено",
"Compliance confirmed successfully": "Соответствие успешно подтверждено",
@@ -985,6 +1036,7 @@
"Core Features": "Основные функции",
"Core pricing": "Основные цены",
"Cost": "Стоимость",
+ "Cost Consumption": "Cost Consumption",
"Cost in USD per request, regardless of tokens used.": "Стоимость в долларах США за запрос, независимо от использованных токенов.",
"Cost Tracking": "Отслеживание затрат",
"Count must be between {{min}} and {{max}}": "Количество должно быть от {{min}} до {{max}}",
@@ -2939,9 +2991,7 @@
"Per-call": "По вызову",
"Per-feature metered windows split by model or capability.": "Окна с поминутной тарификацией по фиче, в разбивке по модели или возможностям.",
"Per-group performance": "Производительность по группам",
- "Per-request": "За запрос",
"Per-request (fixed price)": "За запрос (фиксированная цена)",
- "Per-token": "За токен",
"Per-token (ratio based)": "За токен (на основе соотношения)",
"Per-token logit bias map": "Карта смещений логитов по токенам",
"Percentage:": "Процент:",
@@ -3491,7 +3541,6 @@
"Save Creem settings": "Сохранить настройки Creem",
"Save drawing settings": "Сохранить настройки рисования",
"Save Epay settings": "Сохранить настройки Epay",
- "Save failed": "Не удалось сохранить",
"Save failed, please retry": "Не удалось сохранить, попробуйте снова",
"Save general settings": "Сохранить общие настройки",
"Save group ratios": "Сохранить коэффициенты групп",
@@ -3518,7 +3567,6 @@
"Save Waffo Pancake settings": "Сохранить настройки Waffo Pancake",
"Save Worker settings": "Сохранить настройки Worker",
"Saved successfully": "Сохранено успешно",
- "Saving...": "Сохранение...",
"Scan QR Code": "Сканировать QR-код",
"Scan the QR code to follow the official account and reply with “验证码” to receive your verification code.": "Отсканируйте QR-код, откройте официальный аккаунт и ответьте «验证码», чтобы получить код подтверждения.",
"Scan the QR code with WeChat to bind your account": "Отсканируйте QR-код с помощью WeChat, чтобы привязать свою учетную запись",
@@ -4352,6 +4400,8 @@
"User Agent": "Пользовательский агент",
"User Agreement": "Пользовательское соглашение",
"User Analytics": "Аналитика пользователей",
+ "User Call Count Ranking": "User Call Count Ranking",
+ "User Call Count Trend": "User Call Count Trend",
"User Consumption Ranking": "Рейтинг потребления",
"User Consumption Trend": "Тренд потребления",
"User created successfully": "Пользователь успешно создан",
diff --git a/web/default/src/i18n/locales/vi.json b/web/default/src/i18n/locales/vi.json
index 00f3c9866d67..38f6f7f8dc5f 100644
--- a/web/default/src/i18n/locales/vi.json
+++ b/web/default/src/i18n/locales/vi.json
@@ -3,6 +3,57 @@
"360": "360",
"1000": "1000",
"10000": "10000",
+ "Edit Pricing": "编辑定价",
+ "Per-token": "Theo token",
+ "Per-request": "Theo yêu cầu",
+ "Input ratio (ModelRatio)": "输入倍率",
+ "Completion ratio": "Tỷ lệ hoàn thành",
+ "Fixed price ($) per call": "固定价($/次)",
+ "Pricing saved — takes effect immediately": "定价已保存,立即生效",
+ "Please enter a valid input ratio": "请输入有效的输入倍率",
+ "Please enter a valid fixed price": "请输入有效的固定价",
+ "Save failed": "Lưu thất bại",
+ "Saving...": "Đang lưu...",
+ "One key, all AI models": "一个密钥 · 畅用全网大模型",
+ "One API key,": "一个 API 密钥,",
+ "access all AI models": "接入所有 AI 大模型",
+ "PaopaoApi aggregates mainstream domestic LLMs — GLM, DeepSeek, MiniMax, Kimi and more. Pay-as-you-go at lower cost; OpenAI-compatible so you can plug into Cherry Studio and other clients in minutes. 20 CNY free credit on sign-up.": "泡泡Api 聚合 GLM、DeepSeek、MiniMax、Kimi 等国内主流大模型,按量计费、价格更省;兼容 OpenAI 协议,几分钟接入 Cherry Studio 等客户端,注册即送 20 元额度。",
+ "OpenAI-compatible — configure your favorite client in one click.": "兼容 OpenAI 等主流协议,一键配置常用客户端。",
+ "All Models in One": "模型齐全",
+ "One key for GLM, DeepSeek, MiniMax, Kimi and more domestic LLMs": "一个密钥用遍 GLM、DeepSeek、MiniMax、Kimi 等国内主流模型",
+ "Stable & Reliable": "稳定可靠",
+ "100% availability, low latency, no dropped requests": "100% 可用性,低延迟、不掉单",
+ "Better Pricing": "价格实惠",
+ "Pay-as-you-go, cheaper than direct access, transparent billing": "按量计费,比直连更省,账单透明",
+ "Pay-as-you-go": "按量计费",
+ "Real-time Balance": "实时余额",
+ "Easy to Connect": "接入简单",
+ "OpenAI-compatible — set up your client in one click": "兼容 OpenAI 协议,一键配置常用客户端",
+ "New User Bonus": "新人福利",
+ "20 CNY free credit on sign-up": "注册即送 20 元额度",
+ "Multi-platform": "多端支持",
+ "Works with Cherry Studio and other popular clients": "支持 Cherry Studio 等常用客户端",
+ "Real-time usage and balance at a glance": "实时用量与余额一目了然",
+ "Community Support": "社区支持",
+ "Active community and thorough docs": "活跃社群与完善文档",
+ "Core Advantages": "核心优势",
+ "Why choose": "为什么选择",
+ "PaopaoApi?": "泡泡Api?",
+ "Service availability": "服务可用性",
+ "Free credit on sign-up": "新人注册赠送额度",
+ "Always-on stable service": "全天候稳定运行",
+ "Mainstream domestic models": "主流国产模型",
+ "Getting Started": "快速上手",
+ "Start in three steps": "三步即可开始",
+ "Sign up account": "注册账号",
+ "Register and claim your 20 CNY free credit": "注册账号,领取 20 元新人额度",
+ "Connect your app": "配置接入",
+ "Get your API key and plug it into Cherry Studio or your code": "获取专属 API 密钥,填入 Cherry Studio 或你的代码",
+ "Start calling": "开始调用",
+ "Pay-as-you-go — track usage and cost anytime": "按量计费,随时查看用量与花费",
+ "Ready to start?": "准备好开始了吗?",
+ "Claim your 20 CNY credit": "领取 20 元新人额度",
+ "Sign up for PaopaoApi, get your key, and start calling GLM, DeepSeek and more in minutes.": "注册泡泡Api,获取密钥,几分钟即可调用 GLM、DeepSeek 等主流模型。",
"_copy": "_bản sao",
",": ", ",
", and": ", và",
@@ -619,6 +670,7 @@
"Calculated price: ${{price}} per 1M tokens": "Giá tính toán: ${{price}} mỗi 1M token",
"Calculated ratio: {{ratio}}": "Tỷ lệ tính toán: {{ratio}}",
"Calculating...": "Đang tính...",
+ "Call Count": "Call Count",
"Call Count Distribution": "Phân bổ số lượt gọi",
"Call Count Ranking": "Xếp hạng số lượt gọi",
"Call Proportion": "Tỷ lệ cuộc gọi",
@@ -824,7 +876,6 @@
"Completion": "Hoàn thành",
"Completion price": "Giá hoàn thành",
"Completion price ($/1M tokens)": "Giá hoàn thành ($/1M tokens)",
- "Completion ratio": "Tỷ lệ hoàn thành",
"Compliance confirmation required": "Cần xác nhận tuân thủ",
"Compliance confirmed": "Đã xác nhận tuân thủ",
"Compliance confirmed successfully": "Xác nhận tuân thủ thành công",
@@ -985,6 +1036,7 @@
"Core Features": "Tính năng cốt lõi",
"Core pricing": "Giá cốt lõi",
"Cost": "Chi phí",
+ "Cost Consumption": "Cost Consumption",
"Cost in USD per request, regardless of tokens used.": "Chi phí bằng USD cho mỗi yêu cầu, bất kể số lượng token được sử dụng.",
"Cost Tracking": "Theo dõi chi phí",
"Count must be between {{min}} and {{max}}": "Số lượng phải nằm trong khoảng từ {{min}} đến {{max}}.",
@@ -2939,9 +2991,7 @@
"Per-call": "Mỗi lần gọi",
"Per-feature metered windows split by model or capability.": "Cửa sổ tính phí theo từng tính năng, tách theo mô hình hoặc năng lực.",
"Per-group performance": "Hiệu năng theo nhóm",
- "Per-request": "Theo yêu cầu",
"Per-request (fixed price)": "Theo yêu cầu (giá cố định)",
- "Per-token": "Theo token",
"Per-token (ratio based)": "Mỗi token (dựa trên tỷ lệ)",
"Per-token logit bias map": "Bảng logit bias theo token",
"Percentage:": "Phần trăm:",
@@ -3491,7 +3541,6 @@
"Save Creem settings": "Lưu cài đặt Creem",
"Save drawing settings": "Lưu cài đặt bản vẽ",
"Save Epay settings": "Lưu cài đặt Epay",
- "Save failed": "Lưu thất bại",
"Save failed, please retry": "Lưu thất bại, vui lòng thử lại",
"Save general settings": "Lưu cài đặt chung",
"Save group ratios": "Lưu tỷ lệ nhóm",
@@ -3518,7 +3567,6 @@
"Save Waffo Pancake settings": "Lưu cài đặt Waffo Pancake",
"Save Worker settings": "Lưu cài đặt Worker",
"Saved successfully": "Lưu thành công",
- "Saving...": "Đang lưu...",
"Scan QR Code": "Quét mã QR",
"Scan the QR code to follow the official account and reply with “验证码” to receive your verification code.": "Quét mã QR để theo dõi tài khoản chính thức, trả lời « 验证码 » để nhận mã xác minh.",
"Scan the QR code with WeChat to bind your account": "Quét mã QR bằng WeChat để liên kết tài khoản của bạn",
@@ -4352,6 +4400,8 @@
"User Agent": "Tác nhân người dùng",
"User Agreement": "Thỏa thuận người dùng",
"User Analytics": "Thống kê người dùng",
+ "User Call Count Ranking": "User Call Count Ranking",
+ "User Call Count Trend": "User Call Count Trend",
"User Consumption Ranking": "Xếp hạng tiêu thụ",
"User Consumption Trend": "Xu hướng tiêu thụ",
"User created successfully": "Tạo người dùng thành công",
diff --git a/web/default/src/i18n/locales/zh.json b/web/default/src/i18n/locales/zh.json
index 867302f85212..185eaa1d7810 100644
--- a/web/default/src/i18n/locales/zh.json
+++ b/web/default/src/i18n/locales/zh.json
@@ -3,6 +3,57 @@
"360": "360",
"1000": "1000",
"10000": "10000",
+ "Edit Pricing": "编辑定价",
+ "Per-token": "按 Token",
+ "Per-request": "按次",
+ "Input ratio (ModelRatio)": "输入倍率",
+ "Completion ratio": "补全倍率",
+ "Fixed price ($) per call": "固定价($/次)",
+ "Pricing saved — takes effect immediately": "定价已保存,立即生效",
+ "Please enter a valid input ratio": "请输入有效的输入倍率",
+ "Please enter a valid fixed price": "请输入有效的固定价",
+ "Save failed": "保存失败",
+ "Saving...": "正在保存...",
+ "One key, all AI models": "一个密钥 · 畅用全网大模型",
+ "One API key,": "一个 API 密钥,",
+ "access all AI models": "接入所有 AI 大模型",
+ "PaopaoApi aggregates mainstream domestic LLMs — GLM, DeepSeek, MiniMax, Kimi and more. Pay-as-you-go at lower cost; OpenAI-compatible so you can plug into Cherry Studio and other clients in minutes. 20 CNY free credit on sign-up.": "泡泡Api 聚合 GLM、DeepSeek、MiniMax、Kimi 等国内主流大模型,按量计费、价格更省;兼容 OpenAI 协议,几分钟接入 Cherry Studio 等客户端,注册即送 20 元额度。",
+ "OpenAI-compatible — configure your favorite client in one click.": "兼容 OpenAI 等主流协议,一键配置常用客户端。",
+ "All Models in One": "模型齐全",
+ "One key for GLM, DeepSeek, MiniMax, Kimi and more domestic LLMs": "一个密钥用遍 GLM、DeepSeek、MiniMax、Kimi 等国内主流模型",
+ "Stable & Reliable": "稳定可靠",
+ "100% availability, low latency, no dropped requests": "100% 可用性,低延迟、不掉单",
+ "Better Pricing": "价格实惠",
+ "Pay-as-you-go, cheaper than direct access, transparent billing": "按量计费,比直连更省,账单透明",
+ "Pay-as-you-go": "按量计费",
+ "Real-time Balance": "实时余额",
+ "Easy to Connect": "接入简单",
+ "OpenAI-compatible — set up your client in one click": "兼容 OpenAI 协议,一键配置常用客户端",
+ "New User Bonus": "新人福利",
+ "20 CNY free credit on sign-up": "注册即送 20 元额度",
+ "Multi-platform": "多端支持",
+ "Works with Cherry Studio and other popular clients": "支持 Cherry Studio 等常用客户端",
+ "Real-time usage and balance at a glance": "实时用量与余额一目了然",
+ "Community Support": "社区支持",
+ "Active community and thorough docs": "活跃社群与完善文档",
+ "Core Advantages": "核心优势",
+ "Why choose": "为什么选择",
+ "PaopaoApi?": "泡泡Api?",
+ "Service availability": "服务可用性",
+ "Free credit on sign-up": "新人注册赠送额度",
+ "Always-on stable service": "全天候稳定运行",
+ "Mainstream domestic models": "主流国产模型",
+ "Getting Started": "快速上手",
+ "Start in three steps": "三步即可开始",
+ "Sign up account": "注册账号",
+ "Register and claim your 20 CNY free credit": "注册账号,领取 20 元新人额度",
+ "Connect your app": "配置接入",
+ "Get your API key and plug it into Cherry Studio or your code": "获取专属 API 密钥,填入 Cherry Studio 或你的代码",
+ "Start calling": "开始调用",
+ "Pay-as-you-go — track usage and cost anytime": "按量计费,随时查看用量与花费",
+ "Ready to start?": "准备好开始了吗?",
+ "Claim your 20 CNY credit": "领取 20 元新人额度",
+ "Sign up for PaopaoApi, get your key, and start calling GLM, DeepSeek and more in minutes.": "注册泡泡Api,获取密钥,几分钟即可调用 GLM、DeepSeek 等主流模型。",
"_copy": "_复制",
",": ",",
", and": ",和",
@@ -619,6 +670,7 @@
"Calculated price: ${{price}} per 1M tokens": "计算价格:${{price}} / 1M tokens",
"Calculated ratio: {{ratio}}": "计算倍率:{{ratio}}",
"Calculating...": "计算中...",
+ "Call Count": "调用次数",
"Call Count Distribution": "调用次数分布",
"Call Count Ranking": "调用次数排行",
"Call Proportion": "调用比例",
@@ -824,7 +876,6 @@
"Completion": "补全",
"Completion price": "补全价格",
"Completion price ($/1M tokens)": "完成价格(美元/百万令牌)",
- "Completion ratio": "补全倍率",
"Compliance confirmation required": "需要确认合规条款",
"Compliance confirmed": "合规已确认",
"Compliance confirmed successfully": "合规确认成功",
@@ -985,6 +1036,7 @@
"Core Features": "核心功能",
"Core pricing": "核心定价",
"Cost": "费用",
+ "Cost Consumption": "费用消耗",
"Cost in USD per request, regardless of tokens used.": "每请求的美元费用,不考虑使用的令牌数。",
"Cost Tracking": "成本跟踪",
"Count must be between {{min}} and {{max}}": "计数必须介于{{min}}和{{max}}之间",
@@ -2939,9 +2991,7 @@
"Per-call": "每次调用",
"Per-feature metered windows split by model or capability.": "按模型或能力拆分的附加计费能力窗口。",
"Per-group performance": "各分组性能",
- "Per-request": "按次",
"Per-request (fixed price)": "按请求计费(固定价格)",
- "Per-token": "按 Token",
"Per-token (ratio based)": "按令牌计费(基于比例)",
"Per-token logit bias map": "按 token 的 logit 偏置映射",
"Percentage:": "百分比:",
@@ -3491,7 +3541,6 @@
"Save Creem settings": "保存 Creem 设置",
"Save drawing settings": "保存绘图设置",
"Save Epay settings": "保存 Epay 设置",
- "Save failed": "保存失败",
"Save failed, please retry": "保存失败,请重试",
"Save general settings": "保存通用设置",
"Save group ratios": "保存分组比率",
@@ -3518,7 +3567,6 @@
"Save Waffo Pancake settings": "保存 Waffo Pancake 设置",
"Save Worker settings": "保存 Worker 设置",
"Saved successfully": "保存成功",
- "Saving...": "正在保存...",
"Scan QR Code": "扫描二维码",
"Scan the QR code to follow the official account and reply with “验证码” to receive your verification code.": "扫描二维码关注官方账号,回复“验证码”以接收您的验证码。",
"Scan the QR code with WeChat to bind your account": "使用微信扫描二维码绑定您的账户",
@@ -4352,6 +4400,8 @@
"User Agent": "用户代理",
"User Agreement": "用户协议",
"User Analytics": "用户统计",
+ "User Call Count Ranking": "用户调用次数排名",
+ "User Call Count Trend": "用户调用次数趋势",
"User Consumption Ranking": "用户消耗排行",
"User Consumption Trend": "用户消耗趋势",
"User created successfully": "用户创建成功",