dashboard.json 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950
  1. {
  2. "actions": {
  3. "copy": "Copy",
  4. "download": "Download",
  5. "copied": "Copied"
  6. },
  7. "title": {
  8. "costRanking": "Cost Leaderboard",
  9. "costRankingDescription": "View user cost rankings, data updates every 5 minutes",
  10. "usageLogs": "Usage Logs",
  11. "usageLogsDescription": "View API call logs and usage statistics",
  12. "clients": "Clients",
  13. "userAndKeyManagement": "User and Key Management",
  14. "requestMessages": "Request Messages",
  15. "activeSessions": "Active Sessions (Last 5 Minutes)",
  16. "sessionMonitoring": "Session Monitoring",
  17. "sessionMonitoringDescription": "Real-time display of active and inactive sessions (auto-refresh every 3 seconds)",
  18. "inactiveSessions": "Inactive Sessions (Over 5 Minutes, View Only)",
  19. "quotasManagement": "Quotas",
  20. "quotasManagementDescription": "View and manage quotas at all levels",
  21. "usersQuotas": "User Quota Statistics",
  22. "keysQuotas": "Key Quota Statistics",
  23. "providersQuotas": "Provider Quota Statistics",
  24. "filterCriteria": "Filter Criteria",
  25. "filterCriteriaDescription": "Narrow down logs by time, user, provider, and more"
  26. },
  27. "description": {
  28. "viewApiCallLogs": "View API call logs and usage statistics",
  29. "dashboard": "View system statistics and monitoring information",
  30. "quotas": "View and manage quotas at all levels",
  31. "clientInfo": "User-Agent request header",
  32. "requestMessagesDescription": "Message content sent by the client",
  33. "responseBodyDescription": "Complete server response (5-minute TTL)"
  34. },
  35. "overview": {
  36. "title": "Overview",
  37. "totalRequests": "Total Requests",
  38. "totalCost": "Total Cost",
  39. "totalUsers": "Total Users",
  40. "totalProviders": "Total Providers",
  41. "activeUsers": "Active Users",
  42. "activeSessions": "Active Sessions",
  43. "errorRate": "Error Rate",
  44. "avgResponseTime": "Average Response Time"
  45. },
  46. "stats": {
  47. "title": "Statistics",
  48. "requests": "Requests",
  49. "cost": "Cost",
  50. "tokens": "Tokens",
  51. "period": {
  52. "hour": "Last Hour",
  53. "day": "Today",
  54. "week": "This Week",
  55. "month": "This Month"
  56. }
  57. },
  58. "logs": {
  59. "title": "Usage Logs",
  60. "description": "View and analyze API call records",
  61. "filters": {
  62. "user": "User",
  63. "provider": "Provider",
  64. "sessionId": "Session ID",
  65. "searchUser": "Search users...",
  66. "searchProvider": "Search providers...",
  67. "searchSessionId": "Search session IDs...",
  68. "noUserFound": "No matching users found",
  69. "noProviderFound": "No matching providers found",
  70. "noSessionFound": "No matching session IDs found",
  71. "model": "Model",
  72. "endpoint": "Endpoint",
  73. "status": "Status",
  74. "timeRange": "Time Range",
  75. "dateRange": "Date Range",
  76. "startTime": "Start Time",
  77. "endTime": "End Time",
  78. "allUsers": "All Users",
  79. "allKeys": "All Keys",
  80. "selectUserFirst": "Please select a user first",
  81. "allProviders": "All Providers",
  82. "allModels": "All Models",
  83. "allEndpoints": "All Endpoints",
  84. "allStatusCodes": "All Status Codes",
  85. "apiKey": "API Key",
  86. "statusCode": "Status Code",
  87. "minRetryCount": "Retry Count ≥",
  88. "minRetryCountPlaceholder": "Enter minimum retries",
  89. "apply": "Apply Filter",
  90. "reset": "Reset",
  91. "last7days": "7d",
  92. "last30days": "30d",
  93. "customRange": "Custom Range",
  94. "export": "Export",
  95. "exporting": "Exporting...",
  96. "exportSuccess": "Export completed successfully",
  97. "exportError": "Export failed",
  98. "quickFilters": {
  99. "today": "Today",
  100. "thisWeek": "This Week",
  101. "errorsOnly": "Errors Only",
  102. "showRetries": "With Retries"
  103. },
  104. "activeFilters": {
  105. "title": "Active Filters",
  106. "remove": "Remove filter",
  107. "clearAll": "Clear all"
  108. },
  109. "groups": {
  110. "time": "Time Range",
  111. "timeDesc": "Filter by date and time",
  112. "identity": "Identity",
  113. "identityDesc": "Filter by user and key",
  114. "request": "Request",
  115. "requestDesc": "Filter by provider, model, endpoint",
  116. "status": "Status",
  117. "statusDesc": "Filter by status code and retry"
  118. }
  119. },
  120. "columns": {
  121. "time": "Time",
  122. "user": "User",
  123. "key": "Key",
  124. "sessionId": "Session ID",
  125. "provider": "Provider",
  126. "model": "Billing Model",
  127. "endpoint": "Endpoint",
  128. "inputTokens": "Input",
  129. "outputTokens": "Output",
  130. "tokens": "Tokens",
  131. "cacheWrite": "Cache Write",
  132. "cacheRead": "Cache Read",
  133. "cache": "Cache",
  134. "cost": "Cost",
  135. "duration": "Duration",
  136. "performance": "Perf",
  137. "status": "Status"
  138. },
  139. "stats": {
  140. "title": "Statistics Summary",
  141. "description": "Aggregated statistics for the current filters",
  142. "totalRequests": "Total Requests",
  143. "totalAmount": "Total Consumption",
  144. "totalTokens": "Total Tokens",
  145. "cacheTokens": "Cached Tokens",
  146. "input": "Input",
  147. "output": "Output",
  148. "write": "Write",
  149. "read": "Read",
  150. "loading": "Loading..."
  151. },
  152. "table": {
  153. "noData": "No Data",
  154. "pagination": "Total {total} records, Page {page} / {totalPages}",
  155. "prevPage": "Previous Page",
  156. "nextPage": "Next Page",
  157. "blocked": "Blocked",
  158. "nonBilling": "Non-Billing",
  159. "skipped": "Skipped",
  160. "specialSettings": "Special",
  161. "times": "times",
  162. "loadedCount": "Loaded {count} records",
  163. "loadingMore": "Loading more...",
  164. "noMoreData": "All records loaded",
  165. "scrollToTop": "Back to top",
  166. "hideProviderColumn": "Hide Provider Column",
  167. "showProviderColumn": "Show Provider Column",
  168. "columnVisibility": "Column Visibility"
  169. },
  170. "actions": {
  171. "refresh": "Refresh",
  172. "refreshing": "Refreshing...",
  173. "stopAutoRefresh": "Stop Auto-Refresh",
  174. "startAutoRefresh": "Start Auto-Refresh",
  175. "view": "View",
  176. "fullscreen": "Fullscreen",
  177. "exitFullscreen": "Exit Fullscreen"
  178. },
  179. "error": {
  180. "loadFailed": "Load Failed",
  181. "loadKeysFailed": "Failed to load keys"
  182. },
  183. "details": {
  184. "title": "Request Details",
  185. "statusTitle": "Status: {status}",
  186. "inProgress": "In Progress",
  187. "unknown": "Unknown",
  188. "success": "Request completed successfully",
  189. "error": "Request failed, here are the detailed error messages and provider decision chain",
  190. "processing": "Request is in progress, not yet completed",
  191. "tabs": {
  192. "summary": "Summary",
  193. "logicTrace": "Logic Trace",
  194. "performance": "Performance",
  195. "metadata": "Metadata"
  196. },
  197. "summary": {
  198. "keyMetrics": "Key Metrics",
  199. "totalCost": "Total Cost",
  200. "totalTokens": "Total Tokens",
  201. "duration": "Duration",
  202. "outputRate": "Output Rate",
  203. "viewFullError": "View full error",
  204. "viewSession": "View Session"
  205. },
  206. "specialSettings": {
  207. "title": "Special settings"
  208. },
  209. "skipped": {
  210. "title": "Skipped",
  211. "reason": "Reason",
  212. "warmup": "Warmup Fast Response (CCH)",
  213. "desc": "This request was identified as a Warmup probe and was answered directly by CCH without forwarding to upstream providers; it is not billed, not rate-limited, and excluded from statistics."
  214. },
  215. "blocked": {
  216. "title": "Blocking Information",
  217. "type": "Blocking Type",
  218. "sensitiveWord": "Sensitive Word Blocking",
  219. "word": "Sensitive Word",
  220. "matchType": "Match Type",
  221. "matchTypeContains": "Contains Match",
  222. "matchTypeExact": "Exact Match",
  223. "matchTypeRegex": "Regular Expression",
  224. "matchedText": "Matched Content"
  225. },
  226. "sessionId": "Session ID",
  227. "messagesCount": "Message Count",
  228. "messagesLabel": "Messages",
  229. "messagesUnit": "items",
  230. "clientInfo": "Client Info",
  231. "modelRedirect": {
  232. "title": "Model Redirection",
  233. "requestModel": "Requested Model",
  234. "actualModel": "Actual Call",
  235. "billing": "Billing Description",
  236. "billingDescription": "The system prioritizes billing based on the price of the requested model ({original}). If the model is not found in the price list, the price of the actually called model ({current}) is used.",
  237. "billingModel": "Billing Model",
  238. "actualModelTooltip": "Actual Model: {model}",
  239. "originalModelTooltip": "Original Model: {model}",
  240. "billingDescription_original": "Current billing mode: Using original model before redirection ({original}) for billing",
  241. "billingDescription_redirected": "Current billing mode: Using actual model after redirection ({current}) for billing",
  242. "billingOriginal": "billing: original",
  243. "billingRedirected": "billing: redirected"
  244. },
  245. "errorMessage": "Error Message",
  246. "fake200ForwardedNotice": "Note: For streaming requests, this failure may be detected only after the stream ends; the response content may already have been forwarded to the client.",
  247. "fake200DetectedReason": "Detected reason: {reason}",
  248. "fake200Reasons": {
  249. "emptyBody": "Empty response body",
  250. "htmlBody": "HTML document returned (likely an error page)",
  251. "jsonErrorNonEmpty": "JSON has a non-empty `error` field",
  252. "jsonErrorMessageNonEmpty": "JSON has a non-empty `error.message`",
  253. "jsonMessageKeywordMatch": "JSON `message` contains the word \"error\" (heuristic)",
  254. "unknown": "Response body indicates an error"
  255. },
  256. "statusCodeInferredBadge": "Inferred",
  257. "statusCodeInferredTooltip": "This status code is inferred from response body content (e.g., fake 200) and may differ from the upstream HTTP status.",
  258. "statusCodeInferredSuffix": "(inferred)",
  259. "filteredProviders": "Filtered Providers",
  260. "providerChain": {
  261. "title": "Provider Decision Chain Timeline",
  262. "totalDuration": "Total Duration: {duration}ms"
  263. },
  264. "noError": {
  265. "processing": "Request is being processed, awaiting response...",
  266. "success": "Request successful, no error message",
  267. "default": "No detailed error message available"
  268. },
  269. "clickStatusCode": "Click status code to view full timeline",
  270. "viewDetails": "View Details",
  271. "reasons": {
  272. "rateLimited": "Provider Cost Limit",
  273. "circuitOpen": "Circuit Breaker Open"
  274. },
  275. "billingDetails": {
  276. "title": "Billing Details",
  277. "input": "Input",
  278. "output": "Output",
  279. "cacheWrite5m": "Cache Write (5m)",
  280. "cacheWrite1h": "Cache Write (1h)",
  281. "cacheRead": "Cache Read",
  282. "cacheTtl": "Cache TTL",
  283. "multiplier": "Provider Multiplier",
  284. "totalCost": "Total Cost",
  285. "context1m": "1M Context",
  286. "context1mPricing": "Input 2x >200k, Output 1.5x >200k"
  287. },
  288. "performance": {
  289. "title": "Performance",
  290. "ttfb": "TTFB",
  291. "duration": "Total Duration",
  292. "outputRate": "Output Rate"
  293. },
  294. "performanceTab": {
  295. "noPerformanceData": "No performance data available",
  296. "ttfbGauge": "Time to First Byte",
  297. "outputRateGauge": "Output Rate",
  298. "latencyBreakdown": "Latency Breakdown",
  299. "generationTime": "Generation Time",
  300. "assessment": {
  301. "excellent": "Excellent",
  302. "good": "Good",
  303. "warning": "Warning",
  304. "poor": "Poor"
  305. },
  306. "thresholds": {
  307. "ttfbGood": "TTFB < 1s",
  308. "ttfbWarning": "TTFB 1-2s",
  309. "ttfbPoor": "TTFB > 3s"
  310. }
  311. },
  312. "metadata": {
  313. "noMetadata": "No metadata available",
  314. "sessionInfo": "Session Info",
  315. "clientInfo": "Client Info",
  316. "billingInfo": "Billing Info",
  317. "technicalTimeline": "Technical Timeline",
  318. "copyTimeline": "Copy Timeline"
  319. },
  320. "logicTrace": {
  321. "title": "Decision Chain",
  322. "noDecisionData": "No decision data available",
  323. "providersCount": "{count} providers",
  324. "healthyCount": "{count} healthy",
  325. "initialSelection": "Initial Selection",
  326. "healthCheck": "Health Check",
  327. "prioritySelection": "Priority Selection",
  328. "attemptProvider": "Attempt: {provider}",
  329. "retryAttempt": "Retry #{number}",
  330. "httpStatus": "HTTP {code}{inferredSuffix}",
  331. "sessionReuse": "Session Reuse",
  332. "sessionReuseDesc": "Reusing provider from session cache",
  333. "sessionReuseTitle": "Session Binding",
  334. "sessionReuseSelection": "Session Reuse Selection",
  335. "sessionReuseSelectionDesc": "Provider selected from session cache",
  336. "sessionInfo": "Session Information",
  337. "sessionIdLabel": "Session ID",
  338. "requestSequence": "Request Sequence",
  339. "sessionAge": "Session Age",
  340. "reusedProvider": "Reused Provider",
  341. "executeRequest": "Execute Request",
  342. "cacheOptimizationHint": "Session reuse optimizes performance by maintaining provider affinity within the same conversation, reducing selection overhead and improving cache hit rates."
  343. }
  344. },
  345. "providerChain": {
  346. "decisionChain": "Provider Decision Chain",
  347. "clickItemForDetails": "Click a step to view details"
  348. },
  349. "modelRedirect": {
  350. "redirected": "Redirected",
  351. "targetModel": "Target Model"
  352. },
  353. "statusCodes": {
  354. "not200": "Non-200 (errors/blocked)",
  355. "200": "200 (Success)",
  356. "400": "400 (Bad Request)",
  357. "401": "401 (Unauthorized)",
  358. "429": "429 (Rate Limited)",
  359. "500": "500 (Server Error)"
  360. },
  361. "billingDetails": {
  362. "input": "Input",
  363. "output": "Output",
  364. "cacheWrite5m": "Cache Write (5m)",
  365. "cacheWrite1h": "Cache Write (1h)",
  366. "cacheRead": "Cache Read",
  367. "cacheTtl": "Cache TTL",
  368. "multiplier": "Provider Multiplier",
  369. "totalCost": "Total Cost",
  370. "context1m": "1M Context",
  371. "context1mPricing": "Input 2x >200k, Output 1.5x >200k"
  372. }
  373. },
  374. "leaderboard": {
  375. "title": "Cost Leaderboard",
  376. "description": "View cost statistics rankings for users and keys",
  377. "todayTitle": "Today's Leaderboard",
  378. "viewAll": "View All",
  379. "userRankings": "User Rankings",
  380. "providerRankings": "Provider Rankings",
  381. "modelRankings": "Model Rankings",
  382. "noData": "No data for today",
  383. "requests": "requests",
  384. "tokens": "tokens",
  385. "tabs": {
  386. "users": "User Rankings",
  387. "keys": "Key Rankings",
  388. "userRanking": "User Rankings",
  389. "providerRanking": "Provider Rankings",
  390. "providerCacheHitRateRanking": "Provider Cache Hit Rate",
  391. "modelRanking": "Model Rankings",
  392. "dailyRanking": "Today",
  393. "weeklyRanking": "This Week",
  394. "monthlyRanking": "This Month",
  395. "allTimeRanking": "All Time"
  396. },
  397. "dateRange": {
  398. "to": "to",
  399. "prevPeriod": "Previous period",
  400. "nextPeriod": "Next period",
  401. "customRange": "Custom date range"
  402. },
  403. "columns": {
  404. "rank": "Rank",
  405. "name": "Name",
  406. "totalCost": "Total Cost",
  407. "totalRequests": "Total Requests",
  408. "avgCost": "Average Cost",
  409. "lastActive": "Last Active",
  410. "user": "User",
  411. "requests": "Requests",
  412. "tokens": "Tokens",
  413. "consumedAmount": "Consumed Amount",
  414. "provider": "Provider",
  415. "model": "Model",
  416. "cost": "Cost",
  417. "cacheHitRequests": "Cache-eligible Requests",
  418. "cacheHitRate": "Cache Hit Rate",
  419. "cacheReadTokens": "Cache Read Tokens",
  420. "totalTokens": "Total Tokens",
  421. "cacheCreationConsumedAmount": "Cache Creation Spend",
  422. "totalConsumedAmount": "Total Spend",
  423. "successRate": "Success Rate",
  424. "avgResponseTime": "Avg Response Time",
  425. "avgTtfbMs": "Avg TTFB",
  426. "avgTokensPerSecond": "Avg tok/s",
  427. "avgCostPerRequest": "Avg Cost/Req",
  428. "avgCostPerMillionTokens": "Avg Cost/1M Tokens"
  429. },
  430. "expandModelStats": "Expand model details",
  431. "collapseModelStats": "Collapse model details",
  432. "states": {
  433. "loading": "Loading...",
  434. "noData": "No data available",
  435. "todayNoData": "No data available for today",
  436. "weekNoData": "No data available for this week",
  437. "monthNoData": "No data available for this month",
  438. "fetchFailed": "Failed to fetch leaderboard data"
  439. },
  440. "permission": {
  441. "title": "Permission Required",
  442. "restricted": "Access Restricted",
  443. "description": "The leaderboard feature requires administrators to enable the \"Allow Global Usage View\" permission.",
  444. "adminAction": "Enable this permission.",
  445. "userAction": "Please contact an administrator to enable this permission.",
  446. "systemSettings": "System Settings"
  447. },
  448. "filters": {
  449. "userTagsPlaceholder": "Filter by user tags...",
  450. "userGroupsPlaceholder": "Filter by user groups..."
  451. }
  452. },
  453. "sessions": {
  454. "title": "Active Sessions",
  455. "description": "Monitor current active API sessions in real-time",
  456. "monitoring": "Session Monitoring",
  457. "monitoringDescription": "Real-time display of active and inactive sessions (auto-refresh every 3 seconds)",
  458. "activeSessions": "Active Sessions (Last 5 Minutes)",
  459. "inactiveSessions": "Inactive Sessions (Over 5 Minutes, View Only)",
  460. "columns": {
  461. "sessionId": "Session ID",
  462. "user": "User",
  463. "key": "Key",
  464. "provider": "Provider",
  465. "model": "Model",
  466. "startTime": "Start Time",
  467. "lastActivity": "Last Activity",
  468. "requestCount": "Requests",
  469. "totalInput": "Total Input",
  470. "totalOutput": "Total Output",
  471. "totalCost": "Total Cost",
  472. "totalDuration": "Total Duration",
  473. "status": "Status",
  474. "actions": "Actions"
  475. },
  476. "table": {
  477. "count": "Total {count} {type} Sessions",
  478. "active": "Active",
  479. "inactive": "Inactive",
  480. "notCountedInConcurrency": "(Not counted in concurrency)",
  481. "refreshing": "Refreshing...",
  482. "noActiveSessions": "No active sessions"
  483. },
  484. "pagination": {
  485. "total": "total"
  486. },
  487. "details": {
  488. "title": "Session Messages",
  489. "messages": "Messages",
  490. "info": "Session Info",
  491. "timeline": "Timeline",
  492. "overview": "Session Overview",
  493. "overviewDescription": "Aggregated statistics",
  494. "providersAndModels": "Providers & Models",
  495. "providersAndModelsDescription": "Providers and models used",
  496. "tokenUsage": "Token Usage (Total)",
  497. "tokenUsageDescription": "Cumulative statistics for all requests",
  498. "costInfo": "Cost Information (Total)",
  499. "costInfoDescription": "Cumulative cost for all requests",
  500. "totalRequests": "Total Requests",
  501. "firstRequest": "First Request",
  502. "lastRequest": "Last Request",
  503. "totalDuration": "Total Duration",
  504. "totalInput": "Total Input",
  505. "totalOutput": "Total Output",
  506. "cacheCreation": "Cache Creation",
  507. "cacheTtlMixed": "Mixed",
  508. "cacheRead": "Cache Read",
  509. "total": "Total",
  510. "totalFee": "Total Fee",
  511. "providers": "Providers",
  512. "models": "Models",
  513. "noDetailedData": "No detailed data available",
  514. "storageTip": "No detailed data found. Possible reasons: Redis is disabled/unavailable (REDIS_URL + ENABLE_RATE_LIMIT=true), the data expired (SESSION_TTL, default 300s), or response body storage is disabled (STORE_SESSION_RESPONSE_BODY=false, affects response body only). To store unredacted messages, set STORE_SESSION_MESSAGES=true.",
  515. "clientInfo": "Client Info",
  516. "requestHeaders": "Request Headers",
  517. "requestBody": "Request Body",
  518. "requestMessages": "Request Messages",
  519. "specialSettings": "Special",
  520. "requestMessagesDescription": "Message content sent by the client",
  521. "responseHeaders": "Response Headers",
  522. "responseBody": "Response Body",
  523. "responseBodyDescription": "Complete server response (5-minute TTL)",
  524. "noHeaders": "No data",
  525. "noData": "No Data",
  526. "prevRequest": "Previous",
  527. "nextRequest": "Next"
  528. },
  529. "actions": {
  530. "back": "Back",
  531. "view": "View",
  532. "copy": "Copy",
  533. "download": "Download",
  534. "copyMessages": "Copy Request (Headers + Body)",
  535. "downloadMessages": "Download Request (Headers + Body)",
  536. "copied": "Copied",
  537. "copyResponse": "Copy Response",
  538. "terminate": "Terminate",
  539. "terminateTitle": "Terminate Session",
  540. "terminateDescription": "Are you sure you want to terminate this session? After termination, the provider binding for this session will be cleared, and the next request will reselect a provider.",
  541. "sessionIdLabel": "Session ID: {sessionId}",
  542. "cancel": "Cancel",
  543. "confirmTerminate": "Confirm Termination",
  544. "terminating": "Terminating...",
  545. "terminateSuccess": "Session terminated successfully",
  546. "terminateFailed": "Failed to terminate session",
  547. "terminateSelected": "Terminate Selected",
  548. "selectedCount": "{count} selected",
  549. "selectAll": "Select All",
  550. "selectSessionLabel": "Select session",
  551. "multiSelect": "Multi Select",
  552. "cancelMultiSelect": "Cancel",
  553. "terminateSessionTitle": "Terminate Session",
  554. "terminateSessionDescription": "Are you sure you want to terminate this session? This action cannot be undone.",
  555. "batchTerminateSuccess": "Terminated {count} session(s)",
  556. "batchTerminatePartial": "Unauthorized: {unauthorized} · Missing: {missing}",
  557. "batchTerminateAllowedFailed": "Failed to terminate {count} authorized session(s)",
  558. "batchTerminateNone": "No sessions were terminated",
  559. "noSelection": "Please select at least one session"
  560. },
  561. "codeDisplay": {
  562. "raw": "Raw",
  563. "pretty": "Pretty",
  564. "searchPlaceholder": "Search",
  565. "expand": "Expand",
  566. "collapse": "Collapse",
  567. "themeAuto": "Auto",
  568. "themeLight": "Light",
  569. "themeDark": "Dark",
  570. "noMatches": "No matches",
  571. "onlyMatches": "Only matches",
  572. "showAll": "Show all",
  573. "prevPage": "Prev",
  574. "nextPage": "Next",
  575. "pageInfo": "Page {page} / {total}",
  576. "sseEvent": "Event",
  577. "sseData": "Data",
  578. "hardLimit": {
  579. "title": "Content too large",
  580. "size": "Size: {sizeMB} MB ({sizeBytes} bytes)",
  581. "maximum": "Maximum allowed: {maxSizeMB} MB or {maxLines} lines",
  582. "hint": "Please download the file to view the full content.",
  583. "download": "Download"
  584. }
  585. },
  586. "status": {
  587. "loading": "Loading...",
  588. "loadError": "Load failed",
  589. "fetchFailed": "Fetch Failed",
  590. "unknownError": "Unknown Error",
  591. "storageNotEnabled": "Not Stored",
  592. "storageNotEnabledHint": "Tip: Check REDIS_URL and ENABLE_RATE_LIMIT=true (session details cache). To store unredacted messages, set STORE_SESSION_MESSAGES=true."
  593. },
  594. "errors": {
  595. "copyFailed": "Copy Failed"
  596. },
  597. "requestList": {
  598. "title": "Requests",
  599. "noRequests": "No requests found",
  600. "fetchFailed": "Failed to fetch requests",
  601. "unknownError": "Unknown error occurred",
  602. "prev": "Prev",
  603. "next": "Next",
  604. "orderAsc": "Switch to ascending order (oldest first)",
  605. "orderDesc": "Switch to descending order (newest first)"
  606. },
  607. "back": "Back",
  608. "loadingError": "Loading failed"
  609. },
  610. "quotas": {
  611. "title": "Quota Management",
  612. "description": "Manage user, key, and provider usage quotas",
  613. "tabs": {
  614. "overview": "Overview",
  615. "users": "User Quotas",
  616. "keys": "Key Quotas",
  617. "providers": "Provider Quotas"
  618. },
  619. "columns": {
  620. "name": "Name",
  621. "limit": "Limit",
  622. "used": "Used",
  623. "remaining": "Remaining",
  624. "resetTime": "Reset Time",
  625. "status": "Status"
  626. },
  627. "labels": {
  628. "byName": "By Name",
  629. "byUsageRate": "By Usage Rate",
  630. "all": "All",
  631. "warning": "Near Limit (>60%)",
  632. "exceeded": "Exceeded (≥100%)"
  633. },
  634. "users": {
  635. "title": "User Quota Statistics",
  636. "totalUsers": "Total {count} users"
  637. },
  638. "keys": {
  639. "title": "Key Quota Statistics",
  640. "totalKeysInfo": "Total {userCount} users, {keyCount} keys",
  641. "setKeyQuota": "Set Key Quota",
  642. "setUserQuota": "Set User Quota",
  643. "onlyKeyQuota": "Key Quota Only",
  644. "onlyUserQuota": "User Quota Only",
  645. "success": "User quota set successfully"
  646. },
  647. "providers": {
  648. "title": "Provider Quota Statistics",
  649. "totalProviders": "Total {count} providers"
  650. }
  651. },
  652. "labels": {
  653. "byName": "By Name",
  654. "byUsageRate": "By Usage Rate"
  655. },
  656. "nav": {
  657. "mobileMenuTitle": "Navigation Menu",
  658. "dashboard": "Dashboard",
  659. "usageLogs": "Usage Logs",
  660. "leaderboard": "Leaderboard",
  661. "availability": "Availability",
  662. "myQuota": "My Quota",
  663. "quotasManagement": "Quotas",
  664. "userManagement": "Users",
  665. "providers": "Providers",
  666. "documentation": "Docs",
  667. "systemSettings": "Settings",
  668. "feedback": "Feedback",
  669. "login": "Login",
  670. "logout": "Logout"
  671. },
  672. "statistics": {
  673. "title": "Usage Statistics",
  674. "cost": "Consumption Amount",
  675. "calls": "API Calls",
  676. "totalCost": "Total Consumption Amount",
  677. "totalCalls": "Total API Calls",
  678. "timeRange": {
  679. "today": "Today",
  680. "todayDescription": "Today's usage",
  681. "7days": "Last 7 Days",
  682. "7daysDescription": "Usage for the last 7 days",
  683. "30days": "Last 30 Days",
  684. "30daysDescription": "Usage for the last 30 days",
  685. "thisMonth": "This Month",
  686. "thisMonthDescription": "Usage for this month",
  687. "default": "Usage"
  688. },
  689. "mode": {
  690. "keys": "Only display usage statistics for your keys",
  691. "mixed": "Display your key details and aggregated data from other users",
  692. "users": "Display usage statistics for all users"
  693. },
  694. "legend": {
  695. "selectAll": "Select All",
  696. "deselectAll": "Clear",
  697. "selected": "Selected"
  698. },
  699. "chartMode": {
  700. "label": "Display Mode",
  701. "overlay": "Overlay",
  702. "stacked": "Stacked"
  703. },
  704. "states": {
  705. "noData": "No statistics data available",
  706. "fetchFailed": "Failed to fetch statistics"
  707. }
  708. },
  709. "errors": {
  710. "fetchSystemSettingsFailed": "Failed to fetch system settings",
  711. "fetchFailed": "Fetch failed",
  712. "fetchSessionListFailed": "Failed to fetch session list"
  713. },
  714. "keyList": {
  715. "columns": {
  716. "name": "Name",
  717. "key": "Key",
  718. "todayCalls": "Today's Calls",
  719. "todayCost": "Today's Cost",
  720. "lastUsed": "Last Used",
  721. "actions": "Actions"
  722. },
  723. "detailsButton": "Details",
  724. "modelStats": "Model Statistics",
  725. "modelStatsColumns": {
  726. "model": "Model",
  727. "calls": "Calls",
  728. "cost": "Cost"
  729. },
  730. "limitUsage": "Limit Usage",
  731. "copyKeyTooltip": "Copy full key",
  732. "showKeyTooltip": "Show full key",
  733. "hideKeyTooltip": "Hide key",
  734. "copyFailed": "Copy failed:",
  735. "timesUnit": "times",
  736. "provider": "Provider",
  737. "neverUsed": "Never used",
  738. "viewLogsTooltip": "View detailed logs",
  739. "logsButton": "Logs",
  740. "emptyState": {
  741. "title": "No Keys",
  742. "description": "Click the \"Add Key\" button in the top right corner to add a key"
  743. }
  744. },
  745. "userList": {
  746. "title": "User List",
  747. "badge": "{count} Keys",
  748. "activeKeys": "Active Keys",
  749. "totalKeys": "Total Keys",
  750. "expiresAt": "Expiration",
  751. "status": {
  752. "active": "Active",
  753. "expiringSoon": "Expiring Soon",
  754. "expired": "Expired",
  755. "disabled": "Disabled"
  756. },
  757. "actions": {
  758. "renew": "Renew",
  759. "renew30d": "Renew for 30 days",
  760. "renew90d": "Renew for 90 days",
  761. "renew1y": "Renew for 1 year",
  762. "renewCustom": "Custom...",
  763. "customRenewTitle": "Custom Renewal",
  764. "customRenewDescription": "Set a new expiration date for user {userName}",
  765. "expirationDate": "Expiration Date",
  766. "enableOnRenew": "Enable user on renewal",
  767. "cancel": "Cancel",
  768. "confirm": "Confirm",
  769. "customPrompt": "Enter a new expiry date (YYYY-MM-DD). Leave empty to cancel.",
  770. "invalidDate": "Please enter a valid date",
  771. "enable": "Enable",
  772. "disable": "Disable",
  773. "success": "Operation succeeded",
  774. "failed": "Operation failed, please try again"
  775. },
  776. "emptyState": {
  777. "title": "No Users",
  778. "description": "You haven't created any users yet. Users are the foundation for managing API keys and usage quotas. Create your first user to get started!",
  779. "action": "Create Your First User"
  780. },
  781. "addUser": "Add User"
  782. },
  783. "keyListHeader": {
  784. "todayUsage": "Today's Usage",
  785. "allowedModels": {
  786. "label": "Allowed Models",
  787. "noRestrictions": "Allowed Models: No restrictions"
  788. },
  789. "expiresAt": "Expires",
  790. "proxyStatus": {
  791. "loading": "Loading proxy status",
  792. "fetchFailed": "Failed to fetch proxy status",
  793. "noStatus": "No proxy status",
  794. "activeRequests": "Active Requests",
  795. "lastRequest": "Last Request",
  796. "noRecord": "No record",
  797. "timeAgo": {
  798. "justNow": "Just now",
  799. "secondsAgo": "{count}s ago",
  800. "minutesAgo": "{count} min ago",
  801. "hoursAgo": "{count}h ago",
  802. "daysAgo": "{count}d ago"
  803. }
  804. },
  805. "addKey": "Add Key",
  806. "keyCreatedDialog": {
  807. "title": "Key Created Successfully",
  808. "description": "Your API key has been created successfully. Please copy and save it securely, as it will only be displayed once.",
  809. "apiKeyLabel": "API Key",
  810. "warningText": "Please copy and save before closing. You will not be able to view this key again after closing.",
  811. "httpWarningText": "HTTP access detected. Browser restrictions prevent clipboard access. Click the eye icon to reveal the key and copy manually.",
  812. "copyTooltip": "Copy to clipboard",
  813. "showTooltip": "Show full key",
  814. "hideTooltip": "Hide key",
  815. "closeButton": "Close"
  816. },
  817. "allowedClients": {
  818. "label": "Clients allowed",
  819. "noRestrictions": "Clients allowed: no restrictions"
  820. }
  821. },
  822. "keyLimitUsage": {
  823. "loading": "Loading...",
  824. "error": "Fetch failed",
  825. "networkError": "Network error",
  826. "cost5h": "5-Hour Cost",
  827. "costDaily": "Daily Cost",
  828. "costWeekly": "Weekly Cost",
  829. "costMonthly": "Monthly Cost",
  830. "costTotal": "Total Cost",
  831. "concurrentSessions": "Concurrent Sessions",
  832. "noLimit": "No quota limits"
  833. },
  834. "addKeyForm": {
  835. "title": "Add Key",
  836. "description": "Create a new API key for the current user. The key value will be auto-generated.",
  837. "submitText": "Create Key",
  838. "loadingText": "Creating...",
  839. "keyName": {
  840. "label": "Key Name",
  841. "placeholder": "Enter key name"
  842. },
  843. "expiresAt": {
  844. "label": "Expiration Time",
  845. "placeholder": "Select expiration time",
  846. "description": "Leave blank for never expires"
  847. },
  848. "canLoginWebUi": {
  849. "label": "Allow Web UI Login",
  850. "description": "When disabled, this key can only be used for API calls and cannot login to the admin panel"
  851. },
  852. "limit5hUsd": {
  853. "label": "5-Hour Cost Limit (USD)",
  854. "placeholder": "Leave blank for unlimited",
  855. "description": "Maximum cost within 5 hours",
  856. "descriptionWithUserLimit": "Maximum cost within 5 hours (User limit: {limit})"
  857. },
  858. "limitDailyUsd": {
  859. "label": "Daily Cost Limit (USD)",
  860. "placeholder": "Leave blank for unlimited",
  861. "description": "Maximum cost per day"
  862. },
  863. "dailyResetMode": {
  864. "label": "Daily Reset Mode",
  865. "options": {
  866. "fixed": "Fixed Time Reset",
  867. "rolling": "Rolling Window (24h)"
  868. },
  869. "desc": {
  870. "fixed": "Reset quota at a specific time each day",
  871. "rolling": "24-hour rolling window from first request"
  872. }
  873. },
  874. "dailyResetTime": {
  875. "label": "Daily Reset Time",
  876. "placeholder": "HH:mm",
  877. "description": "When the daily limit resets (uses system timezone)"
  878. },
  879. "limitWeeklyUsd": {
  880. "label": "Weekly Cost Limit (USD)",
  881. "placeholder": "Leave blank for unlimited",
  882. "description": "Maximum cost per week",
  883. "descriptionWithUserLimit": "Maximum cost per week (User limit: {limit})"
  884. },
  885. "limitMonthlyUsd": {
  886. "label": "Monthly Cost Limit (USD)",
  887. "placeholder": "Leave blank for unlimited",
  888. "description": "Maximum cost per month",
  889. "descriptionWithUserLimit": "Maximum cost per month (User limit: {limit})"
  890. },
  891. "limitTotalUsd": {
  892. "label": "Total Cost Limit (USD)",
  893. "placeholder": "Leave blank for unlimited",
  894. "description": "Maximum cumulative spending (no reset)",
  895. "descriptionWithUserLimit": "Cannot exceed user total limit ({limit})"
  896. },
  897. "limitConcurrentSessions": {
  898. "label": "Concurrent Session Limit",
  899. "placeholder": "0 means unlimited",
  900. "description": "Number of simultaneous conversations",
  901. "descriptionWithUserLimit": "Maximum sessions (User limit: {limit})"
  902. },
  903. "providerGroup": {
  904. "label": "Provider Group",
  905. "placeholder": "Enter provider group tags, press Enter to add",
  906. "description": "Provider groups for this key (default: default).",
  907. "defaultDescription": "default includes providers without groupTag.",
  908. "descriptionWithUserGroup": "Provider groups for this key (user groups: {group}; default: default)."
  909. },
  910. "cacheTtl": {
  911. "label": "Cache TTL Override",
  912. "description": "Force Anthropic prompt cache TTL for requests containing cache_control.",
  913. "options": {
  914. "inherit": "No override (follow provider/client)",
  915. "5m": "5m",
  916. "1h": "1h"
  917. }
  918. },
  919. "successTitle": "Key Created Successfully",
  920. "successDescription": "Your API key has been created successfully.",
  921. "generatedKey": {
  922. "label": "Generated Key",
  923. "hint": "You can manage this key in the key list (enable/disable, quotas, etc.), but the full key is only shown once. Copy it now."
  924. },
  925. "errors": {
  926. "userIdMissing": "User ID does not exist",
  927. "createFailed": "Failed to create, please try again later",
  928. "noKeyReturned": "Created successfully but key was not returned"
  929. }
  930. },
  931. "userForm": {
  932. "title": {
  933. "add": "Add User",
  934. "edit": "Edit User"
  935. },
  936. "description": {
  937. "add": "Create a new user. The system will automatically generate a default key.",
  938. "edit": "Modify user's basic information."
  939. },
  940. "submitText": {
  941. "add": "Create User",
  942. "edit": "Save Changes"
  943. },
  944. "loadingText": {
  945. "add": "Creating...",
  946. "edit": "Saving..."
  947. },
  948. "username": {
  949. "label": "Username",
  950. "placeholder": "Enter username"
  951. },
  952. "note": {
  953. "label": "Note",
  954. "placeholder": "Enter note (optional)",
  955. "description": "Used to describe the user's purpose or notes"
  956. },
  957. "providerGroup": {
  958. "label": "Provider Group",
  959. "placeholder": "e.g., default or premium,economy",
  960. "description": "User provider groups (default: default). Providers without groupTag belong to default."
  961. },
  962. "tags": {
  963. "label": "User Tags",
  964. "placeholder": "Enter tag (press Enter to add)",
  965. "description": "Add tags for categorization and filtering (max 20 tags, 32 characters each)"
  966. },
  967. "rpm": {
  968. "label": "RPM Limit",
  969. "placeholder": "Requests per minute limit",
  970. "description": "Default: {default}, Range: 1-10000"
  971. },
  972. "dailyQuota": {
  973. "label": "Daily Quota",
  974. "placeholder": "Daily consumption quota limit",
  975. "helperText": "Set to 0 for unlimited",
  976. "description": "Default: ${default}, Range: $0.01-$1000"
  977. },
  978. "limit5hUsd": {
  979. "label": "5-Hour Quota (USD)",
  980. "placeholder": "Leave empty for unlimited",
  981. "description": "Maximum spending in 5 hours"
  982. },
  983. "limitWeeklyUsd": {
  984. "label": "Weekly Quota (USD)",
  985. "placeholder": "Leave empty for unlimited",
  986. "description": "Maximum weekly spending"
  987. },
  988. "limitMonthlyUsd": {
  989. "label": "Monthly Quota (USD)",
  990. "placeholder": "Leave empty for unlimited",
  991. "description": "Maximum monthly spending"
  992. },
  993. "limitTotalUsd": {
  994. "label": "Total Quota (USD)",
  995. "placeholder": "Leave empty for unlimited",
  996. "description": "Maximum lifetime spending"
  997. },
  998. "limitConcurrentSessions": {
  999. "label": "Concurrent Sessions Limit",
  1000. "placeholder": "0 means unlimited",
  1001. "description": "Number of simultaneous conversations"
  1002. },
  1003. "isEnabled": {
  1004. "label": "Enable User",
  1005. "description": "Disabled users cannot access the API"
  1006. },
  1007. "expiresAt": {
  1008. "label": "Expiration Date",
  1009. "placeholder": "Leave empty for never expires",
  1010. "description": "User will be automatically disabled after expiration",
  1011. "pastWarning": "Selected date is in the past. The user will expire and be disabled immediately after saving."
  1012. },
  1013. "allowedClients": {
  1014. "label": "Allowed Clients",
  1015. "description": "Restrict which CLI/IDE clients can use this account. Leave empty for no restrictions.",
  1016. "customLabel": "Custom Client Patterns",
  1017. "customPlaceholder": "Enter custom pattern (e.g., 'xcode', 'my-ide')"
  1018. },
  1019. "allowedModels": {
  1020. "label": "Allowed Models",
  1021. "placeholder": "Enter model name (press Enter to add)",
  1022. "description": "Restrict this user to specific AI models. Leave empty for no restrictions (max 50 models, 64 chars each)"
  1023. }
  1024. },
  1025. "deleteKeyConfirm": {
  1026. "title": "Confirm Delete Key",
  1027. "description": "Are you sure you want to delete key \"{name}\"?\n{maskedKey}\nThis action cannot be undone. All applications using this key will lose access.",
  1028. "cancel": "Cancel",
  1029. "confirm": "Confirm Delete",
  1030. "confirmLoading": "Deleting...",
  1031. "errors": {
  1032. "deleteFailed": "Delete failed",
  1033. "retryError": "Delete failed, please try again later"
  1034. }
  1035. },
  1036. "keyActions": {
  1037. "edit": "Edit",
  1038. "delete": "Delete",
  1039. "editAriaLabel": "Edit key",
  1040. "deleteAriaLabel": "Delete key"
  1041. },
  1042. "userActions": {
  1043. "edit": "Edit user",
  1044. "delete": "Delete user",
  1045. "editAriaLabel": "Edit user",
  1046. "deleteAriaLabel": "Delete user"
  1047. },
  1048. "availability": {
  1049. "title": "Provider Availability Monitor",
  1050. "description": "Real-time monitoring of provider availability and performance metrics",
  1051. "nav": "Availability Monitor",
  1052. "tabs": {
  1053. "provider": "Provider Availability",
  1054. "endpoint": "Endpoint Health"
  1055. },
  1056. "overview": {
  1057. "systemAvailability": "System Availability",
  1058. "avgLatency": "Avg Latency",
  1059. "errorRate": "Error Rate",
  1060. "activeProbes": "Active Probes",
  1061. "load": "Load"
  1062. },
  1063. "status": {
  1064. "green": "Healthy",
  1065. "red": "Unhealthy",
  1066. "unknown": "Unknown"
  1067. },
  1068. "statusDescription": {
  1069. "green": "Service is healthy, requests successful",
  1070. "red": "Service unavailable or error",
  1071. "unknown": "No data available"
  1072. },
  1073. "metrics": {
  1074. "systemAvailability": "System Availability",
  1075. "totalRequests": "Total Requests",
  1076. "successRate": "Success Rate",
  1077. "avgLatency": "Avg Latency",
  1078. "p50Latency": "P50 Latency",
  1079. "p95Latency": "P95 Latency",
  1080. "p99Latency": "P99 Latency",
  1081. "lastRequest": "Last Request",
  1082. "requestCount": "Request Count"
  1083. },
  1084. "timeRange": {
  1085. "label": "Time Range",
  1086. "15min": "15 min",
  1087. "1h": "1 hour",
  1088. "6h": "6 hours",
  1089. "24h": "24 hours",
  1090. "7d": "7 days",
  1091. "last15min": "Last 15 minutes",
  1092. "last1h": "Last 1 hour",
  1093. "last6h": "Last 6 hours",
  1094. "last24h": "Last 24 hours",
  1095. "last7d": "Last 7 days",
  1096. "custom": "Custom"
  1097. },
  1098. "filters": {
  1099. "provider": "Provider",
  1100. "allProviders": "All Providers",
  1101. "includeDisabled": "Include Disabled"
  1102. },
  1103. "sort": {
  1104. "label": "Sort By",
  1105. "availability": "Availability",
  1106. "name": "Name",
  1107. "requests": "Requests"
  1108. },
  1109. "columns": {
  1110. "provider": "Provider",
  1111. "type": "Type",
  1112. "status": "Status",
  1113. "availability": "Availability",
  1114. "requests": "Requests",
  1115. "successRate": "Success Rate",
  1116. "avgLatency": "Avg Latency",
  1117. "lastRequest": "Last Request",
  1118. "actions": "Actions"
  1119. },
  1120. "chart": {
  1121. "title": "Availability Trend",
  1122. "description": "Availability changes over time periods",
  1123. "availabilityScore": "Availability Score",
  1124. "requestVolume": "Request Volume",
  1125. "latencyTrend": "Latency Trend",
  1126. "noData": "No Data"
  1127. },
  1128. "details": {
  1129. "title": "Provider Details",
  1130. "overview": "Overview",
  1131. "timeBuckets": "Time Buckets",
  1132. "greenCount": "Successful Requests",
  1133. "redCount": "Failed Requests"
  1134. },
  1135. "actions": {
  1136. "refresh": "Refresh",
  1137. "refreshing": "Refreshing...",
  1138. "autoRefresh": "Auto Refresh",
  1139. "stopAutoRefresh": "Stop Auto Refresh",
  1140. "viewDetails": "View Details",
  1141. "testProvider": "Test Provider",
  1142. "retry": "Retry",
  1143. "probeNow": "Probe Now",
  1144. "probing": "Probing...",
  1145. "probeAll": "Probe All",
  1146. "probeSuccess": "Probe successful",
  1147. "probeFailed": "Probe failed"
  1148. },
  1149. "states": {
  1150. "loading": "Loading...",
  1151. "error": "Load Failed",
  1152. "noProviders": "No Providers",
  1153. "noData": "No availability data",
  1154. "fetchFailed": "Failed to fetch availability data"
  1155. },
  1156. "legend": {
  1157. "green": "Excellent (95%+ availability)",
  1158. "lime": "Good (80-95% availability)",
  1159. "orange": "Warning (50-80% availability)",
  1160. "red": "Unhealthy (<50% availability)",
  1161. "noData": "No Data"
  1162. },
  1163. "summary": {
  1164. "title": "Availability Summary",
  1165. "healthyProviders": "Healthy Providers",
  1166. "unhealthyProviders": "Unhealthy Providers",
  1167. "unknownProviders": "No Data",
  1168. "totalProviders": "Total Providers"
  1169. },
  1170. "heatmap": {
  1171. "bucketSize": "Bucket Size",
  1172. "minutes": "min",
  1173. "requests": "requests",
  1174. "noData": "No Data",
  1175. "noRequests": "No Requests"
  1176. },
  1177. "probeHistory": {
  1178. "title": "Endpoint Probe History",
  1179. "description": "View probe logs and manually trigger probes for specific endpoints",
  1180. "selectVendor": "Select Vendor",
  1181. "selectType": "Select Provider Type",
  1182. "selectEndpoint": "Select Endpoint",
  1183. "noEndpoints": "No endpoints found",
  1184. "probeNow": "Probe Now",
  1185. "probing": "Probing...",
  1186. "columns": {
  1187. "time": "Time",
  1188. "method": "Method",
  1189. "status": "Status",
  1190. "latency": "Latency",
  1191. "error": "Error"
  1192. },
  1193. "success": "Success",
  1194. "manual": "Manual Probe",
  1195. "auto": "Auto Probe",
  1196. "probeSuccess": "Probe successful",
  1197. "probeFailed": "Probe failed"
  1198. },
  1199. "laneChart": {
  1200. "title": "Provider Availability Timeline",
  1201. "noData": "No data available",
  1202. "requests": "{count} requests",
  1203. "availability": "{value}% available",
  1204. "noRequests": "No requests",
  1205. "denseData": "Dense",
  1206. "sparseData": "Sparse",
  1207. "latency": "Latency"
  1208. },
  1209. "latencyChart": {
  1210. "title": "Latency Distribution",
  1211. "p50": "P50",
  1212. "p95": "P95",
  1213. "p99": "P99",
  1214. "noData": "No latency data available"
  1215. },
  1216. "latencyCurve": {
  1217. "title": "Latency Trend",
  1218. "noData": "No latency data available",
  1219. "avg": "Avg",
  1220. "min": "Min",
  1221. "max": "Max",
  1222. "latency": "Latency"
  1223. },
  1224. "terminal": {
  1225. "title": "Probe Logs",
  1226. "live": "LIVE",
  1227. "download": "Download logs",
  1228. "noLogs": "No probe logs available",
  1229. "manual": "MANUAL",
  1230. "auto": "AUTO",
  1231. "filterPlaceholder": "Filter logs..."
  1232. },
  1233. "probeGrid": {
  1234. "title": "Endpoint Status",
  1235. "noEndpoints": "No endpoints configured",
  1236. "lastProbe": "Last probe",
  1237. "status": {
  1238. "unknown": "Unknown",
  1239. "healthy": "Healthy",
  1240. "unhealthy": "Unhealthy"
  1241. }
  1242. },
  1243. "endpoint": {
  1244. "selectVendor": "Select vendor",
  1245. "selectType": "Select type"
  1246. },
  1247. "confidence": {
  1248. "low": "Low",
  1249. "medium": "Medium",
  1250. "high": "High",
  1251. "lowTooltip": "Less than {count} requests. Data may not be representative.",
  1252. "mediumTooltip": "Moderate request volume. Data is reasonably reliable.",
  1253. "highTooltip": "High request volume. Data is reliable."
  1254. },
  1255. "toast": {
  1256. "refreshSuccess": "Availability data refreshed",
  1257. "refreshFailed": "Refresh failed, please retry"
  1258. }
  1259. },
  1260. "rateLimits": {
  1261. "title": "Rate Limit Event Statistics",
  1262. "description": "View and analyze statistics for rate limit events",
  1263. "loading": "Loading...",
  1264. "error": "Load Failed",
  1265. "totalEvents": "Total Events",
  1266. "avgUsage": "Avg Usage",
  1267. "affectedUsers": "Affected Users",
  1268. "noData": "No Data",
  1269. "noDataHint": "No rate limit events in the selected time range",
  1270. "filters": {
  1271. "startTime": "Start Time",
  1272. "endTime": "End Time",
  1273. "user": "User",
  1274. "provider": "Provider",
  1275. "limitType": "Limit Type",
  1276. "allUsers": "All Users",
  1277. "allProviders": "All Providers",
  1278. "allLimitTypes": "All Types",
  1279. "apply": "Apply Filters",
  1280. "reset": "Reset",
  1281. "loading": "Loading...",
  1282. "limitTypes": {
  1283. "rpm": "RPM Limit",
  1284. "usd_5h": "5h Spend Limit",
  1285. "usd_weekly": "Weekly Spend Limit",
  1286. "usd_monthly": "Monthly Spend Limit",
  1287. "concurrent_sessions": "Concurrent Session Limit",
  1288. "daily_quota": "Daily Quota Limit"
  1289. }
  1290. },
  1291. "chart": {
  1292. "title": "Rate Limit Timeline",
  1293. "description": "Hourly trend of rate limit events",
  1294. "total": "Total",
  1295. "events": "Events"
  1296. },
  1297. "breakdown": {
  1298. "title": "Rate Limit Type Breakdown",
  1299. "description": "Share of events by rate limit type",
  1300. "total": "Total",
  1301. "count": "Events",
  1302. "percentage": "Percentage",
  1303. "noData": "No Data",
  1304. "types": {
  1305. "rpm": "RPM",
  1306. "usd_5h": "5h Spend",
  1307. "usd_weekly": "Weekly Spend",
  1308. "usd_monthly": "Monthly Spend",
  1309. "concurrent_sessions": "Concurrent Sessions",
  1310. "daily_quota": "Daily Quota"
  1311. }
  1312. },
  1313. "topUsers": {
  1314. "title": "Top Affected Users",
  1315. "description": "Users who triggered rate limits most frequently",
  1316. "total": "Total",
  1317. "rank": "Rank",
  1318. "username": "Username",
  1319. "eventCount": "Events",
  1320. "percentage": "Percentage",
  1321. "loading": "Loading...",
  1322. "noData": "No Data"
  1323. }
  1324. },
  1325. "users": {
  1326. "title": "User Management",
  1327. "description": "Showing {count} users",
  1328. "toolbar": {
  1329. "searchPlaceholder": "Search name, note, tags, keys...",
  1330. "groupFilter": "Filter by Group",
  1331. "allGroups": "All Groups",
  1332. "tagFilter": "Filter by Tag",
  1333. "allTags": "All Tags",
  1334. "keyGroupFilter": "Key Group",
  1335. "allKeyGroups": "All Key Groups",
  1336. "sortBy": "Sort by",
  1337. "sortOrder": "Sort order",
  1338. "sortByName": "Name",
  1339. "sortByTags": "Tags",
  1340. "sortByExpiresAt": "Expires at",
  1341. "sortByRpm": "RPM Limit",
  1342. "sortByLimit5h": "5h limit",
  1343. "sortByLimitDaily": "Daily limit",
  1344. "sortByLimitWeekly": "Weekly limit",
  1345. "sortByLimitMonthly": "Monthly limit",
  1346. "sortByCreatedAt": "Created at",
  1347. "ascending": "Ascending",
  1348. "descending": "Descending",
  1349. "statusFilter": "Status",
  1350. "allStatus": "All statuses",
  1351. "statusActive": "Active",
  1352. "statusExpired": "Expired",
  1353. "statusExpiringSoon": "Expiring soon",
  1354. "statusEnabled": "Enabled",
  1355. "statusDisabled": "Disabled",
  1356. "createUser": "Create User",
  1357. "createKey": "Create Key"
  1358. },
  1359. "dialog": {
  1360. "userProviderGroup": "Your Provider Groups",
  1361. "userProviderGroupHint": "New keys can only use your existing provider groups."
  1362. }
  1363. },
  1364. "userManagement": {
  1365. "table": {
  1366. "columns": {
  1367. "username": "Username",
  1368. "note": "Note",
  1369. "expiresAt": "Expires at",
  1370. "expiresAtHint": "Click to quick renew",
  1371. "limitRpm": "RPM",
  1372. "limit5h": "5h limit",
  1373. "limitDaily": "Daily limit",
  1374. "limitWeekly": "Weekly limit",
  1375. "limitMonthly": "Monthly limit",
  1376. "limitTotal": "Total limit",
  1377. "limitSessions": "Concurrent sessions"
  1378. },
  1379. "keyRow": {
  1380. "name": "Key name",
  1381. "key": "Key",
  1382. "group": "Group",
  1383. "todayUsage": "Requests today",
  1384. "todayCost": "Today's cost",
  1385. "todayTokens": "Tokens today",
  1386. "lastUsed": "Last used",
  1387. "actions": "Actions",
  1388. "quotaButton": "View Quota Usage",
  1389. "fields": {
  1390. "callsLabel": "Requests",
  1391. "tokensLabel": "Tokens",
  1392. "costLabel": "Cost"
  1393. }
  1394. },
  1395. "expand": "Expand",
  1396. "collapse": "Collapse",
  1397. "refresh": "Refresh",
  1398. "noKeys": "No keys",
  1399. "defaultGroup": "default",
  1400. "userStatus": {
  1401. "disabled": "Disabled"
  1402. },
  1403. "actions": {
  1404. "addKey": "Add Key"
  1405. }
  1406. },
  1407. "keyFullDisplay": {
  1408. "title": "Full Key",
  1409. "copySuccess": "Key copied to clipboard",
  1410. "copyFailed": "Copy failed",
  1411. "show": "Show key",
  1412. "hide": "Hide key",
  1413. "copied": "Copied",
  1414. "copy": "Copy key"
  1415. },
  1416. "keyStatsDialog": {
  1417. "title": "Today's Model Statistics",
  1418. "columns": {
  1419. "model": "Model",
  1420. "calls": "Calls",
  1421. "tokens": "Tokens",
  1422. "cost": "Cost"
  1423. },
  1424. "modal": {
  1425. "requests": "Requests",
  1426. "totalTokens": "Total Tokens",
  1427. "cost": "Cost",
  1428. "inputTokens": "Input Tokens",
  1429. "outputTokens": "Output Tokens",
  1430. "cacheWrite": "Cache Write",
  1431. "cacheRead": "Cache Read",
  1432. "cacheHitRate": "Cache Hit Rate",
  1433. "cacheTokens": "Cache Tokens",
  1434. "performanceHigh": "High",
  1435. "performanceMedium": "Medium",
  1436. "performanceLow": "Low"
  1437. },
  1438. "noData": "No usage records today",
  1439. "totalCalls": "Total Calls",
  1440. "totalCost": "Total Cost"
  1441. },
  1442. "keyQuotaUsageDialog": {
  1443. "title": "Key Quota Usage",
  1444. "fetchFailed": "Failed to fetch quota usage",
  1445. "noLimit": "No limit",
  1446. "modeFixed": "Fixed time",
  1447. "modeRolling": "Rolling 24h",
  1448. "retry": "Retry",
  1449. "labels": {
  1450. "limit5h": "5 Hours",
  1451. "limitDaily": "Daily",
  1452. "limitWeekly": "Weekly",
  1453. "limitMonthly": "Monthly",
  1454. "limitTotal": "Total",
  1455. "limitSessions": "Concurrent"
  1456. }
  1457. },
  1458. "quickRenew": {
  1459. "title": "Quick Renew",
  1460. "description": "Set a new expiration date for user {userName}",
  1461. "currentExpiry": "Current Expiration",
  1462. "neverExpires": "Never expires",
  1463. "expired": "Expired",
  1464. "quickExtensionLabel": "Quick Extension",
  1465. "quickExtensionHint": "Extend from current expiry (or from now if expired)",
  1466. "customDateLabel": "Set Expiry Date",
  1467. "customDateHint": "Directly specify an expiry date",
  1468. "quickOptions": {
  1469. "7days": "7 Days",
  1470. "30days": "30 Days",
  1471. "90days": "90 Days",
  1472. "1year": "1 Year"
  1473. },
  1474. "customDate": "Custom Date",
  1475. "enableOnRenew": "Also enable user",
  1476. "enableKeyOnRenew": "Also enable key",
  1477. "cancel": "Cancel",
  1478. "confirm": "Confirm Renewal",
  1479. "confirming": "Renewing...",
  1480. "success": "Renewal successful",
  1481. "failed": "Renewal failed"
  1482. },
  1483. "dialog": {
  1484. "createKeyTitle": "Create Key",
  1485. "editKeyTitle": "Edit Key"
  1486. },
  1487. "editDialog": {
  1488. "title": "Edit user",
  1489. "description": "Edit user information",
  1490. "userSection": "User settings",
  1491. "keysSection": "Key settings",
  1492. "scrollToKey": "Scroll to key",
  1493. "saveFailed": "Failed to save user",
  1494. "keySaveFailed": "Failed to save key",
  1495. "keyDeleteFailed": "Failed to delete key",
  1496. "saveSuccess": "Changes saved successfully",
  1497. "atLeastOneKeyEnabled": "At least one key must be enabled",
  1498. "operationFailed": "Operation failed",
  1499. "userDisabled": "User has been disabled",
  1500. "userEnabled": "User has been enabled",
  1501. "deleteFailed": "Failed to delete user",
  1502. "userDeleted": "User has been deleted",
  1503. "saving": "Saving...",
  1504. "resetData": {
  1505. "title": "Reset Statistics",
  1506. "description": "Delete all request logs and usage data for this user. This action is irreversible.",
  1507. "error": "Failed to reset data",
  1508. "button": "Reset Statistics",
  1509. "confirmTitle": "Reset All Statistics?",
  1510. "confirmDescription": "This will permanently delete all request logs and usage statistics for this user. This action cannot be undone.",
  1511. "confirm": "Yes, Reset All",
  1512. "loading": "Resetting...",
  1513. "success": "All statistics have been reset"
  1514. }
  1515. },
  1516. "batchEdit": {
  1517. "enterMode": "Batch Edit",
  1518. "exitMode": "Exit",
  1519. "selectAll": "Select All",
  1520. "selectedCount": "Selected {users} users, {keys} keys",
  1521. "editSelected": "Edit Selected",
  1522. "dialog": {
  1523. "title": "Batch Edit",
  1524. "description": "Will affect {users} users and {keys} keys",
  1525. "cancel": "Cancel",
  1526. "next": "Next",
  1527. "noFieldEnabled": "Please enable at least one field to override",
  1528. "noUpdate": "No updates to execute",
  1529. "noSelection": "Please select users or keys to batch edit first."
  1530. },
  1531. "confirm": {
  1532. "title": "Confirm Batch Update",
  1533. "description": "This will update {users} users and {keys} keys. This action cannot be undone.",
  1534. "userFields": "User Fields",
  1535. "keyFields": "Key Fields",
  1536. "goBack": "Go Back",
  1537. "update": "Confirm Update",
  1538. "updating": "Updating..."
  1539. },
  1540. "toast": {
  1541. "usersUpdated": "Updated {count} users",
  1542. "keysUpdated": "Updated {count} keys",
  1543. "usersFailed": "User update failed: {error}",
  1544. "keysFailed": "Key update failed: {error}",
  1545. "batchFailed": "Batch update failed"
  1546. },
  1547. "validation": {
  1548. "invalidNumber": "Please enter a valid number",
  1549. "negativeNumber": "Value cannot be negative"
  1550. },
  1551. "aria": {
  1552. "selectUser": "Select user",
  1553. "selectKey": "Select key"
  1554. },
  1555. "user": {
  1556. "title": "User Settings",
  1557. "affected": "Will affect {count} users",
  1558. "enableFieldAria": "Enable field: {title}",
  1559. "fields": {
  1560. "note": "Note",
  1561. "tags": "Tags",
  1562. "rpm": "RPM Limit",
  1563. "limit5h": "5h Limit (USD)",
  1564. "limitDaily": "Daily Limit (USD)",
  1565. "limitWeekly": "Weekly Limit (USD)",
  1566. "limitMonthly": "Monthly Limit (USD)"
  1567. },
  1568. "placeholders": {
  1569. "emptyToClear": "Leave empty to clear",
  1570. "tagsPlaceholder": "Press enter to add, comma-separated",
  1571. "emptyNoLimit": "Leave empty for no limit"
  1572. }
  1573. },
  1574. "key": {
  1575. "title": "Key Settings",
  1576. "affected": "Will affect {count} keys",
  1577. "fields": {
  1578. "providerGroup": "Group (providerGroup)",
  1579. "limit5h": "5h Limit (USD)",
  1580. "limitDaily": "Daily Limit (USD)",
  1581. "limitWeekly": "Weekly Limit (USD)",
  1582. "limitMonthly": "Monthly Limit (USD)",
  1583. "canLoginWebUi": "Independent Personal Usage Page",
  1584. "keyEnabled": "Key Enabled Status"
  1585. },
  1586. "placeholders": {
  1587. "groupPlaceholder": "Leave empty to clear, comma-separated for multiple",
  1588. "emptyNoLimit": "Leave empty for no limit"
  1589. },
  1590. "targetValue": "Target Value"
  1591. }
  1592. },
  1593. "createDialog": {
  1594. "title": "Create user",
  1595. "description": "Create a new user and configure API keys",
  1596. "saveFailed": "Failed to create user",
  1597. "keyCreateFailed": "Failed to create key",
  1598. "rollbackFailed": "Rollback failed. The user may have been created without a key. Please delete the user manually (userId: {userId}) and try again.",
  1599. "createSuccess": "User created successfully",
  1600. "successTitle": "Created Successfully",
  1601. "successDescription": "User and key have been created",
  1602. "generatedKey": "Generated Key",
  1603. "keyHint": "You can manage this key from the user management page (enable/disable, quotas, etc.), but the full key is only shown once. Copy it now.",
  1604. "keysSection": "Keys",
  1605. "addKey": "Add key",
  1606. "removeKey": "Remove key",
  1607. "cannotDeleteLastKey": "Cannot delete the last key",
  1608. "confirmRemoveKeyTitle": "Remove key",
  1609. "confirmRemoveKeyDescription": "Are you sure you want to remove the key \"{name}\"?",
  1610. "creating": "Creating...",
  1611. "create": "Create"
  1612. },
  1613. "limitRules": {
  1614. "addRule": "Add limit rule",
  1615. "title": "Add Limit Rule",
  1616. "description": "Select limit type and set value",
  1617. "cancel": "Cancel",
  1618. "confirm": "Save",
  1619. "fields": {
  1620. "type": {
  1621. "label": "Limit Type",
  1622. "placeholder": "Select"
  1623. },
  1624. "value": {
  1625. "label": "Value",
  1626. "placeholder": "Enter"
  1627. }
  1628. },
  1629. "daily": {
  1630. "mode": {
  1631. "label": "Daily Reset Mode",
  1632. "fixed": "Fixed time reset",
  1633. "rolling": "Rolling window (24h)",
  1634. "helperRolling": "Rolling 24-hour window from first request"
  1635. },
  1636. "time": {
  1637. "label": "Reset Time",
  1638. "placeholder": "HH:mm"
  1639. }
  1640. },
  1641. "limitTypes": {
  1642. "limitRpm": "RPM Limit",
  1643. "limit5h": "5-Hour Limit",
  1644. "limitDaily": "Daily Limit",
  1645. "limitWeekly": "Weekly Limit",
  1646. "limitMonthly": "Monthly Limit",
  1647. "limitTotal": "Total Limit",
  1648. "limitSessions": "Concurrent Sessions"
  1649. },
  1650. "ruleTypes": {
  1651. "limitRpm": "RPM limit",
  1652. "limit5h": "5-hour limit",
  1653. "limitDaily": "Daily limit",
  1654. "limitWeekly": "Weekly limit",
  1655. "limitMonthly": "Monthly limit",
  1656. "limitTotal": "Total limit",
  1657. "limitSessions": "Concurrent sessions"
  1658. },
  1659. "errors": {
  1660. "missingType": "Please select a limit type",
  1661. "invalidValue": "Please enter a valid value",
  1662. "invalidTime": "Please enter a valid time (HH:mm)"
  1663. },
  1664. "overwriteHint": "This type already exists, saving will overwrite the existing value",
  1665. "dailyMode": {
  1666. "fixed": "Fixed reset time",
  1667. "rolling": "Rolling window (24h)"
  1668. },
  1669. "quickValues": {
  1670. "unlimited": "Unlimited",
  1671. "10": "$10",
  1672. "50": "$50",
  1673. "100": "$100",
  1674. "500": "$500"
  1675. },
  1676. "alreadySet": "Configured",
  1677. "confirmAdd": "Add"
  1678. },
  1679. "quickExpire": {
  1680. "oneWeek": "In 1 week",
  1681. "oneMonth": "In 1 month",
  1682. "threeMonths": "In 3 months",
  1683. "oneYear": "In 1 year"
  1684. },
  1685. "providerGroupSelect": {
  1686. "providersSuffix": "providers",
  1687. "loadFailed": "Failed to load provider groups"
  1688. },
  1689. "providerGroup": {
  1690. "label": "Provider group",
  1691. "placeholder": "Select provider group",
  1692. "noRestriction": "No restriction (all providers)",
  1693. "providerCount": "{count} providers"
  1694. },
  1695. "dangerZone": {
  1696. "title": "Danger Zone",
  1697. "description": "The following actions are irreversible, proceed with caution",
  1698. "enable": {
  1699. "title": "Enable User",
  1700. "description": "After enabling, this user and their keys will resume normal operation",
  1701. "trigger": "Enable",
  1702. "confirm": "Confirm Enable",
  1703. "confirmDescription": "Are you sure you want to enable user \"{userName}\"?",
  1704. "loading": "Processing..."
  1705. },
  1706. "disable": {
  1707. "title": "Disable User",
  1708. "description": "After disabling, this user and their keys will no longer be usable",
  1709. "trigger": "Disable",
  1710. "confirm": "Confirm Disable",
  1711. "confirmDescription": "Are you sure you want to disable user \"{userName}\"?",
  1712. "loading": "Processing..."
  1713. },
  1714. "delete": {
  1715. "title": "Delete User",
  1716. "description": "This will delete all associated data for this user, this action cannot be undone",
  1717. "trigger": "Delete",
  1718. "confirm": "Confirm Delete",
  1719. "confirmDescription": "This action will delete all associated data for user \"{userName}\" and cannot be undone.",
  1720. "confirmLabel": "Secondary Confirmation",
  1721. "confirmHint": "Please type \"{userName}\" to confirm deletion",
  1722. "loading": "Deleting..."
  1723. },
  1724. "actions": {
  1725. "cancel": "Cancel"
  1726. },
  1727. "errors": {
  1728. "enableFailed": "Failed to enable user, please try again later",
  1729. "disableFailed": "Failed to disable user, please try again later",
  1730. "deleteFailed": "Failed to delete user, please try again later"
  1731. }
  1732. },
  1733. "limitIndicator": {
  1734. "notSet": "Not set",
  1735. "unlimited": "Unlimited"
  1736. },
  1737. "keySettings": {
  1738. "balanceQueryPage": {
  1739. "label": "Enable dedicated balance page",
  1740. "description": "Allow users to view their balance via a dedicated page",
  1741. "descriptionEnabled": "When enabled, this key will access an independent personal usage page upon login. However, it cannot modify its own key's provider group.",
  1742. "descriptionDisabled": "When disabled, the user cannot access the personal usage page UI. Instead, they will use the restricted Web UI."
  1743. },
  1744. "cacheTtlOverride": {
  1745. "label": "Cache TTL override",
  1746. "inherit": "No override (follow provider/client)",
  1747. "5m": "5 minutes",
  1748. "1h": "1 hour"
  1749. }
  1750. },
  1751. "pagination": {
  1752. "previous": "Previous",
  1753. "next": "Next",
  1754. "page": "Page {current}",
  1755. "of": "of {total}"
  1756. },
  1757. "toolbar": {
  1758. "expandAll": "Expand all",
  1759. "collapseAll": "Collapse all"
  1760. },
  1761. "keyStatus": {
  1762. "enabled": "Enabled",
  1763. "disabled": "Disabled",
  1764. "active": "Active",
  1765. "expired": "Expired",
  1766. "expiringSoon": "Expiring Soon",
  1767. "keyEnabled": "Key enabled",
  1768. "keyDisabled": "Key disabled",
  1769. "toggleKeyStatus": "Toggle key status",
  1770. "clickToDisableKey": "Click to disable key",
  1771. "clickToEnableKey": "Click to enable key",
  1772. "operationFailed": "Operation failed",
  1773. "clickToQuickRenew": "Click to quick renew"
  1774. },
  1775. "userStatus": {
  1776. "enabled": "Enabled",
  1777. "disabled": "Disabled",
  1778. "active": "Active",
  1779. "expired": "Expired",
  1780. "expiringSoon": "Expiring Soon",
  1781. "userEnabled": "User enabled",
  1782. "userDisabled": "User disabled",
  1783. "toggleUserStatus": "Toggle user status",
  1784. "clickToDisableUser": "Click to disable user",
  1785. "clickToEnableUser": "Click to enable user",
  1786. "operationFailed": "Operation failed",
  1787. "deleteFailed": "Delete failed",
  1788. "deleteSuccess": "Delete successful",
  1789. "daysLeft": "{days, plural, =0 {Expires today} =1 {1 day left} other {# days left}}"
  1790. },
  1791. "userEditSection": {
  1792. "sections": {
  1793. "basicInfo": "Basic Information",
  1794. "expireTime": "Expiration Time",
  1795. "limitRules": "Limit Rules",
  1796. "accessRestrictions": "Access Restrictions"
  1797. },
  1798. "fields": {
  1799. "username": {
  1800. "label": "Username",
  1801. "placeholder": "Enter username"
  1802. },
  1803. "description": {
  1804. "label": "Note",
  1805. "placeholder": "Enter note (optional)"
  1806. },
  1807. "tags": {
  1808. "label": "User Tags",
  1809. "placeholder": "Enter tag (press Enter to add)"
  1810. },
  1811. "providerGroup": {
  1812. "label": "Provider Group",
  1813. "placeholder": "default"
  1814. },
  1815. "allowedClients": {
  1816. "label": "Client Restrictions",
  1817. "description": "Restrict which CLI/IDE clients can use this account. Empty = no restriction.",
  1818. "customLabel": "Custom Client Pattern",
  1819. "customPlaceholder": "Enter pattern (e.g., 'xcode', 'my-ide')"
  1820. },
  1821. "allowedModels": {
  1822. "label": "Model Restrictions",
  1823. "placeholder": "Enter model name or select from dropdown",
  1824. "description": "Restrict which AI models this user can access. Empty = no restriction."
  1825. },
  1826. "enableStatus": {
  1827. "label": "Enable Status",
  1828. "enabledDescription": "Currently enabled. Disabling will prevent this user and their keys from being used.",
  1829. "disabledDescription": "Currently disabled. Enabling will restore normal access for this user and their keys.",
  1830. "confirmDisable": "Confirm Disable",
  1831. "confirmEnable": "Confirm Enable",
  1832. "confirmEnableTitle": "Confirm Enable User",
  1833. "confirmDisableTitle": "Confirm Disable User",
  1834. "confirmEnableDescription": "Enabling will restore normal access for this user and their keys.",
  1835. "confirmDisableDescription": "Disabling will prevent this user and their keys from being used.",
  1836. "cancel": "Cancel",
  1837. "processing": "Processing..."
  1838. }
  1839. },
  1840. "presetClients": {
  1841. "claude-cli": "Claude Code CLI",
  1842. "gemini-cli": "Gemini CLI",
  1843. "factory-cli": "Droid CLI",
  1844. "codex-cli": "Codex CLI"
  1845. }
  1846. },
  1847. "keyEditSection": {
  1848. "sections": {
  1849. "basicInfo": "Basic Information",
  1850. "expireTime": "Expiration Time",
  1851. "limitRules": "Limit Rules",
  1852. "specialFeatures": "Special Features"
  1853. },
  1854. "fields": {
  1855. "keyName": {
  1856. "label": "Key Name",
  1857. "placeholder": "Enter key name"
  1858. },
  1859. "enableStatus": {
  1860. "label": "Enable Status",
  1861. "description": "Disabled keys cannot be used",
  1862. "cannotDisableTooltip": "Cannot disable the last enabled key"
  1863. },
  1864. "balanceQueryPage": {
  1865. "label": "Independent Personal Usage Page",
  1866. "description": "When enabled, this key can access an independent personal usage page",
  1867. "descriptionEnabled": "When enabled, this key will access an independent personal usage page upon login. However, it cannot modify its own key's provider group.",
  1868. "descriptionDisabled": "When disabled, the user cannot access the personal usage page UI. Instead, they will use the restricted Web UI."
  1869. },
  1870. "providerGroup": {
  1871. "label": "Provider Group",
  1872. "placeholder": "Default: default",
  1873. "selectHint": "Select the provider group(s) this key can use (default: default).",
  1874. "editHint": "Provider group cannot be changed for existing keys.",
  1875. "allGroups": "Use all groups",
  1876. "noGroupHint": "default includes providers without groupTag."
  1877. },
  1878. "cacheTtl": {
  1879. "label": "Cache TTL Override",
  1880. "description": "Force Anthropic prompt cache TTL for requests containing cache_control.",
  1881. "options": {
  1882. "inherit": "No override (follow provider/client)",
  1883. "5m": "5m",
  1884. "1h": "1h"
  1885. }
  1886. }
  1887. },
  1888. "limitRules": {
  1889. "title": "Add limit rule",
  1890. "actions": {
  1891. "add": "Add rule",
  1892. "remove": "Remove"
  1893. },
  1894. "daily": {
  1895. "mode": {
  1896. "fixed": "Fixed time reset",
  1897. "rolling": "Rolling window (24h)"
  1898. }
  1899. },
  1900. "overwriteHint": "This type already exists, saving will overwrite the existing value"
  1901. },
  1902. "accessRestrictions": {
  1903. "title": "Access Restrictions",
  1904. "models": "Allowed Models",
  1905. "clients": "Allowed Clients",
  1906. "noRestrictions": "No restrictions",
  1907. "inheritedFromUser": "Inherited from user settings"
  1908. }
  1909. }
  1910. },
  1911. "webhookMigration": {
  1912. "title": "Webhook System Upgrade",
  1913. "description": "We have launched a new Webhook notification system with multi-target delivery, independent configuration, and improved reliability.",
  1914. "step1": {
  1915. "title": "Legacy Webhook Configuration Detected",
  1916. "description": "The system detected that you are using legacy Webhook configuration. The new system offers more powerful features, and we recommend migrating."
  1917. },
  1918. "step2": {
  1919. "title": "Select Platform Type",
  1920. "description": "The following Webhook URLs could not be automatically identified. Please select the platform manually:"
  1921. },
  1922. "platformOptions": {
  1923. "wechat": "WeChat Work",
  1924. "feishu": "Feishu",
  1925. "dingtalk": "DingTalk",
  1926. "telegram": "Telegram",
  1927. "custom": "Custom"
  1928. },
  1929. "migrateButton": "Start Migration",
  1930. "skipButton": "Maybe Later",
  1931. "nextButton": "Next",
  1932. "goToSettingsButton": "Go to Settings",
  1933. "migrating": "Migrating...",
  1934. "success": "Migration Complete",
  1935. "successDescription": "Your Webhook configuration has been successfully migrated to the new system.",
  1936. "error": "Migration Failed",
  1937. "errorGeneric": "Migration failed. Please try again later.",
  1938. "detectedWebhooks": "Detected Webhooks",
  1939. "notificationTypes": {
  1940. "circuit_breaker": "Circuit Breaker Alert",
  1941. "daily_leaderboard": "Daily Leaderboard",
  1942. "cost_alert": "Cost Alert"
  1943. },
  1944. "urlLabel": "Webhook URL",
  1945. "platformLabel": "Platform Type",
  1946. "autoDetected": "Auto-detected",
  1947. "selectPlatform": "Select platform",
  1948. "successStats": "Created {targets} targets, {bindings} bindings"
  1949. }
  1950. }