dashboard.json 68 KB

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