zh-CN.ts 168 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560
  1. export default {
  2. // Navigation
  3. nav: {
  4. printers: '打印机',
  5. archives: '归档',
  6. queue: '队列',
  7. stats: '统计',
  8. profiles: '配置文件',
  9. maintenance: '维护',
  10. projects: '项目',
  11. inventory: '耗材',
  12. files: '文件管理器',
  13. notifications: '通知',
  14. settings: '设置',
  15. system: '系统',
  16. collapseSidebar: '收起侧边栏',
  17. expandSidebar: '展开侧边栏',
  18. update: '更新',
  19. updateAvailable: '有可用更新:v{{version}}',
  20. updateAvailableBanner: '版本 {{version}} 已发布!',
  21. viewUpdate: '查看更新',
  22. viewOnGithub: '在 GitHub 上查看',
  23. keyboardShortcuts: '键盘快捷键 (?)',
  24. switchToLight: '切换到浅色模式',
  25. switchToDark: '切换到深色模式',
  26. smartSwitches: '智能开关',
  27. logout: '退出登录',
  28. },
  29. // Common
  30. common: {
  31. save: '保存',
  32. saving: '保存中...',
  33. cancel: '取消',
  34. delete: '删除',
  35. edit: '编辑',
  36. add: '添加',
  37. close: '关闭',
  38. confirm: '确认',
  39. loading: '加载中...',
  40. error: '错误',
  41. success: '成功',
  42. warning: '警告',
  43. enabled: '已启用',
  44. disabled: '已禁用',
  45. yes: '是',
  46. no: '否',
  47. on: '开',
  48. off: '关',
  49. all: '全部',
  50. none: '无',
  51. search: '搜索',
  52. filter: '筛选',
  53. sort: '排序',
  54. refresh: '刷新',
  55. download: '下载',
  56. upload: '上传',
  57. uploading: '上传中...',
  58. uploadFailed: '上传失败',
  59. actions: '操作',
  60. status: '状态',
  61. name: '名称',
  62. description: '描述',
  63. date: '日期',
  64. time: '时间',
  65. hours: '小时',
  66. minutes: '分钟',
  67. seconds: '秒',
  68. days: '天',
  69. enable: '启用',
  70. disable: '禁用',
  71. permissions: '权限',
  72. noPrinters: '未配置打印机',
  73. noData: '暂无数据',
  74. linkNotFound: '未找到链接',
  75. required: '必填',
  76. optional: '可选',
  77. dismiss: '关闭',
  78. apply: '应用',
  79. reset: '重置',
  80. export: '导出',
  81. import: '导入',
  82. clear: '清除',
  83. selectAll: '全选',
  84. deselectAll: '取消全选',
  85. noChange: '— 不更改 —',
  86. unchanged: '未更改',
  87. unassigned: '未分配',
  88. unknown: '未知',
  89. unknownError: '未知错误',
  90. today: '今天',
  91. tomorrow: '明天',
  92. asap: '尽快',
  93. overdue: '已逾期',
  94. now: '现在',
  95. collapse: '收起',
  96. expand: '展开',
  97. viewArchive: '查看归档',
  98. viewInFileManager: '在文件管理器中查看',
  99. addedBy: '由 {{username}} 添加',
  100. prints: '次打印',
  101. more: '还有 {{count}} 个',
  102. ascending: '升序',
  103. descending: '降序',
  104. printer: '打印机',
  105. remove: '移除',
  106. type: '类型',
  107. print: '打印',
  108. rename: '重命名',
  109. move: '移动',
  110. create: '创建',
  111. duplicate: '复制',
  112. left: '左',
  113. right: '右',
  114. },
  115. // Printers page
  116. printers: {
  117. title: '打印机',
  118. addPrinter: '添加打印机',
  119. editPrinter: '编辑打印机',
  120. deletePrinter: '删除打印机',
  121. printerName: '打印机名称',
  122. serialNumber: '序列号',
  123. ipAddress: 'IP 地址 / 主机名',
  124. accessCode: '访问码',
  125. model: '型号',
  126. nozzleCount: '喷嘴数量',
  127. autoArchive: '自动归档',
  128. status: {
  129. available: '可用',
  130. idle: '空闲',
  131. printing: '打印中',
  132. paused: '已暂停',
  133. offline: '离线',
  134. problem: '故障',
  135. error: '错误',
  136. finished: '已完成',
  137. unknown: '未知',
  138. },
  139. temperatures: {
  140. nozzle: '喷嘴',
  141. bed: '热床',
  142. chamber: '腔室',
  143. },
  144. progress: '{{percent}}% 完成',
  145. timeRemaining: '剩余 {{time}}',
  146. deleteConfirm: '确定要删除"{{name}}"吗?',
  147. maintenanceOk: '维护正常',
  148. maintenanceWarning: '{{count}} 个警告',
  149. maintenanceWarning_plural: '{{count}} 个警告',
  150. maintenanceDue: '{{count}} 个到期',
  151. maintenanceDue_plural: '{{count}} 个到期',
  152. // Sort options
  153. sort: {
  154. name: '名称',
  155. status: '状态',
  156. model: '型号',
  157. location: '位置',
  158. ascending: '升序排列',
  159. descending: '降序排列',
  160. },
  161. // Card size
  162. cardSize: {
  163. small: '小卡片',
  164. medium: '中卡片',
  165. large: '大卡片',
  166. extraLarge: '超大卡片',
  167. },
  168. // Controls
  169. hideOffline: '隐藏离线',
  170. nextAvailable: '下一个可用',
  171. powerOn: '开机',
  172. offlinePrintersWithPlugs: '带智能插座的离线打印机',
  173. noPrintersConfigured: '尚未配置打印机',
  174. // Printer card
  175. readyToPrint: '准备打印',
  176. external: '外部',
  177. extL: '外置左',
  178. extR: '外置右',
  179. deleteArchives: '删除打印归档',
  180. noLabel: '无标签',
  181. printPreview: '打印预览',
  182. width: '宽度',
  183. height: '高度',
  184. noObjectsFound: '未找到对象',
  185. objectsLoadedOnPrintStart: '对象在打印开始时加载',
  186. willBeSkipped: '将被跳过',
  187. name: '名称',
  188. serialCannotBeChanged: '序列号无法更改',
  189. locationHelp: '用于分组打印机和筛选队列任务',
  190. // WiFi signal strength
  191. wifiSignal: {
  192. veryWeak: '非常弱',
  193. weak: '弱',
  194. fair: '一般',
  195. good: '良好',
  196. excellent: '优秀',
  197. },
  198. // Maintenance
  199. maintenanceUpToDate: '所有维护均已完成 - 点击查看',
  200. // Chamber light
  201. chamberLightOn: '打开腔室灯',
  202. chamberLightOff: '关闭腔室灯',
  203. // Files
  204. files: '文件',
  205. browseFiles: '浏览打印机文件',
  206. // Smart plug
  207. autoOffAfterPrint: '打印后自动关机',
  208. autoOffExecuted: '已执行自动关机 - 开启打印机以重置',
  209. // HMS errors
  210. hmsErrors: 'HMS 错误',
  211. viewHmsErrors: '查看 {{count}} 个 HMS 错误',
  212. // Actions
  213. resume: '继续',
  214. pause: '暂停',
  215. stop: '停止',
  216. camera: '摄像头',
  217. skipObject: '跳过对象',
  218. reconnect: '重新连接',
  219. mqttDebug: 'MQTT 调试',
  220. printerInformation: '打印机信息',
  221. copyToClipboard: '复制',
  222. copied: '已复制!',
  223. state: '状态',
  224. wifiSignalLabel: 'WiFi 信号',
  225. developerMode: '开发者模式',
  226. enabled: '已启用',
  227. disabled: '已禁用',
  228. addedOn: '添加日期',
  229. sdCard: 'SD 卡',
  230. inserted: '已插入',
  231. notInserted: '未插入',
  232. totalPrintHours: '打印时长',
  233. activeNozzle: '当前:{{nozzle}} 喷嘴',
  234. nozzleRack: '喷嘴架',
  235. nozzleDocked: '已停靠',
  236. nozzleMounted: '已安装',
  237. nozzleActive: '使用中',
  238. nozzleIdle: '空闲',
  239. nozzleDiameter: '直径',
  240. nozzleType: '类型',
  241. nozzleStatus: '状态',
  242. nozzleFilament: '耗材',
  243. nozzleWear: '磨损',
  244. nozzleMaxTemp: '最高温度',
  245. nozzleSerial: '序列号',
  246. nozzleHardenedSteel: '硬化钢',
  247. nozzleStainlessSteel: '不锈钢',
  248. nozzleTungstenCarbide: '碳化钨',
  249. nozzleFlow: '流量',
  250. nozzleHighFlow: '高流量',
  251. nozzleStandardFlow: '标准',
  252. // Firmware
  253. firmwareUpdate: '固件更新',
  254. firmwareInstructions: '在打印机触摸屏上,前往',
  255. firmwareNav: '导航到',
  256. settings: '设置',
  257. firmware: '固件',
  258. // Discovery
  259. discoverPrinters: '发现打印机',
  260. searching: '搜索中...',
  261. manualEntry: '手动输入',
  262. addFromCloud: '从云端添加',
  263. // Toast messages
  264. toast: {
  265. printerDeleted: '打印机已删除',
  266. missingSpoolAssignment: '已在{{printer}}上开始打印。以下料槽未分配耗材: {{slots}}',
  267. printerAdded: '打印机已添加',
  268. printerUpdated: '打印机已更新',
  269. failedToDelete: '删除打印机失败',
  270. failedToAdd: '添加打印机失败',
  271. failedToUpdate: '更新打印机失败',
  272. commandSent: '命令已发送',
  273. failedToSendCommand: '发送命令失败',
  274. turnedOn: '{{name}} 已开启',
  275. failedToPowerOn: '开启 {{name}} 失败',
  276. scriptTriggered: '脚本已触发',
  277. printStopped: '打印已停止',
  278. printPaused: '打印已暂停',
  279. printResumed: '打印已继续',
  280. referenceDeleted: '参考已删除',
  281. detectionAreaSaved: '检测区域已保存',
  282. failedToRunScript: '运行脚本失败',
  283. failedToStopPrint: '停止打印失败',
  284. failedToPausePrint: '暂停打印失败',
  285. failedToResumePrint: '继续打印失败',
  286. failedToControlChamberLight: '控制腔室灯失败',
  287. failedToSetSpeed: '设置打印速度失败',
  288. failedToUpdateSetting: '更新设置失败',
  289. failedToSkipObjects: '跳过对象失败',
  290. failedToRereadRfid: '重新读取 RFID 失败',
  291. failedToCheckPlate: '检查打印板失败',
  292. failedToUpdateLabel: '更新标签失败',
  293. failedToDeleteReference: '删除参考失败',
  294. failedToSaveDetectionArea: '保存检测区域失败',
  295. plateCheckEnabled: '打印板检查已启用',
  296. plateCheckDisabled: '打印板检查已禁用',
  297. calibrationSaved: '校准已保存!',
  298. calibrationFailed: '校准失败',
  299. rfidRereadInitiated: '已发起 RFID 重新读取',
  300. },
  301. // Connection status
  302. connection: {
  303. connected: '已连接',
  304. offline: '离线',
  305. },
  306. // Queue info
  307. queue: {
  308. inQueue: '队列中有 {{count}} 个打印任务',
  309. inQueue_plural: '队列中有 {{count}} 个打印任务',
  310. },
  311. // Controls section
  312. controls: '控制',
  313. // RFID
  314. rfid: {
  315. reread: '重新读取 RFID',
  316. },
  317. // Permissions
  318. permission: {
  319. noAdd: '您没有添加打印机的权限',
  320. noEdit: '您没有编辑打印机的权限',
  321. noDelete: '您没有删除打印机的权限',
  322. noControl: '您没有控制打印机的权限',
  323. noFiles: '您没有访问打印机文件的权限',
  324. noAmsRfid: '您没有重新读取 AMS RFID 的权限',
  325. noSmartPlugControl: '您没有控制智能插座的权限',
  326. noCamera: '您没有查看摄像头的权限',
  327. },
  328. // Add/Edit modal
  329. modal: {
  330. addTitle: '添加打印机',
  331. editTitle: '编辑打印机',
  332. myPrinter: '我的打印机',
  333. selectModel: '选择型号...',
  334. locationGroup: '位置 / 分组(可选)',
  335. locationPlaceholder: '例如:工作室、办公室、地下室',
  336. autoArchiveLabel: '自动归档已完成的打印',
  337. fromPrinterSettings: '来自打印机设置',
  338. modelOptional: '型号(可选)',
  339. saveChanges: '保存更改',
  340. },
  341. // Skip objects
  342. skipObjects: {
  343. tooltip: '跳过对象',
  344. onlyWhilePrinting: '跳过对象(仅在打印时)',
  345. requiresMultiple: '跳过对象(需要2个以上对象)',
  346. title: '跳过对象',
  347. matchIdsInfo: '将 ID 与打印机显示屏上的 ID 进行对照',
  348. printerShowsIds: '打印机屏幕上显示构建板上对象的 ID',
  349. skipSelected: '跳过所选',
  350. skipping: '跳过中...',
  351. noObjectsSelected: '未选择对象',
  352. selectObjectsToSkip: '选择要从当前打印中跳过的对象',
  353. skipped: '已跳过',
  354. objectsSkipped: '对象已跳过',
  355. activeCount: '{{count}} 个活跃',
  356. waitForLayer: '等待第2层以上才能跳过对象(当前第 {{layer}} 层)',
  357. skip: '跳过',
  358. confirmTitle: '跳过对象?',
  359. confirmMessage: '确定要跳过"{{name}}"吗?此操作无法撤销。',
  360. },
  361. // Confirm modals
  362. confirm: {
  363. deleteTitle: '删除打印机',
  364. deleteMessage: '确定要删除"{{name}}"吗?这将移除所有连接设置。',
  365. deleteArchivesNote: '此打印机的所有打印历史将被永久删除。',
  366. keepArchivesNote: '打印历史将保留,但不再与此打印机关联。',
  367. stopTitle: '停止打印',
  368. stopMessage: '确定要停止"{{name}}"上的当前打印吗?这将取消打印任务。',
  369. stopButton: '停止打印',
  370. pauseTitle: '暂停打印',
  371. pauseMessage: '确定要暂停"{{name}}"上的当前打印吗?',
  372. pauseButton: '暂停打印',
  373. resumeTitle: '继续打印',
  374. resumeMessage: '确定要继续"{{name}}"上的打印吗?',
  375. resumeButton: '继续打印',
  376. powerOnTitle: '开启打印机',
  377. powerOnMessage: '确定要打开"{{name}}"的电源吗?',
  378. powerOnButton: '开机',
  379. powerOffTitle: '关闭打印机',
  380. powerOffMessage: '确定要关闭"{{name}}"的电源吗?',
  381. powerOffWarning: '警告:"{{name}}"正在打印中!确定要关闭电源吗?这将中断打印并可能损坏打印机。',
  382. powerOffButton: '关机',
  383. },
  384. // Discovery
  385. discovery: {
  386. title: '发现打印机',
  387. searching: '搜索中...',
  388. scanning: '扫描中...',
  389. scanProgress: '扫描中... {{scanned}}/{{total}}',
  390. foundPrinters: '发现 {{count}} 台打印机',
  391. noPrintersFound: '未找到打印机',
  392. noPrintersFoundSubnet: '在指定子网中未找到打印机。',
  393. noPrintersFoundNetwork: '在网络上未找到打印机。',
  394. allConfigured: '所有发现的打印机已配置完毕。',
  395. alreadyAdded: '已添加',
  396. select: '选择',
  397. manualEntry: '手动输入',
  398. addFromCloud: '从云端添加',
  399. subnetToScan: '要扫描的子网',
  400. dockerNote: '检测到 Docker 环境。请以 CIDR 格式输入打印机所在子网。需要在 docker-compose.yml 中设置 network_mode: host。',
  401. scanSubnet: '扫描子网查找打印机',
  402. discoverNetwork: '在网络上发现打印机',
  403. scanningSubnet: '正在扫描子网查找拓竹打印机...',
  404. scanningNetwork: '正在扫描网络...',
  405. serialRequired: '需要序列号',
  406. unknown: '未知',
  407. failedToStart: '启动发现失败',
  408. },
  409. // AMS Drying
  410. drying: {
  411. start: '开始干燥',
  412. stop: '停止干燥',
  413. temperature: '温度',
  414. duration: '时长',
  415. hours: '小时',
  416. timeRemaining: '剩余 {{time}}',
  417. active: '干燥中',
  418. notSupported: '不支持干燥',
  419. powerRequired: '连接AMS电源适配器以启用干燥',
  420. startingDrying: '正在启动干燥...',
  421. stoppingDrying: '正在停止干燥...',
  422. rotateTray: '干燥时旋转料盘',
  423. },
  424. // Filaments section
  425. filaments: '耗材',
  426. // Camera
  427. openCameraOverlay: '打开摄像头叠加层',
  428. openCameraWindow: '在新窗口中打开摄像头',
  429. // Firmware
  430. firmwareUpdateAvailable: '固件更新可用:{{current}} → {{latest}}',
  431. firmwareUpToDate: '固件 {{version}} — 已是最新',
  432. firmwareUpdateButton: '更新',
  433. // Plate detection
  434. plateDetection: {
  435. noPermission: '您没有更新打印机的权限',
  436. enabledClick: '打印板检查已启用 - 点击禁用',
  437. disabledClick: '打印板检查已禁用 - 点击启用',
  438. manageCalibration: '管理打印板检测校准',
  439. calibrationRequired: '需要校准',
  440. calibrationInstructions: '请确保构建板<strong>完全空置</strong>,然后点击校准。',
  441. calibrationDescription: '校准会拍摄空置打印板的参考图像。后续检查将与此参考进行比较以检测物体。',
  442. calibrationTip: '<strong>提示:</strong>您最多可以为不同的打印板存储5个校准。系统会在检查时自动使用最佳匹配。',
  443. plateEmpty: '打印板似乎是空的',
  444. objectsDetected: '在打印板上检测到物体',
  445. confidence: '置信度',
  446. difference: '差异',
  447. analysisPreview: '分析预览:',
  448. analysisLegend: '绿色框 = 检测区域,红色覆盖 = 与校准的差异',
  449. savedReferences: '已保存的参考 ({{count}}/{{max}})',
  450. deleteReference: '删除参考',
  451. labelPlaceholder: '标签...',
  452. clickToEdit: '{{label}} - 点击编辑',
  453. clickToAddLabel: '点击添加标签',
  454. },
  455. // Speed
  456. speed: {
  457. title: '打印速度',
  458. silent: '静音 (50%)',
  459. standard: '标准 (100%)',
  460. sport: '运动 (124%)',
  461. ludicrous: '疯狂 (166%)',
  462. },
  463. // Fans
  464. fans: {
  465. partCooling: '零件冷却风扇',
  466. auxiliary: '辅助风扇',
  467. chamber: '腔室风扇',
  468. },
  469. // HMS errors
  470. clickToViewHmsErrors: '点击查看 HMS 错误',
  471. estimatedCompletion: '预计完成时间',
  472. slotOptions: '槽位选项',
  473. // AMS hover popup
  474. amsPopup: {
  475. friendlyName: 'AMS 名称',
  476. friendlyNamePlaceholder: '例如 AMS 友好名称',
  477. serialNumber: '序列号',
  478. firmwareVersion: '固件',
  479. save: '保存',
  480. clear: '清除',
  481. noEditPermission: '您没有重命名 AMS 单元的权限',
  482. },
  483. // Firmware modal
  484. firmwareModal: {
  485. title: '固件更新',
  486. titleUpToDate: '固件信息',
  487. currentVersion: '当前版本:',
  488. latestVersion: '最新版本:',
  489. releaseNotes: '发布说明',
  490. checkingPrereqs: '正在检查前提条件...',
  491. sdCardReady: 'SD 卡已就绪。点击下方上传固件。',
  492. uploadedSuccess: '固件已上传到 SD 卡!',
  493. applyInstructions: '在打印机上应用更新:',
  494. step1: '在打印机触摸屏上,前往<strong>设置</strong>',
  495. step2: '导航到<strong>固件</strong>',
  496. step3: '选择<strong>从 SD 卡更新</strong>',
  497. step4: '更新将需要 10-20 分钟',
  498. done: '完成',
  499. starting: '启动中...',
  500. uploadFirmware: '上传固件',
  501. uploadFailed: '上传启动失败:{{error}}',
  502. uploadedToast: '固件已上传!请在打印机屏幕上触发更新。',
  503. },
  504. accessCodePlaceholder: '留空以保持当前值',
  505. // ROI editor
  506. roi: {
  507. title: '检测区域 (ROI)',
  508. xStart: 'X 起点',
  509. yStart: 'Y 起点',
  510. width: '宽度',
  511. height: '高度',
  512. instruction: '调整检测区域以聚焦到构建板。预览中的绿色框显示当前区域。',
  513. },
  514. developerModeWarning: '以下打印机未启用开发者局域网模式:{{names}}。某些功能可能无法使用。',
  515. howToEnable: '如何启用',
  516. incompatibleFile: '此文件是为 {{slicedFor}} 切片的,但该打印机是 {{printerModel}}',
  517. dropNotPrintable: '只能打印 .gcode 和 .gcode.3mf 文件',
  518. dropToPrint: '拖放以打印',
  519. cannotPrint: '打印机忙碌',
  520. },
  521. // Archives page
  522. archives: {
  523. title: '打印归档',
  524. searchPlaceholder: '搜索归档...',
  525. filterByPrinter: '按打印机筛选',
  526. filterByStatus: '按状态筛选',
  527. sortBy: '排序方式',
  528. sortNewest: '最新优先',
  529. sortOldest: '最旧优先',
  530. sortName: '名称',
  531. sortDuration: '时长',
  532. sortLargest: '最大优先',
  533. sortSmallest: '最小优先',
  534. sortSize: '大小',
  535. noArchives: '未找到归档',
  536. noArchivesSearch: '没有匹配搜索的归档',
  537. originalPrintNotVisible: '原始打印不可见 - 请尝试清除筛选条件',
  538. noArchivesYet: '暂无归档',
  539. loadingArchives: '加载归档中...',
  540. releaseToUpload: '释放以上传',
  541. showAll: '显示全部',
  542. showFavoritesOnly: '仅显示收藏',
  543. gridView: '网格视图',
  544. listView: '列表视图',
  545. calendarView: '日历视图',
  546. logView: '打印日志',
  547. manageTags: '管理标签',
  548. showFailedPrints: '显示失败的打印',
  549. hideFailedPrints: '隐藏失败的打印',
  550. hideDuplicates: '隐藏重复项',
  551. viewOriginalPrint: '点击查看原始打印 (#{{id}})',
  552. printTime: '打印时间',
  553. filamentUsed: '耗材用量',
  554. cost: '成本',
  555. reprint: '重新打印',
  556. preview: '预览',
  557. deleteArchive: '删除归档',
  558. deleteConfirm: '确定要删除此归档吗?',
  559. favorite: '收藏',
  560. unfavorite: '取消收藏',
  561. viewDetails: '查看详情',
  562. status: {
  563. completed: '已完成',
  564. failed: '失败',
  565. stopped: '已停止',
  566. },
  567. toast: {
  568. source3mfAttached: '源 3MF 已附加:{{filename}}',
  569. failedUploadSource3mf: '上传源 3MF 失败',
  570. source3mfRemoved: '源 3MF 已移除',
  571. failedRemoveSource3mf: '移除源 3MF 失败',
  572. f3dAttached: 'F3D 已附加:{{filename}}',
  573. failedUploadF3d: '上传 F3D 失败',
  574. f3dRemoved: 'F3D 已移除',
  575. failedRemoveF3d: '移除 F3D 失败',
  576. timelapseAttached: '延时摄影已附加:{{filename}}',
  577. timelapseAlreadyAttached: '延时摄影已附加',
  578. noMatchingTimelapse: '未找到匹配的延时摄影',
  579. failedScanTimelapse: '扫描延时摄影失败',
  580. failedAttachTimelapse: '附加延时摄影失败',
  581. timelapseRemoved: '延时摄影已移除',
  582. failedRemoveTimelapse: '移除延时摄影失败',
  583. timelapseUploaded: '延时摄影已上传:{{filename}}',
  584. failedUploadTimelapse: '上传延时摄影失败',
  585. archiveDeleted: '归档已删除',
  586. failedDeleteArchive: '删除归档失败',
  587. addedToFavorites: '已添加到收藏',
  588. removedFromFavorites: '已从收藏中移除',
  589. projectUpdated: '项目已更新',
  590. failedUpdateProject: '更新项目失败',
  591. linkCopied: '链接已复制到剪贴板',
  592. failedCopyLink: '复制链接失败',
  593. photoDeleted: '照片已删除',
  594. failedDeletePhoto: '删除照片失败',
  595. failedDeleteArchives: '删除归档失败',
  596. failedUpdateFavorites: '更新收藏失败',
  597. exportDownloaded: '导出已下载',
  598. exportFailed: '导出失败',
  599. },
  600. menu: {
  601. print: '打印',
  602. schedule: '排程',
  603. openInBambuStudio: '在切片软件中打开',
  604. slice: '切片',
  605. externalLink: '外部链接',
  606. viewOnMakerWorld: '在 MakerWorld 上查看',
  607. preview3d: '3D 预览',
  608. viewTimelapse: '查看延时摄影',
  609. scanForTimelapse: '扫描延时摄影',
  610. uploadTimelapse: '上传延时摄影',
  611. removeTimelapse: '移除延时摄影',
  612. downloadSource3mf: '下载源 3MF',
  613. uploadSource3mf: '上传源 3MF',
  614. replaceSource3mf: '替换源 3MF',
  615. removeSource3mf: '移除源 3MF',
  616. uploadF3d: '上传 F3D',
  617. replaceF3d: '替换 F3D',
  618. downloadF3d: '下载 F3D',
  619. removeF3d: '移除 F3D',
  620. download: '下载',
  621. copyDownloadLink: '复制下载链接',
  622. qrCode: '二维码',
  623. viewPhotos: '查看照片',
  624. viewPhotosCount: '查看照片 ({{count}})',
  625. projectPage: '项目页面',
  626. addToFavorites: '添加到收藏',
  627. removeFromFavorites: '从收藏中移除',
  628. edit: '编辑',
  629. goToProject: '前往项目:{{name}}',
  630. addToProject: '添加到项目',
  631. removeFromProject: '从项目中移除',
  632. loading: '加载中...',
  633. noProjectsAvailable: '无可用项目',
  634. select: '选择',
  635. deselect: '取消选择',
  636. delete: '删除',
  637. },
  638. permission: {
  639. noReprint: '您没有重新打印此归档的权限',
  640. noAddToQueue: '您没有添加到队列的权限',
  641. noUpdateArchives: '您没有更新归档的权限',
  642. noUploadFiles: '您没有上传文件的权限',
  643. noDownload: '您没有下载归档的权限',
  644. noCopyLink: '您没有复制下载链接的权限',
  645. noDelete: '您没有删除此归档的权限',
  646. noCreate: '您没有创建归档的权限',
  647. },
  648. card: {
  649. previousPlate: '上一个板',
  650. nextPlate: '下一个板',
  651. plateNumber: '板 {{index}}',
  652. moreOptions: '右键查看更多选项',
  653. addToFavorites: '添加到收藏',
  654. removeFromFavorites: '从收藏中移除',
  655. cancelled: '已取消',
  656. failed: '失败',
  657. duplicate: '重复',
  658. duplicateTitle: '此模型之前已打印过',
  659. openSource3mf: '在 Bambu Studio 中打开源 3MF(右键查看更多选项)',
  660. downloadF3d: '下载 Fusion 360 设计文件',
  661. viewTimelapse: '查看延时摄影',
  662. viewPhoto: '查看 1 张照片',
  663. viewPhotos: '查看 {{count}} 张照片',
  664. openFolder: '打开文件夹:{{name}}',
  665. slicedFile: '已切片文件 - 可以打印',
  666. sourceFile: '仅源文件 - 无 AMS 映射可用',
  667. gcode: 'GCODE',
  668. source: '源文件',
  669. project: '项目:{{name}}',
  670. estimated: '预计:{{time}}',
  671. actual: '实际:{{time}}',
  672. accuracy: '准确度:{{percent}}%',
  673. filament: '{{weight}}g',
  674. layer: '{{count}} 层',
  675. layers: '{{count}} 层',
  676. object: '{{count}} 个对象',
  677. objects: '{{count}} 个对象',
  678. slicedFor: '为 {{model}} 切片',
  679. uploadedBy: '上传者',
  680. noPermissionReprint: '您没有重新打印的权限',
  681. noFileForReprint: '无可用的 3MF 文件 — 打印记录时无法从打印机下载该文件',
  682. noPermissionEdit: '您没有编辑归档的权限',
  683. noPermissionDelete: '您没有删除归档的权限',
  684. reprint: '重新打印',
  685. schedulePrint: '排程打印',
  686. schedule: '排程',
  687. openInBambuStudio: '在切片软件中打开',
  688. openInBambuStudioToSlice: '在切片软件中打开进行切片',
  689. slice: '切片',
  690. externalLink: '外部链接',
  691. makerWorld: 'MakerWorld:{{designer}}',
  692. viewProject: '查看项目',
  693. noExternalLink: '无外部链接',
  694. preview3d: '3D 预览',
  695. download: '下载',
  696. edit: '编辑',
  697. delete: '删除',
  698. },
  699. modal: {
  700. deleteArchive: '删除归档',
  701. deleteConfirm: '确定要删除"{{name}}"吗?此操作无法撤销。',
  702. deleteButton: '删除',
  703. removeSource3mf: '移除源 3MF',
  704. removeSource3mfConfirm: '确定要从"{{name}}"中移除源 3MF 文件吗?这将删除原始切片项目文件。',
  705. removeButton: '移除',
  706. removeF3d: '移除 F3D',
  707. removeF3dConfirm: '确定要从"{{name}}"中移除 Fusion 360 设计文件吗?',
  708. removeTimelapse: '移除延时摄影',
  709. removeTimelapseConfirm: '确定要从"{{name}}"中移除延时摄影视频吗?',
  710. timelapse: '{{name}} - 延时摄影',
  711. selectTimelapse: '选择延时摄影',
  712. selectTimelapseDesc: '未找到自动匹配。请选择此打印的延时摄影:',
  713. deleteArchives: '删除归档',
  714. deleteArchivesConfirm: '确定要删除 {{count}} 个归档吗?此操作无法撤销。',
  715. deleteCount: '删除 {{count}} 个',
  716. },
  717. page: {
  718. title: '归档',
  719. printsCount: '{{filtered}} / {{total}} 次打印',
  720. dropFilesHere: '将 .3mf 文件拖放到此处',
  721. releaseToUpload: '释放以上传',
  722. only3mfSupported: '仅支持 .3mf 文件',
  723. close: '关闭',
  724. selected: '已选择 {{count}} 个',
  725. selectAll: '全选',
  726. tags: '标签',
  727. project: '项目',
  728. favorite: '收藏',
  729. delete: '删除',
  730. toggledFavorites: '已切换 {{count}} 个归档的收藏状态',
  731. failedUpdateFavorites: '更新收藏失败',
  732. archivesDeleted: '已删除 {{count}} 个归档',
  733. failedDeleteArchives: '删除归档失败',
  734. photoDeleted: '照片已删除',
  735. failedDeletePhoto: '删除照片失败',
  736. },
  737. list: {
  738. name: '名称',
  739. printer: '打印机',
  740. date: '日期',
  741. size: '大小',
  742. actions: '操作',
  743. hasTimelapse: '有延时摄影',
  744. },
  745. log: {
  746. date: '日期',
  747. printName: '打印名称',
  748. printer: '打印机',
  749. user: '用户',
  750. status: '状态',
  751. duration: '时长',
  752. filament: '耗材',
  753. allPrinters: '所有打印机',
  754. allUsers: '所有用户',
  755. allStatuses: '所有状态',
  756. cancelled: '已取消',
  757. skipped: '已跳过',
  758. dateFrom: '从',
  759. dateTo: '到',
  760. noEntries: '未找到打印日志条目',
  761. showing: '显示 {{count}} / {{total}} 条',
  762. rowsPerPage: '行数',
  763. page: '页',
  764. prev: '上一页',
  765. next: '下一页',
  766. clearLog: '清除日志',
  767. clearLogTitle: '清除打印日志',
  768. clearLogConfirm: '所有打印日志条目将被永久删除。归档和队列项目不受影响。此操作无法撤销。确定要继续吗?',
  769. clearLogButton: '全部清除',
  770. cleared: '已清除 {{count}} 条日志',
  771. clearFailed: '清除打印日志失败',
  772. },
  773. },
  774. // Queue page
  775. queue: {
  776. title: '打印队列',
  777. subtitle: '排程和管理您的打印任务',
  778. addToQueue: '添加到队列',
  779. // Print modal
  780. print: '打印',
  781. reprint: '重新打印',
  782. schedulePrint: '排程打印',
  783. editQueueItem: '编辑队列项目',
  784. printToPrinters: '打印到 {{count}} 台打印机',
  785. queueToPrinters: '排队到 {{count}} 台打印机',
  786. queueSelectedPlates: '将 {{count}} 个热床加入队列',
  787. selectAllPlates: '选择全部 {{count}} 个热床',
  788. deselectAll: '取消全选',
  789. printQueued: '已加入打印队列',
  790. itemsQueued: '{{count}} 个任务已加入队列',
  791. sending: '发送中...',
  792. sendingProgress: '发送中 {{current}}/{{total}}...',
  793. adding: '添加中...',
  794. addingProgress: '添加中 {{current}}/{{total}}...',
  795. savingProgress: '保存中 {{current}}/{{total}}...',
  796. clearQueue: '清空队列',
  797. clearHistory: '清除历史',
  798. emptyQueue: '队列为空',
  799. position: '位置',
  800. scheduledTime: '排程时间',
  801. moveUp: '上移',
  802. moveDown: '下移',
  803. startNow: '立即开始',
  804. printingInProgress: '打印进行中...',
  805. viewArchive: '查看归档',
  806. viewInFileManager: '在文件管理器中查看',
  807. itemCount: '{{count}} 个项目',
  808. itemCount_plural: '{{count}} 个项目',
  809. dragToReorder: '拖动以重新排序(仅限尽快)',
  810. reorderHint: '位置仅影响"尽快"项目。排程项目按设定时间运行。',
  811. addedBy: '由 {{name}} 添加',
  812. nextInQueue: '队列中的下一个',
  813. clearPlate: '清理打印板并开始下一个',
  814. clearPlateSuccess: '打印板已清理 — 准备进行下一个打印',
  815. plateReady: '打印板已清理 — 准备进行下一个打印',
  816. plateNumber: '板 {{index}}',
  817. // Sections
  818. sections: {
  819. currentlyPrinting: '正在打印',
  820. queued: '排队中',
  821. history: '历史',
  822. },
  823. // Status
  824. status: {
  825. pending: '等待中',
  826. waiting: '等待中',
  827. printing: '打印中',
  828. paused: '已暂停',
  829. completed: '已完成',
  830. failed: '失败',
  831. skipped: '已跳过',
  832. cancelled: '已取消',
  833. },
  834. // Summary cards
  835. summary: {
  836. printing: '打印中',
  837. queued: '排队中',
  838. totalTime: '总队列时间',
  839. totalWeight: '总队列重量',
  840. history: '历史',
  841. },
  842. // Filters
  843. filter: {
  844. allPrinters: '所有打印机',
  845. unassigned: '未分配',
  846. allStatus: '所有状态',
  847. allLocations: '所有位置',
  848. any: '任意',
  849. },
  850. // Sort
  851. sort: {
  852. byPosition: '按位置排序',
  853. byName: '按名称排序',
  854. byPrinter: '按打印机排序',
  855. bySchedule: '按排程排序',
  856. byDate: '按日期排序',
  857. ascendingOldest: '升序(最旧优先)',
  858. descendingNewest: '降序(最新优先)',
  859. },
  860. // Badges
  861. badges: {
  862. staged: '已暂存',
  863. requiresPrevious: '需要前一个成功',
  864. autoPowerOff: '自动关机',
  865. },
  866. // Empty state
  867. empty: {
  868. title: '没有排程的打印',
  869. description: '从归档页面使用右键菜单中的"排程"选项来排程打印,或拖放文件开始。',
  870. },
  871. // Time
  872. time: {
  873. asap: '尽快',
  874. overdue: '已逾期',
  875. now: '现在',
  876. lessThanMinute: '不到一分钟',
  877. inMinutes: '{{count}} 分钟后',
  878. inHours: '{{count}} 小时后',
  879. },
  880. // Actions
  881. actions: {
  882. stopPrint: '停止打印',
  883. startPrint: '开始打印',
  884. requeue: '重新排队',
  885. },
  886. // Bulk edit
  887. bulkEdit: {
  888. title: '编辑 {{count}} 个项目',
  889. title_plural: '编辑 {{count}} 个项目',
  890. description: '仅更改的设置将应用于所选项目。',
  891. printer: '打印机',
  892. noChange: '— 不更改 —',
  893. queueOptions: '队列选项',
  894. staged: '暂存(手动开始)',
  895. autoPowerOff: '打印后自动关机',
  896. requirePrevious: '要求前一个成功',
  897. printOptions: '打印选项',
  898. bedLevelling: '热床调平',
  899. flowCalibration: '流量校准',
  900. vibrationCalibration: '振动校准',
  901. layerInspection: '首层检查',
  902. timelapse: '延时摄影',
  903. useAms: '使用 AMS',
  904. applyChanges: '应用更改',
  905. selectAll: '全选',
  906. deselectAll: '取消全选',
  907. selected: '已选择 {{count}} 个',
  908. editSelected: '编辑所选',
  909. cancelSelected: '取消所选',
  910. },
  911. // Confirmations
  912. confirm: {
  913. cancelTitle: '取消排程打印',
  914. cancelMessage: '确定要取消"{{name}}"吗?',
  915. stopTitle: '停止打印',
  916. stopMessage: '确定要停止当前打印"{{name}}"吗?这将取消打印机上的打印任务。',
  917. removeTitle: '从历史中移除',
  918. removeMessage: '确定要从队列历史中移除"{{name}}"吗?',
  919. clearHistoryTitle: '清除历史',
  920. clearHistoryMessage: '确定要从历史中移除所有 {{count}} 个项目吗?',
  921. cancelButton: '取消打印',
  922. stopButton: '停止打印',
  923. thisPrint: '此打印',
  924. thisItem: '此项目',
  925. },
  926. // Toast messages
  927. toast: {
  928. cancelled: '队列项目已取消',
  929. cancelFailed: '取消项目失败',
  930. removed: '队列项目已移除',
  931. removeFailed: '移除项目失败',
  932. stopped: '打印已停止',
  933. stopFailed: '停止打印失败',
  934. released: '打印已释放到队列',
  935. startFailed: '开始打印失败',
  936. reorderFailed: '重新排序队列失败',
  937. historyCleared: '已清除 {{count}} 条历史记录',
  938. clearHistoryFailed: '清除历史失败',
  939. updateFailed: '更新项目失败',
  940. bulkCancelled: '已取消 {{count}} 个项目',
  941. bulkCancelFailed: '批量取消项目失败',
  942. },
  943. // Permissions
  944. permissions: {
  945. noStopPrint: '您没有停止打印的权限',
  946. noStartPrint: '您没有开始打印的权限',
  947. noEdit: '您没有编辑此队列项目的权限',
  948. noCancel: '您没有取消此队列项目的权限',
  949. noRequeue: '您没有重新排队的权限',
  950. noRemove: '您没有移除此队列项目的权限',
  951. noClearHistory: '您没有清除所有历史的权限',
  952. noEditItems: '您没有编辑队列项目的权限',
  953. noCancelItems: '您没有取消队列项目的权限',
  954. },
  955. },
  956. backgroundDispatch: {
  957. unknownFile: '未知文件',
  958. unknownPrinter: '未知打印机',
  959. startingPrints: '正在开始打印',
  960. progressSummary: '{{complete}}/{{total}} 完成 • 已分发:{{dispatched}} • 处理中:{{processing}}',
  961. expandDetails: '展开分发详情',
  962. collapseDetails: '收起分发详情',
  963. dismissToast: '关闭分发通知',
  964. cancelDispatchJob: '取消分发任务',
  965. cancel: '取消',
  966. cancelling: '取消中…',
  967. status: {
  968. dispatched: '已分发',
  969. processing: '处理中',
  970. completed: '已完成',
  971. failed: '失败',
  972. cancelled: '已取消',
  973. },
  974. toast: {
  975. cancellingUpload: '取消上传中...',
  976. cancelled: '分发已取消',
  977. cancelFailed: '取消分发失败',
  978. completeWithFailures: '后台分发完成:{{completed}} 成功,{{failed}} 失败',
  979. completeSuccess: '后台分发完成:{{completed}} 成功',
  980. printStartedRemaining: '{{completed}} 个打印已开始,{{remaining}} 个正在发送...',
  981. },
  982. },
  983. // Statistics page
  984. stats: {
  985. title: '仪表板',
  986. subtitle: '拖动小部件以重新排列。点击眼睛图标隐藏。',
  987. overview: '概览',
  988. totalPrints: '总打印次数',
  989. successRate: '成功率',
  990. totalPrintTime: '总打印时间',
  991. printTime: '打印时间',
  992. totalFilament: '总耗材用量',
  993. filamentUsed: '耗材用量',
  994. filamentCost: '耗材成本',
  995. totalCost: '总成本',
  996. energyUsed: '能耗',
  997. energyCost: '能源成本',
  998. averagePrintTime: '平均打印时间',
  999. printsPerDay: '每日打印次数',
  1000. byPrinter: '按打印机',
  1001. printsByPrinter: '各打印机打印次数',
  1002. byMaterial: '按材料',
  1003. byMonth: '按月份',
  1004. last7Days: '最近 7 天',
  1005. last30Days: '最近 30 天',
  1006. last90Days: '最近 90 天',
  1007. allTime: '全部时间',
  1008. // Widgets
  1009. quickStats: '快速统计',
  1010. printActivity: '打印活动',
  1011. filamentTypes: '耗材类型',
  1012. filamentTrends: '耗材趋势',
  1013. failureAnalysis: '失败分析',
  1014. timeAccuracy: '时间准确度',
  1015. successful: '成功:',
  1016. failed: '失败:',
  1017. perfectEstimate: '100% = 完美估计',
  1018. noTimeAccuracyData: '暂无时间准确度数据',
  1019. noFilamentData: '暂无耗材数据',
  1020. noPrinterData: '暂无打印机数据',
  1021. noPrintData: '暂无打印数据',
  1022. noPrintDataLast30Days: '最近 30 天无打印数据',
  1023. failureReasons: '失败原因',
  1024. topFailureReasons: '主要失败原因',
  1025. failedPrintsCount: '{{failed}} / {{total}} 次打印失败',
  1026. lastWeekRate: '上周:{{rate}}%',
  1027. // Actions
  1028. resetLayout: '重置布局',
  1029. recalculateCosts: '重新计算成本',
  1030. recalculateCostsHint: '使用当前耗材价格重新计算所有归档成本',
  1031. exportStats: '导出统计',
  1032. exportAsCsv: '导出为 CSV',
  1033. exportAsExcel: '导出为 Excel',
  1034. hiddenCount: '{{count}} 个已隐藏',
  1035. // Toast
  1036. exportDownloaded: '导出已下载',
  1037. exportFailed: '导出失败',
  1038. layoutReset: '布局已重置',
  1039. recalculatedCosts: '已为 {{count}} 个归档重新计算成本',
  1040. recalculateFailed: '重新计算成本失败',
  1041. // Loading
  1042. loadingStats: '加载统计数据中...',
  1043. // Permissions
  1044. noPermissionResetLayout: '您没有重置布局的权限',
  1045. noPermissionRecalculate: '您没有重新计算成本的权限',
  1046. noPrintDataInRange: '所选范围内无打印数据',
  1047. periodFilament: '期间耗材',
  1048. periodCost: '期间成本',
  1049. avgPerPrint: '每次打印平均',
  1050. usageOverTime: '随时间的使用量',
  1051. filamentByWeight: '重量',
  1052. printDuration: '打印时长',
  1053. printerUtilization: '打印机利用率',
  1054. filamentSuccess: '按材料成功率',
  1055. printHabits: '打印习惯',
  1056. printTimeOfDay: '打印时段',
  1057. colorDistribution: '颜色分布',
  1058. noColorData: '暂无颜色数据',
  1059. records: '记录',
  1060. longestPrint: '最长打印',
  1061. heaviestPrint: '最重打印',
  1062. mostExpensivePrint: '最贵打印',
  1063. busiestDay: '最忙碌的一天',
  1064. successStreak: '连续成功',
  1065. streakPrint: '连续打印',
  1066. streakPrints: '{{count}} 次连续打印',
  1067. printerStats: '打印机统计',
  1068. hours: '小时',
  1069. avgPrints: '平均打印',
  1070. noArchiveData: '暂无打印数据',
  1071. filamentByTime: '时间',
  1072. avgWeight: '平均重量',
  1073. avgTime: '平均时间',
  1074. filamentByPrints: '打印次数',
  1075. timeframe: {
  1076. today: '今天',
  1077. 'this-week': '本周',
  1078. 'this-month': '本月',
  1079. 'last-7': '最近 7 天',
  1080. 'last-30': '最近 30 天',
  1081. 'last-90': '最近 90 天',
  1082. 'this-year': '今年',
  1083. 'all-time': '全部时间',
  1084. custom: '自定义范围',
  1085. from: '从',
  1086. to: '到',
  1087. },
  1088. },
  1089. // Maintenance page
  1090. maintenance: {
  1091. title: '维护',
  1092. overview: '概览',
  1093. allOk: '所有维护均已完成',
  1094. dueCount: '{{count}} 项到期',
  1095. dueCount_plural: '{{count}} 项到期',
  1096. warningCount: '{{count}} 个警告',
  1097. warningCount_plural: '{{count}} 个警告',
  1098. totalPrintTime: '总打印时间',
  1099. nextMaintenance: '下次维护',
  1100. nothingDue: '无到期项目',
  1101. tasks: '任务',
  1102. lastPerformed: '上次执行',
  1103. interval: '间隔',
  1104. hoursRemaining: '剩余 {{hours}} 小时',
  1105. hoursOverdue: '逾期 {{hours}} 小时',
  1106. markDone: '标记为完成',
  1107. performMaintenance: '执行维护',
  1108. history: '历史',
  1109. noHistory: '无维护历史',
  1110. editPrintHours: '编辑打印时间',
  1111. currentHours: '当前小时数',
  1112. // Tabs
  1113. statusTab: '状态',
  1114. settingsTab: '设置',
  1115. // Status
  1116. overdueCount: '{{count}} 个逾期',
  1117. dueSoonCount: '{{count}} 个即将到期',
  1118. dueSoon: '即将到期',
  1119. allGood: '一切正常',
  1120. overdueBy: '逾期 {{duration}}',
  1121. dueIn: '{{duration}} 后到期',
  1122. timeLeft: '剩余 {{duration}}',
  1123. // Duration formats
  1124. day: '1 天',
  1125. days: '{{count}} 天',
  1126. week: '1 周',
  1127. weeks: '{{count}} 周',
  1128. month: '1 个月',
  1129. months: '{{count}} 个月',
  1130. year: '1 年',
  1131. // Settings
  1132. maintenanceTypes: '维护类型',
  1133. maintenanceTypesDescription: '系统类型和您的自定义维护任务',
  1134. addCustomType: '添加自定义类型',
  1135. restoreDefaults: '恢复默认任务',
  1136. intervalType: '间隔类型',
  1137. intervalValue: '间隔 ({{type}})',
  1138. icon: '图标',
  1139. documentationLink: '文档链接(可选)',
  1140. assignToPrinters: '分配给打印机',
  1141. selectAtLeastOnePrinter: '至少选择一台打印机',
  1142. addType: '添加类型',
  1143. custom: '自定义',
  1144. printHours: '打印小时数',
  1145. calendarDays: '日历天数',
  1146. exampleName: '例如:更换 HEPA 过滤器',
  1147. viewDocumentation: '查看文档',
  1148. timeBasedInterval: '基于时间的间隔',
  1149. // Interval overrides
  1150. intervalOverrides: '间隔覆盖',
  1151. intervalOverridesDescription: '为特定打印机自定义间隔',
  1152. // Printer assignment
  1153. assignedToPrinters: '已分配给打印机:',
  1154. noPrintersAssigned: '未分配打印机',
  1155. addPrinterShort: '添加:',
  1156. printersAssignedClick: '已分配 {{count}} 台打印机 - 点击管理',
  1157. removeFromPrinter: '从此打印机移除',
  1158. // Types
  1159. types: {
  1160. lubricateCarbonRods: '润滑碳纤维杆',
  1161. lubricateRails: '润滑线性导轨',
  1162. cleanNozzle: '清洁喷嘴/热端',
  1163. checkBelts: '检查皮带张力',
  1164. cleanBuildPlate: '清洁构建板',
  1165. checkExtruder: '检查挤出机齿轮',
  1166. checkCooling: '检查冷却风扇',
  1167. generalInspection: '综合检查',
  1168. cleanCarbonRods: '清洁碳纤维杆',
  1169. lubricateSteelRods: '润滑钢杆',
  1170. cleanSteelRods: '清洁钢杆',
  1171. cleanLinearRails: '清洁线性导轨',
  1172. checkPtfeTube: '检查 PTFE 管',
  1173. replaceHepaFilter: '更换 HEPA 过滤器',
  1174. replaceCarbonFilter: '更换活性炭过滤器',
  1175. lubricateLeftNozzleRail: '润滑左喷嘴导轨',
  1176. },
  1177. // Toast
  1178. maintenanceComplete: '维护已标记为完成',
  1179. typeUpdated: '维护类型已更新',
  1180. typeDeleted: '维护类型已删除',
  1181. defaultsRestored: '已恢复 {{count}} 个默认任务',
  1182. printHoursUpdated: '打印小时数已更新',
  1183. printerAssigned: '打印机已分配',
  1184. printerRemoved: '打印机已移除',
  1185. // Confirmation
  1186. deleteTypeConfirm: '删除"{{name}}"?',
  1187. deleteSystemTypeTitle: '删除默认维护任务?',
  1188. deleteSystemTypeMessage: '确定要删除默认维护任务"{{name}}"吗?',
  1189. // Permissions
  1190. noPermissionUpdate: '您没有更新维护项目的权限',
  1191. noPermissionPerform: '您没有执行维护的权限',
  1192. noPermissionEditTypes: '您没有编辑维护类型的权限',
  1193. noPermissionDeleteTypes: '您没有删除维护类型的权限',
  1194. noPermissionEditHours: '您没有编辑打印时间的权限',
  1195. noPermissionRemovePrinter: '您没有移除打印机分配的权限',
  1196. noPermissionAssignPrinter: '您没有分配打印机的权限',
  1197. noPermissionEditIntervals: '您没有编辑间隔的权限',
  1198. // Configure link
  1199. configureSettings: '配置维护类型和间隔',
  1200. },
  1201. // Settings page
  1202. settings: {
  1203. title: '设置',
  1204. general: '通用',
  1205. // Tab names
  1206. tabs: {
  1207. general: '通用',
  1208. smartPlugs: '智能插座',
  1209. notifications: '通知',
  1210. filament: '耗材',
  1211. network: '网络',
  1212. apiKeys: 'API 密钥',
  1213. virtualPrinter: '虚拟打印机',
  1214. users: '身份验证',
  1215. backup: '备份',
  1216. emailAuth: '邮箱认证',
  1217. },
  1218. // Email settings
  1219. email: {
  1220. smtpSettings: 'SMTP 配置',
  1221. smtpHost: 'SMTP 服务器',
  1222. smtpPort: 'SMTP 端口',
  1223. security: '安全',
  1224. authentication: '认证',
  1225. username: '用户名',
  1226. password: '密码',
  1227. fromEmail: '发件邮箱',
  1228. fromName: '发件人名称',
  1229. testConnection: '测试 SMTP 连接',
  1230. testRecipient: '测试收件邮箱',
  1231. sendTest: '发送测试邮件',
  1232. sending: '发送中...',
  1233. save: '保存设置',
  1234. saving: '保存中...',
  1235. advancedAuth: '高级认证',
  1236. advancedAuthEnabled: '高级认证已启用',
  1237. advancedAuthEnabledDesc: '基于邮箱的用户管理功能已激活。新用户将通过邮件收到自动生成的密码,用户可以通过忘记密码功能重置密码。',
  1238. advancedAuthDisabled: '高级认证已禁用',
  1239. advancedAuthDisabledDesc: '启用高级认证以激活基于邮箱的用户管理功能。',
  1240. enable: '启用',
  1241. disable: '禁用',
  1242. feature1: '密码自动生成并通过邮件发送给新用户',
  1243. feature2: '用户可以使用用户名或邮箱登录',
  1244. feature3: '忘记密码功能可用',
  1245. feature4: '管理员可以通过邮件重置用户密码',
  1246. // Error messages
  1247. errors: {
  1248. requiredFields: '请填写所有必填字段',
  1249. usernameRequired: '启用认证时需要用户名',
  1250. enterTestEmail: '请输入测试邮箱地址',
  1251. smtpServerAndEmail: '测试前请填写 SMTP 服务器和发件邮箱',
  1252. usernamePasswordRequired: '启用认证时需要用户名和密码',
  1253. configureSmtpFirst: '请先配置并测试 SMTP 设置',
  1254. enableAuthFirst: '请先启用身份验证才能使用基于电子邮件的功能。',
  1255. },
  1256. // Success messages
  1257. success: {
  1258. settingsSaved: 'SMTP 设置保存成功',
  1259. },
  1260. // Security options
  1261. securityOptions: {
  1262. starttls: 'STARTTLS(端口 587)',
  1263. ssl: 'SSL/TLS(端口 465)',
  1264. none: '无(端口 25)',
  1265. },
  1266. // Authentication options
  1267. authOptions: {
  1268. enabled: '已启用',
  1269. disabled: '已禁用',
  1270. },
  1271. },
  1272. appearance: '外观',
  1273. notifications: '通知',
  1274. smartPlugs: '智能插座',
  1275. spoolman: 'Spoolman',
  1276. updates: '更新',
  1277. language: '语言',
  1278. languageDescription: '选择您的首选语言',
  1279. theme: '主题',
  1280. themeLight: '浅色',
  1281. themeDark: '深色',
  1282. themeSystem: '跟随系统',
  1283. defaultView: '默认视图',
  1284. defaultViewDescription: '打开应用时显示的页面',
  1285. checkForUpdates: '检查更新',
  1286. autoUpdate: '自动更新',
  1287. currentVersion: '当前版本',
  1288. latestVersion: '最新版本',
  1289. upToDate: '已是最新版本',
  1290. updateAvailable: '有可用更新',
  1291. // Notifications
  1292. notificationLanguage: '通知语言',
  1293. notificationLanguageDescription: '推送通知的语言',
  1294. bedCooledThreshold: '热床冷却阈值',
  1295. bedCooledThresholdDescription: '打印后热床被视为已冷却的温度',
  1296. userNotificationsEnabled: '用户通知',
  1297. userNotificationsEnabledDescription: '启用用户通知菜单和打印任务事件的邮件通知。需要高级身份验证。',
  1298. userNotificationsDisabledHint: '请启用高级身份验证以使用用户通知。',
  1299. notificationProviders: '通知提供商',
  1300. addProvider: '添加提供商',
  1301. editProvider: '编辑提供商',
  1302. providerType: '提供商类型',
  1303. testNotification: '测试通知',
  1304. testSuccess: '测试通知发送成功',
  1305. testFailed: '发送测试通知失败',
  1306. quietHours: '免打扰时间',
  1307. quietHoursDescription: '在此时间段内不发送通知',
  1308. quietHoursStart: '开始',
  1309. quietHoursEnd: '结束',
  1310. events: {
  1311. title: '通知事件',
  1312. printStart: '打印开始',
  1313. printComplete: '打印完成',
  1314. printFailed: '打印失败',
  1315. printStopped: '打印停止',
  1316. printProgress: '进度里程碑',
  1317. printProgressDescription: '在 25%、50%、75% 时通知',
  1318. printerOffline: '打印机离线',
  1319. printerError: '打印机错误',
  1320. filamentLow: '耗材不足',
  1321. maintenanceDue: '维护到期',
  1322. maintenanceDueDescription: '需要维护时通知',
  1323. },
  1324. // Smart Plugs
  1325. smartPlug: {
  1326. title: '智能插座',
  1327. add: '添加智能插座',
  1328. edit: '编辑智能插座',
  1329. name: '名称',
  1330. ipAddress: 'IP 地址',
  1331. linkedPrinter: '关联打印机',
  1332. autoOn: '自动开启',
  1333. autoOnDescription: '打印开始时开启',
  1334. autoOff: '自动关闭',
  1335. autoOffDescription: '打印完成后关闭',
  1336. offDelay: '关闭延迟',
  1337. offDelayMinutes: '打印后分钟数',
  1338. offDelayTemp: '当喷嘴温度低于',
  1339. currentState: '当前状态',
  1340. turnOn: '开启',
  1341. turnOff: '关闭',
  1342. },
  1343. // Filament Tracking Mode
  1344. filamentTracking: '耗材追踪',
  1345. filamentTrackingDesc: '选择如何追踪您的耗材。您可以使用内置库存或连接外部 Spoolman 服务器。',
  1346. filamentChecks: '耗材检查',
  1347. disableFilamentWarnings: '禁用耗材警告',
  1348. disableFilamentWarningsDesc: '在打印或加入队列时不显示耗材不足警告',
  1349. trackingModeBuiltIn: '内置库存',
  1350. trackingModeBuiltInDesc: '包含 RFID 自动匹配和用量追踪',
  1351. trackingModeSpoolmanDesc: '外部耗材管理服务器',
  1352. builtInFeatureRfid: '自动检测 AMS 中的拓竹 RFID 耗材',
  1353. builtInFeatureUsage: '追踪每次打印的耗材消耗',
  1354. builtInFeatureCatalog: '管理耗材、颜色和 K 值配置文件',
  1355. builtInFeatureThirdParty: '第三方耗材可分配到库存耗材',
  1356. amsSyncButton: '从 AMS 同步重量',
  1357. amsSyncTitle: '从 AMS 同步耗材重量',
  1358. amsSyncMessage: '这将使用已连接打印机的当前 AMS 剩余百分比值覆盖所有库存耗材重量。用于从损坏的重量数据中恢复。打印机必须在线。',
  1359. amsSyncing: '同步中...',
  1360. amsSyncSuccess: '已同步 {{synced}} 个耗材,跳过 {{skipped}} 个',
  1361. amsSyncError: '从 AMS 同步重量失败',
  1362. // Spoolman settings
  1363. spoolmanUrl: 'Spoolman URL',
  1364. spoolmanUrlHint: 'Spoolman 服务器的 URL(例如 http://localhost:7912)',
  1365. spoolmanConnected: '已连接',
  1366. spoolmanDisconnected: '未连接',
  1367. status: '状态',
  1368. connect: '连接',
  1369. disconnect: '断开',
  1370. howSyncWorks: '同步工作原理',
  1371. syncInfoRfidOnly: '仅同步带有 RFID 的官方拓竹耗材',
  1372. syncInfoAutoCreate: '首次同步时自动在 Spoolman 中创建新耗材',
  1373. syncInfoThirdPartySkipped: '非拓竹耗材(第三方、重新填充的)将被跳过',
  1374. linkingExistingSpools: '链接现有耗材',
  1375. linkingExistingSpoolsDesc: '要将现有的 Spoolman 耗材链接到您的 AMS,请将鼠标悬停在 AMS 槽位上并点击"链接到 Spoolman"。',
  1376. syncMode: '同步模式',
  1377. syncModeAuto: '自动',
  1378. syncModeManual: '仅手动',
  1379. syncModeAutoDesc: '检测到更改时自动同步 AMS 数据',
  1380. syncModeManualDesc: '仅在手动触发时同步',
  1381. syncAmsData: '同步 AMS 数据',
  1382. syncAmsDataDesc: '手动将打印机 AMS 数据同步到 Spoolman',
  1383. allPrinters: '所有打印机',
  1384. // Default printer
  1385. noDefaultPrinter: '无默认(每次询问)',
  1386. // Sidebar
  1387. sidebarOrder: '侧边栏顺序',
  1388. // Camera
  1389. saveThumbnails: '保存缩略图',
  1390. captureFinishPhoto: '拍摄完成照片',
  1391. noPrintersConfigured: '未配置打印机',
  1392. // Archive settings
  1393. archiveMode: {
  1394. always: '始终创建归档条目',
  1395. never: '从不创建归档条目',
  1396. ask: '每次询问',
  1397. },
  1398. // Updates
  1399. checkForUpdatesLabel: '检查更新',
  1400. checkPrinterFirmware: '检查打印机固件',
  1401. includeBetaUpdates: '包含测试版本',
  1402. includeBetaUpdatesDesc: '检查更新时通知测试版和预发布版本',
  1403. // Queue
  1404. enableRetry: '启用重试',
  1405. // Home Assistant
  1406. homeAssistantDescription: '通过 Home Assistant 控制智能插座',
  1407. environmentManagedLabel: '(环境变量管理)',
  1408. autoEnabledViaEnv: '通过环境变量自动启用',
  1409. urlFromEnvReadOnly: '值由 HA_URL 环境变量设置(只读)',
  1410. tokenFromEnvReadOnly: '值由 HA_TOKEN 环境变量设置(只读)',
  1411. // MQTT
  1412. mqttConnectedTo: '已连接到',
  1413. // Prometheus
  1414. prometheusDescription: '以 Prometheus 格式暴露打印机数据',
  1415. // Smart plugs empty state
  1416. noSmartPlugsTitle: '未配置智能插座',
  1417. noSmartPlugsDescription: '添加基于 Tasmota 的智能插座以追踪能耗并自动化电源控制。',
  1418. // Notifications empty state
  1419. noProvidersTitle: '未配置提供商',
  1420. noProvidersDescription: '添加提供商以接收警报。',
  1421. noTemplatesAvailable: '无可用模板。重启后端以加载默认模板。',
  1422. // API permissions
  1423. apiPermissionView: '查看打印机状态和队列',
  1424. apiPermissionEdit: '添加和移除打印队列中的项目',
  1425. // API keys
  1426. apiKeysEmptyTitle: '无 API 密钥',
  1427. apiKeysEmptyDescription: '创建 API 密钥以与外部服务集成。',
  1428. // Users
  1429. noUsersFound: '未找到用户',
  1430. noGroupsFound: '未找到组',
  1431. noGroupsAvailable: '无可用组',
  1432. passwordsDoNotMatch: '密码不匹配',
  1433. systemGroupWarning: '系统组名称不可更改',
  1434. // Auth disabled
  1435. authDisabledTitle: '身份验证已禁用',
  1436. authDisabledFeature1: '需要登录才能访问系统',
  1437. authDisabledFeature2: '创建多个用户并基于组的权限管理',
  1438. authDisabledFeature3: '使用 50+ 个细粒度权限控制访问',
  1439. // User deletion
  1440. userHasCreated: '此用户已创建:',
  1441. userItemsQuestion: '您想如何处理这些项目?',
  1442. deleteUserConfirm: '确定要删除此用户吗?',
  1443. actionCannotBeUndone: '此操作无法撤销。',
  1444. // Smart plugs
  1445. addFirstSmartPlug: '添加您的第一个智能插座',
  1446. // Notifications
  1447. providers: '提供商',
  1448. log: '日志',
  1449. testAll: '全部测试',
  1450. testResults: '测试结果',
  1451. testPassedCount: '{{count}} 个通过',
  1452. testFailedCount: '{{count}} 个失败',
  1453. messageTemplates: '消息模板',
  1454. messageTemplatesDescription: '自定义每个事件的通知消息。',
  1455. // API Keys section
  1456. apiKeys: 'API 密钥',
  1457. apiKeysDescription: '创建 API 密钥用于外部集成和 Webhook。',
  1458. createKey: '创建密钥',
  1459. apiKeyCreated: 'API 密钥创建成功',
  1460. apiKeyCopyWarning: '请立即复制此密钥 - 它不会再次显示!',
  1461. useInApiBrowser: '在 API 浏览器中使用',
  1462. createNewApiKey: '创建新 API 密钥',
  1463. keyName: '密钥名称',
  1464. keyNamePlaceholder: '例如:Home Assistant、OctoPrint',
  1465. readStatus: '读取状态',
  1466. readStatusDescription: '查看打印机状态和队列',
  1467. manageQueue: '管理队列',
  1468. manageQueueDescription: '添加和移除打印队列中的项目',
  1469. controlPrinter: '控制打印机',
  1470. controlPrinterDescription: '暂停、继续和停止打印',
  1471. unnamedKey: '未命名密钥',
  1472. lastUsed: '上次使用',
  1473. read: '读取',
  1474. control: '控制',
  1475. createFirstKey: '创建您的第一个密钥',
  1476. webhookEndpoints: 'Webhook 端点',
  1477. webhookApiKeyHint: '在 X-API-Key 请求头中使用您的 API 密钥。',
  1478. webhook: {
  1479. getAllStatus: '获取所有打印机状态',
  1480. getSpecificStatus: '获取特定打印机状态',
  1481. addToQueue: '添加到打印队列',
  1482. pausePrint: '暂停打印',
  1483. resumePrint: '继续打印',
  1484. stopPrint: '停止打印',
  1485. },
  1486. apiBrowser: 'API 浏览器',
  1487. apiBrowserDescription: '浏览和测试所有可用的 API 端点。',
  1488. apiKeyForTesting: '测试用 API 密钥',
  1489. apiKeyPlaceholder: '在此粘贴您的 API 密钥以测试需要认证的端点...',
  1490. apiKeyHint: '此密钥将作为 X-API-Key 请求头随请求发送。',
  1491. deleteApiKeyTitle: '删除 API 密钥',
  1492. deleteApiKeyMessage: '确定要删除此 API 密钥吗?使用此密钥的所有集成将停止工作。',
  1493. deleteKey: '删除密钥',
  1494. // Filament tab
  1495. amsDisplayThresholds: 'AMS 显示阈值',
  1496. amsThresholdsDescription: '配置 AMS 湿度和温度指示器的颜色阈值。',
  1497. humidity: '湿度',
  1498. goodGreen: '良好(绿色)',
  1499. fairOrange: '一般(橙色)',
  1500. aboveFairBad: '超过一般阈值显示为红色(差)',
  1501. fairAlsoDryingThreshold: '此阈值也用于触发自动干燥',
  1502. temperature: '温度',
  1503. goodBlue: '良好(蓝色)',
  1504. aboveFairHot: '超过一般阈值显示为红色(热)',
  1505. historyRetention: '历史保留',
  1506. keepSensorHistory: '保留传感器历史',
  1507. historyRetentionDescription: '较旧的湿度和温度数据将被自动删除',
  1508. queueDrying: '自动干燥',
  1509. queueDryingDescription: '在队列打印之间,打印机空闲时自动干燥AMS耗材。使用上方的湿度阈值触发干燥。',
  1510. queueDryingEnabled: '启用自动干燥',
  1511. queueDryingEnabledDescription: '当打印机空闲且湿度超过阈值时,自动启动AMS干燥',
  1512. queueDryingBlock: '等待干燥完成',
  1513. queueDryingBlockDescription: '阻止打印队列直到干燥完成。关闭时,打印优先于干燥。',
  1514. ambientDryingEnabled: '环境干燥',
  1515. ambientDryingEnabledDescription: '当空闲打印机的湿度超过阈值时自动干燥耗材,无需排队打印。',
  1516. dryingPresets: '干燥预设',
  1517. dryingPresetsDescription: '每种耗材类型的温度和时长。AMS 2 Pro使用较低温度,AMS-HT支持较高温度。',
  1518. dryingFilament: '耗材',
  1519. printModal: '打印对话框',
  1520. expandCustomMapping: '默认展开自定义映射',
  1521. expandCustomMappingDescription: '打印到多台打印机时,默认展开显示每台打印机的 AMS 映射',
  1522. // User management
  1523. authentication: '身份验证',
  1524. authEnabledDescription: '您的实例已通过用户身份验证保护',
  1525. authDisabledDescription: '启用以要求登录并管理用户访问',
  1526. authDisabledMessage: '启用身份验证以创建用户账户、管理权限并保护您的 Bambuddy 实例。',
  1527. enableAuthentication: '启用身份验证',
  1528. currentUser: '当前用户',
  1529. changePassword: '修改密码',
  1530. admin: '管理员',
  1531. users: '用户',
  1532. addUser: '添加用户',
  1533. groups: '组',
  1534. addGroup: '添加组',
  1535. system: '系统',
  1536. noDescription: '无描述',
  1537. userCount: '{{count}} 个用户',
  1538. permissionCount: '{{count}} 个权限',
  1539. createUser: '创建用户',
  1540. username: '用户名',
  1541. enterUsername: '输入用户名',
  1542. password: '密码',
  1543. enterPassword: '输入密码(至少 6 个字符)',
  1544. confirmPassword: '确认密码',
  1545. confirmPasswordPlaceholder: '确认密码',
  1546. // Title tooltips
  1547. viewReleaseOnGitHub: '在 GitHub 上查看发布',
  1548. turnAllPlugsOn: '开启所有插座',
  1549. turnAllPlugsOff: '关闭所有插座',
  1550. // Modal: Clear logs
  1551. clearNotificationLogs: '清除通知日志',
  1552. clearLogsMessage: '这将永久删除所有 30 天前的通知日志。此操作无法撤销。',
  1553. clearLogs: '清除日志',
  1554. // Modal: Reset UI
  1555. resetUiPreferences: '重置 UI 偏好',
  1556. resetUiPreferencesMessage: '这将重置所有 UI 偏好为默认值:侧边栏顺序、主题、仪表板布局、视图模式和排序偏好。您的打印机、归档和服务器设置不会受到影响。清除后页面将重新加载。',
  1557. resetPreferences: '重置偏好',
  1558. // Modal: Delete group
  1559. deleteGroupTitle: '删除组',
  1560. deleteGroupMessage: '确定要删除此组吗?此组中的用户将失去这些权限。',
  1561. deleteGroup: '删除组',
  1562. // Modal: Disable auth
  1563. disableAuthenticationTitle: '禁用身份验证',
  1564. disableAuthenticationMessage: '确定要禁用身份验证吗?这将使您的 Bambuddy 实例无需登录即可访问。所有用户将保留在数据库中但身份验证将被禁用。',
  1565. disableAuthentication: '禁用身份验证',
  1566. // Additional settings
  1567. configureBambuddy: '配置 Bambuddy',
  1568. systemDefault: '系统默认',
  1569. archiveSettings: '归档设置',
  1570. newWindow: '新窗口',
  1571. embeddedOverlay: '嵌入式叠加层',
  1572. preferredSlicer: '首选切片软件',
  1573. preferredSlicerDescription: '选择要用于打开文件的切片软件',
  1574. externalCameras: '外部摄像头',
  1575. costTracking: '成本追踪',
  1576. printsOnly: '仅打印',
  1577. totalConsumption: '总消耗',
  1578. dataManagement: '数据管理',
  1579. storageUsage: '存储使用情况',
  1580. storageUsageDescription: '按类别的数据使用情况明细',
  1581. storageUsageTotal: '总计',
  1582. storageUsageErrors: '错误',
  1583. storageUsageOtherBreakdown: '其他(包括静态资源、脚本和配置文件)',
  1584. storageUsageSystem: '系统',
  1585. storageUsageData: '数据',
  1586. storageUsageUnavailable: '存储使用信息不可用',
  1587. clearNotificationLogsDescription: '删除 30 天前的通知日志',
  1588. resetUiPreferencesDescription: '重置侧边栏顺序、主题、视图模式和布局偏好。打印机、归档和设置不受影响。',
  1589. enableHomeAssistant: '启用 Home Assistant',
  1590. enableMqtt: '启用 MQTT',
  1591. useTls: '使用 TLS',
  1592. enableMetricsEndpoint: '启用指标端点',
  1593. availableMetrics: '可用指标',
  1594. editUser: '编辑用户',
  1595. deleteUserTitle: '删除用户',
  1596. groupName: '组名称',
  1597. // Placeholders
  1598. leaveEmptyForAnonymous: '留空为匿名',
  1599. leaveEmptyForNoAuth: '留空为无认证',
  1600. enterNewPassword: '输入新密码',
  1601. confirmNewPassword: '确认新密码',
  1602. enterGroupName: '输入组名称',
  1603. enterDescriptionOptional: '输入描述(可选)',
  1604. enterCurrentPassword: '输入当前密码',
  1605. enterNewPasswordMin6: '输入新密码(至少 6 个字符)',
  1606. toast: {
  1607. keyCopied: '密钥已复制到剪贴板',
  1608. copyFailed: '复制密钥失败',
  1609. keyAddedToBrowser: '密钥已添加到 API 浏览器',
  1610. clearLogsFailed: '清除日志失败',
  1611. uiPreferencesReset: 'UI 偏好已重置。刷新中...',
  1612. authDisabled: '身份验证已成功禁用',
  1613. authDisableFailed: '禁用身份验证失败',
  1614. apiKeyCreated: 'API 密钥已创建',
  1615. apiKeyDeleted: 'API 密钥已删除',
  1616. userCreated: '用户创建成功',
  1617. userUpdated: '用户更新成功',
  1618. userDeleted: '用户删除成功',
  1619. groupCreated: '组创建成功',
  1620. groupUpdated: '组更新成功',
  1621. groupDeleted: '组删除成功',
  1622. fillRequiredFields: '请填写所有必填字段',
  1623. passwordsDoNotMatch: '密码不匹配',
  1624. passwordTooShort: '密码至少需要 6 个字符',
  1625. enterGroupName: '请输入组名称',
  1626. settingsSaved: '设置已保存',
  1627. cameraSettingsSaved: '摄像头设置已保存',
  1628. enterCameraUrl: '请输入摄像头 URL',
  1629. passwordChanged: '密码修改成功',
  1630. connectionFailed: '连接失败',
  1631. testFailed: '测试失败',
  1632. cameraConnected: '摄像头已连接{{resolution}}',
  1633. },
  1634. testConnection: '测试连接',
  1635. catalog: {
  1636. spoolCatalog: '耗材目录',
  1637. spoolCatalogDescription: '按品牌/类型的空耗材重量。用于添加耗材时的自动重量查找。',
  1638. searchCatalog: '搜索目录...',
  1639. addNewEntry: '添加新条目',
  1640. namePlaceholder: '名称(例如:Bambu Lab - 塑料)',
  1641. weight: '重量',
  1642. type: '类型',
  1643. default: '默认',
  1644. custom: '自定义',
  1645. noMatch: '没有条目匹配您的搜索',
  1646. empty: '目录中没有条目',
  1647. deleteEntry: '删除条目',
  1648. deleteConfirm: '确定要删除"{{name}}"吗?',
  1649. resetCatalog: '重置目录',
  1650. resetConfirm: '重置目录为默认值?这将移除所有自定义条目。',
  1651. loadFailed: '加载耗材目录失败',
  1652. nameWeightRequired: '名称和重量为必填项',
  1653. entryAdded: '条目已添加',
  1654. addFailed: '添加条目失败',
  1655. entryUpdated: '条目已更新',
  1656. updateFailed: '更新条目失败',
  1657. entryDeleted: '条目已删除',
  1658. deleteFailed: '删除条目失败',
  1659. resetSuccess: '目录已重置为默认值',
  1660. resetFailed: '重置目录失败',
  1661. exported: '已导出 {{count}} 条',
  1662. imported: '已导入 {{added}} 条(跳过 {{skipped}} 条)',
  1663. importFailed: '导入失败:无效的 JSON 格式',
  1664. exportTooltip: '导出目录为 JSON',
  1665. importTooltip: '从 JSON 导入目录',
  1666. resetTooltip: '重置为默认值',
  1667. selectedCount: '已选择 {{count}} 项',
  1668. deleteSelected: '删除所选',
  1669. bulkDeleteConfirm: '确定要删除 {{count}} 个条目吗?',
  1670. bulkDeleted: '已删除 {{count}} 个条目',
  1671. bulkDeleteFailed: '删除条目失败',
  1672. },
  1673. colorCatalog: {
  1674. title: '颜色目录',
  1675. description: '按制造商/材料的耗材颜色。用于添加耗材时的自动颜色查找。',
  1676. searchColors: '搜索颜色...',
  1677. allManufacturers: '所有制造商',
  1678. addNewColor: '添加新颜色',
  1679. manufacturer: '制造商',
  1680. colorName: '颜色名称',
  1681. hex: '十六进制',
  1682. materialOptional: '材料(可选)',
  1683. showing: '显示 {{filtered}} / {{total}} 种颜色',
  1684. noMatch: '没有颜色匹配您的搜索',
  1685. empty: '目录中没有颜色',
  1686. deleteColor: '删除颜色',
  1687. deleteConfirm: '确定要删除"{{name}}"吗?',
  1688. resetCatalog: '重置颜色目录',
  1689. resetConfirm: '重置目录为默认值?这将移除所有自定义颜色。',
  1690. sync: '同步',
  1691. starting: '启动中...',
  1692. syncTooltip: '从 FilamentColors.xyz 同步(2000+ 种颜色,可能需要一分钟)',
  1693. loadFailed: '加载颜色目录失败',
  1694. fieldsRequired: '制造商、颜色名称和十六进制颜色为必填项',
  1695. colorAdded: '颜色已添加',
  1696. addFailed: '添加颜色失败',
  1697. colorUpdated: '颜色已更新',
  1698. updateFailed: '更新颜色失败',
  1699. colorDeleted: '颜色已删除',
  1700. deleteFailed: '删除颜色失败',
  1701. resetSuccess: '颜色目录已重置为默认值',
  1702. resetFailed: '重置目录失败',
  1703. syncUpToDate: '已是最新(检查了 {{count}} 种颜色)',
  1704. syncComplete: '添加了 {{added}} 种新颜色({{skipped}} 种已存在)',
  1705. syncError: '同步错误',
  1706. syncFailed: '从 FilamentColors.xyz 同步失败',
  1707. exported: '已导出 {{count}} 种颜色',
  1708. imported: '已导入 {{added}} 种颜色(跳过 {{skipped}} 种)',
  1709. importFailed: '导入失败:无效的 JSON 格式',
  1710. selectedCount: '已选择 {{count}} 项',
  1711. deleteSelected: '删除所选',
  1712. bulkDeleteConfirm: '确定要删除 {{count}} 种颜色吗?',
  1713. bulkDeleted: '已删除 {{count}} 种颜色',
  1714. bulkDeleteFailed: '删除颜色失败',
  1715. },
  1716. dateFormat: '日期格式',
  1717. dateFormatUs: '美式 (MM/DD/YYYY)',
  1718. dateFormatEu: '欧式 (DD/MM/YYYY)',
  1719. dateFormatIso: 'ISO (YYYY-MM-DD)',
  1720. timeFormat: '时间格式',
  1721. timeFormat12: '12小时制 (3:30 PM)',
  1722. timeFormat24: '24小时制 (15:30)',
  1723. defaultPrinter: '默认打印机',
  1724. defaultPrinterDescription: '为上传、重印和其他操作预选此打印机。',
  1725. slicerBambuStudio: 'Bambu Studio',
  1726. slicerOrcaSlicer: 'OrcaSlicer',
  1727. sidebarOrderDescription: '拖拽侧边栏项目以重新排序。在此处重置为默认顺序。',
  1728. setDefault: '设为默认',
  1729. sidebarOrderSetDefaultHint: '设为默认将当前菜单顺序应用于尚未自定义的用户。',
  1730. sidebarDefaultSet: '已设置默认菜单顺序。',
  1731. sidebarDefaultCleared: '已清除默认菜单顺序。',
  1732. sidebarDefaultFailed: '设置默认菜单顺序失败。',
  1733. reset: '重置',
  1734. darkMode: '深色模式',
  1735. lightMode: '浅色模式',
  1736. active: '(当前)',
  1737. background: '背景',
  1738. accent: '强调色',
  1739. style: '样式',
  1740. bgNeutral: '中性',
  1741. bgWarm: '暖色',
  1742. bgCool: '冷色',
  1743. bgOled: 'OLED 纯黑',
  1744. bgSlate: '石板蓝',
  1745. bgForest: '森林绿',
  1746. accentGreen: '绿色',
  1747. accentTeal: '青色',
  1748. accentBlue: '蓝色',
  1749. accentOrange: '橙色',
  1750. accentPurple: '紫色',
  1751. accentRed: '红色',
  1752. styleClassic: '经典',
  1753. styleGlow: '发光',
  1754. styleVibrant: '鲜艳',
  1755. themeToggleHint: '使用侧边栏中的太阳/月亮图标在深色和浅色模式之间切换。',
  1756. autoArchivePrints: '自动归档打印',
  1757. autoArchiveDescription: '打印完成时自动保存3MF文件',
  1758. saveThumbnailsDescription: '从3MF文件中提取并保存预览图像',
  1759. captureFinishPhotoDescription: '打印完成时从打印机摄像头拍照',
  1760. ffmpegNotInstalled: '未安装ffmpeg',
  1761. ffmpegRequired: '摄像头捕获需要ffmpeg。通过 <brew>brew install ffmpeg</brew>(macOS)或 <apt>apt install ffmpeg</apt>(Linux)安装。',
  1762. camera: '摄像头',
  1763. cameraViewMode: '摄像头查看模式',
  1764. cameraOverlayDescription: '摄像头在主屏幕上以可调大小的覆盖层打开',
  1765. cameraWindowDescription: '摄像头在单独的浏览器窗口中打开',
  1766. externalCamerasDescription: '配置外部摄像头以替换内置打印机摄像头。支持MJPEG流、RTSP、HTTP快照和USB摄像头(V4L2)。启用后,外部摄像头将用于实时查看和完成照片。',
  1767. cameraPlaceholderUsb: '设备路径 (/dev/video0)',
  1768. cameraPlaceholderUrl: '摄像头URL (rtsp://... 或 http://...)',
  1769. cameraTypeMjpeg: 'MJPEG 流',
  1770. cameraTypeRtsp: 'RTSP 流',
  1771. cameraTypeSnapshot: 'HTTP 快照',
  1772. cameraTypeUsb: 'USB 摄像头 (V4L2)',
  1773. cameraRotation: '旋转',
  1774. test: '测试',
  1775. connected: '已连接',
  1776. disconnected: '未连接',
  1777. currency: '货币',
  1778. defaultFilamentCost: '默认耗材成本(每公斤)',
  1779. electricityCost: '每千瓦时电费',
  1780. energyDisplayMode: '能源显示模式',
  1781. energyModePrintDescription: '仪表板显示打印期间使用的能源总和',
  1782. energyModeTotalDescription: '仪表板显示智能插座的累计能源',
  1783. fileManager: '文件管理器',
  1784. createArchiveEntry: '打印时创建归档条目',
  1785. createArchiveEntryDescription: '从文件管理器打印时,可选择创建归档条目',
  1786. lowDiskSpaceWarning: '磁盘空间不足警告',
  1787. lowDiskSpaceDescription: '当可用磁盘空间低于此阈值时显示警告',
  1788. printerFirmware: '打印机固件',
  1789. checkFirmwareDescription: '检查Bambu Lab的打印机固件更新',
  1790. bambuddySoftware: 'Bambuddy 软件',
  1791. autoCheckDescription: '启动时自动检查新版本',
  1792. checkNow: '立即检查',
  1793. updateAvailableVersion: '可用更新:v{{version}}',
  1794. releaseNotes: '发布说明',
  1795. updateViaDocker: '通过 Docker Compose 更新:',
  1796. installUpdate: '安装更新',
  1797. latestVersionRunning: '您正在运行最新版本',
  1798. failedToCheckUpdates: '检查更新失败:{{error}}',
  1799. backupRestore: '备份与恢复',
  1800. backupRestoreDescription: '导出/导入设置并配置GitHub备份',
  1801. goToBackup: '前往备份',
  1802. externalUrl: '外部URL',
  1803. externalUrlDescription: 'Bambuddy可访问的外部URL。用于通知图像和外部集成。',
  1804. bambuddyUrl: 'Bambuddy URL',
  1805. externalUrlHint: '包含协议和端口(例如:http://192.168.1.100:8000)',
  1806. ftpRetry: 'FTP重试',
  1807. ftpRetryDescription: '当打印机WiFi不稳定时重试FTP操作。适用于3MF下载、打印上传、延时摄影下载和固件更新。',
  1808. autoRetryDescription: '自动重试失败的FTP操作',
  1809. retryAttempts: '重试次数',
  1810. retryDelay: '重试延迟',
  1811. connectionTimeout: '连接超时',
  1812. time_one: '{{count}}次',
  1813. time_other: '{{count}}次',
  1814. second_one: '{{count}}秒',
  1815. second_other: '{{count}}秒',
  1816. nSeconds: '{{count}}秒',
  1817. increaseForWeakWifi: '对WiFi信号弱的打印机增加此值',
  1818. homeAssistant: 'Home Assistant',
  1819. homeAssistantFullDescription: '连接到Home Assistant,通过HA REST API控制智能插座。支持switch、light、input_boolean和script实体。',
  1820. homeAssistantUrl: 'Home Assistant URL',
  1821. longLivedAccessToken: '长期访问令牌',
  1822. haTokenHint: '在HA中创建令牌:个人资料 → 长期访问令牌 → 创建令牌',
  1823. connectionSuccessful: '连接成功',
  1824. connectionFailed: '连接失败',
  1825. haConnectionSuccess: '已成功连接到Home Assistant。',
  1826. haConnectionFailed: '连接Home Assistant失败。',
  1827. mqttPublishing: 'MQTT发布',
  1828. mqttDescription: '将BamBuddy事件发布到外部MQTT代理,用于与Node-RED、Home Assistant和其他自动化系统集成。',
  1829. mqttEnableDescription: '向外部MQTT代理发布事件',
  1830. brokerHostname: '代理主机名',
  1831. port: '端口',
  1832. usernameOptional: '用户名(可选)',
  1833. passwordOptional: '密码(可选)',
  1834. topicPrefix: '主题前缀',
  1835. topicPrefixHint: '主题格式:{{prefix}}/printers/<serial>/status 等',
  1836. prometheusMetrics: 'Prometheus 指标',
  1837. prometheusEndpointDescription: '在 <code>/api/v1/metrics</code> 公开打印机指标,用于Prometheus/Grafana监控。',
  1838. bearerTokenOptional: 'Bearer令牌(可选)',
  1839. bearerTokenHint: '设置后,请求必须包含 <code>Authorization: Bearer <token></code>',
  1840. metricsConnectionStatus: '连接状态',
  1841. metricsPrinterState: '打印机状态(空闲/打印中等)',
  1842. metricsPrintProgress: '打印进度 0-100%',
  1843. metricsBedTemp: '热床温度',
  1844. metricsNozzleTemp: '喷嘴温度',
  1845. metricsPrintsTotal: '按结果分类的总打印数',
  1846. metricsMore: '...以及更多(层数、风扇、队列、耗材用量)',
  1847. smartPlugsDescription: '连接智能插座(Tasmota或Home Assistant)以自动化电源控制并跟踪打印机的能源使用情况。',
  1848. allOn: '全部开启',
  1849. allOff: '全部关闭',
  1850. addSmartPlug: '添加智能插座',
  1851. energySummary: '能源概要',
  1852. currentPower: '当前功率',
  1853. plugsOnline: '{{reachable}}/{{total}} 个插座在线',
  1854. today: '今天',
  1855. yesterday: '昨天',
  1856. total: '总计',
  1857. enablePlugsForSummary: '启用插座以查看能源概要',
  1858. addNotificationProvider: '添加',
  1859. systemBadge: '(系统)',
  1860. creating: '创建中...',
  1861. changing: '修改中...',
  1862. deleteUserAndItems: '删除用户及其所有项目',
  1863. deleteUserKeepItems: '删除用户,保留项目(将变为无主项目)',
  1864. ok: '确定',
  1865. },
  1866. // Notifications (for push notifications)
  1867. notification: {
  1868. printStarted: {
  1869. title: '打印已开始',
  1870. body: '{{printer}}:{{filename}} 已开始打印',
  1871. },
  1872. printCompleted: {
  1873. title: '打印已完成',
  1874. body: '{{printer}}:{{filename}} 已成功完成',
  1875. },
  1876. printFailed: {
  1877. title: '打印失败',
  1878. body: '{{printer}}:{{filename}} 打印失败',
  1879. },
  1880. printStopped: {
  1881. title: '打印已停止',
  1882. body: '{{printer}}:{{filename}} 已停止',
  1883. },
  1884. printProgress: {
  1885. title: '打印进度',
  1886. body: '{{printer}}:{{filename}} 已完成 {{percent}}%',
  1887. },
  1888. printerOffline: {
  1889. title: '打印机离线',
  1890. body: '{{printer}} 已离线',
  1891. },
  1892. printerError: {
  1893. title: '打印机错误',
  1894. body: '{{printer}}:{{error}}',
  1895. },
  1896. filamentLow: {
  1897. title: '耗材不足',
  1898. body: '{{printer}}:耗材即将用完',
  1899. },
  1900. maintenanceDue: {
  1901. title: '维护到期',
  1902. body: '{{printer}}:{{items}} 需要关注',
  1903. },
  1904. },
  1905. // Errors
  1906. errors: {
  1907. generic: '出了点问题',
  1908. networkError: '网络错误。请检查您的连接。',
  1909. notFound: '未找到',
  1910. unauthorized: '未授权',
  1911. serverError: '服务器错误',
  1912. validationError: '请检查您的输入',
  1913. printerConnectionFailed: '连接打印机失败',
  1914. saveFailed: '保存更改失败',
  1915. deleteFailed: '删除失败',
  1916. loadFailed: '加载数据失败',
  1917. },
  1918. // HMS Errors modal
  1919. hmsErrors: {
  1920. title: '错误 - {{name}}',
  1921. noErrors: '无错误',
  1922. viewOnWiki: '在拓竹 Wiki 上查看',
  1923. clearInstructions: '在打印机上清除错误以在此处消除它们。',
  1924. clearErrors: '清除错误',
  1925. clearSuccess: 'HMS 错误已清除',
  1926. clearFailed: '清除 HMS 错误失败',
  1927. },
  1928. // MQTT Debug modal
  1929. mqttDebug: {
  1930. title: 'MQTT 调试日志',
  1931. searchPlaceholder: '搜索主题或负载...',
  1932. noMessages: '尚未记录消息',
  1933. startLoggingHint: '点击"开始记录"以开始捕获 MQTT 消息',
  1934. noMessagesMatch: '没有消息匹配您的筛选条件',
  1935. adjustFilterHint: '尝试调整您的搜索或筛选条件',
  1936. incoming: '传入',
  1937. outgoing: '传出',
  1938. loggingStopped: '记录已停止',
  1939. loggingActive: '记录中 - 消息将自动刷新',
  1940. startLogging: '开始记录',
  1941. stopLogging: '停止记录',
  1942. clearLog: '清除日志',
  1943. topic: '主题',
  1944. timestamp: '时间戳',
  1945. direction: '方向',
  1946. all: '全部',
  1947. },
  1948. // Printer File Manager modal (printer internal storage)
  1949. printerFiles: {
  1950. title: '文件管理器',
  1951. storageUsed: '已用:',
  1952. storageFree: '剩余:',
  1953. filterPlaceholder: '筛选文件...',
  1954. deleteButton: '删除',
  1955. deleteFiles: '删除 {{count}} 个文件',
  1956. deleteFileConfirm: '删除"{{name}}"?此操作无法撤销。',
  1957. deleteFilesConfirm: '删除 {{count}} 个选中的文件?此操作无法撤销。',
  1958. noFiles: '打印机上没有文件',
  1959. loadingFiles: '加载文件中...',
  1960. failedToLoad: '加载文件失败',
  1961. toast: {
  1962. filesDeleted: '已删除 {{count}} 个文件',
  1963. deleteFailed: '删除失败:{{error}}',
  1964. },
  1965. },
  1966. // Confirmations
  1967. confirm: {
  1968. delete: '确定要删除吗?',
  1969. unsavedChanges: '您有未保存的更改。确定要离开吗?',
  1970. clearQueue: '确定要清空队列吗?',
  1971. },
  1972. // Login page
  1973. login: {
  1974. title: 'Bambuddy 登录',
  1975. subtitle: '登录您的账户',
  1976. username: '用户名',
  1977. usernamePlaceholder: '输入您的用户名',
  1978. usernameOrEmail: '用户名或邮箱',
  1979. usernameOrEmailPlaceholder: '用户名或 @ 邮箱',
  1980. password: '密码',
  1981. passwordPlaceholder: '输入您的密码',
  1982. signIn: '登录',
  1983. signingIn: '登录中...',
  1984. forgotPassword: '忘记密码?',
  1985. loginSuccess: '登录成功',
  1986. loginFailed: '登录失败',
  1987. enterCredentials: '请输入用户名和密码',
  1988. forgotPasswordTitle: '忘记密码',
  1989. forgotPasswordMessage: '如果您忘记了密码,请联系系统管理员进行重置。',
  1990. forgotPasswordEmailMessage: '输入您的邮箱地址,我们将向您发送新密码。',
  1991. emailAddress: '邮箱地址',
  1992. emailPlaceholder: 'your.email@example.com',
  1993. cancel: '取消',
  1994. sending: '发送中...',
  1995. sendResetEmail: '发送重置邮件',
  1996. howToReset: '如何重置密码:',
  1997. resetStep1: '联系您的 Bambuddy 管理员',
  1998. resetStep2: '请他们在用户管理中重置您的密码',
  1999. resetStep3: '他们可以为您设置一个临时密码',
  2000. resetStep4: '使用新密码登录并在设置中修改密码',
  2001. gotIt: '知道了',
  2002. },
  2003. // Setup page
  2004. setup: {
  2005. title: 'Bambuddy 设置',
  2006. subtitle: '为您的 Bambuddy 实例配置身份验证',
  2007. enableAuth: '启用身份验证',
  2008. adminAccount: '管理员账户',
  2009. adminAccountDesc: '如果管理员用户已存在,将使用现有管理员账户启用身份验证。如需使用现有管理员,请将下方字段留空,或输入新凭据创建新管理员用户。',
  2010. adminUsername: '管理员用户名',
  2011. adminPassword: '管理员密码',
  2012. optionalIfAdminExists: '(如管理员用户已存在则为可选)',
  2013. adminUsernamePlaceholder: '输入管理员用户名(可选)',
  2014. adminPasswordPlaceholder: '输入管理员密码(可选)',
  2015. confirmPassword: '确认密码',
  2016. confirmPasswordPlaceholder: '确认管理员密码',
  2017. settingUp: '设置中...',
  2018. completeSetup: '完成设置',
  2019. toast: {
  2020. authEnabledAdminCreated: '身份验证已启用并创建了管理员用户',
  2021. authEnabledExistingAdmins: '使用现有管理员用户启用了身份验证',
  2022. setupCompleted: '设置完成',
  2023. enterBothCredentials: '请输入管理员用户名和密码,或将两者留空以使用现有管理员用户',
  2024. passwordsDoNotMatch: '密码不匹配',
  2025. passwordTooShort: '密码至少需要 6 个字符',
  2026. },
  2027. },
  2028. // Password change
  2029. changePassword: {
  2030. title: '修改密码',
  2031. currentPassword: '当前密码',
  2032. currentPasswordPlaceholder: '输入当前密码',
  2033. newPassword: '新密码',
  2034. newPasswordPlaceholder: '输入新密码(至少 6 个字符)',
  2035. confirmPassword: '确认新密码',
  2036. confirmPasswordPlaceholder: '确认新密码',
  2037. passwordsDoNotMatch: '密码不匹配',
  2038. passwordTooShort: '密码至少需要 6 个字符',
  2039. changing: '修改中...',
  2040. success: '密码修改成功',
  2041. failed: '密码修改失败',
  2042. },
  2043. // Plate detection alert
  2044. plateAlert: {
  2045. title: '打印已暂停!',
  2046. message: '在构建板上检测到物体。打印已自动暂停。请清理打印板并继续打印。',
  2047. understand: '我知道了',
  2048. },
  2049. // Camera page
  2050. camera: {
  2051. title: '摄像头视图',
  2052. invalidPrinterId: '无效的打印机 ID',
  2053. live: '实时',
  2054. snapshot: '快照',
  2055. restartStream: '重启流',
  2056. refreshSnapshot: '刷新快照',
  2057. fullscreen: '全屏',
  2058. exitFullscreen: '退出全屏',
  2059. connectingToCamera: '连接摄像头中...',
  2060. capturingSnapshot: '拍摄快照中...',
  2061. connectionLost: '连接已断开',
  2062. connectionFailed: '摄像头连接失败',
  2063. reconnecting: '{{countdown}} 秒后重新连接...(第 {{attempt}}/{{max}} 次尝试)',
  2064. reconnectNow: '立即重新连接',
  2065. cameraUnavailable: '摄像头不可用',
  2066. cameraUnavailableDesc: '请确保打印机已通电并已连接。',
  2067. noCamera: '无可用摄像头',
  2068. retry: '重试',
  2069. cameraStream: '摄像头流',
  2070. zoomOut: '缩小',
  2071. zoomIn: '放大',
  2072. resetZoom: '重置缩放',
  2073. recording: '录制中',
  2074. startRecording: '开始录制',
  2075. stopRecording: '停止录制',
  2076. chamberLight: '切换腔室灯',
  2077. },
  2078. // Groups management
  2079. groups: {
  2080. title: '组管理',
  2081. subtitle: '管理访问控制的权限组',
  2082. backToSettings: '返回设置',
  2083. createGroup: '创建组',
  2084. noPermission: '您没有访问此页面的权限。',
  2085. system: '系统',
  2086. noDescription: '无描述',
  2087. usersCount: '{{count}} 个用户',
  2088. permissionsCount: '{{count}} 个权限',
  2089. edit: '编辑',
  2090. delete: '删除',
  2091. toast: {
  2092. created: '组创建成功',
  2093. updated: '组更新成功',
  2094. deleted: '组删除成功',
  2095. enterGroupName: '请输入组名称',
  2096. },
  2097. modal: {
  2098. editGroup: '编辑组',
  2099. createGroup: '创建组',
  2100. cancel: '取消',
  2101. saving: '保存中...',
  2102. creating: '创建中...',
  2103. saveChanges: '保存更改',
  2104. },
  2105. form: {
  2106. groupName: '组名称',
  2107. groupNamePlaceholder: '输入组名称',
  2108. systemGroupWarning: '系统组名称不可更改',
  2109. description: '描述',
  2110. descriptionPlaceholder: '输入描述(可选)',
  2111. permissions: '权限(已选 {{count}} 个)',
  2112. },
  2113. deleteModal: {
  2114. title: '删除组',
  2115. message: '确定要删除此组吗?此组中的用户将失去这些权限。',
  2116. confirm: '删除组',
  2117. },
  2118. editor: {
  2119. title: '编辑组',
  2120. createTitle: '创建组',
  2121. search: '搜索权限...',
  2122. selectAll: '全选',
  2123. clearAll: '清除全部',
  2124. permissionsSelected: '已选 {{count}} 个',
  2125. noResults: '没有权限匹配您的搜索',
  2126. },
  2127. },
  2128. // Users management
  2129. users: {
  2130. title: '用户管理',
  2131. subtitle: '管理用户及其对 Bambuddy 实例的访问',
  2132. backToSettings: '返回设置',
  2133. createUser: '创建用户',
  2134. noPermission: '您没有访问此页面的权限。',
  2135. admin: '管理员',
  2136. noGroups: '无组',
  2137. active: '活跃',
  2138. inactive: '非活跃',
  2139. edit: '编辑',
  2140. delete: '删除',
  2141. system: '系统',
  2142. noGroupsAvailable: '无可用组',
  2143. table: {
  2144. username: '用户名',
  2145. groups: '组',
  2146. status: '状态',
  2147. actions: '操作',
  2148. },
  2149. toast: {
  2150. created: '用户创建成功',
  2151. updated: '用户更新成功',
  2152. deleted: '用户删除成功',
  2153. fillRequired: '请填写所有必填字段',
  2154. passwordsDoNotMatch: '密码不匹配',
  2155. passwordTooShort: '密码至少需要 6 个字符',
  2156. },
  2157. modal: {
  2158. createUser: '创建用户',
  2159. editUser: '编辑用户',
  2160. cancel: '取消',
  2161. creating: '创建中...',
  2162. saving: '保存中...',
  2163. saveChanges: '保存更改',
  2164. advancedAuthSubtitle: '使用高级认证',
  2165. },
  2166. form: {
  2167. username: '用户名',
  2168. usernamePlaceholder: '输入用户名',
  2169. email: '邮箱',
  2170. emailPlaceholder: 'user@example.com',
  2171. password: '密码',
  2172. passwordPlaceholder: '输入密码',
  2173. confirmPassword: '确认密码',
  2174. confirmPasswordPlaceholder: '确认密码',
  2175. newPasswordPlaceholder: '输入新密码',
  2176. confirmNewPasswordPlaceholder: '确认新密码',
  2177. leaveBlankToKeep: '留空以保持当前值',
  2178. groups: '组',
  2179. optional: '可选',
  2180. autoGeneratedPassword: '将自动生成安全密码并通过邮件发送给用户。',
  2181. passwordManagedByAdvancedAuth: '密码由高级认证管理。使用"重置密码"通过邮件向用户发送新密码。',
  2182. resetPassword: '重置密码',
  2183. resettingPassword: '重置密码中...',
  2184. },
  2185. deleteModal: {
  2186. title: '删除用户',
  2187. message: '确定要删除此用户吗?此操作无法撤销。',
  2188. confirm: '删除用户',
  2189. },
  2190. },
  2191. // Stream overlay
  2192. streamOverlay: {
  2193. title: '流叠加层',
  2194. invalidPrinterId: '无效的打印机 ID',
  2195. cameraStream: '摄像头流',
  2196. progress: '进度',
  2197. eta: '预计完成时间',
  2198. printerIdle: '打印机空闲',
  2199. printerOffline: '打印机离线',
  2200. status: {
  2201. printing: '打印中',
  2202. paused: '已暂停',
  2203. finished: '已完成',
  2204. failed: '失败',
  2205. idle: '空闲',
  2206. unknown: '未知',
  2207. },
  2208. },
  2209. // Profiles
  2210. profiles: {
  2211. title: '配置文件',
  2212. subtitle: '管理您的切片预设和压力推进校准',
  2213. tabs: {
  2214. cloud: '云端配置文件',
  2215. local: '本地配置文件',
  2216. kprofiles: 'K 值配置',
  2217. },
  2218. localProfiles: {
  2219. title: '本地配置文件',
  2220. subtitle: '从 OrcaSlicer 导入和管理切片预设',
  2221. import: '导入配置文件',
  2222. importDesc: '将 .bbscfg、.bbsflmt、.orca_filament、.zip 或 .json 文件拖放到此处',
  2223. importing: '导入中...',
  2224. search: '搜索本地预设...',
  2225. noPresets: '暂无本地预设',
  2226. badge: '本地',
  2227. edit: '编辑',
  2228. delete: '删除',
  2229. cancel: '取消',
  2230. deleteConfirmTitle: '删除预设',
  2231. deleteConfirm: '确定要删除此预设吗?此操作无法撤销。',
  2232. source: '来源',
  2233. inheritsFrom: '继承自',
  2234. filamentType: '类型',
  2235. vendor: '厂商',
  2236. compatiblePrinters: '兼容打印机',
  2237. nozzleTemp: '喷嘴温度',
  2238. cost: '成本',
  2239. density: '密度',
  2240. pressureAdvance: '压力推进',
  2241. filament: '耗材',
  2242. process: '工艺',
  2243. printer: '打印机',
  2244. toast: {
  2245. importSuccess: '已导入 {{count}} 个预设',
  2246. importSkipped: '跳过 {{count}} 个预设(重复)',
  2247. importError: '导入时出现 {{count}} 个错误',
  2248. deleted: '预设已删除',
  2249. updated: '预设已更新',
  2250. },
  2251. },
  2252. connectedAs: '已连接为',
  2253. logout: '退出登录',
  2254. noLogoutPermission: '您没有退出登录的权限',
  2255. failedToLoad: '加载配置文件失败',
  2256. retry: '重试',
  2257. time: {
  2258. justNow: '刚刚',
  2259. minsAgo: '{{count}} 分钟前',
  2260. hoursAgo: '{{count}} 小时前',
  2261. daysAgo: '{{count}} 天前',
  2262. },
  2263. toast: {
  2264. loggedOut: '已退出登录',
  2265. },
  2266. login: {
  2267. title: '连接到拓竹云',
  2268. subtitle: '跨设备同步您的切片预设',
  2269. email: '邮箱',
  2270. password: '密码',
  2271. region: '地区',
  2272. regionGlobal: '全球',
  2273. regionChina: '中国',
  2274. verificationCode: '验证码',
  2275. totpCode: '验证器代码',
  2276. checkEmail: '检查您的邮箱 ({{email}}) 获取 6 位验证码',
  2277. enterTotpHint: '输入验证器应用中的 6 位代码',
  2278. accessToken: '访问令牌',
  2279. accessTokenHint: '粘贴您的拓竹访问令牌(来自 Bambu Studio)',
  2280. back: '返回',
  2281. loginButton: '登录',
  2282. verifyButton: '验证',
  2283. setTokenButton: '设置令牌',
  2284. useToken: '改用访问令牌',
  2285. useEmail: '改用邮箱登录',
  2286. toast: {
  2287. loggedIn: '登录成功',
  2288. codeSent: '验证码已发送到您的邮箱',
  2289. enterTotp: '输入验证器应用中的代码',
  2290. tokenSet: '令牌设置成功',
  2291. },
  2292. },
  2293. presets: {
  2294. myPreset: '我的预设(可编辑)',
  2295. duplicate: '复制',
  2296. editable: '可编辑',
  2297. failedToLoadDetails: '加载预设详情失败',
  2298. deleteConfirm: '删除此预设?',
  2299. deleteWarning: '这将从拓竹云中永久删除"{{name}}"。此操作无法撤销。',
  2300. noDuplicatePermission: '您没有复制预设的权限',
  2301. noEditPermission: '您没有编辑预设的权限',
  2302. noDeletePermission: '您没有删除预设的权限',
  2303. types: {
  2304. filament: '耗材预设',
  2305. printer: '打印机预设',
  2306. process: '工艺预设',
  2307. },
  2308. toast: {
  2309. deleted: '预设已删除',
  2310. created: '预设已创建',
  2311. updated: '预设已更新',
  2312. duplicated: '预设已复制',
  2313. fieldAdded: '字段"{{key}}"已添加',
  2314. exported: '预设已导出',
  2315. },
  2316. baseLabel: '基础:{{name}}',
  2317. currentLabel: '当前:{{name}}',
  2318. newPreset: '新建预设',
  2319. editPreset: '编辑预设',
  2320. duplicatePreset: '复制预设',
  2321. createNewPreset: '创建新预设',
  2322. customizeSettings: '自定义新预设的设置',
  2323. compareWithBase: '与基础预设比较',
  2324. compare: '比较',
  2325. // CreatePresetModal - Basic Info
  2326. basePreset: '基础预设',
  2327. selectBasePreset: '选择基础预设...',
  2328. presetName: '预设名称',
  2329. myCustomPreset: '我的自定义预设',
  2330. inheritsFrom: '继承自',
  2331. dropJsonToImport: '拖放 JSON 以导入',
  2332. // CreatePresetModal - Tabs
  2333. tabs: {
  2334. common: '常用',
  2335. allFields: '所有字段',
  2336. },
  2337. // CreatePresetModal - All Fields Tab
  2338. availableFields: '可用字段',
  2339. searchFieldsPlaceholder: '搜索字段...',
  2340. noMatchingFields: '没有匹配的字段',
  2341. allFieldsAdded: '所有字段已添加',
  2342. addCustomField: '添加自定义字段',
  2343. yourOverrides: '您的覆盖值',
  2344. noOverridesYet: '暂无覆盖值',
  2345. clickFieldsToAdd: '点击左侧的字段进行添加',
  2346. saveAsTemplate: '保存为模板',
  2347. jsonTip: '提示:将 .json 文件拖放到此对话框的任意位置以导入设置',
  2348. },
  2349. cloudView: {
  2350. searchPlaceholder: '搜索预设...',
  2351. templates: '模板',
  2352. refresh: '刷新',
  2353. newPreset: '新建预设',
  2354. clearFilters: '清除筛选',
  2355. // Compare mode
  2356. compareMode: '比较模式',
  2357. selectAnotherPreset: '选择另一个 {{type}} 预设',
  2358. clickTwoPresets: '点击两个相同类型的预设进行比较',
  2359. selectFirst: '1. 选择第一个',
  2360. selectSecond: '2. 选择第二个',
  2361. compareNow: '立即比较',
  2362. // Status row
  2363. lastSynced: '上次同步:',
  2364. showingCount: '显示 {{showing}} / {{total}} 个预设',
  2365. noPresetsFound: '未找到预设',
  2366. // Column headers
  2367. columns: {
  2368. filament: '耗材',
  2369. process: '工艺',
  2370. printer: '打印机',
  2371. },
  2372. noFilamentPresets: '无耗材预设',
  2373. noProcessPresets: '无工艺预设',
  2374. noPrinterPresets: '无打印机预设',
  2375. // Filters
  2376. filters: {
  2377. type: '类型',
  2378. owner: '所有者',
  2379. printer: '打印机',
  2380. nozzle: '喷嘴',
  2381. filament: '耗材',
  2382. layer: '层',
  2383. all: '全部',
  2384. myPresets: '我的预设',
  2385. builtIn: '内置',
  2386. process: '工艺',
  2387. },
  2388. // Permissions
  2389. noTemplatesPermission: '您没有管理模板的权限',
  2390. noRefreshPermission: '您没有刷新配置文件的权限',
  2391. noCreatePermission: '您没有创建预设的权限',
  2392. },
  2393. templates: {
  2394. title: '快速模板',
  2395. noTemplates: '暂无模板',
  2396. createFirst: '从预设编辑器创建模板',
  2397. typeFilter: '类型:',
  2398. deleteTitle: '删除模板',
  2399. deleteWarning: '此操作无法撤销',
  2400. deleteConfirm: '确定要删除"{{name}}"吗?',
  2401. namePlaceholder: '模板名称',
  2402. descriptionPlaceholder: '描述',
  2403. settingsJson: '设置 (JSON)',
  2404. fieldsCount: '{{count}} 个字段',
  2405. shownInModals: '在对话框中显示',
  2406. hiddenInModals: '在对话框中隐藏',
  2407. apply: '应用',
  2408. toast: {
  2409. deleted: '模板已删除',
  2410. updated: '模板已更新',
  2411. created: '模板已创建',
  2412. applied: '模板已应用',
  2413. },
  2414. },
  2415. },
  2416. // Support/Debug
  2417. support: {
  2418. debugLoggingActive: '调试日志记录已激活',
  2419. manageLogs: '管理',
  2420. collectItem7: '打印机连接和固件版本',
  2421. collectItem8: '集成状态(Spoolman、MQTT、HA)',
  2422. collectItem9: '网络接口(仅子网)',
  2423. collectItem10: 'Python 包版本',
  2424. collectItem11: '数据库健康检查',
  2425. collectItem12: 'Docker 环境详情',
  2426. },
  2427. // File manager
  2428. fileManager: {
  2429. title: '文件管理器',
  2430. subtitle: '组织和管理您的打印文件',
  2431. uploadFiles: '上传文件',
  2432. newFolder: '新建文件夹',
  2433. folderName: '文件夹名称',
  2434. folderNamePlaceholder: '例如:功能零件',
  2435. renameFile: '重命名文件',
  2436. renameFolder: '重命名文件夹',
  2437. moveFiles: '移动 {{count}} 个文件',
  2438. rootNoFolder: '根目录(无文件夹)',
  2439. current: '当前',
  2440. linkFolder: '链接文件夹',
  2441. linkFolderDescription: '将"{{name}}"链接到项目或归档以便快速访问。',
  2442. project: '项目',
  2443. archive: '归档',
  2444. noProjectsFound: '未找到项目',
  2445. noArchivesFound: '未找到归档',
  2446. unlink: '取消链接',
  2447. link: '链接',
  2448. dragDropFiles: '将文件拖放到此处',
  2449. dropFilesHere: '将文件放在此处',
  2450. orClickToBrowse: '或点击浏览',
  2451. allFileTypesSupported: '支持所有文件类型。ZIP 文件将被解压。',
  2452. zipFilesDetected: '检测到 ZIP 文件',
  2453. zipExtractOptions: 'ZIP 文件将被解压。选择如何处理文件夹结构:',
  2454. preserveZipStructure: '保留 ZIP 中的文件夹结构',
  2455. createFolderFromZip: '从 ZIP 文件名创建文件夹',
  2456. stlThumbnailGeneration: 'STL 缩略图生成',
  2457. zipMayContainStl: 'ZIP 文件可能包含 STL 文件。可以在解压时生成缩略图。',
  2458. thumbnailsCanBeGenerated: '可以为 STL 文件生成缩略图。大型模型可能需要更长时间处理。',
  2459. generateThumbnailsForStl: '为 STL 文件生成缩略图',
  2460. threemfDetected: '检测到 3MF 文件',
  2461. threemfExtractionInfo: '将自动从 3MF 文件中提取打印机型号、材料、颜色和打印设置。',
  2462. willBeExtracted: '将被解压',
  2463. filesExtracted: '已解压 {{count}} 个文件',
  2464. uploadComplete: '上传完成:{{succeeded}} 个成功',
  2465. uploadFailed: '{{count}} 个失败',
  2466. zipFilesFailed: '{{count}} 个文件失败',
  2467. uploading: '上传中...',
  2468. changeLink: '更改链接...',
  2469. linkTo: '链接到...',
  2470. linkToProjectOrArchive: '链接到项目或归档',
  2471. addToQueue: '添加到队列',
  2472. schedulePrint: '排程',
  2473. generateThumbnail: '生成缩略图',
  2474. generateThumbnails: '生成缩略图',
  2475. generateThumbnailsForMissing: '为缺少缩略图的 STL 文件生成缩略图',
  2476. gridView: '网格视图',
  2477. listView: '列表视图',
  2478. lowDiskSpaceWarning: '磁盘空间不足警告',
  2479. lowDiskSpaceDetails: '仅剩 {{free}}(总共 {{total}})。阈值设置为 {{threshold}} GB。',
  2480. files: '文件',
  2481. folders: '文件夹',
  2482. size: '大小',
  2483. free: '剩余',
  2484. allFiles: '所有文件',
  2485. wrap: '换行',
  2486. enableTextWrapping: '启用文本换行',
  2487. disableTextWrapping: '禁用文本换行',
  2488. dragToResizeTooltip: '拖动调整大小,双击重置',
  2489. searchFiles: '搜索文件...',
  2490. allTypes: '所有类型',
  2491. prints: '打印',
  2492. ascending: '升序',
  2493. descending: '降序',
  2494. resultsCount: '{{showing}} / {{total}} 个文件',
  2495. selectAll: '全选',
  2496. deselectAll: '取消全选',
  2497. selected: '已选择 {{count}} 个',
  2498. adding: '添加中...',
  2499. loadingFiles: '加载文件中...',
  2500. folderIsEmpty: '文件夹为空',
  2501. noFilesYet: '暂无文件',
  2502. folderEmptyDescription: '上传文件或将文件移入此文件夹以开始使用。',
  2503. noFilesDescription: '上传文件以开始组织您的打印相关文件。',
  2504. noMatchingFiles: '没有匹配的文件',
  2505. noMatchingFilesDescription: '没有文件匹配您当前的搜索或筛选条件。',
  2506. clearFilters: '清除筛选',
  2507. printedCount: '已打印 {{count}} 次',
  2508. uploadedBy: '上传者',
  2509. deleteFolder: '删除文件夹',
  2510. deleteFile: '删除文件',
  2511. deleteFilesCount: '删除 {{count}} 个文件',
  2512. deleteFolderConfirm: '确定要删除此文件夹吗?其中的所有文件也将被删除。',
  2513. deleteFileConfirm: '确定要删除此文件吗?',
  2514. deleteFilesConfirm: '确定要删除 {{count}} 个选中的文件吗?此操作无法撤销。',
  2515. deleting: '删除中...',
  2516. noPermissionRenameFolder: '您没有重命名文件夹的权限',
  2517. noPermissionLinkFolder: '您没有链接文件夹的权限',
  2518. noPermissionDeleteFolder: '您没有删除文件夹的权限',
  2519. noPermissionPrint: '您没有打印的权限',
  2520. noPermissionAddToQueue: '您没有添加到队列的权限',
  2521. noPermissionDownload: '您没有下载文件的权限',
  2522. noPermissionRenameFile: '您没有重命名此文件的权限',
  2523. noPermissionGenerateThumbnail: '您没有生成缩略图的权限',
  2524. noPermissionDeleteFile: '您没有删除此文件的权限',
  2525. noPermissionCreateFolder: '您没有创建文件夹的权限',
  2526. noPermissionUpload: '您没有上传文件的权限',
  2527. noPermissionMoveFiles: '您没有移动文件的权限',
  2528. noPermissionDeleteFiles: '您没有删除文件的权限',
  2529. // External folder
  2530. linkExternal: '链接外部',
  2531. linkExternalFolder: '链接外部文件夹',
  2532. linkExternalFolderDescription: '将主机目录(NAS、USB、网络共享)挂载到文件管理器中。文件不会被复制——直接从原始路径访问。',
  2533. externalFolderNamePlaceholder: '例如:NAS打印文件',
  2534. externalPath: '主机路径',
  2535. externalPathHelp: 'Docker主机上目录的绝对路径。必须以绑定挂载方式挂载到容器中。',
  2536. readOnly: '只读',
  2537. readOnlyHelp: '防止上传和删除',
  2538. showHiddenFiles: '显示隐藏文件(点文件)',
  2539. externalFolder: '外部文件夹',
  2540. scanFolder: '扫描',
  2541. toast: {
  2542. folderCreated: '文件夹已创建',
  2543. folderDeleted: '文件夹已删除',
  2544. fileDeleted: '文件已删除',
  2545. filesDeleted: '已删除 {{count}} 个文件',
  2546. filesMoved: '文件已移动',
  2547. folderLinked: '文件夹已链接',
  2548. folderUnlinked: '文件夹已取消链接',
  2549. externalFolderLinked: '外部文件夹已链接并扫描',
  2550. folderScanned: '扫描完成:添加 {{added}} 个,移除 {{removed}} 个',
  2551. addedToQueue: '已将 {{count}} 个文件添加到队列',
  2552. addedToQueuePartial: '已添加 {{added}} 个文件,{{failed}} 个失败',
  2553. failedToAddToQueue: '添加文件失败:{{error}}',
  2554. fileRenamed: '文件已重命名',
  2555. folderRenamed: '文件夹已重命名',
  2556. thumbnailsGenerated: '已生成 {{count}} 个缩略图',
  2557. thumbnailsGeneratedPartial: '已生成 {{succeeded}} 个缩略图,{{failed}} 个失败',
  2558. noStlMissingThumbnails: '没有缺少缩略图的 STL 文件',
  2559. failedToGenerateThumbnails: '生成缩略图失败:{{error}}',
  2560. thumbnailGenerated: '缩略图已生成',
  2561. failedToGenerateThumbnail: '生成缩略图失败:{{error}}',
  2562. },
  2563. },
  2564. // Projects
  2565. projects: {
  2566. title: '项目',
  2567. subtitle: '组织和跟踪您的 3D 打印项目',
  2568. newProject: '新建项目',
  2569. editProject: '编辑项目',
  2570. deleteProject: '删除项目',
  2571. projectName: '项目名称',
  2572. description: '描述',
  2573. noProjects: '暂无项目',
  2574. noProjectsFiltered: '没有{{status}}项目',
  2575. noProjectsFilteredHelp: '您没有任何{{status}}项目。当项目状态更改时,它们将出现在这里。',
  2576. createFirst: '创建您的第一个项目以开始组织相关打印、跟踪进度和管理构建。',
  2577. createFirstButton: '创建您的第一个项目',
  2578. create: '创建',
  2579. files: '文件',
  2580. prints: '打印',
  2581. plates: '板',
  2582. parts: '零件',
  2583. lastModified: '最后修改',
  2584. deleteConfirm: '确定要删除此项目吗?归档和队列项目将被取消链接但不会被删除。',
  2585. addFiles: '添加文件',
  2586. removeFile: '移除文件',
  2587. viewDetails: '查看详情',
  2588. // Modal fields
  2589. namePlaceholder: '例如:Voron 2.4 构建',
  2590. descriptionPlaceholder: '可选描述...',
  2591. color: '颜色',
  2592. targetPlates: '目标板数',
  2593. targetPlatesPlaceholder: '例如:25',
  2594. targetPlatesHelp: '打印任务数量',
  2595. targetParts: '目标零件数',
  2596. targetPartsPlaceholder: '例如:150',
  2597. targetPartsHelp: '所需零件总数',
  2598. tagsLabel: '标签(逗号分隔)',
  2599. tagsPlaceholder: '例如:voron、功能件、礼物',
  2600. dueDate: '截止日期',
  2601. priority: '优先级',
  2602. priorityLow: '低',
  2603. priorityNormal: '普通',
  2604. priorityHigh: '高',
  2605. priorityUrgent: '紧急',
  2606. // Status
  2607. statusActive: '进行中',
  2608. statusCompleted: '已完成',
  2609. statusArchived: '已归档',
  2610. done: '完成',
  2611. completed: '已完成',
  2612. failed: '失败',
  2613. inQueue: '队列中',
  2614. noPrintsYet: '暂无打印',
  2615. // Footer stats
  2616. printJobs: '打印任务(板)',
  2617. partsPrinted: '已打印零件',
  2618. failedParts: '失败零件',
  2619. // Actions
  2620. import: '导入',
  2621. export: '导出',
  2622. importProject: '导入项目',
  2623. exportAll: '导出所有项目',
  2624. loading: '加载项目中...',
  2625. // Permissions
  2626. noEditPermission: '您没有编辑项目的权限',
  2627. noDeletePermission: '您没有删除项目的权限',
  2628. noCreatePermission: '您没有创建项目的权限',
  2629. noImportPermission: '您没有导入项目的权限',
  2630. noExportPermission: '您没有导出项目的权限',
  2631. // Toast
  2632. toast: {
  2633. created: '项目已创建',
  2634. updated: '项目已更新',
  2635. deleted: '项目已删除',
  2636. imported: '项目已导入',
  2637. multipleImported: '已导入 {{count}} 个项目',
  2638. importFailed: '导入失败',
  2639. exported: '项目已导出(仅元数据)',
  2640. },
  2641. },
  2642. // Project detail page
  2643. projectDetail: {
  2644. notFound: '未找到项目',
  2645. backToProjects: '返回项目',
  2646. export: '导出',
  2647. exportProject: '导出项目',
  2648. noExportPermission: '您没有导出项目的权限',
  2649. noEditPermission: '您没有编辑项目的权限',
  2650. partOf: '属于:',
  2651. priorityLabel: '优先级:',
  2652. noPrints: '此项目暂无打印',
  2653. status: {
  2654. active: '进行中',
  2655. completed: '已完成',
  2656. archived: '已归档',
  2657. },
  2658. priority: {
  2659. low: '低',
  2660. normal: '普通',
  2661. high: '高',
  2662. urgent: '紧急',
  2663. },
  2664. dueDate: {
  2665. overdue: '已逾期',
  2666. today: '今天到期',
  2667. daysLeft: '还有 {{count}} 天',
  2668. },
  2669. progress: {
  2670. platesProgress: '板进度',
  2671. partsProgress: '零件进度',
  2672. printJobs: '打印任务',
  2673. parts: '零件',
  2674. percentComplete: '{{percent}}% 完成',
  2675. remaining: '剩余 {{count}} 个',
  2676. },
  2677. stats: {
  2678. printJobs: '打印任务',
  2679. total: '总计',
  2680. failed: '{{count}} 个失败',
  2681. partsPrinted: '已打印 {{count}} 个零件',
  2682. printTime: '打印时间',
  2683. filamentUsed: '耗材用量',
  2684. },
  2685. cost: {
  2686. title: '成本追踪',
  2687. filamentCost: '耗材成本',
  2688. energy: '能源',
  2689. totalCost: '总成本',
  2690. total: '总计',
  2691. includesBom: '含物料清单',
  2692. budget: '预算',
  2693. remaining: '剩余',
  2694. },
  2695. subProjects: {
  2696. title: '子项目 ({{count}})',
  2697. },
  2698. notes: {
  2699. title: '备注',
  2700. noEditPermission: '您没有编辑备注的权限',
  2701. placeholder: '添加关于此项目的备注...',
  2702. empty: '暂无备注。点击编辑添加备注。',
  2703. },
  2704. files: {
  2705. title: '文件',
  2706. linkFolders: '从文件管理器链接文件夹',
  2707. forQuickAccess: '到此项目以便快速访问。',
  2708. fileCount: '{{count}} 个文件',
  2709. empty: '未链接文件夹。前往文件管理器将文件夹链接到此项目。',
  2710. },
  2711. bom: {
  2712. title: '材料清单',
  2713. acquired: '已获取 {{completed}}/{{total}}',
  2714. showAll: '显示全部',
  2715. hideDone: '隐藏已完成',
  2716. addPart: '添加零件',
  2717. noAddPermission: '您没有添加零件的权限',
  2718. partNamePlaceholder: '零件名称(例如:M3x8 螺丝)',
  2719. partName: '零件名称',
  2720. qty: '数量',
  2721. price: '价格 ({{currency}})',
  2722. sourcingUrlPlaceholder: '采购链接(可选)',
  2723. remarksPlaceholder: '备注(可选)',
  2724. deletePart: '删除零件',
  2725. deleteConfirm: '确定要删除"{{name}}"吗?',
  2726. noUpdatePermission: '您没有更新零件的权限',
  2727. noEditPermission: '您没有编辑零件的权限',
  2728. noDeletePermission: '您没有删除零件的权限',
  2729. totalCost: '总成本:',
  2730. empty: '材料清单中没有零件。添加硬件、电子元件或其他组件以跟踪需要采购的物品。',
  2731. },
  2732. timeline: {
  2733. title: '活动时间线',
  2734. empty: '暂无活动。',
  2735. },
  2736. template: {
  2737. saveAsTemplate: '保存为模板',
  2738. noCreatePermission: '您没有创建模板的权限',
  2739. },
  2740. queue: {
  2741. title: '队列',
  2742. viewAll: '查看全部',
  2743. printing: '{{count}} 个打印中',
  2744. queued: '{{count}} 个排队中',
  2745. },
  2746. prints: {
  2747. title: '打印 ({{count}})',
  2748. },
  2749. toast: {
  2750. projectUpdated: '项目已更新',
  2751. partAdded: '零件已添加',
  2752. partRemoved: '零件已移除',
  2753. exportFailed: '导出失败',
  2754. projectExported: '项目已导出',
  2755. templateCreated: '模板已创建',
  2756. },
  2757. },
  2758. // System info
  2759. system: {
  2760. title: '系统信息',
  2761. version: '版本',
  2762. uptime: '运行时间',
  2763. cpuUsage: 'CPU 使用率',
  2764. memoryUsage: '内存使用率',
  2765. diskUsage: '磁盘使用率',
  2766. networkInfo: '网络信息',
  2767. logs: '日志',
  2768. debugMode: '调试模式',
  2769. enableDebug: '启用调试日志',
  2770. disableDebug: '禁用调试日志',
  2771. downloadLogs: '下载日志',
  2772. clearLogs: '清除日志',
  2773. dockerInfo: 'Docker 信息',
  2774. containerName: '容器名称',
  2775. imageName: '镜像名称',
  2776. platform: '平台',
  2777. architecture: '架构',
  2778. },
  2779. // Library (K Profiles)
  2780. library: {
  2781. title: '耗材库',
  2782. addFilament: '添加耗材',
  2783. editFilament: '编辑耗材',
  2784. deleteFilament: '删除耗材',
  2785. vendor: '厂商',
  2786. material: '材料',
  2787. color: '颜色',
  2788. kFactor: 'K 值',
  2789. temperature: '温度',
  2790. noFilaments: '耗材库中没有耗材',
  2791. deleteConfirm: '确定要删除此耗材吗?',
  2792. importFromPrinter: '从打印机导入',
  2793. exportToFile: '导出到文件',
  2794. },
  2795. // Spoolman
  2796. spoolman: {
  2797. title: 'Spoolman 集成',
  2798. enabled: 'Spoolman 已启用',
  2799. url: 'Spoolman URL',
  2800. connected: '已连接',
  2801. disconnected: '未连接',
  2802. testConnection: '测试连接',
  2803. sync: '同步',
  2804. syncing: '同步中...',
  2805. lastSync: '上次同步',
  2806. linkToSpoolman: '链接到 Spoolman',
  2807. openInSpoolman: '在 Spoolman 中打开',
  2808. unlinkSpool: '取消链接耗材',
  2809. unlinkConfirmTitle: '解开线轴?',
  2810. unlinkConfirmMessage: '这将断开卷轴与 Spoolman 的连接。Spoolman 中的卷轴数据将保持不变。',
  2811. selectSpool: '选择耗材',
  2812. noUnlinkedSpools: '无未链接的耗材',
  2813. linkSuccess: '耗材已成功链接到 Spoolman',
  2814. linkFailed: '链接耗材失败',
  2815. unlinkSuccess: '已成功从 Spoolman 取消链接耗材',
  2816. unlinkFailed: '取消链接耗材失败',
  2817. spoolId: '耗材 ID',
  2818. fillSourceLabel: '(Spoolman)',
  2819. weight: '重量',
  2820. remaining: '剩余',
  2821. disableWeightSync: '禁用 AMS 估计重量同步',
  2822. disableWeightSyncDesc: '不从 AMS 估计值更新剩余容量。如果您更喜欢 Spoolman 的用量追踪而非 AMS 百分比估计,请使用此选项。新耗材仍将使用 AMS 估计值作为初始重量。',
  2823. reportPartialUsage: '报告失败打印的部分用量',
  2824. reportPartialUsageDesc: '当打印失败或被取消时,根据层进度报告估计的耗材使用量。',
  2825. },
  2826. // Inventory
  2827. inventory: {
  2828. title: '耗材库存',
  2829. addSpool: '添加耗材',
  2830. editSpool: '编辑耗材',
  2831. material: '材料',
  2832. selectMaterial: '选择材料...',
  2833. subtype: '子类型',
  2834. brand: '品牌',
  2835. searchBrand: '搜索品牌...',
  2836. useCustomBrand: '使用"{{brand}}"',
  2837. useCustomMaterial: '使用自定义材料:{{material}}',
  2838. colorName: '颜色名称',
  2839. colorNamePlaceholder: '翡翠白、烈焰红...',
  2840. color: '颜色',
  2841. hexColor: '十六进制颜色',
  2842. pickColor: '选择自定义颜色',
  2843. labelWeight: '标签重量',
  2844. coreWeight: '空盘重量',
  2845. searchSpoolWeight: '搜索耗材重量...',
  2846. weightUsed: '已使用',
  2847. currentWeight: '剩余重量',
  2848. measuredWeight: '称量重量',
  2849. spoolName: '线轴',
  2850. costPerKg: '每公斤成本',
  2851. measuredWeightError: '称量重量必须在 {{min}}g 到 {{max}}g 之间。',
  2852. slicerFilament: '切片耗材',
  2853. slicerFilamentName: '切片预设名称',
  2854. slicerPreset: '切片预设',
  2855. searchPresets: '搜索耗材预设...',
  2856. selectedPreset: '已选择',
  2857. noPresetsFound: '未找到预设',
  2858. tempOverrides: '温度覆盖',
  2859. note: '备注',
  2860. notePlaceholder: '关于此耗材的任何备注...',
  2861. archive: '归档',
  2862. restore: '恢复',
  2863. noSpools: '暂无耗材。添加您的第一个耗材开始使用。',
  2864. noManualSpools: '没有手动添加的耗材。请先向库存中添加耗材。',
  2865. kProfiles: 'K 值配置',
  2866. addKProfile: '添加 K 值配置',
  2867. assignSpool: '分配耗材',
  2868. unassignSpool: '取消分配',
  2869. assignSuccess: '耗材已分配,AMS 槽位已配置',
  2870. assignFailed: '分配耗材失败',
  2871. assignMismatchTitle: '材料不匹配',
  2872. assignMismatchMessage: '所选线轴材料 "{{spoolMaterial}}" 与 {{location}} 的料槽材料 "{{trayMaterial}}" 不匹配。仍要分配吗?',
  2873. assignMismatchConfirm: '仍然分配',
  2874. assignPartialMismatchMessage: '线轴材料 "{{spoolMaterial}}" 与 {{location}} 的 "{{trayMaterial}}" 相近但不完全一致。是否继续?',
  2875. assignProfileMismatchMessage: '线轴配置 "{{spoolProfile}}" 与 {{location}} 的料槽配置 "{{trayProfile}}" 不一致。是否继续?',
  2876. selectSpool: '选择要分配到此槽位的耗材',
  2877. assigned: '已分配',
  2878. assigning: '分配中...',
  2879. searchSpools: '搜索耗材...',
  2880. allMaterials: '所有材料',
  2881. filterByBrand: '按品牌筛选...',
  2882. showArchived: '显示已归档',
  2883. quickAdd: '快速添加(库存)',
  2884. quantity: '数量',
  2885. stock: '库存',
  2886. configured: '已配置',
  2887. spoolsCreated: '已创建 {{count}} 个耗材',
  2888. spoolCreated: '耗材已创建',
  2889. spoolUpdated: '耗材已更新',
  2890. spoolDeleted: '耗材已删除',
  2891. spoolArchived: '耗材已归档',
  2892. spoolRestored: '耗材已恢复',
  2893. deleteConfirm: '确定要删除此耗材吗?此操作无法撤销。',
  2894. archiveConfirm: '确定要归档此耗材吗?',
  2895. advancedSettings: '高级设置',
  2896. // Tabs
  2897. filamentInfoTab: '耗材信息',
  2898. paProfileTab: 'PA 配置',
  2899. filamentInfo: '耗材',
  2900. additional: '附加',
  2901. // Cloud
  2902. loadingPresets: '加载云端预设中...',
  2903. cloudConnected: '云端已连接',
  2904. cloudNotConnected: '云端未连接(使用默认值)',
  2905. // Colors
  2906. recentColors: '最近',
  2907. searchColors: '搜索颜色...',
  2908. searchResults: '搜索结果',
  2909. allColors: '所有颜色',
  2910. commonColors: '常用颜色',
  2911. showLess: '显示更少',
  2912. showAll: '显示全部',
  2913. noColorsFound: '没有颜色匹配您的搜索',
  2914. noResults: '未找到匹配项',
  2915. // PA Profiles
  2916. selectMaterialFirst: '请先在耗材信息选项卡中选择材料。',
  2917. noPrintersConfigured: '未配置打印机。添加打印机以使用 PA 配置。',
  2918. matchingFilter: '匹配',
  2919. anyBrand: '任何品牌',
  2920. anyVariant: '任何变体',
  2921. autoSelect: '自动选择',
  2922. matches: '匹配',
  2923. match: '匹配',
  2924. noMatches: '无匹配',
  2925. connected: '已连接',
  2926. offline: '离线',
  2927. printerOffline: '打印机离线。连接后查看校准配置。',
  2928. noKProfilesMatch: '没有 K 值配置匹配所选耗材。',
  2929. leftNozzle: '左喷嘴',
  2930. rightNozzle: '右喷嘴',
  2931. profilesSelected: '个校准配置已选择',
  2932. // Stats & enhanced table
  2933. totalInventory: '总库存',
  2934. totalConsumed: '总消耗',
  2935. byMaterial: '按材料',
  2936. inPrinter: '在打印机中',
  2937. lowStock: '库存不足',
  2938. sinceTracking: '自开始追踪',
  2939. loadedInAms: '已装载到 AMS/外置',
  2940. remaining: '剩余',
  2941. weightCheck: '重量检查',
  2942. lastWeighed: '上次称量',
  2943. neverWeighed: '从未称量',
  2944. search: '搜索耗材...',
  2945. showing: '显示',
  2946. to: '到',
  2947. of: '共',
  2948. show: '显示',
  2949. spools: '个耗材',
  2950. spool: '个耗材',
  2951. page: '页',
  2952. noSpoolsMatch: '未找到结果',
  2953. noSpoolsMatchDesc: '尝试调整您的搜索或筛选条件。',
  2954. active: '活跃',
  2955. archived: '已归档',
  2956. all: '全部',
  2957. used: '已使用',
  2958. new: '新的',
  2959. clearFilters: '清除筛选',
  2960. table: '表格',
  2961. cards: '卡片',
  2962. net: '净重',
  2963. // Grouping
  2964. groupSimilar: '分组',
  2965. groupedSpools: '{{count}} 个相同耗材',
  2966. groupedRows: '行',
  2967. // Column config
  2968. columns: '列',
  2969. configureColumns: '配置列',
  2970. configureColumnsDesc: '拖动以重新排序列或使用箭头。使用眼睛图标切换可见性。',
  2971. visible: '可见',
  2972. reset: '重置',
  2973. cancel: '取消',
  2974. applyChanges: '应用更改',
  2975. moveUp: '上移',
  2976. moveDown: '下移',
  2977. hideColumn: '隐藏列',
  2978. showColumn: '显示列',
  2979. // Tag linking
  2980. linkToSpool: '链接到耗材',
  2981. tagLinked: '标签已链接到耗材',
  2982. tagLinkFailed: '链接标签失败',
  2983. tagAlreadyLinked: '标签已链接到其他耗材',
  2984. unknownTag: '检测到未知 RFID 标签',
  2985. // Usage history
  2986. usageHistory: '使用历史',
  2987. noUsageHistory: '暂无使用记录',
  2988. printName: '打印名称',
  2989. weightConsumed: '消耗重量',
  2990. clearHistory: '清除',
  2991. historyCleared: '使用历史已清除',
  2992. fillSourceLabel: '(库存)',
  2993. lowStockThresholdError: '阈值必须在 0.1 到 99.9 之间',
  2994. },
  2995. // Timelapse
  2996. timelapse: {
  2997. title: '延时摄影',
  2998. create: '创建延时摄影',
  2999. download: '下载',
  3000. delete: '删除',
  3001. preview: '预览',
  3002. frameRate: '帧率',
  3003. quality: '质量',
  3004. processing: '处理中...',
  3005. noTimelapses: '无可用延时摄影',
  3006. },
  3007. // AMS
  3008. ams: {
  3009. title: 'AMS',
  3010. slot: '槽位',
  3011. empty: '空',
  3012. emptySlot: '空槽位',
  3013. unknown: '未知',
  3014. humidity: '湿度',
  3015. temperature: '温度',
  3016. filamentType: '耗材类型',
  3017. filamentColor: '颜色',
  3018. remaining: '剩余',
  3019. history: 'AMS 历史',
  3020. noHistory: '无可用历史',
  3021. configureSlot: '配置槽位',
  3022. externalSpool: '外置耗材',
  3023. profile: '配置',
  3024. kFactor: 'K 值',
  3025. fill: '填充',
  3026. configure: '配置',
  3027. used: '已使用',
  3028. remainingUnit: '剩余',
  3029. },
  3030. // Print modal
  3031. printModal: {
  3032. title: '开始打印',
  3033. selectPrinter: '选择打印机',
  3034. selectPlate: '选择板',
  3035. filamentMapping: '耗材映射',
  3036. totalCost: '总成本:',
  3037. slotRemainingShort: ' - 剩余 {{grams}}g',
  3038. printSettings: '打印设置',
  3039. bedLeveling: '热床调平',
  3040. flowCalibration: '流量校准',
  3041. vibrationCalibration: '振动校准',
  3042. layerInspection: '首层检查',
  3043. timelapse: '延时摄影',
  3044. startPrint: '开始打印',
  3045. addToQueue: '添加到队列',
  3046. cancel: '取消',
  3047. noPrintersAvailable: '无可用打印机',
  3048. printerBusy: '打印机忙碌',
  3049. printerOffline: '打印机离线',
  3050. sameTypeDifferentColor: '相同类型,不同颜色',
  3051. filamentTypeNotLoaded: '耗材类型未装载',
  3052. openCalendar: '打开日历',
  3053. leftNozzle: '左',
  3054. rightNozzle: '右',
  3055. leftNozzleTooltip: '左喷嘴',
  3056. rightNozzleTooltip: '右喷嘴',
  3057. filamentOverride: '耗材覆盖',
  3058. filamentOverrideHint: '可选覆盖用于基于模型的耗材分配。调度器将使用您选择的耗材而不是原始 3MF 值进行匹配。',
  3059. originalFilament: '原始',
  3060. overrideWith: '覆盖为',
  3061. resetToOriginal: '恢复为原始',
  3062. insufficientFilamentTitle: '耗材不足',
  3063. insufficientFilamentMessage: '部分已分配线轴的剩余耗材少于本次打印所需:',
  3064. insufficientFilamentLine: '{{printer}} - {{slot}}:需要 {{required}}g,剩余 {{remaining}}g',
  3065. printAnyway: '仍然打印',
  3066. forceColorMatch: '强制颜色匹配',
  3067. },
  3068. // Backup
  3069. backup: {
  3070. title: '备份与恢复',
  3071. createBackup: '创建备份',
  3072. restoreBackup: '恢复备份',
  3073. restoreDescription: '从备份文件替换所有数据',
  3074. downloadBackup: '下载备份',
  3075. uploadBackup: '上传备份',
  3076. lastBackup: '上次备份',
  3077. autoBackup: '自动备份',
  3078. backupNow: '立即备份',
  3079. restoreWarning: '警告:恢复备份将覆盖所有当前数据。',
  3080. includeArchives: '包含归档',
  3081. includeSettings: '包含设置',
  3082. includeProfiles: '包含配置文件',
  3083. backupSuccess: '备份创建成功',
  3084. restoreSuccess: '备份恢复成功',
  3085. backupFailed: '备份失败',
  3086. restoreFailed: '恢复失败',
  3087. restoreNote: '恢复期间虚拟打印机将停止',
  3088. // GitHub Backup
  3089. githubBackup: 'GitHub 备份',
  3090. enabled: '已启用',
  3091. cloudLoginRequired: '需要登录 Bambu Cloud。请在 配置文件 → 云配置文件 中登录以启用 GitHub 备份。',
  3092. cloudLoginRequiredShort: '需要Cloud登录',
  3093. githubDescription: '自动将您的配置文件同步到私有 GitHub 仓库以进行备份和版本历史记录。',
  3094. repositoryUrl: '仓库 URL',
  3095. personalAccessToken: '个人访问令牌',
  3096. tokenSaved: '(已保存)',
  3097. enterNewToken: '输入新令牌以更新',
  3098. tokenHint: '具有内容读写权限的细粒度令牌',
  3099. branch: '分支',
  3100. manualOnly: '仅手动',
  3101. hourly: '每小时',
  3102. daily: '每天',
  3103. weekly: '每周',
  3104. includeInBackup: '包含在备份中',
  3105. kProfiles: 'K 配置文件',
  3106. kProfilesDescription: '来自已连接打印机的压力推进校准',
  3107. noPrintersConnected: '没有打印机连接',
  3108. printersConnected: '{{connected}}/{{total}} 已连接',
  3109. cloudProfiles: '云配置文件',
  3110. cloudProfilesDescription: '来自 Bambu Cloud 的耗材、打印机和工艺预设',
  3111. appSettings: '应用设置',
  3112. appSettingsDescription: 'Bambuddy 配置(完整数据库)',
  3113. lastBackupAt: '上次备份:',
  3114. noBackupsYet: '尚无备份',
  3115. next: '下次:',
  3116. startingBackup: '正在启动备份...',
  3117. test: '测试',
  3118. enableBackup: '启用备份',
  3119. testConnection: '测试连接',
  3120. enterRepoUrl: '请输入仓库 URL',
  3121. enterRepoAndToken: '请输入仓库 URL 和访问令牌',
  3122. repoRequired: '仓库 URL 为必填项',
  3123. tokenRequired: '访问令牌为必填项',
  3124. githubBackupEnabled: 'GitHub 备份已启用',
  3125. tokenUpdated: '令牌已更新',
  3126. settingsSaved: '设置已保存',
  3127. failedToSave: '保存失败:{{message}}',
  3128. backupCompleteFiles: '备份完成 - {{count}} 个文件已更新',
  3129. backupSkippedNoChanges: '备份已跳过 - 无更改',
  3130. backupFailed2: '备份失败:{{message}}',
  3131. clearedLogs: '已清除 {{count}} 条日志',
  3132. failedToClearLogs: '清除日志失败:{{message}}',
  3133. // History
  3134. history: '历史记录',
  3135. clear: '清除',
  3136. date: '日期',
  3137. status: '状态',
  3138. commit: '提交',
  3139. // Local Backup
  3140. localBackup: '本地备份',
  3141. localBackupDescription: '创建 Bambuddy 数据的完整备份,包括数据库、档案、上传和所有文件。',
  3142. downloadBackupLabel: '下载备份',
  3143. completeBackupZip: '完整备份:数据库 + 所有文件(ZIP)',
  3144. download: '下载',
  3145. preparingBackup: '正在准备备份...',
  3146. creatingArchive: '正在创建备份归档...对于大型归档可能需要一些时间。',
  3147. downloadingFile: '正在下载备份文件...',
  3148. backupDownloaded: '备份下载成功',
  3149. failedToCreateBackup: '创建备份失败:{{message}}',
  3150. restore: '恢复',
  3151. restoreReplacesAll: '恢复将替换所有数据。',
  3152. restoreReplacesAllDetail: '您当前的数据库和文件将被完全替换。恢复后需要重启。',
  3153. restoreConfirmTitle: '恢复备份',
  3154. restoreConfirmMessage: '您确定要从"{{filename}}"恢复吗?这将完全替换您当前的数据库和所有文件。恢复后需要重启应用程序。',
  3155. restoreConfirmButton: '恢复备份',
  3156. uploadingFile: '正在上传备份文件...',
  3157. backupRestoredRestart: '备份已恢复。请重启 Bambuddy。',
  3158. failedToRestore: '恢复备份失败。请检查文件格式。',
  3159. reloadNow: '立即重新加载',
  3160. creatingBackup: '正在创建备份',
  3161. restoringBackup: '正在恢复备份',
  3162. preparing: '准备中...',
  3163. processing: '处理中...',
  3164. doNotClosePage: '请不要关闭此页面或导航离开。对于大型备份,此操作可能需要几分钟。',
  3165. // RestoreModal
  3166. restoring: '恢复中...',
  3167. restoreComplete: '恢复完成',
  3168. restoreFailed2: '恢复失败',
  3169. importSettings: '从备份文件导入设置',
  3170. pleaseWaitRestoring: '请等待数据恢复中',
  3171. selectBackupFile: '点击选择备份文件(.json 或 .zip)',
  3172. duplicateHandling: '重复项处理方式:',
  3173. matchPrinters: '打印机',
  3174. matchPrintersBy: '按序列号匹配',
  3175. matchSmartPlugs: '智能插座',
  3176. matchSmartPlugsBy: '按 IP 地址匹配',
  3177. matchNotificationProviders: '通知提供者',
  3178. matchNotificationProvidersBy: '按名称匹配',
  3179. matchFilaments: '耗材',
  3180. matchFilamentsBy: '按名称 + 类型 + 品牌匹配',
  3181. matchArchives: '档案',
  3182. matchArchivesBy: '按内容哈希匹配(始终跳过)',
  3183. matchPendingUploads: '待上传',
  3184. matchPendingUploadsBy: '按文件名匹配',
  3185. matchSettingsTemplates: '设置和模板',
  3186. matchSettingsTemplatesBy: '始终覆盖',
  3187. replaceExisting: '替换现有数据',
  3188. keepExisting: '保留现有数据',
  3189. overwriteDescription: '用备份数据覆盖已存在的项目',
  3190. keepDescription: '仅恢复尚不存在的项目',
  3191. overwriteCaution: '注意:',
  3192. overwriteWarning: '覆盖将用备份数据替换您当前的配置。出于安全考虑,打印机访问代码永远不会被覆盖。',
  3193. cancel: '取消',
  3194. processingBackup: '正在处理备份文件...',
  3195. itemsRestored: '已恢复项目',
  3196. itemsSkipped: '已跳过项目',
  3197. restored: '已恢复',
  3198. skippedAlreadyExist: '已跳过(已存在)',
  3199. filesCategory: '文件(3MF、缩略图等)',
  3200. andMore: '...还有 {{count}} 项',
  3201. newApiKeysGenerated: '已生成新的 API 密钥',
  3202. keysShownOnce: '这些密钥仅显示一次。请立即复制!',
  3203. copy: '复制',
  3204. noDataFound: '在备份文件中未找到可恢复的数据。',
  3205. close: '关闭',
  3206. // Category labels
  3207. categories: {
  3208. settings: '设置',
  3209. notification_providers: '通知提供者',
  3210. notification_templates: '通知模板',
  3211. smart_plugs: '智能插座',
  3212. printers: '打印机',
  3213. filaments: '耗材',
  3214. maintenance_types: '维护类型',
  3215. archives: '档案',
  3216. projects: '项目',
  3217. pending_uploads: '待上传',
  3218. external_links: '外部链接',
  3219. api_keys: 'API 密钥',
  3220. },
  3221. },
  3222. // Tags
  3223. tags: {
  3224. title: '标签',
  3225. addTag: '添加标签',
  3226. editTag: '编辑标签',
  3227. deleteTag: '删除标签',
  3228. tagName: '标签名称',
  3229. tagColor: '标签颜色',
  3230. noTags: '无标签',
  3231. deleteConfirm: '确定要删除此标签吗?',
  3232. manageTags: '管理标签',
  3233. },
  3234. // Upload modal (archives)
  3235. uploadModal: {
  3236. title: '上传 3MF 文件',
  3237. dragDrop: '将 .3mf 文件拖放到此处',
  3238. or: '或',
  3239. browseFiles: '浏览文件',
  3240. extractionInfo: '将从 3MF 文件元数据中自动提取打印机型号。',
  3241. uploaded: '已上传',
  3242. failed: '失败',
  3243. uploading: '上传中...',
  3244. upload: '上传',
  3245. uploadFailed: '上传失败',
  3246. },
  3247. // Edit archive modal
  3248. // Edit Archive Modal
  3249. editArchive: {
  3250. title: '编辑归档',
  3251. name: '名称',
  3252. namePlaceholder: '打印名称',
  3253. printer: '打印机',
  3254. noPrinter: '无打印机',
  3255. project: '项目',
  3256. noProject: '无项目',
  3257. itemsPrinted: '打印数量',
  3258. itemsPrintedHelp: '此打印任务中生产的物品数量',
  3259. notes: '备注',
  3260. notesPlaceholder: '添加关于此打印的备注...',
  3261. externalLink: '外部链接',
  3262. externalLinkPlaceholder: 'https://printables.com/model/...',
  3263. externalLinkHelp: '链接到 Printables、Thingiverse 或其他来源',
  3264. tags: '标签',
  3265. tagsPlaceholder: '添加标签...',
  3266. addMoreTags: '添加更多标签...',
  3267. matchingTags: '匹配"{{query}}"',
  3268. existingTags: '现有标签',
  3269. clickToAdd: '(点击添加)',
  3270. status: '状态',
  3271. failureReason: '失败原因',
  3272. selectReason: '选择原因...',
  3273. photos: '打印成品照片',
  3274. photosHelp: '点击 + 添加打印成品照片',
  3275. printResult: '打印成品',
  3276. saving: '保存中...',
  3277. // Failure reasons
  3278. failureReasons: {
  3279. adhesionFailure: '附着力失败',
  3280. spaghettiDetached: '拉丝 / 脱落',
  3281. layerShift: '层偏移',
  3282. cloggedNozzle: '喷嘴堵塞',
  3283. filamentRunout: '耗材用完',
  3284. warping: '翘曲',
  3285. stringing: '拉丝',
  3286. underExtrusion: '挤出不足',
  3287. powerFailure: '断电',
  3288. userCancelled: '用户取消',
  3289. other: '其他',
  3290. },
  3291. // Archive statuses
  3292. statuses: {
  3293. completed: '已完成',
  3294. failed: '失败',
  3295. aborted: '已取消',
  3296. printing: '打印中',
  3297. },
  3298. },
  3299. // K-Profiles
  3300. kProfiles: {
  3301. title: 'K 值配置',
  3302. noPrintersConfigured: '未配置打印机',
  3303. addPrinterInSettings: '在设置中添加打印机以管理 K 值配置',
  3304. noActivePrinters: '无活跃打印机',
  3305. enablePrinterConnection: '启用打印机连接以查看其 K 值配置',
  3306. loadingProfiles: '加载 K 值配置中...',
  3307. printerOffline: '打印机离线',
  3308. printerOfflineDesc: '所选打印机未连接。开启电源以查看 K 值配置。',
  3309. noMatchingProfiles: '无匹配的配置',
  3310. noMatchingProfilesDesc: '没有配置匹配您的搜索条件',
  3311. noKProfiles: '无 K 值配置',
  3312. noKProfilesDesc: '未找到 {{diameter}}mm 喷嘴的压力推进配置',
  3313. createFirstProfile: '创建第一个配置',
  3314. // Controls
  3315. printer: '打印机',
  3316. nozzle: '喷嘴',
  3317. refresh: '刷新',
  3318. addProfile: '添加配置',
  3319. export: '导出',
  3320. import: '导入',
  3321. select: '选择',
  3322. selectAll: '全选',
  3323. delete: '删除',
  3324. // Filters
  3325. searchPlaceholder: '按名称或耗材搜索...',
  3326. allExtruders: '所有挤出机',
  3327. leftOnly: '仅左侧',
  3328. rightOnly: '仅右侧',
  3329. allFlow: '所有流量',
  3330. hfOnly: '仅高流量',
  3331. sOnly: '仅标准',
  3332. sortName: '排序:名称',
  3333. sortKValue: '排序:K 值',
  3334. sortFilament: '排序:耗材',
  3335. // Dual extruder labels
  3336. leftExtruder: '左挤出机',
  3337. rightExtruder: '右挤出机',
  3338. // Modal
  3339. modal: {
  3340. addTitle: '添加 K 值配置',
  3341. editTitle: '编辑 K 值配置',
  3342. profileName: '配置名称',
  3343. profileNamePlaceholder: '我的 PLA 配置',
  3344. kValue: 'K 值',
  3345. kValuePlaceholder: '0.020',
  3346. kValueHelp: '典型范围:PLA 0.01 - 0.06,PETG 0.02 - 0.10',
  3347. filament: '耗材',
  3348. selectFilament: '选择耗材...',
  3349. noFilamentsHelp: '未找到耗材。请先在 Bambu Studio 中创建 K 值配置。',
  3350. flowType: '流量类型',
  3351. highFlow: '高流量',
  3352. standard: '标准',
  3353. nozzleSize: '喷嘴尺寸',
  3354. extruder: '挤出机',
  3355. extruders: '挤出机',
  3356. left: '左',
  3357. right: '右',
  3358. notes: '备注(本地存储)',
  3359. notesPlaceholder: '添加关于此配置的备注...',
  3360. notesHelp: '备注保存在 Bambuddy 中,不在打印机上',
  3361. syncing: '与打印机同步中...',
  3362. savingExtruder: '保存到挤出机 {{current}}/{{total}}...',
  3363. pleaseWait: '请稍候',
  3364. },
  3365. // Delete confirmation
  3366. deleteConfirm: {
  3367. title: '删除配置',
  3368. cannotUndo: '此操作无法撤销',
  3369. message: '确定要从打印机删除"{{name}}"吗?',
  3370. },
  3371. // Bulk delete
  3372. bulkDelete: {
  3373. title: '删除配置',
  3374. cannotUndo: '此操作无法撤销',
  3375. message: '确定要从打印机删除 {{count}} 个选中的配置吗?',
  3376. },
  3377. // Toast
  3378. toast: {
  3379. profileSaved: 'K 值配置已保存',
  3380. profilesSaved: 'K 值配置已保存到 {{count}} 个挤出机',
  3381. selectAtLeastOneExtruder: '请至少选择一个挤出机',
  3382. profileDeleted: 'K 值配置已删除',
  3383. profilesDeleted: '已删除 {{count}} 个配置',
  3384. exportedProfiles: '已导出 {{count}} 个配置',
  3385. importedProfiles: '已导入 {{count}} / {{total}} 个配置',
  3386. noProfilesToExport: '无可导出的配置',
  3387. invalidFileFormat: '无效的文件格式',
  3388. failedToParseImport: '解析导入文件失败',
  3389. failedToSaveBatch: '批量保存 K 值配置失败',
  3390. noteSaved: '备注已保存',
  3391. failedToSaveNote: '保存备注失败',
  3392. },
  3393. // Permissions
  3394. permission: {
  3395. noRead: '您没有刷新配置的权限',
  3396. noCreate: '您没有添加配置的权限',
  3397. noUpdate: '您没有更新 K 值配置的权限',
  3398. noDelete: '您没有删除 K 值配置的权限',
  3399. noExport: '您没有导出配置的权限',
  3400. noImport: '您没有导入配置的权限',
  3401. },
  3402. },
  3403. // Virtual Printer
  3404. virtualPrinter: {
  3405. title: '虚拟打印机',
  3406. running: '运行中',
  3407. stopped: '已停止',
  3408. description: {
  3409. default: '启用虚拟打印机,使其在 Bambu Studio 和 OrcaSlicer 中可见。发送到此打印机的文件将直接归档而不打印。',
  3410. proxy: '启用代理,将切片软件流量中继到真实打印机,允许在任何网络上远程打印。',
  3411. },
  3412. enable: {
  3413. title: '启用虚拟打印机',
  3414. visibleInSlicer: '在切片软件发现中显示为"Bambuddy"',
  3415. proxyingTo: '代理到 {{name}}',
  3416. notActive: '未激活',
  3417. },
  3418. model: {
  3419. title: '打印机型号',
  3420. description: '选择要模拟的打印机型号。',
  3421. restartWarning: '更改型号将重启虚拟打印机',
  3422. },
  3423. accessCode: {
  3424. title: '访问码',
  3425. isSet: '访问码已设置',
  3426. notSet: '未设置访问码 - 需要设置才能启用',
  3427. placeholder: '输入 8 位字符代码',
  3428. placeholderChange: '输入新代码以更改',
  3429. hint: '必须恰好 8 个字符。切片软件使用此代码进行认证。',
  3430. charCount: '({{count}}/8)',
  3431. },
  3432. targetPrinter: {
  3433. title: '目标打印机',
  3434. configured: '代理目标已配置',
  3435. notConfigured: '未选择目标打印机 - 代理模式需要设置',
  3436. placeholder: '选择打印机...',
  3437. hint: '选择要将切片软件流量代理到的打印机。打印机必须处于局域网模式。',
  3438. noPrinters: '未配置打印机。请先添加打印机以使用代理模式。',
  3439. },
  3440. remoteInterface: {
  3441. title: '网络接口覆盖',
  3442. configured: '接口覆盖已激活',
  3443. optional: '可选 - 当自动检测的 IP 不正确时使用(例如多网卡、Docker、VPN)',
  3444. placeholder: '自动检测(默认)...',
  3445. hint: '覆盖通过 SSDP 广播并在 TLS 证书中使用的 IP 地址。在 Bambuddy 有多个网络接口时很有用。',
  3446. },
  3447. mode: {
  3448. title: '模式',
  3449. archive: '归档',
  3450. archiveDesc: '立即归档文件',
  3451. review: '审核',
  3452. reviewDesc: '归档前审核',
  3453. queue: '队列',
  3454. queueDesc: '归档并添加到队列',
  3455. proxy: '代理',
  3456. proxyDesc: '中继到真实打印机',
  3457. },
  3458. autoDispatch: {
  3459. title: '自动派发',
  3460. description: '添加到队列时自动开始打印。关闭后,打印任务等待手动派发。',
  3461. },
  3462. setupRequired: {
  3463. title: '需要设置',
  3464. description: '虚拟打印机功能需要额外的系统配置才能工作。包括端口转发、防火墙规则和平台特定设置。',
  3465. readGuide: '启用前请阅读设置指南',
  3466. },
  3467. howItWorks: {
  3468. title: '工作原理',
  3469. step1: '在同一局域网中,虚拟打印机会通过发现机制自动出现在您的切片软件(Bambu Studio / OrcaSlicer)中。从其他网络,通过 IP 地址和访问码手动添加。',
  3470. step2: '在归档、审核和队列模式下,使用切片软件中的"发送"按钮将 3MF 文件上传到 Bambuddy。切片软件会显示"打印成功"— 文件已存储,未打印。',
  3471. step3: '在代理模式下,虚拟打印机将所有流量中继到真实打印机 — 打印会立即开始,就像直接连接一样。',
  3472. },
  3473. status: {
  3474. title: '状态详情',
  3475. printerName: '打印机名称',
  3476. model: '型号',
  3477. serialNumber: '序列号',
  3478. mode: '模式',
  3479. pendingFiles: '待处理文件',
  3480. targetPrinter: '目标打印机',
  3481. ftpPort: 'FTP 端口',
  3482. mqttPort: 'MQTT 端口',
  3483. ftpConnections: 'FTP 连接',
  3484. mqttConnections: 'MQTT 连接',
  3485. },
  3486. toast: {
  3487. updated: '虚拟打印机设置已更新',
  3488. failedToUpdate: '更新设置失败',
  3489. accessCodeRequired: '请先设置访问码',
  3490. targetPrinterRequired: '请先选择目标打印机',
  3491. bindIpRequired: '请先设置绑定 IP',
  3492. accessCodeEmpty: '访问码不能为空',
  3493. accessCodeLength: '访问码必须恰好 8 个字符',
  3494. created: '虚拟打印机已创建',
  3495. failedToCreate: '创建虚拟打印机失败',
  3496. deleted: '虚拟打印机已删除',
  3497. failedToDelete: '删除虚拟打印机失败',
  3498. },
  3499. list: {
  3500. title: '虚拟打印机',
  3501. add: '添加',
  3502. addFirst: '添加虚拟打印机',
  3503. empty: '未配置虚拟打印机。添加一个以开始使用。',
  3504. },
  3505. bindIp: {
  3506. title: '绑定接口',
  3507. placeholder: '选择接口...',
  3508. hint: '此虚拟打印机绑定的网络接口。每台打印机必须唯一。',
  3509. },
  3510. proxy: {
  3511. accessCodeHint: '在代理模式下,在切片软件中使用目标打印机的访问码。连接会透明转发到真实打印机。',
  3512. },
  3513. addDialog: {
  3514. title: '添加虚拟打印机',
  3515. name: '名称',
  3516. hint: '创建后可以配置访问码、目标打印机和其他设置。',
  3517. create: '创建',
  3518. },
  3519. deleteConfirm: {
  3520. title: '删除虚拟打印机',
  3521. message: '确定要删除"{{name}}"吗?这将停止此打印机的所有服务。',
  3522. },
  3523. },
  3524. // Model Viewer
  3525. modelViewer: {
  3526. openInSlicer: '在切片软件中打开',
  3527. tabs: {
  3528. model: '3D 模型',
  3529. gcode: 'G-code 预览',
  3530. },
  3531. notAvailable: '不可用',
  3532. notSliced: '未切片',
  3533. plates: '板',
  3534. allPlates: '所有板',
  3535. plateNumber: '板 {{number}}',
  3536. plateCount: '{{count}} 个板',
  3537. plateCount_other: '{{count}} 个板',
  3538. objectCount: '{{count}} 个对象',
  3539. objectCount_other: '{{count}} 个对象',
  3540. filamentCount: '{{count}} 种耗材',
  3541. filamentCount_other: '{{count}} 种耗材',
  3542. eta: '预计 {{minutes}} 分钟',
  3543. noPreview: '此文件无可用预览',
  3544. pagination: {
  3545. pageOf: '第 {{current}} / {{total}} 页',
  3546. prev: '上一页',
  3547. next: '下一页',
  3548. },
  3549. errors: {
  3550. failedToLoad: '加载文件失败',
  3551. noMeshes: '3MF 文件中未找到网格',
  3552. unsupportedFormat: '不支持的文件格式',
  3553. },
  3554. },
  3555. // Maintenance type descriptions (built-in)
  3556. maintenanceDescriptions: {
  3557. lubricateCarbonRods: '在碳纤维杆上涂抹润滑剂以确保顺畅运动',
  3558. lubricateRails: '在线性导轨上涂抹润滑剂以确保顺畅运动',
  3559. cleanNozzle: '清洁热端和喷嘴以防止堵塞',
  3560. checkBelts: '检查皮带张力以确保打印精度',
  3561. cleanBuildPlate: '清洁构建板以获得更好的附着力',
  3562. checkExtruder: '检查挤出机齿轮磨损情况',
  3563. checkCooling: '确保冷却风扇正常工作',
  3564. generalInspection: '打印机综合检查',
  3565. cleanCarbonRods: '清洁碳纤维杆以减少摩擦',
  3566. lubricateSteelRods: '在钢杆上涂抹润滑剂以确保顺畅运动',
  3567. cleanSteelRods: '清洁钢杆以减少摩擦',
  3568. cleanLinearRails: '擦拭线性导轨以清除灰尘和碎屑',
  3569. checkPtfeTube: '检查 PTFE 管的磨损或损坏',
  3570. replaceHepaFilter: '更换 HEPA 过滤器以保证空气质量',
  3571. replaceCarbonFilter: '更换活性炭过滤器',
  3572. lubricateLeftNozzleRail: '润滑左喷嘴导轨(H2 系列)',
  3573. },
  3574. // Smart Plugs
  3575. smartPlugs: {
  3576. offline: '离线',
  3577. admin: '管理',
  3578. openPlugAdminPage: '打开插座管理页面',
  3579. deleteSmartPlug: '删除智能插座',
  3580. turnOnSmartPlug: '开启智能插座',
  3581. turnOffSmartPlug: '关闭智能插座',
  3582. turnOn: '开启',
  3583. turnOff: '关闭',
  3584. addSmartPlug: {
  3585. scanningNetwork: '扫描网络中...',
  3586. chooseEntity: '选择实体...',
  3587. connectionFailed: '连接失败',
  3588. searchEntities: '搜索实体...',
  3589. searchPowerSensors: '搜索功率传感器...',
  3590. searchEnergySensors: '搜索能量传感器...',
  3591. placeholders: {
  3592. plugName: '客厅插座',
  3593. mqttStateOnValue: 'ON、true、1',
  3594. mqttSameAsPower: '与功率主题相同,或不同',
  3595. },
  3596. },
  3597. // SmartPlugCard
  3598. linkedTo: '关联到:',
  3599. monitorOnly: '仅监控',
  3600. alerts: '警报',
  3601. scheduleOn: '开启 {{time}}',
  3602. scheduleOff: '关闭 {{time}}',
  3603. on: '开启',
  3604. off: '关闭',
  3605. power: '功率',
  3606. kwhToday: '今日kWh',
  3607. settings: '设置',
  3608. automationSettings: '自动化设置',
  3609. showInSwitchbar: '在开关栏显示',
  3610. quickAccessSidebar: '从侧边栏快速访问',
  3611. enabled: '已启用',
  3612. enableAutomation: '为此插座启用自动化',
  3613. autoOn: '自动开启',
  3614. autoOnDescription: '打印开始时开启',
  3615. autoOff: '自动关闭',
  3616. autoOffDescription: '打印完成时关闭(一次性)',
  3617. autoOffPersistent: '保持启用',
  3618. autoOffPersistentDescription: '在打印之间保持启用而非一次性',
  3619. turnOffDelayMode: '关闭延迟模式',
  3620. time: '时间',
  3621. temp: '温度',
  3622. delayMinutes: '延迟(分钟)',
  3623. tempThreshold: '温度阈值(°C)',
  3624. tempThresholdDescription: '当喷嘴冷却到此温度以下时关闭',
  3625. edit: '编辑',
  3626. deleteConfirm: '确定要删除"{{name}}"吗?此操作无法撤销。',
  3627. turnOnConfirm: '确定要开启"{{name}}"吗?',
  3628. turnOffConfirm: '确定要关闭"{{name}}"吗?这将切断连接设备的电源。',
  3629. failedToTurn: '无法{{action}}"{{name}}"',
  3630. unknown: '未知',
  3631. // AddSmartPlugModal
  3632. addTitle: '添加智能插座',
  3633. editTitle: '编辑智能插座',
  3634. stopScanning: '停止扫描',
  3635. discoverTasmota: '发现Tasmota设备',
  3636. foundDevices: '找到{{count}}个设备 - 点击选择:',
  3637. noDevicesFound: '未在您的网络中找到Tasmota设备',
  3638. haNotConfigured: 'Home Assistant未配置。请在以下位置设置',
  3639. haSettingsPath: '设置 → 网络 → Home Assistant',
  3640. selectEntity: '选择实体 *',
  3641. ipAddress: 'IP地址 *',
  3642. nameLabel: '名称 *',
  3643. username: '用户名',
  3644. password: '密码',
  3645. authHint: '如果您的Tasmota设备不需要认证,请留空',
  3646. linkToPrinter: '关联打印机',
  3647. noPrinter: '无打印机(仅手动控制)',
  3648. linkingDescription: '关联后可在打印开始/完成时自动开关',
  3649. powerAlerts: '功率警报',
  3650. alertAbove: '高于时警报(W)',
  3651. alertBelow: '低于时警报(W)',
  3652. alertDescription: '当电力消耗超过这些阈值时收到通知。留空以禁用该方向。',
  3653. dailySchedule: '每日计划',
  3654. turnOnAt: '开启时间',
  3655. turnOffAt: '关闭时间',
  3656. scheduleDescription: '每天在这些时间自动开关插座。留空以跳过该操作。',
  3657. showOnPrinterCard: '在打印机卡片上显示',
  3658. displayOnPrinterCard: '在打印机卡片上显示按钮',
  3659. connectedResult: '已连接!',
  3660. deviceLabel: '设备:{{name}} - ',
  3661. stateLabel: '状态:{{state}}',
  3662. test: '测试',
  3663. delete: '删除',
  3664. save: '保存',
  3665. add: '添加',
  3666. cancel: '取消',
  3667. failedToStartScan: '无法开始扫描',
  3668. nameRequired: '名称为必填项',
  3669. entityRequired: 'Home Assistant插座需要实体',
  3670. mqttTopicRequired: '必须为功率、能源或状态监控配置至少一个MQTT主题',
  3671. loadingEntities: '正在加载实体...',
  3672. loading: '加载中...',
  3673. failedToLoadEntities: '加载实体失败:{{error}}',
  3674. noEntitiesMatching: '未找到匹配"{{search}}"的实体',
  3675. noEntitiesAvailable: '无可用实体',
  3676. searchingEntities: '搜索所有实体(找到{{count}}个)',
  3677. showingEntities: '显示 switch、light、input_boolean({{count}}个可用)',
  3678. energyMonitoringOptional: '能源监控(可选)',
  3679. energyMonitoringHint: '搜索并选择提供功率/能源数据的传感器。',
  3680. powerSensorW: '功率传感器(W)',
  3681. energyTodayKwh: '今日能源(kWh)',
  3682. totalEnergyKwh: '总能源(kWh)',
  3683. noMatchingSensors: '无匹配的传感器',
  3684. none: '无',
  3685. mqttNotConfigured: 'MQTT代理未配置。请在以下位置设置代理地址',
  3686. mqttSettingsPath: '设置 → 网络 → MQTT发布',
  3687. mqttNotConfiguredSuffix: '(您不需要启用发布,只需填写代理详细信息)。',
  3688. mqttMonitorOnlyDescription: 'MQTT插座通过MQTT订阅接收功率/能源数据。开关控制不可用 - 请使用您的MQTT代理或家庭自动化系统。',
  3689. powerMonitoring: '功率监控',
  3690. energyMonitoring: '能源监控',
  3691. stateMonitoring: '状态监控',
  3692. optional: '可选',
  3693. topic: '主题',
  3694. jsonPath: 'JSON路径',
  3695. multiplier: '乘数',
  3696. onValue: 'ON值',
  3697. mqttPowerHint: 'JSON路径从JSON负载中提取值(例如"power_l1")。如果主题发布原始数值,请留空。\n乘数:mW→W使用0.001,kW→W使用1000。',
  3698. mqttEnergyHint: 'JSON路径从JSON负载中提取值。原始值请留空。\n乘数:Wh→kWh使用0.001,MWh→kWh使用1000。',
  3699. mqttStateHint: 'JSON路径从JSON负载中提取值。原始值请留空。\nON值:表示"ON"的确切字符串。留空以自动检测(ON、true、1)。',
  3700. noSwitchesInSwitchbar: '开关栏中没有开关',
  3701. enableSwitchbarHint: '在设置 > 智能插座中启用"在开关栏显示"',
  3702. },
  3703. // Notifications
  3704. notifications: {
  3705. // Provider types
  3706. providerTypes: {
  3707. callmebot: 'CallMeBot/WhatsApp',
  3708. ntfy: 'ntfy',
  3709. pushover: 'Pushover',
  3710. telegram: 'Telegram',
  3711. email: '电子邮件',
  3712. discord: 'Discord',
  3713. webhook: 'Webhook',
  3714. homeassistant: 'Home Assistant',
  3715. },
  3716. // Provider descriptions
  3717. providerDescriptions: {
  3718. email: 'SMTP 电子邮件通知',
  3719. telegram: '通过 Telegram 机器人发送通知',
  3720. discord: '通过 Webhook 发送到 Discord 频道',
  3721. ntfy: '免费、可自托管的推送通知',
  3722. pushover: '简单、可靠的推送通知',
  3723. callmebot: '通过 CallMeBot 免费发送 WhatsApp 通知',
  3724. webhook: '通用 HTTP POST 到任意 URL',
  3725. homeassistant: 'Home Assistant 仪表板中的持久通知',
  3726. },
  3727. // NotificationProviderCard
  3728. lastSuccess: '上次:{{date}}',
  3729. error: '错误',
  3730. printer: '打印机:',
  3731. allPrinters: '所有打印机',
  3732. sendTestNotification: '发送测试通知',
  3733. eventSettings: '事件设置',
  3734. enabled: '已启用',
  3735. sendFromProvider: '从此提供商发送通知',
  3736. // Event categories
  3737. printEvents: '打印事件',
  3738. printerStatus: '打印机状态',
  3739. amsAlarms: 'AMS 警报',
  3740. amsHtAlarms: 'AMS-HT 警报',
  3741. printQueue: '打印队列',
  3742. // Event tags (badges)
  3743. start: '开始',
  3744. plateCheck: '热床检测',
  3745. complete: '完成',
  3746. failed: '失败',
  3747. stopped: '已停止',
  3748. progress: '进度',
  3749. offline: '离线',
  3750. lowFilament: '耗材不足',
  3751. maintenance: '维护',
  3752. amsHumidity: 'AMS 湿度',
  3753. amsTemp: 'AMS 温度',
  3754. amsHtHumidity: 'AMS-HT 湿度',
  3755. amsHtTemp: 'AMS-HT 温度',
  3756. bedCooled: '热床已冷却',
  3757. firstLayer: '首层完成',
  3758. quiet: '免打扰',
  3759. digest: '摘要 {{time}}',
  3760. // Event labels (expanded settings)
  3761. printStarted: '打印已开始',
  3762. plateNotEmpty: '热床非空',
  3763. plateNotEmptyDescription: '打印前检测到物体',
  3764. printCompleted: '打印已完成',
  3765. bedCooledLabel: '热床已冷却',
  3766. bedCooledDescription: '打印后热床温度降至阈值以下',
  3767. firstLayerCompleteLabel: '首层打印完成',
  3768. firstLayerCompleteDescription: '首层完成时发送带照片的通知',
  3769. missingSpoolAssignmentLabel: '缺少料卷分配',
  3770. missingSpoolAssignmentDescription: '当打印开始且所需料盘没有分配料卷时发送通知',
  3771. printFailed: '打印失败',
  3772. printStopped: '打印已停止',
  3773. progressMilestones: '进度里程碑',
  3774. progressMilestonesDescription: '在 25%、50%、75% 时通知',
  3775. printerOffline: '打印机离线',
  3776. printerError: '打印机错误',
  3777. lowFilamentLabel: '耗材不足',
  3778. maintenanceDue: '需要维护',
  3779. maintenanceDueDescription: '需要维护时通知',
  3780. amsHumidityHigh: 'AMS 湿度过高',
  3781. amsHumidityHighDescription: '普通 AMS 湿度超过阈值',
  3782. amsTemperatureHigh: 'AMS 温度过高',
  3783. amsTemperatureHighDescription: '普通 AMS 温度超过阈值',
  3784. amsHtHumidityHigh: 'AMS-HT 湿度过高',
  3785. amsHtHumidityHighDescription: 'AMS-HT 湿度超过阈值',
  3786. amsHtTemperatureHigh: 'AMS-HT 温度过高',
  3787. amsHtTemperatureHighDescription: 'AMS-HT 温度超过阈值',
  3788. // Queue events
  3789. jobAdded: '任务已添加',
  3790. jobAddedDescription: '任务已添加到队列',
  3791. jobAssigned: '任务已分配',
  3792. jobAssignedDescription: '基于模型的任务已分配给打印机',
  3793. jobStarted: '任务已开始',
  3794. jobStartedDescription: '队列任务已开始打印',
  3795. jobWaiting: '任务等待中',
  3796. jobWaitingDescription: '任务正在等待耗材或打印机',
  3797. jobSkipped: '任务已跳过',
  3798. jobSkippedDescription: '任务已跳过(上一个失败)',
  3799. jobFailed: '任务失败',
  3800. jobFailedDescription: '任务启动失败',
  3801. queueComplete: '队列已完成',
  3802. queueCompleteDescription: '所有队列任务已完成',
  3803. // Quiet hours
  3804. quietHours: '免打扰时段',
  3805. noNotificationsDuring: '在此时段内不发送通知',
  3806. editProviderToChangeQuietHours: '编辑提供商以更改免打扰时段',
  3807. // Daily digest
  3808. dailyDigest: '每日摘要',
  3809. batchNotifications: '将通知汇总为每日摘要',
  3810. sendAt: '发送于 {{time}}',
  3811. editProviderToChangeDigestTime: '编辑提供商以更改摘要时间',
  3812. // Actions
  3813. edit: '编辑',
  3814. deleteProvider: '删除通知提供商',
  3815. deleteConfirm: '确定要删除"{{name}}"吗?此操作无法撤销。',
  3816. delete: '删除',
  3817. // AddNotificationModal
  3818. addTitle: '添加通知提供商',
  3819. editTitle: '编辑通知提供商',
  3820. nameLabel: '名称 *',
  3821. namePlaceholder: '我的通知',
  3822. providerTypeLabel: '提供商类型 *',
  3823. configuration: '配置',
  3824. testConfiguration: '测试配置',
  3825. printerFilter: '打印机筛选',
  3826. onlyFromPrinter: '仅发送来自此打印机的事件通知',
  3827. quietHoursDnd: '免打扰时段',
  3828. quietStart: '开始',
  3829. quietEnd: '结束',
  3830. dailyDigestLabel: '每日摘要',
  3831. sendDigestAt: '发送摘要于',
  3832. digestCollected: '事件将被收集并在此时间作为单条摘要发送',
  3833. notificationEvents: '通知事件',
  3834. progressPercent: '(25%、50%、75%)',
  3835. bedCooledAfterPrint: '(打印完成后)',
  3836. cancel: '取消',
  3837. save: '保存',
  3838. add: '添加',
  3839. nameRequired: '名称为必填项',
  3840. fieldRequired: '{{field}}为必填项',
  3841. // Config field labels
  3842. phoneNumber: '电话号码',
  3843. apiKey: 'API 密钥',
  3844. serverUrl: '服务器 URL',
  3845. topic: '主题',
  3846. authToken: '认证令牌',
  3847. userKey: '用户密钥',
  3848. appToken: '应用令牌',
  3849. priority: '优先级',
  3850. botToken: '机器人令牌',
  3851. chatId: '聊天 ID',
  3852. smtpServer: 'SMTP 服务器',
  3853. smtpPort: 'SMTP 端口',
  3854. security: '安全',
  3855. authentication: '认证',
  3856. username: '用户名',
  3857. password: '密码',
  3858. fromEmail: '发件人邮箱',
  3859. toEmail: '收件人邮箱',
  3860. webhookUrl: 'Webhook URL',
  3861. payloadFormat: '负载格式',
  3862. authorization: '授权',
  3863. titleFieldName: '标题字段名',
  3864. messageFieldName: '消息字段名',
  3865. // NotificationTemplateEditor
  3866. editTemplate: '编辑模板:{{name}}',
  3867. titleLabel: '标题',
  3868. bodyLabel: '正文',
  3869. titlePlaceholder: '通知标题...',
  3870. bodyPlaceholder: '通知正文...',
  3871. availableVariables: '可用变量',
  3872. clickToInsert: '点击插入到正文光标位置',
  3873. livePreview: '实时预览',
  3874. hide: '隐藏',
  3875. show: '显示',
  3876. loadingPreview: '加载预览中...',
  3877. enterTemplateContent: '输入模板内容以查看预览',
  3878. titlePreview: '标题:',
  3879. bodyPreview: '正文:',
  3880. resetToDefault: '恢复默认',
  3881. titleRequired: '标题为必填项',
  3882. bodyRequired: '正文为必填项',
  3883. // NotificationLogViewer
  3884. notificationLog: '通知日志',
  3885. showFailedOnly: '仅显示失败',
  3886. last24Hours: '最近 24 小时',
  3887. last7Days: '最近 7 天',
  3888. last30Days: '最近 30 天',
  3889. last90Days: '最近 90 天',
  3890. justNow: '刚刚',
  3891. noFailedNotifications: '没有失败的通知',
  3892. noNotificationsLogged: '没有通知记录',
  3893. unknownProvider: '未知提供商',
  3894. logTitle: '标题',
  3895. logMessage: '消息',
  3896. logError: '错误',
  3897. logProvider: '提供商:{{type}}',
  3898. logTime: '时间:{{time}}',
  3899. refresh: '刷新',
  3900. clearOld: '清除旧记录',
  3901. statsSummary: '最近 {{days}} 天:',
  3902. statsNotifications: '条通知',
  3903. statsSent: '{{count}} 条已发送',
  3904. statsFailed: '{{count}} 条失败',
  3905. // Event type labels (for log viewer)
  3906. eventTypes: {
  3907. print_start: '打印已开始',
  3908. print_complete: '打印完成',
  3909. print_failed: '打印失败',
  3910. print_stopped: '打印已停止',
  3911. print_progress: '进度',
  3912. printer_offline: '打印机离线',
  3913. printer_error: '打印机错误',
  3914. filament_low: '耗材不足',
  3915. maintenance_due: '需要维护',
  3916. test: '测试',
  3917. },
  3918. userEmail: {
  3919. title: '通知',
  3920. emailNotifications: '邮件通知',
  3921. emailNotificationsDesc: '接收您自己打印任务的邮件通知。邮件将通过高级身份验证中配置的 SMTP 设置发送。',
  3922. sendingTo: '通知将发送至',
  3923. noEmailWarning: '您的账户没有邮件地址。请联系管理员添加。',
  3924. printJobNotifications: '打印任务通知',
  3925. printJobNotificationsDesc: '选择哪些事件会触发您提交的打印任务的邮件通知。',
  3926. printJobStarts: '打印任务开始',
  3927. printJobStartsDesc: '当您的打印任务开始时收到通知。',
  3928. printJobFinishes: '打印任务完成',
  3929. printJobFinishesDesc: '当您的打印任务成功完成时收到通知。',
  3930. printErrors: '打印错误',
  3931. printErrorsDesc: '当您的打印任务失败或遇到错误时收到通知。',
  3932. printJobStops: '打印任务停止',
  3933. printJobStopsDesc: '当您的打印任务被取消或停止时收到通知。',
  3934. saveSuccess: '通知偏好设置已保存。',
  3935. saveError: '保存通知偏好设置失败。',
  3936. },
  3937. },
  3938. // Rich Text Editor
  3939. richTextEditor: {
  3940. bold: '粗体',
  3941. italic: '斜体',
  3942. underline: '下划线',
  3943. bulletList: '无序列表',
  3944. numberedList: '有序列表',
  3945. alignLeft: '左对齐',
  3946. alignCenter: '居中对齐',
  3947. alignRight: '右对齐',
  3948. addLink: '添加链接',
  3949. removeLink: '移除链接',
  3950. },
  3951. // External Links
  3952. externalLinks: {
  3953. noLinksConfigured: '未配置外部链接',
  3954. deleteLink: '删除链接',
  3955. removeCustomIcon: '移除自定义图标',
  3956. openInNewTab: '在新标签页中打开',
  3957. placeholders: {
  3958. linkName: '我的链接',
  3959. },
  3960. },
  3961. // Keyboard Shortcuts Modal
  3962. keyboardShortcuts: {
  3963. title: '键盘快捷键',
  3964. navigation: '导航',
  3965. archivesSection: '归档',
  3966. kProfilesSection: 'K 值配置',
  3967. generalSection: '通用',
  3968. shortcuts: {
  3969. goToPrinters: '前往打印机',
  3970. goToArchives: '前往归档',
  3971. goToQueue: '前往队列',
  3972. goToStats: '前往统计',
  3973. goToProfiles: '前往云端配置',
  3974. goToSettings: '前往设置',
  3975. focusSearch: '聚焦搜索',
  3976. openUploadModal: '打开上传对话框',
  3977. clearSelection: '清除选择 / 取消焦点',
  3978. contextMenu: '卡片右键菜单',
  3979. refreshProfiles: '刷新配置',
  3980. newProfile: '新建配置',
  3981. exitSelectionMode: '退出选择模式',
  3982. showHelp: '显示此帮助',
  3983. },
  3984. footer: '按 Esc 或点击外部关闭',
  3985. },
  3986. // Notification Log
  3987. notificationLog: {
  3988. title: '通知日志',
  3989. events: {
  3990. printStarted: '打印开始',
  3991. printComplete: '打印完成',
  3992. printFailed: '打印失败',
  3993. printStopped: '打印停止',
  3994. progress: '进度',
  3995. printerOffline: '打印机离线',
  3996. printerError: '打印机错误',
  3997. lowFilament: '耗材不足',
  3998. maintenanceDue: '维护到期',
  3999. test: '测试',
  4000. },
  4001. timeAgo: {
  4002. justNow: '刚刚',
  4003. minutesAgo: '{{minutes}} 分钟前',
  4004. hoursAgo: '{{hours}} 小时前',
  4005. },
  4006. },
  4007. // Restore/Backup Modal
  4008. restoreBackup: {
  4009. title: '恢复备份',
  4010. restoring: '恢复中...',
  4011. restoreComplete: '恢复完成',
  4012. restoreFailed: '恢复失败',
  4013. importSettings: '从备份文件导入设置',
  4014. pleaseWait: '请稍候,正在恢复您的数据',
  4015. clickToSelect: '点击选择备份文件(.json 或 .zip)',
  4016. howDuplicateHandling: '重复处理方式:',
  4017. categories: {
  4018. printers: '打印机',
  4019. smartPlugs: '智能插座',
  4020. notificationProviders: '通知提供商',
  4021. filaments: '耗材',
  4022. archives: '归档',
  4023. pendingUploads: '待处理上传',
  4024. settingsTemplates: '设置和模板',
  4025. },
  4026. matchingInfo: {
  4027. printers: '按序列号匹配',
  4028. smartPlugs: '按 IP 地址匹配',
  4029. notificationProviders: '按名称匹配',
  4030. filaments: '按名称 + 类型 + 品牌匹配',
  4031. archives: '按内容哈希匹配',
  4032. pendingUploads: '按文件名匹配',
  4033. settingsTemplates: '始终覆盖',
  4034. },
  4035. replaceExisting: '替换现有数据',
  4036. keepExisting: '保留现有数据',
  4037. replaceDescription: '用备份数据覆盖已存在的项目',
  4038. keepDescription: '仅恢复不存在的项目',
  4039. caution: '注意:',
  4040. cautionText: '覆盖将用备份数据替换您当前的配置。出于安全考虑,打印机访问码永远不会被覆盖。',
  4041. itemsRestored: '已恢复项目',
  4042. itemsSkipped: '已跳过项目',
  4043. restored: '已恢复',
  4044. skipped: '已跳过(已存在)',
  4045. filesLabel: '文件(3MF、缩略图等)',
  4046. newApiKeysGenerated: '已生成新 API 密钥',
  4047. newApiKeysWarning: '这些密钥仅显示一次。请立即复制!',
  4048. processingBackup: '处理备份文件中...',
  4049. noDataFound: '备份文件中未找到可恢复的数据。',
  4050. failedToRestore: '恢复备份失败。请检查文件格式。',
  4051. },
  4052. // Backup Export Modal
  4053. backupExport: {
  4054. title: '导出备份',
  4055. selectData: '选择要包含的数据',
  4056. selectAll: '全选',
  4057. selectNone: '全不选',
  4058. categoryDescriptions: {
  4059. settings: '语言、主题、更新偏好',
  4060. notifications: 'ntfy、Pushover、Discord 等',
  4061. templates: '自定义消息模板',
  4062. smartPlugs: 'Tasmota 插座配置',
  4063. externalLinks: '侧边栏外部服务链接',
  4064. printers: '打印机信息(不含访问码)',
  4065. plateDetection: '空打印板参考图像',
  4066. filaments: '耗材类型和成本',
  4067. maintenance: '自定义维护计划',
  4068. archives: '所有打印数据 + 文件(3MF、缩略图、照片)',
  4069. projects: '项目、材料清单和附件',
  4070. pendingUploads: '虚拟打印机待审核的上传',
  4071. apiKeys: 'Webhook API 密钥(导入时生成新密钥)',
  4072. },
  4073. requiresPrinters: '需要选择打印机',
  4074. zipFileWarning: '将创建 ZIP 文件。',
  4075. zipFileDescription: '包括所有 3MF 文件、缩略图、延时摄影和照片。这可能需要一些时间并生成较大的文件。',
  4076. includeAccessCodes: '包含访问码',
  4077. includeAccessCodesDescription: '用于转移到另一台机器',
  4078. includeAccessCodesWarning: '访问码将以明文形式包含。请妥善保管此备份文件!',
  4079. categoriesSelected: '已选择 {{selectedCount}} 个类别',
  4080. },
  4081. // Pending Uploads Panel
  4082. pendingUploads: {
  4083. placeholders: {
  4084. notes: '添加关于此打印的备注...',
  4085. },
  4086. discardUpload: '丢弃上传',
  4087. archiveAllUploads: '归档所有上传',
  4088. discardAllUploads: '丢弃所有上传',
  4089. archive: '归档',
  4090. timeAgo: {
  4091. justNow: '刚刚',
  4092. minutesAgo: '{{minutes}} 分钟前',
  4093. hoursAgo: '{{hours}} 小时前',
  4094. daysAgo: '{{days}} 天前',
  4095. },
  4096. },
  4097. // API Browser
  4098. apiBrowser: {
  4099. placeholders: {
  4100. requestBody: 'JSON 请求体...',
  4101. searchEndpoints: '搜索端点...',
  4102. },
  4103. },
  4104. // Configure AMS Slot Modal
  4105. configureAmsSlot: {
  4106. title: '配置 AMS 槽位',
  4107. slotConfigured: '槽位已配置!',
  4108. configuringSlot: '正在配置槽位:',
  4109. slotLabel: '{{ams}} 槽位 {{slot}}',
  4110. searchPresets: '搜索预设...',
  4111. colorPlaceholder: '颜色名称或十六进制(例如:棕色、FF8800)',
  4112. clearCustomColor: '清除自定义颜色',
  4113. noCloudPresets: '无云端预设。登录拓竹云以同步。',
  4114. noPresetsAvailable: '无可用预设。登录拓竹云或导入本地配置。',
  4115. noMatchingPresets: '未找到匹配的预设。',
  4116. custom: '自定义',
  4117. builtin: '内置',
  4118. settingsSentToPrinter: '设置已发送到打印机',
  4119. filamentProfile: '耗材配置',
  4120. kProfileLabel: 'K 值配置(压力推进)',
  4121. filteringFor: '筛选:{{material}}',
  4122. noKProfile: '无 K 值配置(使用默认值 0.020)',
  4123. noMatchingKProfiles: '未找到匹配的 K 值配置。将使用默认 K=0.020。',
  4124. selectFilamentFirst: '请先选择耗材配置',
  4125. kFromCalibration: 'K={{value}}(来自打印机校准)',
  4126. customColorLabel: '自定义颜色(可选)',
  4127. presetColors: '{{name}} 颜色:',
  4128. showLessColors: '显示更少颜色',
  4129. showMoreColors: '显示更多颜色',
  4130. clear: '清除',
  4131. hexLabel: '十六进制:#{{hex}}',
  4132. resetting: '重置中...',
  4133. resetSlot: '重置槽位',
  4134. cancel: '取消',
  4135. configuring: '配置中...',
  4136. configureSlot: '配置槽位',
  4137. },
  4138. // GitHub Backup Settings
  4139. githubBackup: {
  4140. title: 'GitHub 备份',
  4141. history: '历史',
  4142. downloadBackup: '下载备份',
  4143. restoreBackup: '恢复备份',
  4144. noBackupsYet: '暂无备份',
  4145. },
  4146. // Email Settings
  4147. emailSettings: {
  4148. placeholders: {
  4149. fromName: 'BamBuddy',
  4150. },
  4151. },
  4152. // Tag Management Modal
  4153. tagManagement: {
  4154. searchTags: '搜索标签...',
  4155. renameTag: '重命名标签',
  4156. deleteTag: '删除标签',
  4157. },
  4158. // Notification Template Editor
  4159. notificationTemplates: {
  4160. placeholders: {
  4161. title: '通知标题...',
  4162. body: '通知正文...',
  4163. },
  4164. },
  4165. // Batch Tag Modal
  4166. batchTag: {
  4167. placeholders: {
  4168. newTag: '输入新标签...',
  4169. },
  4170. },
  4171. // Photo Gallery Modal
  4172. photoGallery: {
  4173. deletePhoto: '删除照片',
  4174. },
  4175. // Filament Hover Card
  4176. filamentHoverCard: {
  4177. copySpoolUuid: '复制耗材 UUID',
  4178. },
  4179. // K Profiles View
  4180. kProfilesView: {
  4181. hasNote: '有备注',
  4182. copyProfile: '复制配置',
  4183. },
  4184. // Layout/Navigation
  4185. layout: {
  4186. openMenu: '打开菜单',
  4187. noPermissionSystemInfo: '您没有查看系统信息的权限',
  4188. },
  4189. // Dashboard
  4190. dashboard: {
  4191. dragToReorder: '拖动以重新排列',
  4192. hideWidget: '隐藏小部件',
  4193. },
  4194. // Notification Provider Card
  4195. notificationProviderCard: {
  4196. deleteNotificationProvider: '删除通知提供商',
  4197. },
  4198. // File Manager Modal
  4199. fileManagerModal: {
  4200. closeFileManager: '关闭文件管理器',
  4201. sortFiles: '排序文件',
  4202. goToParentFolder: '返回上级文件夹',
  4203. threeView: '3D 视图',
  4204. },
  4205. // Embedded Camera Viewer
  4206. embeddedCameraViewer: {
  4207. refreshStream: '刷新流',
  4208. close: '关闭',
  4209. zoomOut: '缩小',
  4210. resetZoom: '重置缩放',
  4211. zoomIn: '放大',
  4212. dragToResize: '拖动调整大小',
  4213. },
  4214. // Timelapse Viewer
  4215. timelapseViewer: {
  4216. skipBack5s: '后退 5 秒',
  4217. skipForward5s: '前进 5 秒',
  4218. },
  4219. // Notification Providers
  4220. notificationProviders: {
  4221. descriptions: {
  4222. email: 'SMTP 邮件通知',
  4223. telegram: '通过 Telegram 机器人通知',
  4224. discord: '通过 Webhook 发送到 Discord 频道',
  4225. ntfy: '免费、可自托管的推送通知',
  4226. pushover: '简单、可靠的推送通知',
  4227. callmebot: '通过 CallMeBot 的免费 WhatsApp 通知',
  4228. webhook: '通用 HTTP POST 到任意 URL',
  4229. },
  4230. },
  4231. // Log Viewer
  4232. logViewer: {
  4233. searchPlaceholder: '搜索消息或日志名称...',
  4234. noLogEntries: '未找到日志条目',
  4235. },
  4236. // Switchbar Popover
  4237. switchbarPopover: {
  4238. noSwitchesInSwitchbar: '切换栏中没有开关',
  4239. },
  4240. // Project Page Modal
  4241. projectPageModal: {
  4242. placeholders: {
  4243. title: '标题',
  4244. designer: '设计师',
  4245. license: '许可证',
  4246. description: '输入描述...',
  4247. profileTitle: '配置标题',
  4248. profileDescription: '配置描述...',
  4249. },
  4250. },
  4251. // Spoolman Settings
  4252. spoolmanSettings: {},
  4253. // Time
  4254. time: {
  4255. unknown: '-',
  4256. waiting: '等待中',
  4257. justNow: '刚刚',
  4258. now: '现在',
  4259. minsAgo: '{{count}} 分钟前',
  4260. inMins: '{{count}} 分钟后',
  4261. hoursAgo: '{{count}} 小时前',
  4262. inHours: '{{count}} 小时后',
  4263. daysAgo: '{{count}} 天前',
  4264. inDays: '{{count}} 天后',
  4265. },
  4266. // SpoolBuddy Kiosk
  4267. spoolbuddy: {
  4268. nav: {
  4269. dashboard: '仪表板',
  4270. ams: 'AMS',
  4271. inventory: '库存',
  4272. writeTag: '写入',
  4273. settings: '设置',
  4274. },
  4275. status: {
  4276. nfcReady: 'NFC 就绪',
  4277. nfcOff: 'NFC 关闭',
  4278. offline: '离线',
  4279. online: '在线',
  4280. noPrinters: '无打印机',
  4281. deviceOffline: '设备离线',
  4282. waitingConnection: '等待设备连接...',
  4283. systemReady: '系统就绪',
  4284. status: '状态',
  4285. },
  4286. dashboard: {
  4287. readyToScan: '准备扫描',
  4288. idleMessage: '将耗材放在秤上以识别',
  4289. nfcHint: 'NFC 标签将自动读取',
  4290. device: '设备',
  4291. syncWeight: '同步重量',
  4292. weightSynced: '已同步!',
  4293. unknownTag: '未知标签',
  4294. newTag: '检测到新标签',
  4295. onScale: '在秤上',
  4296. linkSpool: '链接到耗材',
  4297. linkTagTitle: '将标签链接到耗材',
  4298. linkTag: '链接标签',
  4299. selectSpool: '选择要链接此标签的耗材:',
  4300. noUntagged: '未找到没有标签的耗材',
  4301. tagDetected: '检测到标签',
  4302. noTag: '无标签',
  4303. tagId: '标签',
  4304. grossWeight: '毛重',
  4305. spoolSize: '耗材盘尺寸',
  4306. close: '关闭',
  4307. currentSpool: '当前耗材',
  4308. },
  4309. modal: {
  4310. spoolDetected: '检测到耗材',
  4311. assignToAms: '分配到 AMS',
  4312. syncWeight: '同步重量',
  4313. weightSynced: '已同步!',
  4314. syncing: '同步中...',
  4315. newTagDetected: '检测到新标签',
  4316. addToInventory: '添加到库存',
  4317. assignToAmsTitle: '分配到 AMS',
  4318. selectSlot: '选择槽位',
  4319. assign: '分配',
  4320. assigning: '分配中...',
  4321. assignSuccess: '已分配!',
  4322. assignError: '分配耗材失败。请重试。',
  4323. noPrinterSelected: '选择打印机...',
  4324. noAmsDetected: '此打印机未检测到 AMS',
  4325. slot: '槽位',
  4326. },
  4327. weight: {
  4328. noReading: '无读数',
  4329. stable: '稳定',
  4330. measuring: '测量中...',
  4331. tare: '去皮',
  4332. calibrate: '校准',
  4333. },
  4334. spool: {
  4335. remaining: '剩余',
  4336. material: '材料',
  4337. brand: '品牌',
  4338. color: '颜色',
  4339. coreWeight: '空盘',
  4340. labelWeight: '标签',
  4341. scaleWeight: '秤重',
  4342. netWeight: '净重',
  4343. lastUsed: '上次使用',
  4344. },
  4345. ams: {
  4346. noData: '未检测到 AMS',
  4347. connectAms: '连接 AMS 以查看耗材槽位',
  4348. noPrinter: '未选择打印机',
  4349. selectPrinter: '从顶部栏选择打印机',
  4350. printerDisconnected: '打印机已断开',
  4351. humidity: '湿度',
  4352. level: '余量',
  4353. active: '活跃',
  4354. slot: '槽位',
  4355. empty: '空',
  4356. },
  4357. inventory: {
  4358. search: '搜索耗材...',
  4359. empty: '库存中没有耗材',
  4360. noResults: '没有匹配的耗材',
  4361. spools: '个耗材',
  4362. addSpool: '添加耗材',
  4363. },
  4364. settings: {
  4365. // Tabs
  4366. tabDevice: '设备',
  4367. tabDisplay: '显示',
  4368. tabScale: '秤',
  4369. tabUpdates: '更新',
  4370. // Device tab
  4371. nfcReader: 'NFC 读卡器',
  4372. type: '类型',
  4373. connection: '连接',
  4374. notConnected: '不适用',
  4375. deviceInfo: '设备信息',
  4376. hostname: '主机',
  4377. uptime: '运行时间',
  4378. // Display tab
  4379. brightness: '亮度',
  4380. saved: '已保存',
  4381. noBacklight: '未检测到 DSI 背光。亮度控制需要 DSI 显示屏。',
  4382. screenBlank: '屏幕熄灭超时',
  4383. screenBlankDesc: '不活动后屏幕关闭。触摸唤醒。',
  4384. displayNote: '亮度作为软件滤镜应用。',
  4385. // Scale tab
  4386. scaleCalibration: '秤校准',
  4387. currentWeight: '当前重量',
  4388. tareOffset: '去皮',
  4389. calFactor: '系数',
  4390. knownWeight: '已知重量',
  4391. calStep1: '移除秤上所有物品并按设置零点。',
  4392. calStep2: '将已知重量放在秤上。',
  4393. setZero: '设置零点',
  4394. calibrateNow: '校准',
  4395. calibrated: '已校准',
  4396. tareSet: '去皮命令已发送。等待设备响应...',
  4397. tareFailed: '发送去皮命令失败',
  4398. zeroSet: '零点已设置。将已知重量放在秤上。',
  4399. calibrationDone: '校准完成!',
  4400. calibrationFailed: '校准失败',
  4401. lastCalibrated: '上次校准',
  4402. stable: '稳定',
  4403. settling: '稳定中...',
  4404. firmware: '固件',
  4405. scale: '秤',
  4406. noDevice: '未找到 SpoolBuddy 设备',
  4407. // Updates tab
  4408. daemonVersion: '守护进程版本',
  4409. currentVersion: '当前',
  4410. versionPending: '等待守护进程...',
  4411. checking: '检查中...',
  4412. checkUpdates: '检查更新',
  4413. updateAvailable: '有可用更新',
  4414. updateInstructions: '通过 SSH 更新:运行 SpoolBuddy 安装脚本进行升级。',
  4415. upToDate: '已是最新',
  4416. includeBeta: '包含测试版本',
  4417. },
  4418. writeTag: {
  4419. tabExisting: '现有耗材',
  4420. tabNew: '新耗材',
  4421. tabReplace: '替换标签',
  4422. searchPlaceholder: '按材料、颜色、品牌搜索...',
  4423. noUntaggedSpools: '没有无标签的耗材',
  4424. noTaggedSpools: '没有有标签的耗材',
  4425. selectSpool: '选择一个耗材,然后将空白 NTAG 放在读卡器上',
  4426. placeTag: '将 NTAG 放在读卡器上',
  4427. tagReady: '检测到标签 — 准备写入',
  4428. writeTag: '写入标签',
  4429. replaceTag: '替换标签',
  4430. writing: '写入标签中...',
  4431. waiting: '等待 SpoolBuddy...',
  4432. writeSuccess: '标签写入成功!',
  4433. writeFailed: '写入失败',
  4434. queueFailed: '排队写入命令失败',
  4435. tryAgain: '重试',
  4436. cancel: '取消',
  4437. replaceWarning: '旧标签将被取消链接。新标签将替换它。',
  4438. deviceOffline: 'SpoolBuddy 离线',
  4439. material: '材料',
  4440. colorName: '颜色名称',
  4441. color: '颜色',
  4442. brand: '品牌',
  4443. weight: '重量 (g)',
  4444. createSpool: '创建耗材',
  4445. creating: '创建中...',
  4446. spoolCreated: '耗材已创建!准备写入。',
  4447. createFailed: '创建耗材失败',
  4448. },
  4449. },
  4450. bugReport: {
  4451. title: '报告错误',
  4452. description: '描述',
  4453. descriptionPlaceholder: '出了什么问题?请描述问题...',
  4454. email: '邮箱(可选)',
  4455. emailPlaceholder: 'your@email.com',
  4456. emailPrivacy: '如果提供,您的邮箱将包含在GitHub Issue的折叠部分中,以便维护者后续跟进。',
  4457. screenshot: '截图',
  4458. uploadOrPaste: '上传、粘贴或拖拽图片',
  4459. dataCollectedSummary: '报告中包含哪些数据?',
  4460. dataIncluded: '包含:',
  4461. dataIncludedList: '应用版本、操作系统、架构、Python版本、数据库统计(仅计数)、打印机型号、喷嘴数量、固件版本、连接状态、集成状态(Spoolman、MQTT、HA)、非敏感设置、网络接口数量、Docker详情、依赖版本。',
  4462. dataNeverIncluded: '绝不包含:',
  4463. dataNeverIncludedList: '打印机名称、序列号、访问代码、密码、IP地址、邮箱地址、API密钥、令牌、Webhook URL、主机名或用户名。',
  4464. submit: '提交',
  4465. startLogging: '开始调试日志',
  4466. stepEnableLogging: '调试日志已启用',
  4467. stepReproduce: '请现在重现问题',
  4468. stepStopLogging: '停止并提交报告',
  4469. stopAndSubmit: '停止并提交',
  4470. maxDuration: '{{minutes}}分钟后自动停止',
  4471. stoppingLogs: '正在收集日志并提交...',
  4472. submitting: '正在提交错误报告...',
  4473. submitSuccess: '错误报告提交成功!',
  4474. submitFailed: '提交错误报告失败',
  4475. thankYou: '谢谢!',
  4476. submitted: '您的错误报告已提交。',
  4477. viewIssue: '查看Issue',
  4478. unexpectedError: '发生了意外错误',
  4479. },
  4480. };