en.ts 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441
  1. export default {
  2. // Navigation
  3. nav: {
  4. printers: 'Printers',
  5. archives: 'Archives',
  6. queue: 'Queue',
  7. stats: 'Statistics',
  8. profiles: 'Profiles',
  9. maintenance: 'Maintenance',
  10. projects: 'Projects',
  11. inventory: 'Filament',
  12. files: 'File Manager',
  13. settings: 'Settings',
  14. system: 'System',
  15. collapseSidebar: 'Collapse sidebar',
  16. expandSidebar: 'Expand sidebar',
  17. update: 'Update',
  18. updateAvailable: 'Update available: v{{version}}',
  19. updateAvailableBanner: 'Version {{version}} is available!',
  20. viewUpdate: 'View update',
  21. viewOnGithub: 'View on GitHub',
  22. keyboardShortcuts: 'Keyboard shortcuts (?)',
  23. switchToLight: 'Switch to light mode',
  24. switchToDark: 'Switch to dark mode',
  25. smartSwitches: 'Smart Switches',
  26. logout: 'Logout',
  27. },
  28. // Common
  29. common: {
  30. save: 'Save',
  31. saving: 'Saving...',
  32. cancel: 'Cancel',
  33. delete: 'Delete',
  34. edit: 'Edit',
  35. add: 'Add',
  36. close: 'Close',
  37. confirm: 'Confirm',
  38. loading: 'Loading...',
  39. error: 'Error',
  40. success: 'Success',
  41. warning: 'Warning',
  42. enabled: 'Enabled',
  43. disabled: 'Disabled',
  44. yes: 'Yes',
  45. no: 'No',
  46. on: 'On',
  47. off: 'Off',
  48. all: 'All',
  49. none: 'None',
  50. search: 'Search',
  51. filter: 'Filter',
  52. sort: 'Sort',
  53. refresh: 'Refresh',
  54. download: 'Download',
  55. upload: 'Upload',
  56. actions: 'Actions',
  57. status: 'Status',
  58. name: 'Name',
  59. description: 'Description',
  60. date: 'Date',
  61. time: 'Time',
  62. hours: 'hours',
  63. minutes: 'minutes',
  64. seconds: 'seconds',
  65. days: 'days',
  66. enable: 'Enable',
  67. disable: 'Disable',
  68. permissions: 'Permissions',
  69. noPrinters: 'No printers configured',
  70. noData: 'No data available',
  71. linkNotFound: 'Link not found',
  72. required: 'Required',
  73. optional: 'Optional',
  74. dismiss: 'Dismiss',
  75. apply: 'Apply',
  76. reset: 'Reset',
  77. export: 'Export',
  78. import: 'Import',
  79. clear: 'Clear',
  80. selectAll: 'Select All',
  81. deselectAll: 'Deselect All',
  82. noChange: '— No change —',
  83. unchanged: 'Unchanged',
  84. unassigned: 'Unassigned',
  85. unknown: 'Unknown',
  86. unknownError: 'Unknown error',
  87. today: 'Today',
  88. tomorrow: 'Tomorrow',
  89. asap: 'ASAP',
  90. overdue: 'Overdue',
  91. now: 'Now',
  92. collapse: 'Collapse',
  93. expand: 'Expand',
  94. viewArchive: 'View archive',
  95. viewInFileManager: 'View in File Manager',
  96. addedBy: 'Added by {{username}}',
  97. prints: 'prints',
  98. more: '+{{count}} more',
  99. ascending: 'Ascending',
  100. descending: 'Descending',
  101. printer: 'Printer',
  102. remove: 'Remove',
  103. type: 'Type',
  104. print: 'Print',
  105. rename: 'Rename',
  106. move: 'Move',
  107. create: 'Create',
  108. duplicate: 'Duplicate',
  109. left: 'Left',
  110. right: 'Right',
  111. },
  112. // Printers page
  113. printers: {
  114. title: 'Printers',
  115. addPrinter: 'Add Printer',
  116. editPrinter: 'Edit Printer',
  117. deletePrinter: 'Delete Printer',
  118. printerName: 'Printer Name',
  119. serialNumber: 'Serial Number',
  120. ipAddress: 'IP Address / Hostname',
  121. accessCode: 'Access Code',
  122. model: 'Model',
  123. nozzleCount: 'Nozzle Count',
  124. autoArchive: 'Auto Archive',
  125. status: {
  126. available: 'Available',
  127. idle: 'Idle',
  128. printing: 'Printing',
  129. paused: 'Paused',
  130. offline: 'Offline',
  131. error: 'Error',
  132. finished: 'Finished',
  133. unknown: 'Unknown',
  134. },
  135. temperatures: {
  136. nozzle: 'Nozzle',
  137. bed: 'Bed',
  138. chamber: 'Chamber',
  139. },
  140. progress: '{{percent}}% complete',
  141. timeRemaining: '{{time}} remaining',
  142. deleteConfirm: 'Are you sure you want to delete "{{name}}"?',
  143. maintenanceOk: 'Maintenance OK',
  144. maintenanceWarning: '{{count}} warning',
  145. maintenanceWarning_plural: '{{count}} warnings',
  146. maintenanceDue: '{{count}} due',
  147. maintenanceDue_plural: '{{count}} due',
  148. // Sort options
  149. sort: {
  150. name: 'Name',
  151. status: 'Status',
  152. model: 'Model',
  153. location: 'Location',
  154. ascending: 'Sort ascending',
  155. descending: 'Sort descending',
  156. },
  157. // Card size
  158. cardSize: {
  159. small: 'Small cards',
  160. medium: 'Medium cards',
  161. large: 'Large cards',
  162. extraLarge: 'Extra large cards',
  163. },
  164. // Controls
  165. hideOffline: 'Hide offline',
  166. nextAvailable: 'Next available',
  167. powerOn: 'Power On',
  168. offlinePrintersWithPlugs: 'Offline printers with smart plugs',
  169. noPrintersConfigured: 'No printers configured yet',
  170. // Printer card
  171. readyToPrint: 'Ready to print',
  172. external: 'External',
  173. extL: 'Ext-L',
  174. extR: 'Ext-R',
  175. deleteArchives: 'Delete print archives',
  176. noLabel: 'No label',
  177. printPreview: 'Print preview',
  178. width: 'Width',
  179. height: 'Height',
  180. noObjectsFound: 'No objects found',
  181. objectsLoadedOnPrintStart: 'Objects are loaded when a print starts',
  182. willBeSkipped: 'Will be skipped',
  183. name: 'Name',
  184. serialCannotBeChanged: 'Serial number cannot be changed',
  185. locationHelp: 'Used to group printers and filter queue jobs',
  186. // WiFi signal strength
  187. wifiSignal: {
  188. veryWeak: 'Very weak',
  189. weak: 'Weak',
  190. fair: 'Fair',
  191. good: 'Good',
  192. excellent: 'Excellent',
  193. },
  194. // Maintenance
  195. maintenanceUpToDate: 'All maintenance up to date - Click to view',
  196. // Chamber light
  197. chamberLightOn: 'Turn on chamber light',
  198. chamberLightOff: 'Turn off chamber light',
  199. // Files
  200. browseFiles: 'Browse printer files',
  201. // Smart plug
  202. autoOffAfterPrint: 'Auto power-off after print',
  203. autoOffExecuted: 'Auto-off was executed - turn printer on to reset',
  204. // HMS errors
  205. hmsErrors: 'HMS Errors',
  206. viewHmsErrors: 'View {{count}} HMS error(s)',
  207. // Actions
  208. resume: 'Resume',
  209. pause: 'Pause',
  210. stop: 'Stop',
  211. camera: 'Camera',
  212. skipObject: 'Skip Object',
  213. reconnect: 'Reconnect',
  214. mqttDebug: 'MQTT Debug',
  215. activeNozzle: 'Active: {{nozzle}} nozzle',
  216. nozzleRack: 'Nozzle Rack',
  217. nozzleDocked: 'Docked',
  218. nozzleMounted: 'Mounted',
  219. nozzleActive: 'Active',
  220. nozzleIdle: 'Idle',
  221. nozzleDiameter: 'Diameter',
  222. nozzleType: 'Type',
  223. nozzleStatus: 'Status',
  224. nozzleFilament: 'Filament',
  225. nozzleWear: 'Wear',
  226. nozzleMaxTemp: 'Max Temp',
  227. nozzleSerial: 'Serial',
  228. nozzleHardenedSteel: 'Hardened Steel',
  229. nozzleStainlessSteel: 'Stainless Steel',
  230. nozzleTungstenCarbide: 'Tungsten Carbide',
  231. nozzleFlow: 'Flow',
  232. nozzleHighFlow: 'High Flow',
  233. nozzleStandardFlow: 'Standard',
  234. // Firmware
  235. firmwareUpdate: 'Firmware Update',
  236. firmwareInstructions: 'On the printer\'s touchscreen, go to',
  237. firmwareNav: 'Navigate to',
  238. settings: 'Settings',
  239. firmware: 'Firmware',
  240. // Discovery
  241. discoverPrinters: 'Discover Printers',
  242. searching: 'Searching...',
  243. manualEntry: 'Manual Entry',
  244. addFromCloud: 'Add from Cloud',
  245. // Toast messages
  246. toast: {
  247. printerDeleted: 'Printer deleted',
  248. printerAdded: 'Printer added',
  249. printerUpdated: 'Printer updated',
  250. failedToDelete: 'Failed to delete printer',
  251. failedToAdd: 'Failed to add printer',
  252. failedToUpdate: 'Failed to update printer',
  253. commandSent: 'Command sent',
  254. failedToSendCommand: 'Failed to send command',
  255. turnedOn: '{{name}} turned on',
  256. failedToPowerOn: 'Failed to power on {{name}}',
  257. scriptTriggered: 'Script triggered',
  258. printStopped: 'Print stopped',
  259. printPaused: 'Print paused',
  260. printResumed: 'Print resumed',
  261. referenceDeleted: 'Reference deleted',
  262. detectionAreaSaved: 'Detection area saved',
  263. failedToRunScript: 'Failed to run script',
  264. failedToStopPrint: 'Failed to stop print',
  265. failedToPausePrint: 'Failed to pause print',
  266. failedToResumePrint: 'Failed to resume print',
  267. failedToControlChamberLight: 'Failed to control chamber light',
  268. failedToUpdateSetting: 'Failed to update setting',
  269. failedToSkipObjects: 'Failed to skip objects',
  270. failedToRereadRfid: 'Failed to re-read RFID',
  271. failedToCheckPlate: 'Failed to check plate',
  272. failedToUpdateLabel: 'Failed to update label',
  273. failedToDeleteReference: 'Failed to delete reference',
  274. failedToSaveDetectionArea: 'Failed to save detection area',
  275. plateCheckEnabled: 'Plate check enabled',
  276. plateCheckDisabled: 'Plate check disabled',
  277. calibrationSaved: 'Calibration saved!',
  278. calibrationFailed: 'Calibration failed',
  279. rfidRereadInitiated: 'RFID re-read initiated',
  280. },
  281. // Connection status
  282. connection: {
  283. connected: 'Connected',
  284. offline: 'Offline',
  285. },
  286. // Queue info
  287. queue: {
  288. inQueue: '{{count}} print in queue',
  289. inQueue_plural: '{{count}} prints in queue',
  290. },
  291. // Controls section
  292. controls: 'Controls',
  293. // RFID
  294. rfid: {
  295. reread: 'Re-read RFID',
  296. },
  297. // Permissions
  298. permission: {
  299. noAdd: 'You do not have permission to add printers',
  300. noEdit: 'You do not have permission to edit printers',
  301. noDelete: 'You do not have permission to delete printers',
  302. noControl: 'You do not have permission to control printers',
  303. noFiles: 'You do not have permission to access printer files',
  304. noAmsRfid: 'You do not have permission to re-read AMS RFID',
  305. noSmartPlugControl: 'You do not have permission to control smart plugs',
  306. },
  307. // Add/Edit modal
  308. modal: {
  309. addTitle: 'Add Printer',
  310. editTitle: 'Edit Printer',
  311. myPrinter: 'My Printer',
  312. selectModel: 'Select model...',
  313. locationGroup: 'Location / Group (optional)',
  314. locationPlaceholder: 'e.g., Workshop, Office, Basement',
  315. autoArchiveLabel: 'Auto-archive completed prints',
  316. fromPrinterSettings: 'From printer settings',
  317. modelOptional: 'Model (optional)',
  318. saveChanges: 'Save Changes',
  319. },
  320. // Skip objects
  321. skipObjects: {
  322. tooltip: 'Skip objects',
  323. onlyWhilePrinting: 'Skip objects (only while printing)',
  324. requiresMultiple: 'Skip objects (requires 2+ objects)',
  325. title: 'Skip Objects',
  326. matchIdsInfo: 'Match IDs with your printer display',
  327. printerShowsIds: 'The printer screen shows object IDs on the build plate',
  328. skipSelected: 'Skip Selected',
  329. skipping: 'Skipping...',
  330. noObjectsSelected: 'No objects selected',
  331. selectObjectsToSkip: 'Select objects you want to skip from the current print',
  332. skipped: 'skipped',
  333. objectsSkipped: 'Objects skipped',
  334. activeCount: '{{count}} active',
  335. waitForLayer: 'Wait for layer 2+ to skip objects (currently layer {{layer}})',
  336. skip: 'Skip',
  337. confirmTitle: 'Skip Object?',
  338. confirmMessage: 'Are you sure you want to skip "{{name}}"? This cannot be undone.',
  339. },
  340. // Confirm modals
  341. confirm: {
  342. deleteTitle: 'Delete Printer',
  343. deleteMessage: 'Are you sure you want to delete "{{name}}"? This will remove all connection settings.',
  344. deleteArchivesNote: 'All print history for this printer will be permanently deleted.',
  345. keepArchivesNote: 'Print history will be kept but no longer associated with this printer.',
  346. stopTitle: 'Stop Print',
  347. stopMessage: 'Are you sure you want to stop the current print on "{{name}}"? This will cancel the print job.',
  348. stopButton: 'Stop Print',
  349. pauseTitle: 'Pause Print',
  350. pauseMessage: 'Are you sure you want to pause the current print on "{{name}}"?',
  351. pauseButton: 'Pause Print',
  352. resumeTitle: 'Resume Print',
  353. resumeMessage: 'Are you sure you want to resume the print on "{{name}}"?',
  354. resumeButton: 'Resume Print',
  355. powerOnTitle: 'Power On Printer',
  356. powerOnMessage: 'Are you sure you want to turn ON the power for "{{name}}"?',
  357. powerOnButton: 'Power On',
  358. powerOffTitle: 'Power Off Printer',
  359. powerOffMessage: 'Are you sure you want to turn OFF the power for "{{name}}"?',
  360. powerOffWarning: 'WARNING: "{{name}}" is currently printing! Are you sure you want to turn OFF the power? This will interrupt the print and may damage the printer.',
  361. powerOffButton: 'Power Off',
  362. },
  363. // Discovery
  364. discovery: {
  365. title: 'Discover Printers',
  366. searching: 'Searching...',
  367. scanning: 'Scanning...',
  368. scanProgress: 'Scanning... {{scanned}}/{{total}}',
  369. foundPrinters: 'Found {{count}} printer(s)',
  370. noPrintersFound: 'No printers found',
  371. noPrintersFoundSubnet: 'No printers found in the specified subnet.',
  372. noPrintersFoundNetwork: 'No printers found on the network.',
  373. allConfigured: 'All discovered printers are already configured.',
  374. alreadyAdded: 'Already added',
  375. select: 'Select',
  376. manualEntry: 'Manual Entry',
  377. addFromCloud: 'Add from Cloud',
  378. subnetToScan: 'Subnet to scan',
  379. dockerNote: 'Docker detected. Enter your printer\'s subnet in CIDR notation. Requires network_mode: host in docker-compose.yml.',
  380. scanSubnet: 'Scan Subnet for Printers',
  381. discoverNetwork: 'Discover Printers on Network',
  382. scanningSubnet: 'Scanning subnet for Bambu printers...',
  383. scanningNetwork: 'Scanning network...',
  384. serialRequired: 'Serial required',
  385. unknown: 'Unknown',
  386. failedToStart: 'Failed to start discovery',
  387. },
  388. // Filaments section
  389. filaments: 'Filaments',
  390. // Camera
  391. openCameraOverlay: 'Open camera overlay',
  392. openCameraWindow: 'Open camera in new window',
  393. // Firmware
  394. firmwareUpdateAvailable: 'Firmware update available: {{current}} → {{latest}}',
  395. firmwareUpToDate: 'Firmware {{version}} — Up to date',
  396. firmwareUpdateButton: 'Update',
  397. // Plate detection
  398. plateDetection: {
  399. noPermission: 'You do not have permission to update printers',
  400. enabledClick: 'Plate check enabled - Click to disable',
  401. disabledClick: 'Plate check disabled - Click to enable',
  402. manageCalibration: 'Manage plate detection calibration',
  403. calibrationRequired: 'Calibration Required',
  404. calibrationInstructions: 'Please ensure the build plate is <strong>completely empty</strong>, then click Calibrate.',
  405. calibrationDescription: 'Calibration captures a reference image of the empty plate. Future checks will compare against this reference to detect objects.',
  406. calibrationTip: '<strong>Tip:</strong> You can store up to 5 calibrations for different plates. The system automatically uses the best match when checking.',
  407. plateEmpty: 'Plate appears empty',
  408. objectsDetected: 'Objects detected on plate',
  409. confidence: 'Confidence',
  410. difference: 'Difference',
  411. analysisPreview: 'Analysis preview:',
  412. analysisLegend: 'Green box = detection area, Red overlay = differences from calibration',
  413. savedReferences: 'Saved References ({{count}}/{{max}})',
  414. deleteReference: 'Delete reference',
  415. labelPlaceholder: 'Label...',
  416. clickToEdit: '{{label}} - Click to edit',
  417. clickToAddLabel: 'Click to add label',
  418. },
  419. // Fans
  420. fans: {
  421. partCooling: 'Part Cooling Fan',
  422. auxiliary: 'Auxiliary Fan',
  423. chamber: 'Chamber Fan',
  424. },
  425. // HMS errors
  426. clickToViewHmsErrors: 'Click to view HMS errors',
  427. estimatedCompletion: 'Estimated completion time',
  428. slotOptions: 'Slot options',
  429. // Firmware modal
  430. firmwareModal: {
  431. title: 'Firmware Update',
  432. titleUpToDate: 'Firmware Info',
  433. currentVersion: 'Current:',
  434. latestVersion: 'Latest:',
  435. releaseNotes: 'Release Notes',
  436. checkingPrereqs: 'Checking prerequisites...',
  437. sdCardReady: 'SD card ready. Click below to upload firmware.',
  438. uploadedSuccess: 'Firmware uploaded to SD card!',
  439. applyInstructions: 'To apply the update on your printer:',
  440. step1: 'On the printer\'s touchscreen, go to <strong>Settings</strong>',
  441. step2: 'Navigate to <strong>Firmware</strong>',
  442. step3: 'Select <strong>Update from SD card</strong>',
  443. step4: 'The update will take 10-20 minutes',
  444. done: 'Done',
  445. starting: 'Starting...',
  446. uploadFirmware: 'Upload Firmware',
  447. uploadFailed: 'Failed to start upload: {{error}}',
  448. uploadedToast: 'Firmware uploaded! Trigger update from printer screen.',
  449. },
  450. accessCodePlaceholder: 'Leave empty to keep current',
  451. // ROI editor
  452. roi: {
  453. title: 'Detection Area (ROI)',
  454. xStart: 'X Start',
  455. yStart: 'Y Start',
  456. width: 'Width',
  457. height: 'Height',
  458. instruction: 'Adjust the detection area to focus on the build plate. The green box in the preview shows the current area.',
  459. },
  460. },
  461. // Archives page
  462. archives: {
  463. title: 'Print Archives',
  464. searchPlaceholder: 'Search archives...',
  465. filterByPrinter: 'Filter by printer',
  466. filterByStatus: 'Filter by status',
  467. sortBy: 'Sort by',
  468. sortNewest: 'Newest first',
  469. sortOldest: 'Oldest first',
  470. sortName: 'Name',
  471. sortDuration: 'Duration',
  472. sortLargest: 'Largest first',
  473. sortSmallest: 'Smallest first',
  474. sortSize: 'Size',
  475. noArchives: 'No archives found',
  476. noArchivesSearch: 'No archives match your search',
  477. noArchivesYet: 'No archives yet',
  478. loadingArchives: 'Loading archives...',
  479. releaseToUpload: 'Release to upload',
  480. showAll: 'Show all',
  481. showFavoritesOnly: 'Show favorites only',
  482. gridView: 'Grid view',
  483. listView: 'List view',
  484. calendarView: 'Calendar view',
  485. logView: 'Print Log',
  486. manageTags: 'Manage Tags',
  487. showFailedPrints: 'Show failed prints',
  488. hideFailedPrints: 'Hide failed prints',
  489. printTime: 'Print Time',
  490. filamentUsed: 'Filament Used',
  491. cost: 'Cost',
  492. reprint: 'Reprint',
  493. preview: 'Preview',
  494. deleteArchive: 'Delete Archive',
  495. deleteConfirm: 'Are you sure you want to delete this archive?',
  496. favorite: 'Favorite',
  497. unfavorite: 'Remove from favorites',
  498. viewDetails: 'View Details',
  499. status: {
  500. completed: 'Completed',
  501. failed: 'Failed',
  502. stopped: 'Stopped',
  503. },
  504. toast: {
  505. source3mfAttached: 'Source 3MF attached: {{filename}}',
  506. failedUploadSource3mf: 'Failed to upload source 3MF',
  507. source3mfRemoved: 'Source 3MF removed',
  508. failedRemoveSource3mf: 'Failed to remove source 3MF',
  509. f3dAttached: 'F3D attached: {{filename}}',
  510. failedUploadF3d: 'Failed to upload F3D',
  511. f3dRemoved: 'F3D removed',
  512. failedRemoveF3d: 'Failed to remove F3D',
  513. timelapseAttached: 'Timelapse attached: {{filename}}',
  514. timelapseAlreadyAttached: 'Timelapse already attached',
  515. noMatchingTimelapse: 'No matching timelapse found',
  516. failedScanTimelapse: 'Failed to scan for timelapse',
  517. failedAttachTimelapse: 'Failed to attach timelapse',
  518. timelapseRemoved: 'Timelapse removed',
  519. failedRemoveTimelapse: 'Failed to remove timelapse',
  520. timelapseUploaded: 'Timelapse uploaded: {{filename}}',
  521. failedUploadTimelapse: 'Failed to upload timelapse',
  522. archiveDeleted: 'Archive deleted',
  523. failedDeleteArchive: 'Failed to delete archive',
  524. addedToFavorites: 'Added to favorites',
  525. removedFromFavorites: 'Removed from favorites',
  526. projectUpdated: 'Project updated',
  527. failedUpdateProject: 'Failed to update project',
  528. linkCopied: 'Link copied to clipboard',
  529. failedCopyLink: 'Failed to copy link',
  530. photoDeleted: 'Photo deleted',
  531. failedDeletePhoto: 'Failed to delete photo',
  532. failedDeleteArchives: 'Failed to delete archives',
  533. failedUpdateFavorites: 'Failed to update favorites',
  534. exportDownloaded: 'Export downloaded',
  535. exportFailed: 'Export failed',
  536. },
  537. menu: {
  538. print: 'Print',
  539. schedule: 'Schedule',
  540. openInBambuStudio: 'Open in Slicer',
  541. slice: 'Slice',
  542. externalLink: 'External Link',
  543. viewOnMakerWorld: 'View on MakerWorld',
  544. preview3d: '3D Preview',
  545. viewTimelapse: 'View Timelapse',
  546. scanForTimelapse: 'Scan for Timelapse',
  547. uploadTimelapse: 'Upload Timelapse',
  548. removeTimelapse: 'Remove Timelapse',
  549. downloadSource3mf: 'Download Source 3MF',
  550. uploadSource3mf: 'Upload Source 3MF',
  551. replaceSource3mf: 'Replace Source 3MF',
  552. removeSource3mf: 'Remove Source 3MF',
  553. uploadF3d: 'Upload F3D',
  554. replaceF3d: 'Replace F3D',
  555. downloadF3d: 'Download F3D',
  556. removeF3d: 'Remove F3D',
  557. download: 'Download',
  558. copyDownloadLink: 'Copy Download Link',
  559. qrCode: 'QR Code',
  560. viewPhotos: 'View Photos',
  561. viewPhotosCount: 'View Photos ({{count}})',
  562. projectPage: 'Project Page',
  563. addToFavorites: 'Add to Favorites',
  564. removeFromFavorites: 'Remove from Favorites',
  565. edit: 'Edit',
  566. goToProject: 'Go to Project: {{name}}',
  567. addToProject: 'Add to Project',
  568. removeFromProject: 'Remove from Project',
  569. loading: 'Loading...',
  570. noProjectsAvailable: 'No projects available',
  571. select: 'Select',
  572. deselect: 'Deselect',
  573. delete: 'Delete',
  574. },
  575. permission: {
  576. noReprint: 'You do not have permission to reprint this archive',
  577. noAddToQueue: 'You do not have permission to add to queue',
  578. noUpdateArchives: 'You do not have permission to update archives',
  579. noUploadFiles: 'You do not have permission to upload files',
  580. noDownload: 'You do not have permission to download archives',
  581. noCopyLink: 'You do not have permission to copy download links',
  582. noDelete: 'You do not have permission to delete this archive',
  583. noCreate: 'You do not have permission to create archives',
  584. },
  585. card: {
  586. previousPlate: 'Previous plate',
  587. nextPlate: 'Next plate',
  588. plateNumber: 'Plate {{index}}',
  589. moreOptions: 'Right-click for more options',
  590. addToFavorites: 'Add to favorites',
  591. removeFromFavorites: 'Remove from favorites',
  592. cancelled: 'cancelled',
  593. failed: 'failed',
  594. duplicate: 'duplicate',
  595. duplicateTitle: 'This model has been printed before',
  596. openSource3mf: 'Open source 3MF in Bambu Studio (right-click for more options)',
  597. downloadF3d: 'Download Fusion 360 design file',
  598. viewTimelapse: 'View timelapse',
  599. viewPhoto: 'View 1 photo',
  600. viewPhotos: 'View {{count}} photos',
  601. openFolder: 'Open folder: {{name}}',
  602. slicedFile: 'Sliced file - ready to print',
  603. sourceFile: 'Source file only - no AMS mapping available',
  604. gcode: 'GCODE',
  605. source: 'SOURCE',
  606. project: 'Project: {{name}}',
  607. estimated: 'Estimated: {{time}}',
  608. actual: 'Actual: {{time}}',
  609. accuracy: 'Accuracy: {{percent}}%',
  610. filament: '{{weight}}g',
  611. layer: '{{count}} layer',
  612. layers: '{{count}} layers',
  613. object: '{{count}} object',
  614. objects: '{{count}} objects',
  615. slicedFor: 'Sliced for {{model}}',
  616. uploadedBy: 'Uploaded By',
  617. noPermissionReprint: 'You do not have permission to reprint',
  618. noFileForReprint: 'No 3MF file available — the file could not be downloaded from the printer when the print was recorded',
  619. noPermissionEdit: 'You do not have permission to edit archives',
  620. noPermissionDelete: 'You do not have permission to delete archives',
  621. reprint: 'Reprint',
  622. schedulePrint: 'Schedule Print',
  623. schedule: 'Schedule',
  624. openInBambuStudio: 'Open in Slicer',
  625. openInBambuStudioToSlice: 'Open in Slicer to slice',
  626. slice: 'Slice',
  627. externalLink: 'External Link',
  628. makerWorld: 'MakerWorld: {{designer}}',
  629. viewProject: 'View project',
  630. noExternalLink: 'No external link',
  631. preview3d: '3D Preview',
  632. download: 'Download',
  633. edit: 'Edit',
  634. delete: 'Delete',
  635. },
  636. modal: {
  637. deleteArchive: 'Delete Archive',
  638. deleteConfirm: 'Are you sure you want to delete "{{name}}"? This action cannot be undone.',
  639. deleteButton: 'Delete',
  640. removeSource3mf: 'Remove Source 3MF',
  641. removeSource3mfConfirm: 'Are you sure you want to remove the source 3MF file from "{{name}}"? This will delete the original slicer project file.',
  642. removeButton: 'Remove',
  643. removeF3d: 'Remove F3D',
  644. removeF3dConfirm: 'Are you sure you want to remove the Fusion 360 design file from "{{name}}"?',
  645. removeTimelapse: 'Remove Timelapse',
  646. removeTimelapseConfirm: 'Are you sure you want to remove the timelapse video from "{{name}}"?',
  647. timelapse: '{{name}} - Timelapse',
  648. selectTimelapse: 'Select Timelapse',
  649. selectTimelapseDesc: 'No auto-match found. Select the timelapse for this print:',
  650. deleteArchives: 'Delete Archives',
  651. deleteArchivesConfirm: 'Are you sure you want to delete {{count}} archive(s)? This action cannot be undone.',
  652. deleteCount: 'Delete {{count}}',
  653. },
  654. page: {
  655. title: 'Archives',
  656. printsCount: '{{filtered}} of {{total}} prints',
  657. dropFilesHere: 'Drop .3mf files here',
  658. releaseToUpload: 'Release to upload',
  659. only3mfSupported: 'Only .3mf files are supported',
  660. close: 'Close',
  661. selected: '{{count}} selected',
  662. selectAll: 'Select All',
  663. tags: 'Tags',
  664. project: 'Project',
  665. favorite: 'Favorite',
  666. delete: 'Delete',
  667. toggledFavorites: 'Toggled favorites for {{count}} archive(s)',
  668. failedUpdateFavorites: 'Failed to update favorites',
  669. archivesDeleted: '{{count}} archive(s) deleted',
  670. failedDeleteArchives: 'Failed to delete archives',
  671. photoDeleted: 'Photo deleted',
  672. failedDeletePhoto: 'Failed to delete photo',
  673. },
  674. list: {
  675. name: 'Name',
  676. printer: 'Printer',
  677. date: 'Date',
  678. size: 'Size',
  679. actions: 'Actions',
  680. hasTimelapse: 'Has timelapse',
  681. },
  682. log: {
  683. date: 'Date',
  684. printName: 'Print Name',
  685. printer: 'Printer',
  686. user: 'User',
  687. status: 'Status',
  688. duration: 'Duration',
  689. filament: 'Filament',
  690. allPrinters: 'All Printers',
  691. allUsers: 'All Users',
  692. allStatuses: 'All Statuses',
  693. cancelled: 'Cancelled',
  694. skipped: 'Skipped',
  695. dateFrom: 'From',
  696. dateTo: 'To',
  697. noEntries: 'No print log entries found',
  698. showing: 'Showing {{count}} of {{total}} entries',
  699. rowsPerPage: 'Rows',
  700. page: 'Page',
  701. prev: 'Prev',
  702. next: 'Next',
  703. clearLog: 'Clear Log',
  704. clearLogTitle: 'Clear Print Log',
  705. clearLogConfirm: 'All print log entries will be permanently deleted. Archives and queue items are not affected. This action cannot be undone. Are you sure?',
  706. clearLogButton: 'Clear All',
  707. cleared: '{{count}} log entries cleared',
  708. clearFailed: 'Failed to clear print log',
  709. },
  710. },
  711. // Queue page
  712. queue: {
  713. title: 'Print Queue',
  714. subtitle: 'Schedule and manage your print jobs',
  715. addToQueue: 'Add to Queue',
  716. // Print modal
  717. print: 'Print',
  718. reprint: 'Re-print',
  719. schedulePrint: 'Schedule Print',
  720. editQueueItem: 'Edit Queue Item',
  721. printToPrinters: 'Print to {{count}} Printers',
  722. queueToPrinters: 'Queue to {{count}} Printers',
  723. sending: 'Sending...',
  724. sendingProgress: 'Sending {{current}}/{{total}}...',
  725. adding: 'Adding...',
  726. addingProgress: 'Adding {{current}}/{{total}}...',
  727. savingProgress: 'Saving {{current}}/{{total}}...',
  728. clearQueue: 'Clear Queue',
  729. clearHistory: 'Clear History',
  730. emptyQueue: 'Queue is empty',
  731. position: 'Position',
  732. scheduledTime: 'Scheduled Time',
  733. moveUp: 'Move Up',
  734. moveDown: 'Move Down',
  735. startNow: 'Start Now',
  736. printingInProgress: 'Printing in progress...',
  737. viewArchive: 'View archive',
  738. viewInFileManager: 'View in File Manager',
  739. itemCount: '{{count}} item',
  740. itemCount_plural: '{{count}} items',
  741. dragToReorder: 'Drag to reorder (ASAP only)',
  742. reorderHint: 'Position only affects ASAP items. Scheduled items run at their set time.',
  743. addedBy: 'Added by {{name}}',
  744. nextInQueue: 'Next in queue',
  745. clearPlate: 'Clear Plate & Start Next',
  746. clearPlateSuccess: 'Plate cleared — ready for next print',
  747. plateReady: 'Plate cleared — ready for next print',
  748. plateNumber: 'Plate {{index}}',
  749. // Sections
  750. sections: {
  751. currentlyPrinting: 'Currently Printing',
  752. queued: 'Queued',
  753. history: 'History',
  754. },
  755. // Status
  756. status: {
  757. pending: 'Pending',
  758. waiting: 'Waiting',
  759. printing: 'Printing',
  760. paused: 'Paused',
  761. completed: 'Completed',
  762. failed: 'Failed',
  763. skipped: 'Skipped',
  764. cancelled: 'Cancelled',
  765. },
  766. // Summary cards
  767. summary: {
  768. printing: 'Printing',
  769. queued: 'Queued',
  770. totalTime: 'Total Queue Time',
  771. totalWeight: 'Total Queue Weight',
  772. history: 'History',
  773. },
  774. // Filters
  775. filter: {
  776. allPrinters: 'All Printers',
  777. unassigned: 'Unassigned',
  778. allStatus: 'All Status',
  779. allLocations: 'All Locations',
  780. any: 'Any',
  781. },
  782. // Sort
  783. sort: {
  784. byPosition: 'Sort by Position',
  785. byName: 'Sort by Name',
  786. byPrinter: 'Sort by Printer',
  787. bySchedule: 'Sort by Schedule',
  788. byDate: 'Sort by Date',
  789. ascendingOldest: 'Ascending (oldest first)',
  790. descendingNewest: 'Descending (newest first)',
  791. },
  792. // Badges
  793. badges: {
  794. staged: 'Staged',
  795. requiresPrevious: 'Requires previous success',
  796. autoPowerOff: 'Auto power off',
  797. },
  798. // Empty state
  799. empty: {
  800. title: 'No prints scheduled',
  801. description: 'Schedule a print from the Archives page using the "Schedule" option in the context menu, or drag and drop files to get started.',
  802. },
  803. // Time
  804. time: {
  805. asap: 'ASAP',
  806. overdue: 'Overdue',
  807. now: 'Now',
  808. lessThanMinute: 'In less than a minute',
  809. inMinutes: 'In {{count}} min',
  810. inHours: 'In {{count}} hours',
  811. },
  812. // Actions
  813. actions: {
  814. stopPrint: 'Stop Print',
  815. startPrint: 'Start Print',
  816. requeue: 'Re-queue',
  817. },
  818. // Bulk edit
  819. bulkEdit: {
  820. title: 'Edit {{count}} Item',
  821. title_plural: 'Edit {{count}} Items',
  822. description: 'Only changed settings will be applied to selected items.',
  823. printer: 'Printer',
  824. noChange: '— No change —',
  825. queueOptions: 'Queue Options',
  826. staged: 'Staged (manual start)',
  827. autoPowerOff: 'Auto power off after print',
  828. requirePrevious: 'Require previous success',
  829. printOptions: 'Print Options',
  830. bedLevelling: 'Bed levelling',
  831. flowCalibration: 'Flow calibration',
  832. vibrationCalibration: 'Vibration calibration',
  833. layerInspection: 'First layer inspection',
  834. timelapse: 'Timelapse',
  835. useAms: 'Use AMS',
  836. applyChanges: 'Apply Changes',
  837. selectAll: 'Select All',
  838. deselectAll: 'Deselect All',
  839. selected: '{{count}} selected',
  840. editSelected: 'Edit Selected',
  841. cancelSelected: 'Cancel Selected',
  842. },
  843. // Confirmations
  844. confirm: {
  845. cancelTitle: 'Cancel Scheduled Print',
  846. cancelMessage: 'Are you sure you want to cancel "{{name}}"?',
  847. stopTitle: 'Stop Print',
  848. stopMessage: 'Are you sure you want to stop the current print "{{name}}"? This will cancel the print job on the printer.',
  849. removeTitle: 'Remove from History',
  850. removeMessage: 'Are you sure you want to remove "{{name}}" from the queue history?',
  851. clearHistoryTitle: 'Clear History',
  852. clearHistoryMessage: 'Are you sure you want to remove all {{count}} item(s) from the history?',
  853. cancelButton: 'Cancel Print',
  854. stopButton: 'Stop Print',
  855. thisPrint: 'this print',
  856. thisItem: 'this item',
  857. },
  858. // Toast messages
  859. toast: {
  860. cancelled: 'Queue item cancelled',
  861. cancelFailed: 'Failed to cancel item',
  862. removed: 'Queue item removed',
  863. removeFailed: 'Failed to remove item',
  864. stopped: 'Print stopped',
  865. stopFailed: 'Failed to stop print',
  866. released: 'Print released to queue',
  867. startFailed: 'Failed to start print',
  868. reorderFailed: 'Failed to reorder queue',
  869. historyCleared: 'Cleared {{count}} history item(s)',
  870. clearHistoryFailed: 'Failed to clear history',
  871. updateFailed: 'Failed to update items',
  872. bulkCancelled: 'Cancelled {{count}} item(s)',
  873. bulkCancelFailed: 'Failed to cancel items',
  874. },
  875. // Permissions
  876. permissions: {
  877. noStopPrint: 'You do not have permission to stop prints',
  878. noStartPrint: 'You do not have permission to start prints',
  879. noEdit: 'You do not have permission to edit this queue item',
  880. noCancel: 'You do not have permission to cancel this queue item',
  881. noRequeue: 'You do not have permission to re-queue items',
  882. noRemove: 'You do not have permission to remove this queue item',
  883. noClearHistory: 'You do not have permission to clear all history',
  884. noEditItems: 'You do not have permission to edit queue items',
  885. noCancelItems: 'You do not have permission to cancel queue items',
  886. },
  887. },
  888. // Statistics page
  889. stats: {
  890. title: 'Dashboard',
  891. subtitle: 'Drag widgets to rearrange. Click the eye icon to hide.',
  892. overview: 'Overview',
  893. totalPrints: 'Total Prints',
  894. successRate: 'Success Rate',
  895. totalPrintTime: 'Total Print Time',
  896. printTime: 'Print Time',
  897. totalFilament: 'Total Filament Used',
  898. filamentUsed: 'Filament Used',
  899. filamentCost: 'Filament Cost',
  900. totalCost: 'Total Cost',
  901. energyUsed: 'Energy Used',
  902. energyCost: 'Energy Cost',
  903. averagePrintTime: 'Average Print Time',
  904. printsPerDay: 'Prints per Day',
  905. byPrinter: 'By Printer',
  906. printsByPrinter: 'Prints by Printer',
  907. byMaterial: 'By Material',
  908. byMonth: 'By Month',
  909. last7Days: 'Last 7 Days',
  910. last30Days: 'Last 30 Days',
  911. last90Days: 'Last 90 Days',
  912. allTime: 'All Time',
  913. // Widgets
  914. quickStats: 'Quick Stats',
  915. printActivity: 'Print Activity',
  916. filamentTypes: 'Filament Types',
  917. filamentTrends: 'Filament Trends',
  918. failureAnalysis: 'Failure Analysis',
  919. timeAccuracy: 'Time Accuracy',
  920. successful: 'Successful:',
  921. failed: 'Failed:',
  922. perfectEstimate: '100% = perfect estimate',
  923. noTimeAccuracyData: 'No time accuracy data yet',
  924. noFilamentData: 'No filament data available',
  925. noPrinterData: 'No printer data available',
  926. noPrintData: 'No print data available',
  927. noPrintDataLast30Days: 'No print data in the last 30 days',
  928. failureReasons: 'Failure Reasons',
  929. topFailureReasons: 'Top Failure Reasons',
  930. failedPrintsCount: '{{failed}} / {{total}} prints failed',
  931. lastWeekRate: 'Last week: {{rate}}%',
  932. // Actions
  933. resetLayout: 'Reset Layout',
  934. recalculateCosts: 'Recalculate Costs',
  935. recalculateCostsHint: 'Recalculate all archive costs using current filament prices',
  936. exportStats: 'Export Stats',
  937. exportAsCsv: 'Export as CSV',
  938. exportAsExcel: 'Export as Excel',
  939. hiddenCount: '{{count}} Hidden',
  940. // Toast
  941. exportDownloaded: 'Export downloaded',
  942. exportFailed: 'Export failed',
  943. layoutReset: 'Layout reset',
  944. recalculatedCosts: 'Recalculated costs for {{count}} archives',
  945. recalculateFailed: 'Failed to recalculate costs',
  946. // Loading
  947. loadingStats: 'Loading statistics...',
  948. // Permissions
  949. noPermissionResetLayout: 'You do not have permission to reset layout',
  950. noPermissionRecalculate: 'You do not have permission to recalculate costs',
  951. },
  952. // Maintenance page
  953. maintenance: {
  954. title: 'Maintenance',
  955. overview: 'Overview',
  956. allOk: 'All maintenance up to date',
  957. dueCount: '{{count}} item due',
  958. dueCount_plural: '{{count}} items due',
  959. warningCount: '{{count}} warning',
  960. warningCount_plural: '{{count}} warnings',
  961. totalPrintTime: 'Total Print Time',
  962. nextMaintenance: 'Next Maintenance',
  963. nothingDue: 'Nothing due',
  964. tasks: 'Tasks',
  965. lastPerformed: 'Last performed',
  966. interval: 'Interval',
  967. hoursRemaining: '{{hours}}h remaining',
  968. hoursOverdue: '{{hours}}h overdue',
  969. markDone: 'Mark as Done',
  970. performMaintenance: 'Perform Maintenance',
  971. history: 'History',
  972. noHistory: 'No maintenance history',
  973. editPrintHours: 'Edit Print Hours',
  974. currentHours: 'Current Hours',
  975. // Tabs
  976. statusTab: 'Status',
  977. settingsTab: 'Settings',
  978. // Status
  979. overdueCount: '{{count}} overdue',
  980. dueSoonCount: '{{count}} due soon',
  981. dueSoon: 'Due soon',
  982. allGood: 'All good',
  983. overdueBy: 'Overdue by {{duration}}',
  984. dueIn: 'Due in {{duration}}',
  985. timeLeft: '{{duration}} left',
  986. // Duration formats
  987. day: '1 day',
  988. days: '{{count}} days',
  989. week: '1 week',
  990. weeks: '{{count}} weeks',
  991. month: '1 month',
  992. months: '{{count}} months',
  993. year: '1 year',
  994. // Settings
  995. maintenanceTypes: 'Maintenance Types',
  996. maintenanceTypesDescription: 'System types and your custom maintenance tasks',
  997. addCustomType: 'Add Custom Type',
  998. restoreDefaults: 'Restore Default Tasks',
  999. intervalType: 'Interval Type',
  1000. intervalValue: 'Interval ({{type}})',
  1001. icon: 'Icon',
  1002. documentationLink: 'Documentation Link (optional)',
  1003. assignToPrinters: 'Assign to Printers',
  1004. selectAtLeastOnePrinter: 'Select at least one printer',
  1005. addType: 'Add Type',
  1006. custom: 'Custom',
  1007. printHours: 'Print Hours',
  1008. calendarDays: 'Calendar Days',
  1009. exampleName: 'e.g., Replace HEPA Filter',
  1010. viewDocumentation: 'View documentation',
  1011. timeBasedInterval: 'Time-based interval',
  1012. // Interval overrides
  1013. intervalOverrides: 'Interval Overrides',
  1014. intervalOverridesDescription: 'Customize intervals for specific printers',
  1015. // Printer assignment
  1016. assignedToPrinters: 'Assigned to printers:',
  1017. noPrintersAssigned: 'No printers assigned',
  1018. addPrinterShort: 'Add:',
  1019. printersAssignedClick: '{{count}} printer(s) assigned - click to manage',
  1020. removeFromPrinter: 'Remove from this printer',
  1021. // Types
  1022. types: {
  1023. lubricateCarbonRods: 'Lubricate Carbon Rods',
  1024. lubricateRails: 'Lubricate Linear Rails',
  1025. cleanNozzle: 'Clean Nozzle/Hotend',
  1026. checkBelts: 'Check Belt Tension',
  1027. cleanBuildPlate: 'Clean Build Plate',
  1028. checkExtruder: 'Check Extruder Gears',
  1029. checkCooling: 'Check Cooling Fans',
  1030. generalInspection: 'General Inspection',
  1031. cleanCarbonRods: 'Clean Carbon Rods',
  1032. cleanLinearRails: 'Clean Linear Rails',
  1033. checkPtfeTube: 'Check PTFE Tube',
  1034. replaceHepaFilter: 'Replace HEPA Filter',
  1035. replaceCarbonFilter: 'Replace Carbon Filter',
  1036. lubricateLeftNozzleRail: 'Lubricate Left Nozzle Rail',
  1037. },
  1038. // Toast
  1039. maintenanceComplete: 'Maintenance marked as complete',
  1040. typeUpdated: 'Maintenance type updated',
  1041. typeDeleted: 'Maintenance type deleted',
  1042. defaultsRestored: 'Restored {{count}} default task(s)',
  1043. printHoursUpdated: 'Print hours updated',
  1044. printerAssigned: 'Printer assigned',
  1045. printerRemoved: 'Printer removed',
  1046. // Confirmation
  1047. deleteTypeConfirm: 'Delete "{{name}}"?',
  1048. deleteSystemTypeTitle: 'Delete default maintenance task?',
  1049. deleteSystemTypeMessage: 'Are you sure you want to delete the default maintenance task "{{name}}"?',
  1050. // Permissions
  1051. noPermissionUpdate: 'You do not have permission to update maintenance items',
  1052. noPermissionPerform: 'You do not have permission to perform maintenance',
  1053. noPermissionEditTypes: 'You do not have permission to edit maintenance types',
  1054. noPermissionDeleteTypes: 'You do not have permission to delete maintenance types',
  1055. noPermissionEditHours: 'You do not have permission to edit print hours',
  1056. noPermissionRemovePrinter: 'You do not have permission to remove printer assignments',
  1057. noPermissionAssignPrinter: 'You do not have permission to assign printers',
  1058. noPermissionEditIntervals: 'You do not have permission to edit intervals',
  1059. // Configure link
  1060. configureSettings: 'Configure maintenance types and intervals',
  1061. },
  1062. // Settings page
  1063. settings: {
  1064. title: 'Settings',
  1065. general: 'General',
  1066. // Tab names
  1067. tabs: {
  1068. general: 'General',
  1069. smartPlugs: 'Smart Plugs',
  1070. notifications: 'Notifications',
  1071. filament: 'Filament',
  1072. network: 'Network',
  1073. apiKeys: 'API Keys',
  1074. virtualPrinter: 'Virtual Printer',
  1075. users: 'Authentication',
  1076. backup: 'Backup',
  1077. emailAuth: 'Email Authentication',
  1078. },
  1079. // Email settings
  1080. email: {
  1081. smtpSettings: 'SMTP Configuration',
  1082. smtpHost: 'SMTP Server',
  1083. smtpPort: 'SMTP Port',
  1084. security: 'Security',
  1085. authentication: 'Authentication',
  1086. username: 'Username',
  1087. password: 'Password',
  1088. fromEmail: 'From Email',
  1089. fromName: 'From Name',
  1090. testConnection: 'Test SMTP Connection',
  1091. testRecipient: 'Test Recipient Email',
  1092. sendTest: 'Send Test Email',
  1093. sending: 'Sending...',
  1094. save: 'Save Settings',
  1095. saving: 'Saving...',
  1096. advancedAuth: 'Advanced Authentication',
  1097. advancedAuthEnabled: 'Advanced Authentication is enabled',
  1098. advancedAuthEnabledDesc: 'Email-based user management features are active. New users will receive auto-generated passwords via email, and users can reset their passwords through the forgot password feature.',
  1099. advancedAuthDisabled: 'Advanced Authentication is disabled',
  1100. advancedAuthDisabledDesc: 'Enable advanced authentication to activate email-based features for user management.',
  1101. enable: 'Enable',
  1102. disable: 'Disable',
  1103. feature1: 'Passwords are auto-generated and emailed to new users',
  1104. feature2: 'Users can login with username or email',
  1105. feature3: 'Forgot password feature is available',
  1106. feature4: 'Admins can reset user passwords via email',
  1107. // Error messages
  1108. errors: {
  1109. requiredFields: 'Please fill in all required fields',
  1110. usernameRequired: 'Username is required when authentication is enabled',
  1111. enterTestEmail: 'Please enter a test email address',
  1112. smtpServerAndEmail: 'Please fill in SMTP Server and From Email before testing',
  1113. usernamePasswordRequired: 'Username and Password are required when authentication is enabled',
  1114. configureSmtpFirst: 'Please configure and test SMTP settings first',
  1115. },
  1116. // Success messages
  1117. success: {
  1118. settingsSaved: 'SMTP settings saved successfully',
  1119. },
  1120. // Security options
  1121. securityOptions: {
  1122. starttls: 'STARTTLS (Port 587)',
  1123. ssl: 'SSL/TLS (Port 465)',
  1124. none: 'None (Port 25)',
  1125. },
  1126. // Authentication options
  1127. authOptions: {
  1128. enabled: 'Enabled',
  1129. disabled: 'Disabled',
  1130. },
  1131. },
  1132. appearance: 'Appearance',
  1133. notifications: 'Notifications',
  1134. smartPlugs: 'Smart Plugs',
  1135. spoolman: 'Spoolman',
  1136. updates: 'Updates',
  1137. language: 'Language',
  1138. languageDescription: 'Select your preferred language',
  1139. theme: 'Theme',
  1140. themeLight: 'Light',
  1141. themeDark: 'Dark',
  1142. themeSystem: 'System',
  1143. defaultView: 'Default View',
  1144. defaultViewDescription: 'Page to show when opening the app',
  1145. checkForUpdates: 'Check for Updates',
  1146. autoUpdate: 'Auto Update',
  1147. currentVersion: 'Current Version',
  1148. latestVersion: 'Latest Version',
  1149. upToDate: 'You are up to date',
  1150. updateAvailable: 'Update available',
  1151. // Notifications
  1152. notificationLanguage: 'Notification Language',
  1153. notificationLanguageDescription: 'Language for push notifications',
  1154. bedCooledThreshold: 'Bed Cooled Threshold',
  1155. bedCooledThresholdDescription: 'Temperature below which the bed is considered cooled after a print',
  1156. notificationProviders: 'Notification Providers',
  1157. addProvider: 'Add Provider',
  1158. editProvider: 'Edit Provider',
  1159. providerType: 'Provider Type',
  1160. testNotification: 'Test Notification',
  1161. testSuccess: 'Test notification sent successfully',
  1162. testFailed: 'Failed to send test notification',
  1163. quietHours: 'Quiet Hours',
  1164. quietHoursDescription: 'Do not disturb during these hours',
  1165. quietHoursStart: 'Start',
  1166. quietHoursEnd: 'End',
  1167. events: {
  1168. title: 'Notification Events',
  1169. printStart: 'Print Started',
  1170. printComplete: 'Print Completed',
  1171. printFailed: 'Print Failed',
  1172. printStopped: 'Print Stopped',
  1173. printProgress: 'Progress Milestones',
  1174. printProgressDescription: 'Notify at 25%, 50%, 75%',
  1175. printerOffline: 'Printer Offline',
  1176. printerError: 'Printer Error',
  1177. filamentLow: 'Low Filament',
  1178. maintenanceDue: 'Maintenance Due',
  1179. maintenanceDueDescription: 'Notify when maintenance is needed',
  1180. },
  1181. // Smart Plugs
  1182. smartPlug: {
  1183. title: 'Smart Plugs',
  1184. add: 'Add Smart Plug',
  1185. edit: 'Edit Smart Plug',
  1186. name: 'Name',
  1187. ipAddress: 'IP Address',
  1188. linkedPrinter: 'Linked Printer',
  1189. autoOn: 'Auto Power On',
  1190. autoOnDescription: 'Turn on when print starts',
  1191. autoOff: 'Auto Power Off',
  1192. autoOffDescription: 'Turn off after print completes',
  1193. offDelay: 'Off Delay',
  1194. offDelayMinutes: 'Minutes after print',
  1195. offDelayTemp: 'When nozzle below temperature',
  1196. currentState: 'Current State',
  1197. turnOn: 'Turn On',
  1198. turnOff: 'Turn Off',
  1199. },
  1200. // Filament Tracking Mode
  1201. filamentTracking: 'Filament Tracking',
  1202. filamentTrackingDesc: 'Choose how to track your filament spools. You can use the built-in inventory or connect an external Spoolman server.',
  1203. trackingModeBuiltIn: 'Built-in Inventory',
  1204. trackingModeBuiltInDesc: 'RFID auto-matching and usage tracking included',
  1205. trackingModeSpoolmanDesc: 'External filament management server',
  1206. builtInFeatureRfid: 'Automatically detects Bambu Lab RFID spools in AMS',
  1207. builtInFeatureUsage: 'Tracks filament consumption per print',
  1208. builtInFeatureCatalog: 'Manage spools, colors, and K-factor profiles',
  1209. builtInFeatureThirdParty: 'Third-party spools can be assigned to inventory spools',
  1210. amsSyncButton: 'Sync Weights from AMS',
  1211. amsSyncTitle: 'Sync Spool Weights from AMS',
  1212. amsSyncMessage: 'This will overwrite all inventory spool weights with the current AMS remain% values from connected printers. Use this to recover from corrupted weight data. Printers must be online.',
  1213. amsSyncing: 'Syncing...',
  1214. amsSyncSuccess: '{{synced}} spool(s) synced, {{skipped}} skipped',
  1215. amsSyncError: 'Failed to sync weights from AMS',
  1216. // Spoolman settings
  1217. spoolmanUrl: 'Spoolman URL',
  1218. spoolmanUrlHint: 'URL of your Spoolman server (e.g., http://localhost:7912)',
  1219. spoolmanConnected: 'Connected',
  1220. spoolmanDisconnected: 'Disconnected',
  1221. status: 'Status',
  1222. connect: 'Connect',
  1223. disconnect: 'Disconnect',
  1224. howSyncWorks: 'How Sync Works',
  1225. syncInfoRfidOnly: 'Only official Bambu Lab spools with RFID are synced',
  1226. syncInfoAutoCreate: 'New spools are auto-created in Spoolman on first sync',
  1227. syncInfoThirdPartySkipped: 'Non-Bambu Lab spools (third-party, refilled) are skipped',
  1228. linkingExistingSpools: 'Linking Existing Spools',
  1229. linkingExistingSpoolsDesc: 'To link existing Spoolman spools to your AMS, hover over an AMS slot and click "Link to Spoolman".',
  1230. syncMode: 'Sync Mode',
  1231. syncModeAuto: 'Automatic',
  1232. syncModeManual: 'Manual Only',
  1233. syncModeAutoDesc: 'AMS data syncs automatically when changes are detected',
  1234. syncModeManualDesc: 'Only sync when manually triggered',
  1235. syncAmsData: 'Sync AMS Data',
  1236. syncAmsDataDesc: 'Manually sync printer AMS data to Spoolman',
  1237. allPrinters: 'All Printers',
  1238. // Default printer
  1239. noDefaultPrinter: 'No default (ask each time)',
  1240. // Sidebar
  1241. sidebarOrder: 'Sidebar order',
  1242. // Camera
  1243. saveThumbnails: 'Save thumbnails',
  1244. captureFinishPhoto: 'Capture finish photo',
  1245. noPrintersConfigured: 'No printers configured',
  1246. // Archive settings
  1247. archiveMode: {
  1248. always: 'Always create archive entry',
  1249. never: 'Never create archive entry',
  1250. ask: 'Ask each time',
  1251. },
  1252. // Updates
  1253. checkForUpdatesLabel: 'Check for updates',
  1254. checkPrinterFirmware: 'Check printer firmware',
  1255. // Queue
  1256. enableRetry: 'Enable retry',
  1257. // Home Assistant
  1258. homeAssistantDescription: 'Control smart plugs via Home Assistant',
  1259. environmentManagedLabel: '(Environment Managed)',
  1260. autoEnabledViaEnv: 'Automatically enabled via environment variables',
  1261. urlFromEnvReadOnly: 'Value set by HA_URL environment variable (read-only)',
  1262. tokenFromEnvReadOnly: 'Value set by HA_TOKEN environment variable (read-only)',
  1263. // MQTT
  1264. mqttConnectedTo: 'Connected to',
  1265. // Prometheus
  1266. prometheusDescription: 'Expose printer data in Prometheus format',
  1267. // Smart plugs empty state
  1268. noSmartPlugsTitle: 'No smart plugs configured',
  1269. noSmartPlugsDescription: 'Add a Tasmota-based smart plug to track energy usage and automate power control.',
  1270. // Notifications empty state
  1271. noProvidersTitle: 'No providers configured',
  1272. noProvidersDescription: 'Add a provider to receive alerts.',
  1273. noTemplatesAvailable: 'No templates available. Restart the backend to seed default templates.',
  1274. // API permissions
  1275. apiPermissionView: 'View printer status and queue',
  1276. apiPermissionEdit: 'Add and remove items from print queue',
  1277. // API keys
  1278. apiKeysEmptyTitle: 'No API keys',
  1279. apiKeysEmptyDescription: 'Create an API key to integrate with external services.',
  1280. // Users
  1281. noUsersFound: 'No users found',
  1282. noGroupsFound: 'No groups found',
  1283. noGroupsAvailable: 'No groups available',
  1284. passwordsDoNotMatch: 'Passwords do not match',
  1285. systemGroupWarning: 'System group names cannot be changed',
  1286. // Auth disabled
  1287. authDisabledTitle: 'Authentication is Disabled',
  1288. authDisabledFeature1: 'Require login to access the system',
  1289. authDisabledFeature2: 'Create multiple users with group-based permissions',
  1290. authDisabledFeature3: 'Control access with 50+ granular permissions',
  1291. // User deletion
  1292. userHasCreated: 'This user has created:',
  1293. userItemsQuestion: 'What would you like to do with these items?',
  1294. deleteUserConfirm: 'Are you sure you want to delete this user?',
  1295. actionCannotBeUndone: 'This action cannot be undone.',
  1296. // Smart plugs
  1297. addFirstSmartPlug: 'Add Your First Smart Plug',
  1298. // Notifications
  1299. providers: 'Providers',
  1300. log: 'Log',
  1301. testAll: 'Test All',
  1302. testResults: 'Test Results',
  1303. testPassedCount: '{{count}} passed',
  1304. testFailedCount: '{{count}} failed',
  1305. messageTemplates: 'Message Templates',
  1306. messageTemplatesDescription: 'Customize notification messages for each event.',
  1307. // API Keys section
  1308. apiKeys: 'API Keys',
  1309. apiKeysDescription: 'Create API keys for external integrations and webhooks.',
  1310. createKey: 'Create Key',
  1311. apiKeyCreated: 'API Key Created Successfully',
  1312. apiKeyCopyWarning: "Copy this key now - it won't be shown again!",
  1313. useInApiBrowser: 'Use in API Browser',
  1314. createNewApiKey: 'Create New API Key',
  1315. keyName: 'Key Name',
  1316. keyNamePlaceholder: 'e.g., Home Assistant, OctoPrint',
  1317. readStatus: 'Read Status',
  1318. readStatusDescription: 'View printer status and queue',
  1319. manageQueue: 'Manage Queue',
  1320. manageQueueDescription: 'Add and remove items from print queue',
  1321. controlPrinter: 'Control Printer',
  1322. controlPrinterDescription: 'Pause, resume, and stop prints',
  1323. unnamedKey: 'Unnamed Key',
  1324. lastUsed: 'Last used',
  1325. read: 'Read',
  1326. control: 'Control',
  1327. createFirstKey: 'Create Your First Key',
  1328. webhookEndpoints: 'Webhook Endpoints',
  1329. webhookApiKeyHint: 'Use your API key in the X-API-Key header.',
  1330. webhook: {
  1331. getAllStatus: 'Get all printer status',
  1332. getSpecificStatus: 'Get specific printer status',
  1333. addToQueue: 'Add to print queue',
  1334. pausePrint: 'Pause print',
  1335. resumePrint: 'Resume print',
  1336. stopPrint: 'Stop print',
  1337. },
  1338. apiBrowser: 'API Browser',
  1339. apiBrowserDescription: 'Explore and test all available API endpoints.',
  1340. apiKeyForTesting: 'API Key for Testing',
  1341. apiKeyPlaceholder: 'Paste your API key here to test authenticated endpoints...',
  1342. apiKeyHint: 'This key will be sent as X-API-Key header with requests.',
  1343. deleteApiKeyTitle: 'Delete API Key',
  1344. deleteApiKeyMessage: 'Are you sure you want to delete this API key? Any integrations using this key will stop working.',
  1345. deleteKey: 'Delete Key',
  1346. // Filament tab
  1347. amsDisplayThresholds: 'AMS Display Thresholds',
  1348. amsThresholdsDescription: 'Configure color thresholds for AMS humidity and temperature indicators.',
  1349. humidity: 'Humidity',
  1350. goodGreen: 'Good (green)',
  1351. fairOrange: 'Fair (orange)',
  1352. aboveFairBad: 'Above fair threshold shows as red (bad)',
  1353. temperature: 'Temperature',
  1354. goodBlue: 'Good (blue)',
  1355. aboveFairHot: 'Above fair threshold shows as red (hot)',
  1356. historyRetention: 'History Retention',
  1357. keepSensorHistory: 'Keep sensor history for',
  1358. historyRetentionDescription: 'Older humidity and temperature data will be automatically deleted',
  1359. printModal: 'Print Modal',
  1360. expandCustomMapping: 'Expand custom mapping by default',
  1361. expandCustomMappingDescription: 'When printing to multiple printers, show per-printer AMS mapping expanded',
  1362. // User management
  1363. authentication: 'Authentication',
  1364. authEnabledDescription: 'Your instance is secured with user authentication',
  1365. authDisabledDescription: 'Enable to require login and manage user access',
  1366. authDisabledMessage: 'Enable authentication to create user accounts, manage permissions, and secure your Bambuddy instance.',
  1367. enableAuthentication: 'Enable Authentication',
  1368. currentUser: 'Current User',
  1369. changePassword: 'Change Password',
  1370. admin: 'Admin',
  1371. users: 'Users',
  1372. addUser: 'Add User',
  1373. groups: 'Groups',
  1374. addGroup: 'Add Group',
  1375. system: 'System',
  1376. noDescription: 'No description',
  1377. userCount: '{{count}} users',
  1378. permissionCount: '{{count}} permissions',
  1379. createUser: 'Create User',
  1380. username: 'Username',
  1381. enterUsername: 'Enter username',
  1382. password: 'Password',
  1383. enterPassword: 'Enter password (min 6 characters)',
  1384. confirmPassword: 'Confirm Password',
  1385. confirmPasswordPlaceholder: 'Confirm password',
  1386. // Title tooltips
  1387. viewReleaseOnGitHub: 'View release on GitHub',
  1388. turnAllPlugsOn: 'Turn all plugs on',
  1389. turnAllPlugsOff: 'Turn all plugs off',
  1390. // Modal: Clear logs
  1391. clearNotificationLogs: 'Clear Notification Logs',
  1392. clearLogsMessage: 'This will permanently delete all notification logs older than 30 days. This action cannot be undone.',
  1393. clearLogs: 'Clear Logs',
  1394. // Modal: Reset UI
  1395. resetUiPreferences: 'Reset UI Preferences',
  1396. resetUiPreferencesMessage: 'This will reset all UI preferences to defaults: sidebar order, theme, dashboard layout, view modes, and sorting preferences. Your printers, archives, and server settings will NOT be affected. The page will reload after clearing.',
  1397. resetPreferences: 'Reset Preferences',
  1398. // Modal: Delete group
  1399. deleteGroupTitle: 'Delete Group',
  1400. deleteGroupMessage: 'Are you sure you want to delete this group? Users in this group will lose these permissions.',
  1401. deleteGroup: 'Delete Group',
  1402. // Modal: Disable auth
  1403. disableAuthenticationTitle: 'Disable Authentication',
  1404. disableAuthenticationMessage: 'Are you sure you want to disable authentication? This will make your Bambuddy instance accessible without login. All users will remain in the database but authentication will be disabled.',
  1405. disableAuthentication: 'Disable Authentication',
  1406. // Additional settings
  1407. configureBambuddy: 'Configure Bambuddy',
  1408. systemDefault: 'System Default',
  1409. archiveSettings: 'Archive Settings',
  1410. newWindow: 'New Window',
  1411. embeddedOverlay: 'Embedded Overlay',
  1412. preferredSlicer: 'Preferred Slicer',
  1413. preferredSlicerDescription: 'Choose which slicer application to open files with',
  1414. externalCameras: 'External Cameras',
  1415. costTracking: 'Cost Tracking',
  1416. printsOnly: 'Prints Only',
  1417. totalConsumption: 'Total Consumption',
  1418. dataManagement: 'Data Management',
  1419. storageUsage: 'Storage Usage',
  1420. storageUsageDescription: 'Breakdown of data usage by category',
  1421. storageUsageTotal: 'Total',
  1422. storageUsageErrors: 'Errors',
  1423. storageUsageOtherBreakdown: 'Other (includes static assets, scripts, and configuration files)',
  1424. storageUsageSystem: 'System',
  1425. storageUsageData: 'Data',
  1426. storageUsageUnavailable: 'Storage usage information unavailable',
  1427. clearNotificationLogsDescription: 'Delete notification logs older than 30 days',
  1428. resetUiPreferencesDescription: 'Reset sidebar order, theme, view modes, and layout preferences. Printers, archives, and settings are not affected.',
  1429. enableHomeAssistant: 'Enable Home Assistant',
  1430. enableMqtt: 'Enable MQTT',
  1431. useTls: 'Use TLS',
  1432. enableMetricsEndpoint: 'Enable Metrics Endpoint',
  1433. availableMetrics: 'Available Metrics',
  1434. editUser: 'Edit User',
  1435. deleteUserTitle: 'Delete User',
  1436. groupName: 'Group Name',
  1437. // Placeholders
  1438. leaveEmptyForAnonymous: 'Leave empty for anonymous',
  1439. leaveEmptyForNoAuth: 'Leave empty for no authentication',
  1440. enterNewPassword: 'Enter new password',
  1441. confirmNewPassword: 'Confirm new password',
  1442. enterGroupName: 'Enter group name',
  1443. enterDescriptionOptional: 'Enter description (optional)',
  1444. enterCurrentPassword: 'Enter current password',
  1445. enterNewPasswordMin6: 'Enter new password (min 6 characters)',
  1446. toast: {
  1447. keyCopied: 'Key copied to clipboard',
  1448. copyFailed: 'Failed to copy key',
  1449. keyAddedToBrowser: 'Key added to API Browser',
  1450. clearLogsFailed: 'Failed to clear logs',
  1451. uiPreferencesReset: 'UI preferences reset. Refreshing...',
  1452. authDisabled: 'Authentication disabled successfully',
  1453. authDisableFailed: 'Failed to disable authentication',
  1454. apiKeyCreated: 'API key created',
  1455. apiKeyDeleted: 'API key deleted',
  1456. userCreated: 'User created successfully',
  1457. userUpdated: 'User updated successfully',
  1458. userDeleted: 'User deleted successfully',
  1459. groupCreated: 'Group created successfully',
  1460. groupUpdated: 'Group updated successfully',
  1461. groupDeleted: 'Group deleted successfully',
  1462. fillRequiredFields: 'Please fill in all required fields',
  1463. passwordsDoNotMatch: 'Passwords do not match',
  1464. passwordTooShort: 'Password must be at least 6 characters',
  1465. enterGroupName: 'Please enter a group name',
  1466. settingsSaved: 'Settings saved',
  1467. cameraSettingsSaved: 'Camera settings saved',
  1468. enterCameraUrl: 'Please enter a camera URL',
  1469. passwordChanged: 'Password changed successfully',
  1470. connectionFailed: 'Connection failed',
  1471. testFailed: 'Test failed',
  1472. cameraConnected: 'Camera connected{{resolution}}',
  1473. },
  1474. testConnection: 'Test Connection',
  1475. catalog: {
  1476. spoolCatalog: 'Spool Catalog',
  1477. spoolCatalogDescription: 'Empty spool weights by brand/type. Used for automatic weight lookup when adding spools.',
  1478. searchCatalog: 'Search catalog...',
  1479. addNewEntry: 'Add New Entry',
  1480. namePlaceholder: 'Name (e.g., Bambu Lab - Plastic)',
  1481. weight: 'Weight',
  1482. type: 'Type',
  1483. default: 'Default',
  1484. custom: 'Custom',
  1485. noMatch: 'No entries match your search',
  1486. empty: 'No entries in catalog',
  1487. deleteEntry: 'Delete Entry',
  1488. deleteConfirm: 'Are you sure you want to delete "{{name}}"?',
  1489. resetCatalog: 'Reset Catalog',
  1490. resetConfirm: 'Reset catalog to defaults? This will remove all custom entries.',
  1491. loadFailed: 'Failed to load spool catalog',
  1492. nameWeightRequired: 'Name and weight are required',
  1493. entryAdded: 'Entry added',
  1494. addFailed: 'Failed to add entry',
  1495. entryUpdated: 'Entry updated',
  1496. updateFailed: 'Failed to update entry',
  1497. entryDeleted: 'Entry deleted',
  1498. deleteFailed: 'Failed to delete entry',
  1499. resetSuccess: 'Catalog reset to defaults',
  1500. resetFailed: 'Failed to reset catalog',
  1501. exported: 'Exported {{count}} entries',
  1502. imported: 'Imported {{added}} entries ({{skipped}} skipped)',
  1503. importFailed: 'Failed to import: invalid JSON format',
  1504. exportTooltip: 'Export catalog to JSON',
  1505. importTooltip: 'Import catalog from JSON',
  1506. resetTooltip: 'Reset to defaults',
  1507. },
  1508. colorCatalog: {
  1509. title: 'Color Catalog',
  1510. description: 'Filament colors by manufacturer/material. Used for automatic color lookup when adding spools.',
  1511. searchColors: 'Search colors...',
  1512. allManufacturers: 'All manufacturers',
  1513. addNewColor: 'Add New Color',
  1514. manufacturer: 'Manufacturer',
  1515. colorName: 'Color Name',
  1516. hex: 'Hex',
  1517. materialOptional: 'Material (optional)',
  1518. showing: 'Showing {{filtered}} of {{total}} colors',
  1519. noMatch: 'No colors match your search',
  1520. empty: 'No colors in catalog',
  1521. deleteColor: 'Delete Color',
  1522. deleteConfirm: 'Are you sure you want to delete "{{name}}"?',
  1523. resetCatalog: 'Reset Color Catalog',
  1524. resetConfirm: 'Reset catalog to defaults? This will remove all custom colors.',
  1525. sync: 'Sync',
  1526. starting: 'Starting...',
  1527. syncTooltip: 'Sync from FilamentColors.xyz (2000+ colors, may take a minute)',
  1528. loadFailed: 'Failed to load color catalog',
  1529. fieldsRequired: 'Manufacturer, color name, and hex color are required',
  1530. colorAdded: 'Color added',
  1531. addFailed: 'Failed to add color',
  1532. colorUpdated: 'Color updated',
  1533. updateFailed: 'Failed to update color',
  1534. colorDeleted: 'Color deleted',
  1535. deleteFailed: 'Failed to delete color',
  1536. resetSuccess: 'Color catalog reset to defaults',
  1537. resetFailed: 'Failed to reset catalog',
  1538. syncUpToDate: 'Already up to date ({{count}} colors checked)',
  1539. syncComplete: 'Added {{added}} new colors ({{skipped}} already existed)',
  1540. syncError: 'Sync error',
  1541. syncFailed: 'Failed to sync from FilamentColors.xyz',
  1542. exported: 'Exported {{count}} colors',
  1543. imported: 'Imported {{added}} colors ({{skipped}} skipped)',
  1544. importFailed: 'Failed to import: invalid JSON format',
  1545. },
  1546. },
  1547. // Notifications (for push notifications)
  1548. notification: {
  1549. printStarted: {
  1550. title: 'Print Started',
  1551. body: '{{printer}}: {{filename}} has started printing',
  1552. },
  1553. printCompleted: {
  1554. title: 'Print Completed',
  1555. body: '{{printer}}: {{filename}} completed successfully',
  1556. },
  1557. printFailed: {
  1558. title: 'Print Failed',
  1559. body: '{{printer}}: {{filename}} has failed',
  1560. },
  1561. printStopped: {
  1562. title: 'Print Stopped',
  1563. body: '{{printer}}: {{filename}} was stopped',
  1564. },
  1565. printProgress: {
  1566. title: 'Print Progress',
  1567. body: '{{printer}}: {{filename}} is {{percent}}% complete',
  1568. },
  1569. printerOffline: {
  1570. title: 'Printer Offline',
  1571. body: '{{printer}} is offline',
  1572. },
  1573. printerError: {
  1574. title: 'Printer Error',
  1575. body: '{{printer}}: {{error}}',
  1576. },
  1577. filamentLow: {
  1578. title: 'Low Filament',
  1579. body: '{{printer}}: Filament is running low',
  1580. },
  1581. maintenanceDue: {
  1582. title: 'Maintenance Due',
  1583. body: '{{printer}}: {{items}} need attention',
  1584. },
  1585. },
  1586. // Errors
  1587. errors: {
  1588. generic: 'Something went wrong',
  1589. networkError: 'Network error. Please check your connection.',
  1590. notFound: 'Not found',
  1591. unauthorized: 'Unauthorized',
  1592. serverError: 'Server error',
  1593. validationError: 'Please check your input',
  1594. printerConnectionFailed: 'Failed to connect to printer',
  1595. saveFailed: 'Failed to save changes',
  1596. deleteFailed: 'Failed to delete',
  1597. loadFailed: 'Failed to load data',
  1598. },
  1599. // HMS Errors modal
  1600. hmsErrors: {
  1601. title: 'Errors - {{name}}',
  1602. noErrors: 'No errors',
  1603. viewOnWiki: 'View on Bambu Lab Wiki',
  1604. clearInstructions: 'Clear errors on the printer to dismiss them here.',
  1605. clearErrors: 'Clear Errors',
  1606. clearSuccess: 'HMS errors cleared',
  1607. clearFailed: 'Failed to clear HMS errors',
  1608. },
  1609. // MQTT Debug modal
  1610. mqttDebug: {
  1611. title: 'MQTT Debug Log',
  1612. searchPlaceholder: 'Search topic or payload...',
  1613. noMessages: 'No messages logged yet',
  1614. startLoggingHint: 'Click "Start Logging" to begin capturing MQTT messages',
  1615. noMessagesMatch: 'No messages match your filter',
  1616. adjustFilterHint: 'Try adjusting your search or filter criteria',
  1617. incoming: 'Incoming',
  1618. outgoing: 'Outgoing',
  1619. loggingStopped: 'Logging stopped',
  1620. loggingActive: 'Logging active - messages will auto-refresh',
  1621. startLogging: 'Start Logging',
  1622. stopLogging: 'Stop Logging',
  1623. clearLog: 'Clear Log',
  1624. topic: 'Topic',
  1625. timestamp: 'Timestamp',
  1626. direction: 'Direction',
  1627. all: 'All',
  1628. },
  1629. // Printer File Manager modal (printer internal storage)
  1630. printerFiles: {
  1631. title: 'File Manager',
  1632. storageUsed: 'Used:',
  1633. storageFree: 'Free:',
  1634. filterPlaceholder: 'Filter files...',
  1635. deleteButton: 'Delete',
  1636. deleteFiles: 'Delete {{count}} Files',
  1637. deleteFileConfirm: 'Delete "{{name}}"? This cannot be undone.',
  1638. deleteFilesConfirm: 'Delete {{count}} selected files? This cannot be undone.',
  1639. noFiles: 'No files on printer',
  1640. loadingFiles: 'Loading files...',
  1641. failedToLoad: 'Failed to load files',
  1642. toast: {
  1643. filesDeleted: 'Deleted {{count}} file(s)',
  1644. deleteFailed: 'Delete failed: {{error}}',
  1645. },
  1646. },
  1647. // Confirmations
  1648. confirm: {
  1649. delete: 'Are you sure you want to delete this?',
  1650. unsavedChanges: 'You have unsaved changes. Are you sure you want to leave?',
  1651. clearQueue: 'Are you sure you want to clear the queue?',
  1652. },
  1653. // Login page
  1654. login: {
  1655. title: 'Bambuddy Login',
  1656. subtitle: 'Sign in to your account',
  1657. username: 'Username',
  1658. usernamePlaceholder: 'Enter your username',
  1659. usernameOrEmail: 'Username or Email',
  1660. usernameOrEmailPlaceholder: 'Username or @ Email',
  1661. password: 'Password',
  1662. passwordPlaceholder: 'Enter your password',
  1663. signIn: 'Sign in',
  1664. signingIn: 'Logging in...',
  1665. forgotPassword: 'Forgot your password?',
  1666. loginSuccess: 'Logged in successfully',
  1667. loginFailed: 'Login failed',
  1668. enterCredentials: 'Please enter username and password',
  1669. forgotPasswordTitle: 'Forgot Password',
  1670. forgotPasswordMessage: "If you've forgotten your password, please contact your system administrator to reset it.",
  1671. forgotPasswordEmailMessage: "Enter your email address and we'll send you a new password.",
  1672. emailAddress: 'Email Address',
  1673. emailPlaceholder: 'your.email@example.com',
  1674. cancel: 'Cancel',
  1675. sending: 'Sending...',
  1676. sendResetEmail: 'Send Reset Email',
  1677. howToReset: 'How to reset your password:',
  1678. resetStep1: 'Contact your Bambuddy administrator',
  1679. resetStep2: 'Ask them to reset your password in User Management',
  1680. resetStep3: 'They can set a new temporary password for you',
  1681. resetStep4: 'Log in with the new password and change it in Settings',
  1682. gotIt: 'Got it',
  1683. },
  1684. // Setup page
  1685. setup: {
  1686. title: 'Bambuddy Setup',
  1687. subtitle: 'Configure authentication for your Bambuddy instance',
  1688. enableAuth: 'Enable Authentication',
  1689. adminAccount: 'Admin Account',
  1690. adminAccountDesc: 'If admin users already exist, authentication will be enabled using the existing admin accounts. Leave the fields below empty to use existing admins, or enter new credentials to create a new admin user.',
  1691. adminUsername: 'Admin Username',
  1692. adminPassword: 'Admin Password',
  1693. optionalIfAdminExists: '(optional if admin users exist)',
  1694. adminUsernamePlaceholder: 'Enter admin username (optional)',
  1695. adminPasswordPlaceholder: 'Enter admin password (optional)',
  1696. confirmPassword: 'Confirm Password',
  1697. confirmPasswordPlaceholder: 'Confirm admin password',
  1698. settingUp: 'Setting up...',
  1699. completeSetup: 'Complete Setup',
  1700. toast: {
  1701. authEnabledAdminCreated: 'Authentication enabled and admin user created',
  1702. authEnabledExistingAdmins: 'Authentication enabled using existing admin users',
  1703. setupCompleted: 'Setup completed',
  1704. enterBothCredentials: 'Please enter both admin username and password, or leave both empty to use existing admin users',
  1705. passwordsDoNotMatch: 'Passwords do not match',
  1706. passwordTooShort: 'Password must be at least 6 characters',
  1707. },
  1708. },
  1709. // Password change
  1710. changePassword: {
  1711. title: 'Change Password',
  1712. currentPassword: 'Current Password',
  1713. currentPasswordPlaceholder: 'Enter current password',
  1714. newPassword: 'New Password',
  1715. newPasswordPlaceholder: 'Enter new password (min 6 characters)',
  1716. confirmPassword: 'Confirm New Password',
  1717. confirmPasswordPlaceholder: 'Confirm new password',
  1718. passwordsDoNotMatch: 'Passwords do not match',
  1719. passwordTooShort: 'Password must be at least 6 characters',
  1720. changing: 'Changing...',
  1721. success: 'Password changed successfully',
  1722. failed: 'Failed to change password',
  1723. },
  1724. // Plate detection alert
  1725. plateAlert: {
  1726. title: 'Print Paused!',
  1727. message: 'Objects detected on build plate. The print has been automatically paused. Please clear the plate and resume the print.',
  1728. understand: 'I Understand',
  1729. },
  1730. // Camera page
  1731. camera: {
  1732. title: 'Camera View',
  1733. invalidPrinterId: 'Invalid printer ID',
  1734. live: 'Live',
  1735. snapshot: 'Snapshot',
  1736. restartStream: 'Restart stream',
  1737. refreshSnapshot: 'Refresh snapshot',
  1738. fullscreen: 'Fullscreen',
  1739. exitFullscreen: 'Exit fullscreen',
  1740. connectingToCamera: 'Connecting to camera...',
  1741. capturingSnapshot: 'Capturing snapshot...',
  1742. connectionLost: 'Connection lost',
  1743. connectionFailed: 'Camera connection failed',
  1744. reconnecting: 'Reconnecting in {{countdown}}s... (attempt {{attempt}}/{{max}})',
  1745. reconnectNow: 'Reconnect now',
  1746. cameraUnavailable: 'Camera unavailable',
  1747. cameraUnavailableDesc: 'Make sure the printer is powered on and connected.',
  1748. noCamera: 'No camera available',
  1749. retry: 'Retry',
  1750. cameraStream: 'Camera stream',
  1751. zoomOut: 'Zoom out',
  1752. zoomIn: 'Zoom in',
  1753. resetZoom: 'Reset zoom',
  1754. recording: 'Recording',
  1755. startRecording: 'Start Recording',
  1756. stopRecording: 'Stop Recording',
  1757. chamberLight: 'Toggle chamber light',
  1758. },
  1759. // Groups management
  1760. groups: {
  1761. title: 'Group Management',
  1762. subtitle: 'Manage permission groups for access control',
  1763. backToSettings: 'Back to Settings',
  1764. createGroup: 'Create Group',
  1765. noPermission: 'You do not have permission to access this page.',
  1766. system: 'System',
  1767. noDescription: 'No description',
  1768. usersCount: '{{count}} users',
  1769. permissionsCount: '{{count}} permissions',
  1770. edit: 'Edit',
  1771. delete: 'Delete',
  1772. toast: {
  1773. created: 'Group created successfully',
  1774. updated: 'Group updated successfully',
  1775. deleted: 'Group deleted successfully',
  1776. enterGroupName: 'Please enter a group name',
  1777. },
  1778. modal: {
  1779. editGroup: 'Edit Group',
  1780. createGroup: 'Create Group',
  1781. cancel: 'Cancel',
  1782. saving: 'Saving...',
  1783. creating: 'Creating...',
  1784. saveChanges: 'Save Changes',
  1785. },
  1786. form: {
  1787. groupName: 'Group Name',
  1788. groupNamePlaceholder: 'Enter group name',
  1789. systemGroupWarning: 'System group names cannot be changed',
  1790. description: 'Description',
  1791. descriptionPlaceholder: 'Enter description (optional)',
  1792. permissions: 'Permissions ({{count}} selected)',
  1793. },
  1794. deleteModal: {
  1795. title: 'Delete Group',
  1796. message: 'Are you sure you want to delete this group? Users in this group will lose these permissions.',
  1797. confirm: 'Delete Group',
  1798. },
  1799. },
  1800. // Users management
  1801. users: {
  1802. title: 'User Management',
  1803. subtitle: 'Manage users and their access to your Bambuddy instance',
  1804. backToSettings: 'Back to Settings',
  1805. createUser: 'Create User',
  1806. noPermission: 'You do not have permission to access this page.',
  1807. admin: 'Admin',
  1808. noGroups: 'No groups',
  1809. active: 'Active',
  1810. inactive: 'Inactive',
  1811. edit: 'Edit',
  1812. delete: 'Delete',
  1813. system: 'System',
  1814. noGroupsAvailable: 'No groups available',
  1815. table: {
  1816. username: 'Username',
  1817. groups: 'Groups',
  1818. status: 'Status',
  1819. actions: 'Actions',
  1820. },
  1821. toast: {
  1822. created: 'User created successfully',
  1823. updated: 'User updated successfully',
  1824. deleted: 'User deleted successfully',
  1825. fillRequired: 'Please fill in all required fields',
  1826. passwordsDoNotMatch: 'Passwords do not match',
  1827. passwordTooShort: 'Password must be at least 6 characters',
  1828. },
  1829. modal: {
  1830. createUser: 'Create User',
  1831. editUser: 'Edit User',
  1832. cancel: 'Cancel',
  1833. creating: 'Creating...',
  1834. saving: 'Saving...',
  1835. saveChanges: 'Save Changes',
  1836. advancedAuthSubtitle: 'with Advanced Authentication',
  1837. },
  1838. form: {
  1839. username: 'Username',
  1840. usernamePlaceholder: 'Enter username',
  1841. email: 'Email',
  1842. emailPlaceholder: 'user@example.com',
  1843. password: 'Password',
  1844. passwordPlaceholder: 'Enter password',
  1845. confirmPassword: 'Confirm Password',
  1846. confirmPasswordPlaceholder: 'Confirm password',
  1847. newPasswordPlaceholder: 'Enter new password',
  1848. confirmNewPasswordPlaceholder: 'Confirm new password',
  1849. leaveBlankToKeep: 'leave blank to keep current',
  1850. groups: 'Groups',
  1851. optional: 'optional',
  1852. autoGeneratedPassword: 'A secure password will be automatically generated and emailed to the user.',
  1853. passwordManagedByAdvancedAuth: 'Password is managed by Advanced Authentication. Use "Reset Password" to send a new password to the user via email.',
  1854. resetPassword: 'Reset Password',
  1855. resettingPassword: 'Resetting Password...',
  1856. },
  1857. deleteModal: {
  1858. title: 'Delete User',
  1859. message: 'Are you sure you want to delete this user? This action cannot be undone.',
  1860. confirm: 'Delete User',
  1861. },
  1862. },
  1863. // Stream overlay
  1864. streamOverlay: {
  1865. title: 'Stream Overlay',
  1866. invalidPrinterId: 'Invalid printer ID',
  1867. cameraStream: 'Camera stream',
  1868. progress: 'Progress',
  1869. eta: 'ETA',
  1870. printerIdle: 'Printer is idle',
  1871. printerOffline: 'Printer offline',
  1872. status: {
  1873. printing: 'Printing',
  1874. paused: 'Paused',
  1875. finished: 'Finished',
  1876. failed: 'Failed',
  1877. idle: 'Idle',
  1878. unknown: 'Unknown',
  1879. },
  1880. },
  1881. // Profiles
  1882. profiles: {
  1883. title: 'Profiles',
  1884. subtitle: 'Manage your slicer presets and pressure advance calibrations',
  1885. tabs: {
  1886. cloud: 'Cloud Profiles',
  1887. local: 'Local Profiles',
  1888. kprofiles: 'K-Profiles',
  1889. },
  1890. localProfiles: {
  1891. title: 'Local Profiles',
  1892. subtitle: 'Import and manage slicer presets from OrcaSlicer',
  1893. import: 'Import Profiles',
  1894. importDesc: 'Drop .bbscfg, .bbsflmt, .orca_filament, .zip, or .json files here',
  1895. importing: 'Importing...',
  1896. search: 'Search local presets...',
  1897. noPresets: 'No local presets yet',
  1898. badge: 'Local',
  1899. edit: 'Edit',
  1900. delete: 'Delete',
  1901. cancel: 'Cancel',
  1902. deleteConfirmTitle: 'Delete Preset',
  1903. deleteConfirm: 'Are you sure you want to delete this preset? This cannot be undone.',
  1904. source: 'Source',
  1905. inheritsFrom: 'Inherits',
  1906. filamentType: 'Type',
  1907. vendor: 'Vendor',
  1908. compatiblePrinters: 'Printers',
  1909. nozzleTemp: 'Nozzle Temp',
  1910. cost: 'Cost',
  1911. density: 'Density',
  1912. pressureAdvance: 'Pressure Advance',
  1913. filament: 'Filament',
  1914. process: 'Process',
  1915. printer: 'Printer',
  1916. toast: {
  1917. importSuccess: '{{count}} preset(s) imported',
  1918. importSkipped: '{{count}} preset(s) skipped (duplicates)',
  1919. importError: '{{count}} error(s) during import',
  1920. deleted: 'Preset deleted',
  1921. updated: 'Preset updated',
  1922. },
  1923. },
  1924. connectedAs: 'Connected as',
  1925. logout: 'Logout',
  1926. noLogoutPermission: 'You do not have permission to logout',
  1927. failedToLoad: 'Failed to load profiles',
  1928. retry: 'Retry',
  1929. time: {
  1930. justNow: 'Just now',
  1931. minsAgo: '{{count}}m ago',
  1932. hoursAgo: '{{count}}h ago',
  1933. daysAgo: '{{count}}d ago',
  1934. },
  1935. toast: {
  1936. loggedOut: 'Logged out',
  1937. },
  1938. login: {
  1939. title: 'Connect to Bambu Cloud',
  1940. subtitle: 'Sync your slicer presets across devices',
  1941. email: 'Email',
  1942. password: 'Password',
  1943. region: 'Region',
  1944. regionGlobal: 'Global',
  1945. regionChina: 'China',
  1946. verificationCode: 'Verification Code',
  1947. totpCode: 'Authenticator Code',
  1948. checkEmail: 'Check your email ({{email}}) for a 6-digit code',
  1949. enterTotpHint: 'Enter the 6-digit code from your authenticator app',
  1950. accessToken: 'Access Token',
  1951. accessTokenHint: 'Paste your Bambu Lab access token (from Bambu Studio)',
  1952. back: 'Back',
  1953. loginButton: 'Login',
  1954. verifyButton: 'Verify',
  1955. setTokenButton: 'Set Token',
  1956. useToken: 'Use access token instead',
  1957. useEmail: 'Login with email instead',
  1958. toast: {
  1959. loggedIn: 'Logged in successfully',
  1960. codeSent: 'Verification code sent to your email',
  1961. enterTotp: 'Enter code from your authenticator app',
  1962. tokenSet: 'Token set successfully',
  1963. },
  1964. },
  1965. presets: {
  1966. myPreset: 'My preset (editable)',
  1967. duplicate: 'Duplicate',
  1968. editable: 'Editable',
  1969. failedToLoadDetails: 'Failed to load preset details',
  1970. deleteConfirm: 'Delete this preset?',
  1971. deleteWarning: 'This will permanently delete "{{name}}" from Bambu Cloud. This cannot be undone.',
  1972. noDuplicatePermission: 'You do not have permission to duplicate presets',
  1973. noEditPermission: 'You do not have permission to edit presets',
  1974. noDeletePermission: 'You do not have permission to delete presets',
  1975. types: {
  1976. filament: 'Filament preset',
  1977. printer: 'Printer preset',
  1978. process: 'Process preset',
  1979. },
  1980. toast: {
  1981. deleted: 'Preset deleted',
  1982. created: 'Preset created',
  1983. updated: 'Preset updated',
  1984. duplicated: 'Preset duplicated',
  1985. fieldAdded: 'Field "{{key}}" added',
  1986. exported: 'Preset exported',
  1987. },
  1988. baseLabel: 'Base: {{name}}',
  1989. currentLabel: 'Current: {{name}}',
  1990. newPreset: 'New Preset',
  1991. editPreset: 'Edit Preset',
  1992. duplicatePreset: 'Duplicate Preset',
  1993. createNewPreset: 'Create New Preset',
  1994. customizeSettings: 'Customize settings for your new preset',
  1995. compareWithBase: 'Compare with base preset',
  1996. compare: 'Compare',
  1997. // CreatePresetModal - Basic Info
  1998. basePreset: 'Base Preset',
  1999. selectBasePreset: 'Select base preset...',
  2000. presetName: 'Preset Name',
  2001. myCustomPreset: 'My custom preset',
  2002. inheritsFrom: 'Inherits from',
  2003. dropJsonToImport: 'Drop JSON to import',
  2004. // CreatePresetModal - Tabs
  2005. tabs: {
  2006. common: 'Common',
  2007. allFields: 'All Fields',
  2008. },
  2009. // CreatePresetModal - All Fields Tab
  2010. availableFields: 'Available Fields',
  2011. searchFieldsPlaceholder: 'Search fields...',
  2012. noMatchingFields: 'No matching fields',
  2013. allFieldsAdded: 'All fields added',
  2014. addCustomField: 'Add custom field',
  2015. yourOverrides: 'Your Overrides',
  2016. noOverridesYet: 'No overrides yet',
  2017. clickFieldsToAdd: 'Click fields on the left to add them',
  2018. saveAsTemplate: 'Save as template',
  2019. jsonTip: 'Tip: Drag & drop a .json file anywhere on this modal to import settings',
  2020. },
  2021. cloudView: {
  2022. searchPlaceholder: 'Search presets...',
  2023. templates: 'Templates',
  2024. refresh: 'Refresh',
  2025. newPreset: 'New Preset',
  2026. clearFilters: 'Clear filters',
  2027. // Compare mode
  2028. compareMode: 'Compare Mode',
  2029. selectAnotherPreset: 'Select another {{type}} preset',
  2030. clickTwoPresets: 'Click two presets of the same type to compare',
  2031. selectFirst: '1. Select first',
  2032. selectSecond: '2. Select second',
  2033. compareNow: 'Compare Now',
  2034. // Status row
  2035. lastSynced: 'Last synced:',
  2036. showingCount: 'Showing {{showing}} of {{total}} presets',
  2037. noPresetsFound: 'No presets found',
  2038. // Column headers
  2039. columns: {
  2040. filament: 'Filament',
  2041. process: 'Process',
  2042. printer: 'Printer',
  2043. },
  2044. noFilamentPresets: 'No filament presets',
  2045. noProcessPresets: 'No process presets',
  2046. noPrinterPresets: 'No printer presets',
  2047. // Filters
  2048. filters: {
  2049. type: 'Type',
  2050. owner: 'Owner',
  2051. printer: 'Printer',
  2052. nozzle: 'Nozzle',
  2053. filament: 'Filament',
  2054. layer: 'Layer',
  2055. all: 'All',
  2056. myPresets: 'My Presets',
  2057. builtIn: 'Built-in',
  2058. process: 'Process',
  2059. },
  2060. // Permissions
  2061. noTemplatesPermission: 'You do not have permission to manage templates',
  2062. noRefreshPermission: 'You do not have permission to refresh profiles',
  2063. noCreatePermission: 'You do not have permission to create presets',
  2064. },
  2065. templates: {
  2066. title: 'Quick Templates',
  2067. noTemplates: 'No templates yet',
  2068. createFirst: 'Create templates from the preset editor',
  2069. typeFilter: 'Type:',
  2070. deleteTitle: 'Delete Template',
  2071. deleteWarning: 'This action cannot be undone',
  2072. deleteConfirm: 'Are you sure you want to delete "{{name}}"?',
  2073. namePlaceholder: 'Template name',
  2074. descriptionPlaceholder: 'Description',
  2075. settingsJson: 'Settings (JSON)',
  2076. fieldsCount: '{{count}} fields',
  2077. shownInModals: 'Shown in modals',
  2078. hiddenInModals: 'Hidden in modals',
  2079. apply: 'Apply',
  2080. toast: {
  2081. deleted: 'Template deleted',
  2082. updated: 'Template updated',
  2083. created: 'Template created',
  2084. applied: 'Template applied',
  2085. },
  2086. },
  2087. },
  2088. // Support/Debug
  2089. support: {
  2090. debugLoggingActive: 'Debug logging is active',
  2091. manageLogs: 'Manage',
  2092. collectItem7: 'Printer connectivity and firmware versions',
  2093. collectItem8: 'Integration status (Spoolman, MQTT, HA)',
  2094. collectItem9: 'Network interfaces (subnets only)',
  2095. collectItem10: 'Python package versions',
  2096. collectItem11: 'Database health checks',
  2097. collectItem12: 'Docker environment details',
  2098. },
  2099. // File manager
  2100. fileManager: {
  2101. title: 'File Manager',
  2102. subtitle: 'Organize and manage your print files',
  2103. uploadFiles: 'Upload Files',
  2104. newFolder: 'New Folder',
  2105. folderName: 'Folder Name',
  2106. folderNamePlaceholder: 'e.g., Functional Parts',
  2107. renameFile: 'Rename File',
  2108. renameFolder: 'Rename Folder',
  2109. moveFiles: 'Move {{count}} File(s)',
  2110. rootNoFolder: 'Root (No Folder)',
  2111. current: 'current',
  2112. linkFolder: 'Link Folder',
  2113. linkFolderDescription: 'Link "{{name}}" to a project or archive for quick access.',
  2114. project: 'Project',
  2115. archive: 'Archive',
  2116. noProjectsFound: 'No projects found',
  2117. noArchivesFound: 'No archives found',
  2118. unlink: 'Unlink',
  2119. link: 'Link',
  2120. dragDropFiles: 'Drag & drop files here',
  2121. dropFilesHere: 'Drop files here',
  2122. orClickToBrowse: 'or click to browse',
  2123. allFileTypesSupported: 'All file types supported. ZIP files will be extracted.',
  2124. zipFilesDetected: 'ZIP files detected',
  2125. zipExtractOptions: 'ZIP files will be extracted. Choose how to handle folder structure:',
  2126. preserveZipStructure: 'Preserve folder structure from ZIP',
  2127. createFolderFromZip: 'Create folder from ZIP filename',
  2128. stlThumbnailGeneration: 'STL thumbnail generation',
  2129. zipMayContainStl: 'ZIP files may contain STL files. Thumbnails can be generated during extraction.',
  2130. thumbnailsCanBeGenerated: 'Thumbnails can be generated for STL files. Large models may take longer to process.',
  2131. generateThumbnailsForStl: 'Generate thumbnails for STL files',
  2132. threemfDetected: '3MF files detected',
  2133. threemfExtractionInfo: 'Printer model, material, color, and print settings will be automatically extracted from 3MF files.',
  2134. willBeExtracted: 'Will be extracted',
  2135. filesExtracted: '{{count}} files extracted',
  2136. uploadComplete: 'Upload complete: {{succeeded}} succeeded',
  2137. uploadFailed: '{{count}} failed',
  2138. uploading: 'Uploading...',
  2139. changeLink: 'Change Link...',
  2140. linkTo: 'Link to...',
  2141. linkToProjectOrArchive: 'Link to project or archive',
  2142. addToQueue: 'Add to Queue',
  2143. schedulePrint: 'Schedule',
  2144. generateThumbnail: 'Generate Thumbnail',
  2145. generateThumbnails: 'Generate Thumbnails',
  2146. generateThumbnailsForMissing: 'Generate thumbnails for STL files missing them',
  2147. gridView: 'Grid view',
  2148. listView: 'List view',
  2149. lowDiskSpaceWarning: 'Low disk space warning',
  2150. lowDiskSpaceDetails: 'Only {{free}} free of {{total}} total. Threshold is set to {{threshold}} GB in settings.',
  2151. files: 'Files',
  2152. folders: 'Folders',
  2153. size: 'Size',
  2154. free: 'Free',
  2155. allFiles: 'All Files',
  2156. wrap: 'Wrap',
  2157. enableTextWrapping: 'Enable text wrapping',
  2158. disableTextWrapping: 'Disable text wrapping',
  2159. dragToResizeTooltip: 'Drag to resize, double-click to reset',
  2160. searchFiles: 'Search files...',
  2161. allTypes: 'All types',
  2162. prints: 'Prints',
  2163. ascending: 'Ascending',
  2164. descending: 'Descending',
  2165. resultsCount: '{{showing}} of {{total}} files',
  2166. selectAll: 'Select All',
  2167. deselectAll: 'Deselect All',
  2168. selected: '{{count}} selected',
  2169. adding: 'Adding...',
  2170. loadingFiles: 'Loading files...',
  2171. folderIsEmpty: 'Folder is empty',
  2172. noFilesYet: 'No files yet',
  2173. folderEmptyDescription: 'Upload files or move files into this folder to get started.',
  2174. noFilesDescription: 'Upload files to start organizing your print-related files.',
  2175. noMatchingFiles: 'No matching files',
  2176. noMatchingFilesDescription: 'No files match your current search or filter criteria.',
  2177. clearFilters: 'Clear filters',
  2178. printedCount: 'Printed {{count}}x',
  2179. uploadedBy: 'Uploaded By',
  2180. deleteFolder: 'Delete Folder',
  2181. deleteFile: 'Delete File',
  2182. deleteFilesCount: 'Delete {{count}} Files',
  2183. deleteFolderConfirm: 'Are you sure you want to delete this folder? All files inside will also be deleted.',
  2184. deleteFileConfirm: 'Are you sure you want to delete this file?',
  2185. deleteFilesConfirm: 'Are you sure you want to delete {{count}} selected files? This action cannot be undone.',
  2186. deleting: 'Deleting...',
  2187. noPermissionRenameFolder: 'You do not have permission to rename folders',
  2188. noPermissionLinkFolder: 'You do not have permission to link folders',
  2189. noPermissionDeleteFolder: 'You do not have permission to delete folders',
  2190. noPermissionPrint: 'You do not have permission to print',
  2191. noPermissionAddToQueue: 'You do not have permission to add to queue',
  2192. noPermissionDownload: 'You do not have permission to download files',
  2193. noPermissionRenameFile: 'You do not have permission to rename this file',
  2194. noPermissionGenerateThumbnail: 'You do not have permission to generate thumbnails',
  2195. noPermissionDeleteFile: 'You do not have permission to delete this file',
  2196. noPermissionCreateFolder: 'You do not have permission to create folders',
  2197. noPermissionUpload: 'You do not have permission to upload files',
  2198. noPermissionMoveFiles: 'You do not have permission to move files',
  2199. noPermissionDeleteFiles: 'You do not have permission to delete files',
  2200. toast: {
  2201. folderCreated: 'Folder created',
  2202. folderDeleted: 'Folder deleted',
  2203. fileDeleted: 'File deleted',
  2204. filesDeleted: 'Deleted {{count}} files',
  2205. filesMoved: 'Files moved',
  2206. folderLinked: 'Folder linked',
  2207. folderUnlinked: 'Folder unlinked',
  2208. addedToQueue: 'Added {{count}} file(s) to queue',
  2209. addedToQueuePartial: 'Added {{added}} file(s), {{failed}} failed',
  2210. failedToAddToQueue: 'Failed to add files: {{error}}',
  2211. fileRenamed: 'File renamed',
  2212. folderRenamed: 'Folder renamed',
  2213. thumbnailsGenerated: 'Generated {{count}} thumbnail(s)',
  2214. thumbnailsGeneratedPartial: 'Generated {{succeeded}} thumbnail(s), {{failed}} failed',
  2215. noStlMissingThumbnails: 'No STL files missing thumbnails',
  2216. failedToGenerateThumbnails: 'Failed to generate thumbnails: {{error}}',
  2217. thumbnailGenerated: 'Thumbnail generated',
  2218. failedToGenerateThumbnail: 'Failed to generate thumbnail: {{error}}',
  2219. },
  2220. },
  2221. // Projects
  2222. projects: {
  2223. title: 'Projects',
  2224. subtitle: 'Organize and track your 3D printing projects',
  2225. newProject: 'New Project',
  2226. editProject: 'Edit Project',
  2227. deleteProject: 'Delete Project',
  2228. projectName: 'Project Name',
  2229. description: 'Description',
  2230. noProjects: 'No projects yet',
  2231. noProjectsFiltered: 'No {{status}} projects',
  2232. noProjectsFilteredHelp: "You don't have any {{status}} projects. Projects will appear here when their status changes.",
  2233. createFirst: 'Create your first project to start organizing related prints, tracking progress, and managing your builds.',
  2234. createFirstButton: 'Create Your First Project',
  2235. create: 'Create',
  2236. files: 'Files',
  2237. prints: 'Prints',
  2238. plates: 'plates',
  2239. parts: 'parts',
  2240. lastModified: 'Last Modified',
  2241. deleteConfirm: 'Are you sure you want to delete this project? Archives and queue items will be unlinked but not deleted.',
  2242. addFiles: 'Add Files',
  2243. removeFile: 'Remove File',
  2244. viewDetails: 'View Details',
  2245. // Modal fields
  2246. namePlaceholder: 'e.g., Voron 2.4 Build',
  2247. descriptionPlaceholder: 'Optional description...',
  2248. color: 'Color',
  2249. targetPlates: 'Target Plates',
  2250. targetPlatesPlaceholder: 'e.g., 25',
  2251. targetPlatesHelp: 'Number of print jobs',
  2252. targetParts: 'Target Parts',
  2253. targetPartsPlaceholder: 'e.g., 150',
  2254. targetPartsHelp: 'Total objects needed',
  2255. tagsLabel: 'Tags (comma-separated)',
  2256. tagsPlaceholder: 'e.g., voron, functional, gift',
  2257. dueDate: 'Due Date',
  2258. priority: 'Priority',
  2259. priorityLow: 'Low',
  2260. priorityNormal: 'Normal',
  2261. priorityHigh: 'High',
  2262. priorityUrgent: 'Urgent',
  2263. // Status
  2264. statusActive: 'Active',
  2265. statusCompleted: 'Completed',
  2266. statusArchived: 'Archived',
  2267. done: 'Done',
  2268. completed: 'completed',
  2269. failed: 'failed',
  2270. inQueue: 'in queue',
  2271. noPrintsYet: 'No prints yet',
  2272. // Footer stats
  2273. printJobs: 'Print jobs (plates)',
  2274. partsPrinted: 'Parts printed',
  2275. failedParts: 'Failed parts',
  2276. // Actions
  2277. import: 'Import',
  2278. export: 'Export',
  2279. importProject: 'Import project',
  2280. exportAll: 'Export all projects',
  2281. loading: 'Loading projects...',
  2282. // Permissions
  2283. noEditPermission: 'You do not have permission to edit projects',
  2284. noDeletePermission: 'You do not have permission to delete projects',
  2285. noCreatePermission: 'You do not have permission to create projects',
  2286. noImportPermission: 'You do not have permission to import projects',
  2287. noExportPermission: 'You do not have permission to export projects',
  2288. // Toast
  2289. toast: {
  2290. created: 'Project created',
  2291. updated: 'Project updated',
  2292. deleted: 'Project deleted',
  2293. imported: 'Project imported',
  2294. multipleImported: '{{count}} projects imported',
  2295. importFailed: 'Import failed',
  2296. exported: 'Projects exported (metadata only)',
  2297. },
  2298. },
  2299. // Project detail page
  2300. projectDetail: {
  2301. notFound: 'Project not found',
  2302. backToProjects: 'Back to Projects',
  2303. export: 'Export',
  2304. exportProject: 'Export project',
  2305. noExportPermission: 'You do not have permission to export projects',
  2306. noEditPermission: 'You do not have permission to edit projects',
  2307. partOf: 'Part of:',
  2308. priorityLabel: 'Priority:',
  2309. noPrints: 'No prints in this project yet',
  2310. status: {
  2311. active: 'Active',
  2312. completed: 'Completed',
  2313. archived: 'Archived',
  2314. },
  2315. priority: {
  2316. low: 'Low',
  2317. normal: 'Normal',
  2318. high: 'High',
  2319. urgent: 'Urgent',
  2320. },
  2321. dueDate: {
  2322. overdue: 'Overdue',
  2323. today: 'Due today',
  2324. daysLeft: '{{count}} days left',
  2325. },
  2326. progress: {
  2327. platesProgress: 'Plates Progress',
  2328. partsProgress: 'Parts Progress',
  2329. printJobs: 'print jobs',
  2330. parts: 'parts',
  2331. percentComplete: '{{percent}}% complete',
  2332. remaining: '{{count}} remaining',
  2333. },
  2334. stats: {
  2335. printJobs: 'Print Jobs',
  2336. total: 'total',
  2337. failed: '{{count}} failed',
  2338. partsPrinted: '{{count}} parts printed',
  2339. printTime: 'Print Time',
  2340. filamentUsed: 'Filament Used',
  2341. },
  2342. cost: {
  2343. title: 'Cost Tracking',
  2344. filamentCost: 'Filament Cost',
  2345. energy: 'Energy',
  2346. budget: 'Budget',
  2347. remaining: 'Remaining',
  2348. },
  2349. subProjects: {
  2350. title: 'Sub-projects ({{count}})',
  2351. },
  2352. notes: {
  2353. title: 'Notes',
  2354. noEditPermission: 'You do not have permission to edit notes',
  2355. placeholder: 'Add notes about this project...',
  2356. empty: 'No notes yet. Click Edit to add notes.',
  2357. },
  2358. files: {
  2359. title: 'Files',
  2360. linkFolders: 'Link folders from the File Manager',
  2361. forQuickAccess: 'to this project for quick access.',
  2362. fileCount: '{{count}} file(s)',
  2363. empty: 'No folders linked. Go to File Manager and link a folder to this project.',
  2364. },
  2365. bom: {
  2366. title: 'Bill of Materials',
  2367. acquired: '{{completed}}/{{total}} acquired',
  2368. showAll: 'Show all',
  2369. hideDone: 'Hide done',
  2370. addPart: 'Add Part',
  2371. noAddPermission: 'You do not have permission to add parts',
  2372. partNamePlaceholder: 'Part name (e.g., M3x8 screws)',
  2373. partName: 'Part name',
  2374. qty: 'Qty',
  2375. price: 'Price ({{currency}})',
  2376. sourcingUrlPlaceholder: 'Sourcing URL (optional)',
  2377. remarksPlaceholder: 'Remarks (optional)',
  2378. deletePart: 'Delete Part',
  2379. deleteConfirm: 'Are you sure you want to delete "{{name}}"?',
  2380. noUpdatePermission: 'You do not have permission to update parts',
  2381. noEditPermission: 'You do not have permission to edit parts',
  2382. noDeletePermission: 'You do not have permission to delete parts',
  2383. totalCost: 'Total cost:',
  2384. empty: 'No parts in the bill of materials. Add hardware, electronics, or other components to track what needs to be sourced.',
  2385. },
  2386. timeline: {
  2387. title: 'Activity Timeline',
  2388. empty: 'No activity yet.',
  2389. },
  2390. template: {
  2391. saveAsTemplate: 'Save as Template',
  2392. noCreatePermission: 'You do not have permission to create templates',
  2393. },
  2394. queue: {
  2395. title: 'Queue',
  2396. viewAll: 'View all',
  2397. printing: '{{count}} printing',
  2398. queued: '{{count}} queued',
  2399. },
  2400. prints: {
  2401. title: 'Prints ({{count}})',
  2402. },
  2403. toast: {
  2404. projectUpdated: 'Project updated',
  2405. partAdded: 'Part added',
  2406. partRemoved: 'Part removed',
  2407. exportFailed: 'Export failed',
  2408. projectExported: 'Project exported',
  2409. templateCreated: 'Template created',
  2410. },
  2411. },
  2412. // System info
  2413. system: {
  2414. title: 'System Information',
  2415. version: 'Version',
  2416. uptime: 'Uptime',
  2417. cpuUsage: 'CPU Usage',
  2418. memoryUsage: 'Memory Usage',
  2419. diskUsage: 'Disk Usage',
  2420. networkInfo: 'Network Info',
  2421. logs: 'Logs',
  2422. debugMode: 'Debug Mode',
  2423. enableDebug: 'Enable Debug Logging',
  2424. disableDebug: 'Disable Debug Logging',
  2425. downloadLogs: 'Download Logs',
  2426. clearLogs: 'Clear Logs',
  2427. dockerInfo: 'Docker Info',
  2428. containerName: 'Container Name',
  2429. imageName: 'Image Name',
  2430. platform: 'Platform',
  2431. architecture: 'Architecture',
  2432. },
  2433. // Library (K Profiles)
  2434. library: {
  2435. title: 'Filament Library',
  2436. addFilament: 'Add Filament',
  2437. editFilament: 'Edit Filament',
  2438. deleteFilament: 'Delete Filament',
  2439. vendor: 'Vendor',
  2440. material: 'Material',
  2441. color: 'Color',
  2442. kFactor: 'K Factor',
  2443. temperature: 'Temperature',
  2444. noFilaments: 'No filaments in library',
  2445. deleteConfirm: 'Are you sure you want to delete this filament?',
  2446. importFromPrinter: 'Import from Printer',
  2447. exportToFile: 'Export to File',
  2448. },
  2449. // Spoolman
  2450. spoolman: {
  2451. title: 'Spoolman Integration',
  2452. enabled: 'Spoolman Enabled',
  2453. url: 'Spoolman URL',
  2454. connected: 'Connected',
  2455. disconnected: 'Not Connected',
  2456. testConnection: 'Test Connection',
  2457. sync: 'Sync',
  2458. syncing: 'Syncing...',
  2459. lastSync: 'Last Sync',
  2460. linkToSpoolman: 'Link to Spoolman',
  2461. openInSpoolman: 'Open in Spoolman',
  2462. unlinkSpool: 'Unlink Spool',
  2463. selectSpool: 'Select Spool',
  2464. noUnlinkedSpools: 'No unlinked spools available',
  2465. linkSuccess: 'Spool linked to Spoolman successfully',
  2466. linkFailed: 'Failed to link spool',
  2467. spoolId: 'Spool ID',
  2468. fillSourceLabel: '(Spoolman)',
  2469. weight: 'Weight',
  2470. remaining: 'Remaining',
  2471. disableWeightSync: 'Disable AMS Estimated Weight Sync',
  2472. disableWeightSyncDesc: "Don't update remaining capacity from AMS estimates. Use this if you prefer Spoolman's usage tracking over AMS percentage-based estimates. New spools will still use the AMS estimate as their initial weight.",
  2473. reportPartialUsage: 'Report Partial Usage for Failed Prints',
  2474. reportPartialUsageDesc: 'When a print fails or is cancelled, report the estimated filament used up to that point based on layer progress.',
  2475. },
  2476. // Inventory
  2477. inventory: {
  2478. title: 'Spool Inventory',
  2479. addSpool: 'Add Spool',
  2480. editSpool: 'Edit Spool',
  2481. material: 'Material',
  2482. selectMaterial: 'Select material...',
  2483. subtype: 'Subtype',
  2484. brand: 'Brand',
  2485. searchBrand: 'Search brand...',
  2486. useCustomBrand: 'Use "{{brand}}"',
  2487. colorName: 'Color Name',
  2488. colorNamePlaceholder: 'Jade White, Fire Red...',
  2489. color: 'Color',
  2490. hexColor: 'Hex Color',
  2491. pickColor: 'Pick custom color',
  2492. labelWeight: 'Label Weight',
  2493. coreWeight: 'Empty Spool Weight',
  2494. searchSpoolWeight: 'Search spool weight...',
  2495. weightUsed: 'Used',
  2496. currentWeight: 'Remaining Weight',
  2497. measuredWeight: 'Measured Weight',
  2498. measuredWeightError: 'Measured weight must be between {{min}}g and {{max}}g.',
  2499. slicerFilament: 'Slicer Filament',
  2500. slicerFilamentName: 'Slicer Preset Name',
  2501. slicerPreset: 'Slicer Preset',
  2502. searchPresets: 'Search filament presets...',
  2503. selectedPreset: 'Selected',
  2504. noPresetsFound: 'No presets found',
  2505. tempOverrides: 'Temperature Overrides',
  2506. note: 'Note',
  2507. notePlaceholder: 'Any additional notes about this spool...',
  2508. archive: 'Archive',
  2509. restore: 'Restore',
  2510. noSpools: 'No spools yet. Add your first spool to get started.',
  2511. noManualSpools: 'No manually added spools available. Add a spool to your inventory first.',
  2512. kProfiles: 'K-Profiles',
  2513. addKProfile: 'Add K-Profile',
  2514. assignSpool: 'Assign Spool',
  2515. unassignSpool: 'Unassign',
  2516. assignSuccess: 'Spool assigned and AMS slot configured',
  2517. assignFailed: 'Failed to assign spool',
  2518. selectSpool: 'Select a spool to assign to this slot',
  2519. assigned: 'Assigned',
  2520. assigning: 'Assigning...',
  2521. searchSpools: 'Search spools...',
  2522. allMaterials: 'All Materials',
  2523. filterByBrand: 'Filter by brand...',
  2524. showArchived: 'Show archived',
  2525. spoolCreated: 'Spool created',
  2526. spoolUpdated: 'Spool updated',
  2527. spoolDeleted: 'Spool deleted',
  2528. spoolArchived: 'Spool archived',
  2529. spoolRestored: 'Spool restored',
  2530. deleteConfirm: 'Are you sure you want to delete this spool? This cannot be undone.',
  2531. archiveConfirm: 'Are you sure you want to archive this spool?',
  2532. advancedSettings: 'Advanced Settings',
  2533. // Tabs
  2534. filamentInfoTab: 'Filament Info',
  2535. paProfileTab: 'PA Profile',
  2536. filamentInfo: 'Filament',
  2537. additional: 'Additional',
  2538. // Cloud
  2539. loadingPresets: 'Loading cloud presets...',
  2540. cloudConnected: 'Cloud connected',
  2541. cloudNotConnected: 'Cloud not connected (using defaults)',
  2542. // Colors
  2543. recentColors: 'Recent',
  2544. searchColors: 'Search colors...',
  2545. searchResults: 'Search results',
  2546. allColors: 'All colors',
  2547. commonColors: 'Common colors',
  2548. showLess: 'Show less',
  2549. showAll: 'Show all',
  2550. noColorsFound: 'No colors match your search',
  2551. noResults: 'No matches found',
  2552. // PA Profiles
  2553. selectMaterialFirst: 'Please select a material first in the Filament Info tab.',
  2554. noPrintersConfigured: 'No printers configured. Add printers to use PA profiles.',
  2555. matchingFilter: 'Matching',
  2556. anyBrand: 'Any brand',
  2557. anyVariant: 'Any variant',
  2558. autoSelect: 'Auto-select',
  2559. matches: 'matches',
  2560. match: 'match',
  2561. noMatches: 'No matches',
  2562. connected: 'Connected',
  2563. offline: 'Offline',
  2564. printerOffline: 'Printer is offline. Connect to view calibration profiles.',
  2565. noKProfilesMatch: 'No K-profiles match the selected filament.',
  2566. leftNozzle: 'Left Nozzle',
  2567. rightNozzle: 'Right Nozzle',
  2568. profilesSelected: 'calibration profile(s) selected',
  2569. // Stats & enhanced table
  2570. totalInventory: 'Total Inventory',
  2571. totalConsumed: 'Total Consumed',
  2572. byMaterial: 'By Material',
  2573. inPrinter: 'In Printer',
  2574. lowStock: 'Low Stock',
  2575. sinceTracking: 'Since tracking started',
  2576. loadedInAms: 'Loaded in AMS/Ext',
  2577. remaining: 'Remaining',
  2578. lowStockThreshold: '<20% remaining',
  2579. search: 'Search spools...',
  2580. showing: 'Showing',
  2581. to: 'to',
  2582. of: 'of',
  2583. show: 'Show',
  2584. spools: 'spools',
  2585. spool: 'spool',
  2586. page: 'Page',
  2587. noSpoolsMatch: 'No results found',
  2588. noSpoolsMatchDesc: 'Try adjusting your search or filters to find what you\'re looking for.',
  2589. active: 'Active',
  2590. archived: 'Archived',
  2591. all: 'All',
  2592. used: 'Used',
  2593. new: 'New',
  2594. clearFilters: 'Clear filters',
  2595. table: 'Table',
  2596. cards: 'Cards',
  2597. net: 'Net',
  2598. // Column config
  2599. columns: 'Columns',
  2600. configureColumns: 'Configure Columns',
  2601. configureColumnsDesc: 'Drag to reorder columns or use arrows. Toggle visibility with the eye icon.',
  2602. visible: 'visible',
  2603. reset: 'Reset',
  2604. cancel: 'Cancel',
  2605. applyChanges: 'Apply Changes',
  2606. moveUp: 'Move up',
  2607. moveDown: 'Move down',
  2608. hideColumn: 'Hide column',
  2609. showColumn: 'Show column',
  2610. // Tag linking
  2611. linkToSpool: 'Link to Spool',
  2612. tagLinked: 'Tag linked to spool',
  2613. tagLinkFailed: 'Failed to link tag',
  2614. tagAlreadyLinked: 'Tag already linked to another spool',
  2615. unknownTag: 'Unknown RFID tag detected',
  2616. // Usage history
  2617. usageHistory: 'Usage History',
  2618. noUsageHistory: 'No usage recorded yet',
  2619. printName: 'Print Name',
  2620. weightConsumed: 'Weight Consumed',
  2621. clearHistory: 'Clear',
  2622. historyCleared: 'Usage history cleared',
  2623. fillSourceLabel: '(Inv)',
  2624. },
  2625. // Timelapse
  2626. timelapse: {
  2627. title: 'Timelapse',
  2628. create: 'Create Timelapse',
  2629. download: 'Download',
  2630. delete: 'Delete',
  2631. preview: 'Preview',
  2632. frameRate: 'Frame Rate',
  2633. quality: 'Quality',
  2634. processing: 'Processing...',
  2635. noTimelapses: 'No timelapses available',
  2636. },
  2637. // AMS
  2638. ams: {
  2639. title: 'AMS',
  2640. slot: 'Slot',
  2641. empty: 'Empty',
  2642. emptySlot: 'Empty slot',
  2643. unknown: 'Unknown',
  2644. humidity: 'Humidity',
  2645. temperature: 'Temperature',
  2646. filamentType: 'Filament Type',
  2647. filamentColor: 'Color',
  2648. remaining: 'Remaining',
  2649. history: 'AMS History',
  2650. noHistory: 'No history available',
  2651. configureSlot: 'Configure Slot',
  2652. externalSpool: 'External Spool',
  2653. profile: 'Profile',
  2654. kFactor: 'K Factor',
  2655. fill: 'Fill',
  2656. configure: 'Configure',
  2657. },
  2658. // Print modal
  2659. printModal: {
  2660. title: 'Start Print',
  2661. selectPrinter: 'Select Printer',
  2662. selectPlate: 'Select Plate',
  2663. filamentMapping: 'Filament Mapping',
  2664. printSettings: 'Print Settings',
  2665. bedLeveling: 'Bed Leveling',
  2666. flowCalibration: 'Flow Calibration',
  2667. vibrationCalibration: 'Vibration Calibration',
  2668. layerInspection: 'First Layer Inspection',
  2669. timelapse: 'Timelapse',
  2670. startPrint: 'Start Print',
  2671. addToQueue: 'Add to Queue',
  2672. cancel: 'Cancel',
  2673. noPrintersAvailable: 'No printers available',
  2674. printerBusy: 'Printer is busy',
  2675. printerOffline: 'Printer is offline',
  2676. sameTypeDifferentColor: 'Same type, different color',
  2677. filamentTypeNotLoaded: 'Filament type not loaded',
  2678. openCalendar: 'Open calendar',
  2679. leftNozzle: 'L',
  2680. rightNozzle: 'R',
  2681. leftNozzleTooltip: 'Left nozzle',
  2682. rightNozzleTooltip: 'Right nozzle',
  2683. },
  2684. // Backup
  2685. backup: {
  2686. title: 'Backup & Restore',
  2687. createBackup: 'Create Backup',
  2688. restoreBackup: 'Restore Backup',
  2689. restoreDescription: 'Replace all data from a backup file',
  2690. downloadBackup: 'Download Backup',
  2691. uploadBackup: 'Upload Backup',
  2692. lastBackup: 'Last Backup',
  2693. autoBackup: 'Auto Backup',
  2694. backupNow: 'Backup Now',
  2695. restoreWarning: 'Warning: Restoring a backup will overwrite all current data.',
  2696. includeArchives: 'Include Archives',
  2697. includeSettings: 'Include Settings',
  2698. includeProfiles: 'Include Profiles',
  2699. backupSuccess: 'Backup created successfully',
  2700. restoreSuccess: 'Backup restored successfully',
  2701. backupFailed: 'Backup failed',
  2702. restoreFailed: 'Restore failed',
  2703. restoreNote: 'Virtual Printer will be stopped during restore',
  2704. },
  2705. // Tags
  2706. tags: {
  2707. title: 'Tags',
  2708. addTag: 'Add Tag',
  2709. editTag: 'Edit Tag',
  2710. deleteTag: 'Delete Tag',
  2711. tagName: 'Tag Name',
  2712. tagColor: 'Tag Color',
  2713. noTags: 'No tags',
  2714. deleteConfirm: 'Are you sure you want to delete this tag?',
  2715. manageTags: 'Manage Tags',
  2716. },
  2717. // Upload modal (archives)
  2718. uploadModal: {
  2719. title: 'Upload 3MF Files',
  2720. dragDrop: 'Drag & drop .3mf files here',
  2721. or: 'or',
  2722. browseFiles: 'Browse Files',
  2723. extractionInfo: 'The printer model will be automatically extracted from the 3MF file metadata.',
  2724. uploaded: 'uploaded',
  2725. failed: 'failed',
  2726. uploading: 'Uploading...',
  2727. upload: 'Upload',
  2728. uploadFailed: 'Upload failed',
  2729. },
  2730. // Edit archive modal
  2731. // Edit Archive Modal
  2732. editArchive: {
  2733. title: 'Edit Archive',
  2734. name: 'Name',
  2735. namePlaceholder: 'Print name',
  2736. printer: 'Printer',
  2737. noPrinter: 'No printer',
  2738. project: 'Project',
  2739. noProject: 'No project',
  2740. itemsPrinted: 'Items Printed',
  2741. itemsPrintedHelp: 'Number of items produced in this print job',
  2742. notes: 'Notes',
  2743. notesPlaceholder: 'Add notes about this print...',
  2744. externalLink: 'External Link',
  2745. externalLinkPlaceholder: 'https://printables.com/model/...',
  2746. externalLinkHelp: 'Link to Printables, Thingiverse, or other source',
  2747. tags: 'Tags',
  2748. tagsPlaceholder: 'Add tags...',
  2749. addMoreTags: 'Add more tags...',
  2750. matchingTags: 'Matching "{{query}}"',
  2751. existingTags: 'Existing tags',
  2752. clickToAdd: '(click to add)',
  2753. status: 'Status',
  2754. failureReason: 'Failure Reason',
  2755. selectReason: 'Select reason...',
  2756. photos: 'Photos of Printed Result',
  2757. photosHelp: 'Click + to add photos of your printed result',
  2758. printResult: 'Print result',
  2759. saving: 'Saving...',
  2760. // Failure reasons
  2761. failureReasons: {
  2762. adhesionFailure: 'Adhesion failure',
  2763. spaghettiDetached: 'Spaghetti / Detached',
  2764. layerShift: 'Layer shift',
  2765. cloggedNozzle: 'Clogged nozzle',
  2766. filamentRunout: 'Filament runout',
  2767. warping: 'Warping',
  2768. stringing: 'Stringing',
  2769. underExtrusion: 'Under-extrusion',
  2770. powerFailure: 'Power failure',
  2771. userCancelled: 'User cancelled',
  2772. other: 'Other',
  2773. },
  2774. // Archive statuses
  2775. statuses: {
  2776. completed: 'Completed',
  2777. failed: 'Failed',
  2778. aborted: 'Cancelled',
  2779. printing: 'Printing',
  2780. },
  2781. },
  2782. // K-Profiles
  2783. kProfiles: {
  2784. title: 'K-Profiles',
  2785. noPrintersConfigured: 'No Printers Configured',
  2786. addPrinterInSettings: 'Add a printer in Settings to manage K-profiles',
  2787. noActivePrinters: 'No Active Printers',
  2788. enablePrinterConnection: 'Enable a printer connection to view its K-profiles',
  2789. loadingProfiles: 'Loading K-Profiles...',
  2790. printerOffline: 'Printer Offline',
  2791. printerOfflineDesc: 'The selected printer is not connected. Power it on to view K-profiles.',
  2792. noMatchingProfiles: 'No Matching Profiles',
  2793. noMatchingProfilesDesc: 'No profiles match your search criteria',
  2794. noKProfiles: 'No K-Profiles',
  2795. noKProfilesDesc: 'No pressure advance profiles found for {{diameter}}mm nozzle',
  2796. createFirstProfile: 'Create First Profile',
  2797. // Controls
  2798. printer: 'Printer',
  2799. nozzle: 'Nozzle',
  2800. refresh: 'Refresh',
  2801. addProfile: 'Add Profile',
  2802. export: 'Export',
  2803. import: 'Import',
  2804. select: 'Select',
  2805. selectAll: 'Select All',
  2806. delete: 'Delete',
  2807. // Filters
  2808. searchPlaceholder: 'Search by name or filament...',
  2809. allExtruders: 'All Extruders',
  2810. leftOnly: 'Left Only',
  2811. rightOnly: 'Right Only',
  2812. allFlow: 'All Flow',
  2813. hfOnly: 'HF Only',
  2814. sOnly: 'S Only',
  2815. sortName: 'Sort: Name',
  2816. sortKValue: 'Sort: K-Value',
  2817. sortFilament: 'Sort: Filament',
  2818. // Dual extruder labels
  2819. leftExtruder: 'Left Extruder',
  2820. rightExtruder: 'Right Extruder',
  2821. // Modal
  2822. modal: {
  2823. addTitle: 'Add K-Profile',
  2824. editTitle: 'Edit K-Profile',
  2825. profileName: 'Profile Name',
  2826. profileNamePlaceholder: 'My PLA Profile',
  2827. kValue: 'K-Value',
  2828. kValuePlaceholder: '0.020',
  2829. kValueHelp: 'Typical range: 0.01 - 0.06 for PLA, 0.02 - 0.10 for PETG',
  2830. filament: 'Filament',
  2831. selectFilament: 'Select filament...',
  2832. noFilamentsHelp: 'No filaments found. Create a K-profile in Bambu Studio first.',
  2833. flowType: 'Flow Type',
  2834. highFlow: 'High Flow',
  2835. standard: 'Standard',
  2836. nozzleSize: 'Nozzle Size',
  2837. extruder: 'Extruder',
  2838. extruders: 'Extruders',
  2839. left: 'Left',
  2840. right: 'Right',
  2841. notes: 'Notes (stored locally)',
  2842. notesPlaceholder: 'Add notes about this profile...',
  2843. notesHelp: 'Notes are saved in Bambuddy, not on the printer',
  2844. syncing: 'Syncing with printer...',
  2845. savingExtruder: 'Saving to extruder {{current}}/{{total}}...',
  2846. pleaseWait: 'Please wait',
  2847. },
  2848. // Delete confirmation
  2849. deleteConfirm: {
  2850. title: 'Delete Profile',
  2851. cannotUndo: 'This cannot be undone',
  2852. message: 'Are you sure you want to delete "{{name}}" from the printer?',
  2853. },
  2854. // Bulk delete
  2855. bulkDelete: {
  2856. title: 'Delete Profiles',
  2857. cannotUndo: 'This cannot be undone',
  2858. message: 'Are you sure you want to delete {{count}} selected profiles from the printer?',
  2859. },
  2860. // Toast
  2861. toast: {
  2862. profileSaved: 'K-profile saved',
  2863. profilesSaved: 'K-profile saved to {{count}} extruders',
  2864. selectAtLeastOneExtruder: 'Please select at least one extruder',
  2865. profileDeleted: 'K-profile deleted',
  2866. profilesDeleted: 'Deleted {{count}} profiles',
  2867. exportedProfiles: 'Exported {{count}} profiles',
  2868. importedProfiles: 'Imported {{count}} of {{total}} profiles',
  2869. noProfilesToExport: 'No profiles to export',
  2870. invalidFileFormat: 'Invalid file format',
  2871. failedToParseImport: 'Failed to parse import file',
  2872. failedToSaveBatch: 'Failed to save K-profiles',
  2873. noteSaved: 'Note saved',
  2874. failedToSaveNote: 'Failed to save note',
  2875. },
  2876. // Permissions
  2877. permission: {
  2878. noRead: 'You do not have permission to refresh profiles',
  2879. noCreate: 'You do not have permission to add profiles',
  2880. noUpdate: 'You do not have permission to update K-profiles',
  2881. noDelete: 'You do not have permission to delete K-profiles',
  2882. noExport: 'You do not have permission to export profiles',
  2883. noImport: 'You do not have permission to import profiles',
  2884. },
  2885. },
  2886. // Virtual Printer
  2887. virtualPrinter: {
  2888. title: 'Virtual Printer',
  2889. running: 'Running',
  2890. stopped: 'Stopped',
  2891. description: {
  2892. default: 'Enable a virtual printer that appears in Bambu Studio and OrcaSlicer. Files sent to this printer will be archived directly without printing.',
  2893. proxy: 'Enable a proxy that relays slicer traffic to a real printer, allowing remote printing over any network.',
  2894. },
  2895. enable: {
  2896. title: 'Enable Virtual Printer',
  2897. visibleInSlicer: 'Visible as "Bambuddy" in slicer discovery',
  2898. proxyingTo: 'Proxying to {{name}}',
  2899. notActive: 'Not active',
  2900. },
  2901. model: {
  2902. title: 'Printer Model',
  2903. description: 'Select which printer model to emulate.',
  2904. restartWarning: 'Changing the model will restart the virtual printer',
  2905. },
  2906. accessCode: {
  2907. title: 'Access Code',
  2908. isSet: 'Access code is set',
  2909. notSet: 'No access code set - required to enable',
  2910. placeholder: 'Enter 8-char code',
  2911. placeholderChange: 'Enter new code to change',
  2912. hint: 'Must be exactly 8 characters. Used by slicers to authenticate.',
  2913. charCount: '({{count}}/8)',
  2914. },
  2915. targetPrinter: {
  2916. title: 'Target Printer',
  2917. configured: 'Proxy target configured',
  2918. notConfigured: 'No target printer selected - required for proxy mode',
  2919. placeholder: 'Select a printer...',
  2920. hint: 'Select the printer to proxy slicer traffic to. The printer must be in LAN mode.',
  2921. noPrinters: 'No printers configured. Add a printer first to use proxy mode.',
  2922. },
  2923. remoteInterface: {
  2924. title: 'Network Interface Override',
  2925. configured: 'Interface override active',
  2926. optional: 'Optional - use if auto-detected IP is wrong (e.g. multiple NICs, Docker, VPN)',
  2927. placeholder: 'Auto-detect (default)...',
  2928. hint: 'Override the IP address advertised via SSDP and used in the TLS certificate. Useful when Bambuddy has multiple network interfaces.',
  2929. },
  2930. mode: {
  2931. title: 'Mode',
  2932. archive: 'Archive',
  2933. archiveDesc: 'Archive files immediately',
  2934. review: 'Review',
  2935. reviewDesc: 'Review before archiving',
  2936. queue: 'Queue',
  2937. queueDesc: 'Archive and add to queue',
  2938. proxy: 'Proxy',
  2939. proxyDesc: 'Relay to real printer',
  2940. },
  2941. setupRequired: {
  2942. title: 'Setup Required',
  2943. description: 'The virtual printer feature requires additional system configuration before it will work. This includes port forwarding, firewall rules, and platform-specific settings.',
  2944. readGuide: 'Read the setup guide before enabling',
  2945. },
  2946. howItWorks: {
  2947. title: 'How it works',
  2948. titleProxy: 'How it works (Proxy Mode)',
  2949. step1: 'Complete the setup guide for your platform',
  2950. step2: 'Enable the virtual printer and set an access code',
  2951. step3: 'In Bambu Studio or OrcaSlicer, go to "Add Printer"',
  2952. step4: 'The "Bambuddy" printer should appear in the discovery list',
  2953. step5: 'Connect using the access code you set',
  2954. step6: 'When you "print" to Bambuddy, the 3MF file is archived instead',
  2955. proxyStep1: 'Select the target printer (must be in LAN mode)',
  2956. proxyStep2: 'For cross-network: select the slicer network interface',
  2957. proxyStep3: 'Enable the proxy - printer appears in slicer discovery via SSDP',
  2958. proxyStep4: 'Connect using the printer\'s access code',
  2959. proxyStep5: 'Print as normal - traffic is relayed through Bambuddy',
  2960. proxyStep6: 'Camera streaming requires NAT/IP forwarding (see docs)',
  2961. },
  2962. status: {
  2963. title: 'Status Details',
  2964. printerName: 'Printer Name',
  2965. model: 'Model',
  2966. serialNumber: 'Serial Number',
  2967. mode: 'Mode',
  2968. pendingFiles: 'Pending Files',
  2969. targetPrinter: 'Target Printer',
  2970. ftpPort: 'FTP Port',
  2971. mqttPort: 'MQTT Port',
  2972. ftpConnections: 'FTP Connections',
  2973. mqttConnections: 'MQTT Connections',
  2974. },
  2975. toast: {
  2976. updated: 'Virtual printer settings updated',
  2977. failedToUpdate: 'Failed to update settings',
  2978. accessCodeRequired: 'Please set an access code first',
  2979. targetPrinterRequired: 'Please select a target printer first',
  2980. accessCodeEmpty: 'Access code cannot be empty',
  2981. accessCodeLength: 'Access code must be exactly 8 characters',
  2982. },
  2983. },
  2984. // Model Viewer
  2985. modelViewer: {
  2986. openInSlicer: 'Open in Slicer',
  2987. tabs: {
  2988. model: '3D Model',
  2989. gcode: 'G-code Preview',
  2990. },
  2991. notAvailable: 'not available',
  2992. notSliced: 'not sliced',
  2993. plates: 'Plates',
  2994. allPlates: 'All Plates',
  2995. plateNumber: 'Plate {{number}}',
  2996. plateCount: '{{count}} plate',
  2997. plateCount_other: '{{count}} plates',
  2998. objectCount: '{{count}} object',
  2999. objectCount_other: '{{count}} objects',
  3000. filamentCount: '{{count}} filament',
  3001. filamentCount_other: '{{count}} filaments',
  3002. eta: 'ETA {{minutes}} min',
  3003. noPreview: 'No preview available for this file',
  3004. pagination: {
  3005. pageOf: 'Page {{current}} of {{total}}',
  3006. prev: 'Prev',
  3007. next: 'Next',
  3008. },
  3009. errors: {
  3010. failedToLoad: 'Failed to load file',
  3011. noMeshes: 'No meshes found in 3MF file',
  3012. unsupportedFormat: 'Unsupported file format',
  3013. },
  3014. },
  3015. // Maintenance type descriptions (built-in)
  3016. maintenanceDescriptions: {
  3017. lubricateCarbonRods: 'Apply lubricant to carbon rods for smooth motion',
  3018. lubricateRails: 'Apply lubricant to linear rails for smooth motion',
  3019. cleanNozzle: 'Clean hotend and nozzle to prevent clogs',
  3020. checkBelts: 'Verify belt tension for accurate prints',
  3021. cleanBuildPlate: 'Clean build plate for better adhesion',
  3022. checkExtruder: 'Inspect extruder gears for wear',
  3023. checkCooling: 'Ensure cooling fans are working properly',
  3024. generalInspection: 'General printer inspection',
  3025. cleanCarbonRods: 'Clean carbon rods to reduce friction',
  3026. cleanLinearRails: 'Wipe linear rails to remove dust and debris',
  3027. checkPtfeTube: 'Inspect PTFE tube for wear or damage',
  3028. replaceHepaFilter: 'Replace HEPA filter for air quality',
  3029. replaceCarbonFilter: 'Replace activated carbon filter',
  3030. lubricateLeftNozzleRail: 'Lubricate left nozzle rail (H2 series)',
  3031. },
  3032. // Smart Plugs
  3033. smartPlugs: {
  3034. offline: 'Offline',
  3035. admin: 'Admin',
  3036. openPlugAdminPage: 'Open plug admin page',
  3037. deleteSmartPlug: 'Delete Smart Plug',
  3038. turnOnSmartPlug: 'Turn On Smart Plug',
  3039. turnOffSmartPlug: 'Turn Off Smart Plug',
  3040. turnOn: 'Turn On',
  3041. turnOff: 'Turn Off',
  3042. addSmartPlug: {
  3043. scanningNetwork: 'Scanning network...',
  3044. chooseEntity: 'Choose an entity...',
  3045. connectionFailed: 'Connection failed',
  3046. searchEntities: 'Search entities...',
  3047. searchPowerSensors: 'Search power sensors...',
  3048. searchEnergySensors: 'Search energy sensors...',
  3049. placeholders: {
  3050. plugName: 'Living Room Plug',
  3051. mqttStateOnValue: 'ON, true, 1',
  3052. mqttSameAsPower: 'Same as power topic, or different',
  3053. },
  3054. },
  3055. },
  3056. // Rich Text Editor
  3057. richTextEditor: {
  3058. bold: 'Bold',
  3059. italic: 'Italic',
  3060. underline: 'Underline',
  3061. bulletList: 'Bullet List',
  3062. numberedList: 'Numbered List',
  3063. alignLeft: 'Align Left',
  3064. alignCenter: 'Align Center',
  3065. alignRight: 'Align Right',
  3066. addLink: 'Add Link',
  3067. removeLink: 'Remove Link',
  3068. },
  3069. // External Links
  3070. externalLinks: {
  3071. noLinksConfigured: 'No external links configured',
  3072. deleteLink: 'Delete Link',
  3073. removeCustomIcon: 'Remove custom icon',
  3074. openInNewTab: 'Open in new tab',
  3075. placeholders: {
  3076. linkName: 'My Link',
  3077. },
  3078. },
  3079. // Keyboard Shortcuts Modal
  3080. keyboardShortcuts: {
  3081. title: 'Keyboard Shortcuts',
  3082. navigation: 'Navigation',
  3083. archivesSection: 'Archives',
  3084. kProfilesSection: 'K-Profiles',
  3085. generalSection: 'General',
  3086. shortcuts: {
  3087. goToPrinters: 'Go to Printers',
  3088. goToArchives: 'Go to Archives',
  3089. goToQueue: 'Go to Queue',
  3090. goToStats: 'Go to Statistics',
  3091. goToProfiles: 'Go to Cloud Profiles',
  3092. goToSettings: 'Go to Settings',
  3093. focusSearch: 'Focus search',
  3094. openUploadModal: 'Open upload modal',
  3095. clearSelection: 'Clear selection / blur input',
  3096. contextMenu: 'Context menu on cards',
  3097. refreshProfiles: 'Refresh profiles',
  3098. newProfile: 'New profile',
  3099. exitSelectionMode: 'Exit selection mode',
  3100. showHelp: 'Show this help',
  3101. },
  3102. footer: 'Press Esc or click outside to close',
  3103. },
  3104. // Notification Log
  3105. notificationLog: {
  3106. title: 'Notification Log',
  3107. events: {
  3108. printStarted: 'Print Started',
  3109. printComplete: 'Print Complete',
  3110. printFailed: 'Print Failed',
  3111. printStopped: 'Print Stopped',
  3112. progress: 'Progress',
  3113. printerOffline: 'Printer Offline',
  3114. printerError: 'Printer Error',
  3115. lowFilament: 'Low Filament',
  3116. maintenanceDue: 'Maintenance Due',
  3117. test: 'Test',
  3118. },
  3119. timeAgo: {
  3120. justNow: 'Just now',
  3121. minutesAgo: '{{minutes}}m ago',
  3122. hoursAgo: '{{hours}}h ago',
  3123. },
  3124. },
  3125. // Restore/Backup Modal
  3126. restoreBackup: {
  3127. title: 'Restore Backup',
  3128. restoring: 'Restoring...',
  3129. restoreComplete: 'Restore Complete',
  3130. restoreFailed: 'Restore Failed',
  3131. importSettings: 'Import settings from a backup file',
  3132. pleaseWait: 'Please wait while your data is being restored',
  3133. clickToSelect: 'Click to select backup file (.json or .zip)',
  3134. howDuplicateHandling: 'How duplicate handling works:',
  3135. categories: {
  3136. printers: 'Printers',
  3137. smartPlugs: 'Smart Plugs',
  3138. notificationProviders: 'Notification Providers',
  3139. filaments: 'Filaments',
  3140. archives: 'Archives',
  3141. pendingUploads: 'Pending Uploads',
  3142. settingsTemplates: 'Settings & Templates',
  3143. },
  3144. matchingInfo: {
  3145. printers: 'matched by serial number',
  3146. smartPlugs: 'matched by IP address',
  3147. notificationProviders: 'matched by name',
  3148. filaments: 'matched by name + type + brand',
  3149. archives: 'matched by content hash',
  3150. pendingUploads: 'matched by filename',
  3151. settingsTemplates: 'always overwritten',
  3152. },
  3153. replaceExisting: 'Replace existing data',
  3154. keepExisting: 'Keep existing data',
  3155. replaceDescription: 'Overwrite items that already exist with backup data',
  3156. keepDescription: 'Only restore items that don\'t already exist',
  3157. caution: 'Caution:',
  3158. cautionText: 'Overwriting will replace your current configurations with backup data. Printer access codes are never overwritten for security.',
  3159. itemsRestored: 'Items Restored',
  3160. itemsSkipped: 'Items Skipped',
  3161. restored: 'Restored',
  3162. skipped: 'Skipped (already exist)',
  3163. filesLabel: 'Files (3MF, thumbnails, etc.)',
  3164. newApiKeysGenerated: 'New API Keys Generated',
  3165. newApiKeysWarning: 'These keys are only shown once. Copy them now!',
  3166. processingBackup: 'Processing backup file...',
  3167. noDataFound: 'No data was found to restore in the backup file.',
  3168. failedToRestore: 'Failed to restore backup. Please check the file format.',
  3169. },
  3170. // Backup Export Modal
  3171. backupExport: {
  3172. title: 'Export Backup',
  3173. selectData: 'Select data to include',
  3174. selectAll: 'Select All',
  3175. selectNone: 'Select None',
  3176. categoryDescriptions: {
  3177. settings: 'Language, theme, update preferences',
  3178. notifications: 'ntfy, Pushover, Discord, etc.',
  3179. templates: 'Custom message templates',
  3180. smartPlugs: 'Tasmota plug configurations',
  3181. externalLinks: 'Sidebar links to external services',
  3182. printers: 'Printer info (access codes excluded)',
  3183. plateDetection: 'Empty plate reference images',
  3184. filaments: 'Filament types and costs',
  3185. maintenance: 'Custom maintenance schedules',
  3186. archives: 'All print data + files (3MF, thumbnails, photos)',
  3187. projects: 'Projects, BOM items, and attachments',
  3188. pendingUploads: 'Virtual printer uploads awaiting review',
  3189. apiKeys: 'Webhook API keys (new keys generated on import)',
  3190. },
  3191. requiresPrinters: 'Requires Printers to be selected',
  3192. zipFileWarning: 'ZIP file will be created.',
  3193. zipFileDescription: 'Includes all 3MF files, thumbnails, timelapses, and photos. This may take a while and result in a large file.',
  3194. includeAccessCodes: 'Include Access Codes',
  3195. includeAccessCodesDescription: 'For transferring to another machine',
  3196. includeAccessCodesWarning: 'Access codes will be included in plain text. Keep this backup file secure!',
  3197. categoriesSelected: '{{selectedCount}} categories selected',
  3198. },
  3199. // Pending Uploads Panel
  3200. pendingUploads: {
  3201. placeholders: {
  3202. notes: 'Add notes about this print...',
  3203. },
  3204. discardUpload: 'Discard Upload',
  3205. archiveAllUploads: 'Archive All Uploads',
  3206. discardAllUploads: 'Discard All Uploads',
  3207. archive: 'Archive',
  3208. timeAgo: {
  3209. justNow: 'Just now',
  3210. minutesAgo: '{{minutes}}m ago',
  3211. hoursAgo: '{{hours}}h ago',
  3212. daysAgo: '{{days}}d ago',
  3213. },
  3214. },
  3215. // API Browser
  3216. apiBrowser: {
  3217. placeholders: {
  3218. requestBody: 'JSON request body...',
  3219. searchEndpoints: 'Search endpoints...',
  3220. },
  3221. },
  3222. // Configure AMS Slot Modal
  3223. configureAmsSlot: {
  3224. title: 'Configure AMS Slot',
  3225. slotConfigured: 'Slot Configured!',
  3226. configuringSlot: 'Configuring slot:',
  3227. slotLabel: '{{ams}} Slot {{slot}}',
  3228. searchPresets: 'Search presets...',
  3229. colorPlaceholder: 'Color name or hex (e.g., brown, FF8800)',
  3230. clearCustomColor: 'Clear custom color',
  3231. noCloudPresets: 'No cloud presets. Login to Bambu Cloud to sync.',
  3232. noPresetsAvailable: 'No presets available. Login to Bambu Cloud or import local profiles.',
  3233. noMatchingPresets: 'No matching presets found.',
  3234. custom: 'Custom',
  3235. builtin: 'Built-in',
  3236. settingsSentToPrinter: 'Settings sent to printer',
  3237. filamentProfile: 'Filament Profile',
  3238. kProfileLabel: 'K Profile (Pressure Advance)',
  3239. filteringFor: 'Filtering for: {{material}}',
  3240. noKProfile: 'No K profile (use default 0.020)',
  3241. noMatchingKProfiles: 'No matching K profiles found. Default K=0.020 will be used.',
  3242. selectFilamentFirst: 'Select a filament profile first',
  3243. kFromCalibration: 'K={{value}} from printer calibration',
  3244. customColorLabel: 'Custom Color (optional)',
  3245. presetColors: '{{name}} colors:',
  3246. showLessColors: 'Show less colors',
  3247. showMoreColors: 'Show more colors',
  3248. clear: 'Clear',
  3249. hexLabel: 'Hex: #{{hex}}',
  3250. resetting: 'Resetting...',
  3251. resetSlot: 'Reset Slot',
  3252. cancel: 'Cancel',
  3253. configuring: 'Configuring...',
  3254. configureSlot: 'Configure Slot',
  3255. },
  3256. // GitHub Backup Settings
  3257. githubBackup: {
  3258. title: 'GitHub Backup',
  3259. history: 'History',
  3260. downloadBackup: 'Download Backup',
  3261. restoreBackup: 'Restore Backup',
  3262. noBackupsYet: 'No backups yet',
  3263. },
  3264. // Email Settings
  3265. emailSettings: {
  3266. placeholders: {
  3267. fromName: 'BamBuddy',
  3268. },
  3269. },
  3270. // Tag Management Modal
  3271. tagManagement: {
  3272. searchTags: 'Search tags...',
  3273. renameTag: 'Rename tag',
  3274. deleteTag: 'Delete tag',
  3275. },
  3276. // Notification Template Editor
  3277. notificationTemplates: {
  3278. placeholders: {
  3279. title: 'Notification title...',
  3280. body: 'Notification body...',
  3281. },
  3282. },
  3283. // Batch Tag Modal
  3284. batchTag: {
  3285. placeholders: {
  3286. newTag: 'Enter new tag...',
  3287. },
  3288. },
  3289. // Photo Gallery Modal
  3290. photoGallery: {
  3291. deletePhoto: 'Delete Photo',
  3292. },
  3293. // Filament Hover Card
  3294. filamentHoverCard: {
  3295. copySpoolUuid: 'Copy spool UUID',
  3296. },
  3297. // K Profiles View
  3298. kProfilesView: {
  3299. hasNote: 'Has note',
  3300. copyProfile: 'Copy profile',
  3301. },
  3302. // Layout/Navigation
  3303. layout: {
  3304. openMenu: 'Open menu',
  3305. noPermissionSystemInfo: 'You do not have permission to view system information',
  3306. },
  3307. // Dashboard
  3308. dashboard: {
  3309. dragToReorder: 'Drag to reorder',
  3310. hideWidget: 'Hide widget',
  3311. },
  3312. // Notification Provider Card
  3313. notificationProviderCard: {
  3314. deleteNotificationProvider: 'Delete Notification Provider',
  3315. },
  3316. // File Manager Modal
  3317. fileManagerModal: {
  3318. closeFileManager: 'Close file manager',
  3319. sortFiles: 'Sort files',
  3320. goToParentFolder: 'Go to parent folder',
  3321. threeView: '3D View',
  3322. },
  3323. // Embedded Camera Viewer
  3324. embeddedCameraViewer: {
  3325. refreshStream: 'Refresh stream',
  3326. close: 'Close',
  3327. zoomOut: 'Zoom out',
  3328. resetZoom: 'Reset zoom',
  3329. zoomIn: 'Zoom in',
  3330. dragToResize: 'Drag to resize',
  3331. },
  3332. // Timelapse Viewer
  3333. timelapseViewer: {
  3334. skipBack5s: 'Skip back 5s',
  3335. skipForward5s: 'Skip forward 5s',
  3336. },
  3337. // Notification Providers
  3338. notificationProviders: {
  3339. descriptions: {
  3340. email: 'SMTP email notifications',
  3341. telegram: 'Notifications via Telegram bot',
  3342. discord: 'Send to Discord channel via webhook',
  3343. ntfy: 'Free, self-hostable push notifications',
  3344. pushover: 'Simple, reliable push notifications',
  3345. callmebot: 'Free WhatsApp notifications via CallMeBot',
  3346. webhook: 'Generic HTTP POST to any URL',
  3347. },
  3348. },
  3349. // Log Viewer
  3350. logViewer: {
  3351. searchPlaceholder: 'Search message or logger name...',
  3352. noLogEntries: 'No log entries found',
  3353. },
  3354. // Switchbar Popover
  3355. switchbarPopover: {
  3356. noSwitchesInSwitchbar: 'No switches in switchbar',
  3357. },
  3358. // Project Page Modal
  3359. projectPageModal: {
  3360. placeholders: {
  3361. title: 'Title',
  3362. designer: 'Designer',
  3363. license: 'License',
  3364. description: 'Enter description...',
  3365. profileTitle: 'Profile Title',
  3366. profileDescription: 'Profile description...',
  3367. },
  3368. },
  3369. // Spoolman Settings
  3370. spoolmanSettings: {},
  3371. };