ltcai 10.0.0 โ†’ 10.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (214) hide show
  1. package/README.md +43 -32
  2. package/docs/CHANGELOG.md +204 -0
  3. package/docs/COMMUNITY_AND_PLUGINS.md +1 -1
  4. package/docs/DEVELOPMENT.md +1 -1
  5. package/docs/HYBRID_CLOUD_KG_STREAMING.md +101 -0
  6. package/docs/MYPY_BACKLOG.md +98 -0
  7. package/docs/ONBOARDING.md +1 -1
  8. package/docs/OPERATIONS.md +1 -1
  9. package/docs/TRUST_MODEL.md +1 -1
  10. package/docs/WHY_LATTICE.md +1 -1
  11. package/docs/kg-schema.md +1 -1
  12. package/lattice_brain/__init__.py +1 -1
  13. package/lattice_brain/archive.py +5 -4
  14. package/lattice_brain/conversations.py +14 -3
  15. package/lattice_brain/embeddings.py +12 -2
  16. package/lattice_brain/graph/_kg_common.py +5 -5
  17. package/lattice_brain/graph/_kg_fsutil.py +5 -4
  18. package/lattice_brain/graph/discovery.py +4 -3
  19. package/lattice_brain/graph/discovery_index.py +0 -1
  20. package/lattice_brain/graph/documents.py +3 -2
  21. package/lattice_brain/graph/fusion.py +4 -0
  22. package/lattice_brain/graph/ingest.py +12 -2
  23. package/lattice_brain/graph/projection.py +3 -2
  24. package/lattice_brain/graph/provenance.py +5 -3
  25. package/lattice_brain/graph/rerank.py +4 -1
  26. package/lattice_brain/graph/retrieval.py +0 -1
  27. package/lattice_brain/graph/retrieval_docgen.py +0 -1
  28. package/lattice_brain/graph/retrieval_reads.py +0 -1
  29. package/lattice_brain/graph/retrieval_vector.py +0 -1
  30. package/lattice_brain/graph/schema.py +4 -3
  31. package/lattice_brain/graph/store.py +18 -4
  32. package/lattice_brain/graph/write_master.py +46 -1
  33. package/lattice_brain/ingestion.py +4 -1
  34. package/lattice_brain/portability.py +5 -2
  35. package/lattice_brain/quality.py +12 -5
  36. package/lattice_brain/quiet.py +43 -0
  37. package/lattice_brain/runtime/agent_runtime.py +19 -10
  38. package/lattice_brain/runtime/hooks.py +3 -2
  39. package/lattice_brain/runtime/multi_agent.py +2 -3
  40. package/lattice_brain/sensitivity.py +94 -0
  41. package/lattice_brain/storage/base.py +30 -2
  42. package/lattice_brain/storage/migration.py +3 -2
  43. package/lattice_brain/storage/postgres.py +2 -2
  44. package/lattice_brain/storage/sqlite.py +6 -4
  45. package/lattice_brain/workflow.py +4 -2
  46. package/latticeai/__init__.py +1 -1
  47. package/latticeai/api/admin.py +1 -1
  48. package/latticeai/api/agents.py +4 -2
  49. package/latticeai/api/auth.py +5 -1
  50. package/latticeai/api/automation_intelligence.py +2 -1
  51. package/latticeai/api/browser.py +3 -2
  52. package/latticeai/api/chat.py +28 -17
  53. package/latticeai/api/chat_agent_http.py +22 -8
  54. package/latticeai/api/chat_contracts.py +4 -0
  55. package/latticeai/api/chat_documents.py +6 -2
  56. package/latticeai/api/chat_hybrid.py +82 -0
  57. package/latticeai/api/computer_use.py +8 -3
  58. package/latticeai/api/knowledge_graph.py +1 -1
  59. package/latticeai/api/mcp.py +4 -4
  60. package/latticeai/api/models.py +5 -2
  61. package/latticeai/api/network_boundary.py +220 -0
  62. package/latticeai/api/permissions.py +0 -1
  63. package/latticeai/api/realtime.py +1 -1
  64. package/latticeai/api/security_dashboard.py +1 -1
  65. package/latticeai/api/setup.py +16 -3
  66. package/latticeai/api/static_routes.py +2 -1
  67. package/latticeai/api/tools.py +12 -8
  68. package/latticeai/api/voice_capture.py +3 -1
  69. package/latticeai/api/workflow_designer.py +1 -1
  70. package/latticeai/api/workspace.py +1 -2
  71. package/latticeai/app_factory.py +174 -145
  72. package/latticeai/cli/entrypoint.py +6 -4
  73. package/latticeai/core/agent.py +55 -495
  74. package/latticeai/core/agent_eval.py +2 -2
  75. package/latticeai/core/agent_helpers.py +493 -0
  76. package/latticeai/core/agent_prompts.py +0 -1
  77. package/latticeai/core/agent_registry.py +3 -1
  78. package/latticeai/core/agent_state.py +41 -0
  79. package/latticeai/core/audit.py +1 -1
  80. package/latticeai/core/builtin_hooks.py +2 -1
  81. package/latticeai/core/config.py +0 -1
  82. package/latticeai/core/embedding_providers.py +12 -1
  83. package/latticeai/core/file_generation.py +3 -0
  84. package/latticeai/core/invitations.py +4 -1
  85. package/latticeai/core/io_utils.py +3 -1
  86. package/latticeai/core/legacy_compatibility.py +1 -2
  87. package/latticeai/core/local_embeddings.py +12 -1
  88. package/latticeai/core/marketplace.py +1 -2
  89. package/latticeai/core/mcp_registry.py +0 -1
  90. package/latticeai/core/model_compat.py +1 -1
  91. package/latticeai/core/model_resolution.py +1 -1
  92. package/latticeai/core/network_boundary.py +168 -0
  93. package/latticeai/core/oidc.py +3 -0
  94. package/latticeai/core/permission_mode.py +6 -6
  95. package/latticeai/core/plugins.py +3 -2
  96. package/latticeai/core/policy.py +0 -1
  97. package/latticeai/core/quiet.py +84 -0
  98. package/latticeai/core/realtime.py +3 -2
  99. package/latticeai/core/run_store.py +4 -2
  100. package/latticeai/core/security.py +4 -0
  101. package/latticeai/core/users.py +5 -3
  102. package/latticeai/core/workspace_graph_trace.py +3 -0
  103. package/latticeai/core/workspace_os.py +65 -273
  104. package/latticeai/core/workspace_os_constants.py +126 -0
  105. package/latticeai/core/workspace_os_state.py +180 -0
  106. package/latticeai/core/workspace_os_utils.py +3 -1
  107. package/latticeai/core/workspace_permissions.py +1 -0
  108. package/latticeai/core/workspace_snapshots.py +3 -1
  109. package/latticeai/core/workspace_timeline.py +3 -1
  110. package/latticeai/integrations/telegram_bot.py +25 -16
  111. package/latticeai/models/router.py +6 -3
  112. package/latticeai/runtime/access_runtime.py +3 -1
  113. package/latticeai/runtime/audit_runtime.py +3 -2
  114. package/latticeai/runtime/chat_wiring.py +4 -1
  115. package/latticeai/runtime/history_runtime.py +1 -1
  116. package/latticeai/runtime/history_writer.py +138 -0
  117. package/latticeai/runtime/lifespan_runtime.py +3 -1
  118. package/latticeai/runtime/network_boundary_wiring.py +124 -0
  119. package/latticeai/runtime/persistence_runtime.py +3 -1
  120. package/latticeai/runtime/router_registration.py +11 -1
  121. package/latticeai/services/architecture_readiness.py +1 -2
  122. package/latticeai/services/change_proposals.py +2 -1
  123. package/latticeai/services/cloud_egress_audit.py +85 -0
  124. package/latticeai/services/cloud_extraction.py +129 -0
  125. package/latticeai/services/cloud_streaming.py +266 -0
  126. package/latticeai/services/cloud_token_guard.py +84 -0
  127. package/latticeai/services/command_center.py +2 -1
  128. package/latticeai/services/folder_watch.py +3 -0
  129. package/latticeai/services/funnel_metrics.py +3 -1
  130. package/latticeai/services/hybrid_chat.py +265 -0
  131. package/latticeai/services/hybrid_context.py +228 -0
  132. package/latticeai/services/hybrid_policy.py +178 -0
  133. package/latticeai/services/memory_service.py +1 -1
  134. package/latticeai/services/model_catalog.py +10 -1
  135. package/latticeai/services/model_engines.py +35 -14
  136. package/latticeai/services/model_loading.py +3 -2
  137. package/latticeai/services/model_runtime.py +68 -17
  138. package/latticeai/services/multimodal_streaming.py +123 -0
  139. package/latticeai/services/network_boundary_service.py +154 -0
  140. package/latticeai/services/openai_compatible_adapter.py +100 -0
  141. package/latticeai/services/p_reinforce.py +4 -0
  142. package/latticeai/services/platform_runtime.py +9 -4
  143. package/latticeai/services/process_audit.py +0 -1
  144. package/latticeai/services/product_readiness.py +1 -1
  145. package/latticeai/services/run_executor.py +3 -2
  146. package/latticeai/services/search_service.py +1 -4
  147. package/latticeai/services/setup_detection.py +2 -1
  148. package/latticeai/services/tool_dispatch.py +7 -2
  149. package/latticeai/services/upload_service.py +2 -1
  150. package/latticeai/setup/auto_setup.py +10 -7
  151. package/latticeai/setup/wizard.py +15 -11
  152. package/latticeai/tools/__init__.py +3 -3
  153. package/latticeai/tools/commands.py +7 -7
  154. package/latticeai/tools/computer.py +3 -2
  155. package/latticeai/tools/documents.py +10 -9
  156. package/latticeai/tools/filesystem.py +7 -4
  157. package/latticeai/tools/knowledge.py +2 -0
  158. package/latticeai/tools/local_files.py +1 -1
  159. package/latticeai/tools/network.py +2 -1
  160. package/package.json +7 -3
  161. package/scripts/bench_agent_smoke.py +0 -1
  162. package/scripts/bench_models.py +0 -1
  163. package/scripts/brain_quality_eval.py +7 -2
  164. package/scripts/bump_version.py +2 -1
  165. package/scripts/check_current_release_docs.mjs +1 -1
  166. package/scripts/migrate_brain_storage.py +5 -1
  167. package/scripts/profile_kg.py +2 -7
  168. package/scripts/verify_hf_model_registry.py +2 -2
  169. package/src-tauri/Cargo.lock +1 -1
  170. package/src-tauri/Cargo.toml +1 -1
  171. package/src-tauri/tauri.conf.json +1 -1
  172. package/static/app/asset-manifest.json +37 -37
  173. package/static/app/assets/{Act-BtCREeN1.js โ†’ Act-DrKIGZeJ.js} +1 -1
  174. package/static/app/assets/{AdminConsole-TPeeN18T.js โ†’ AdminConsole-CEV1VefA.js} +1 -1
  175. package/static/app/assets/{Brain-BKs6JAp0.js โ†’ Brain-BZSXnwWU.js} +1 -1
  176. package/static/app/assets/{BrainHome-BPGOvSd6.js โ†’ BrainHome-CEBd86k6.js} +1 -1
  177. package/static/app/assets/{BrainSignals-CtzQZ15J.js โ†’ BrainSignals-O4s6R7av.js} +1 -1
  178. package/static/app/assets/{Capture-1_NaHWqB.js โ†’ Capture-AGbOxsg-.js} +1 -1
  179. package/static/app/assets/{CommandPalette-pqvQOXe4.js โ†’ CommandPalette-CeqBjCn2.js} +1 -1
  180. package/static/app/assets/Library-CXnbNiQW.js +1 -0
  181. package/static/app/assets/{LivingBrain-DlQ20Q75.js โ†’ LivingBrain-D9Iei2ZJ.js} +1 -1
  182. package/static/app/assets/{ProductFlow-BZvGDRi_.js โ†’ ProductFlow-JlXiDfMM.js} +1 -1
  183. package/static/app/assets/{ReviewCard-BWgI0D2s.js โ†’ ReviewCard-QQly2bTV.js} +1 -1
  184. package/static/app/assets/System-Bp9ZY4ER.js +1 -0
  185. package/static/app/assets/{activity-Dlfk8YC7.js โ†’ activity-CxRPOQ2F.js} +1 -1
  186. package/static/app/assets/{bot-CDvUB76P.js โ†’ bot-1bcsWB2s.js} +1 -1
  187. package/static/app/assets/{brain-xczrohrt.js โ†’ brain-CxaeKCRM.js} +1 -1
  188. package/static/app/assets/{button-SOdH3Oyf.js โ†’ button-ZYFqGan7.js} +1 -1
  189. package/static/app/assets/{circle-pause-CG1ythH4.js โ†’ circle-pause-B5NOIqvk.js} +1 -1
  190. package/static/app/assets/{circle-play-HXwvjS6W.js โ†’ circle-play-BiJVFXf7.js} +1 -1
  191. package/static/app/assets/{cpu-B0d-rGyk.js โ†’ cpu-Vvq0OKTr.js} +1 -1
  192. package/static/app/assets/{download-BGIkTQL6.js โ†’ download-SEcXzkx1.js} +1 -1
  193. package/static/app/assets/{folder-open-Dst_Z0_K.js โ†’ folder-open-Dw1ff_Qa.js} +1 -1
  194. package/static/app/assets/{hard-drive-D53MsWkV.js โ†’ hard-drive-B00fR7_r.js} +1 -1
  195. package/static/app/assets/index-CEkL4_M-.css +2 -0
  196. package/static/app/assets/{index-C_IrlQMV.js โ†’ index-Dm9VXl1o.js} +3 -3
  197. package/static/app/assets/{input-C5m0riF6.js โ†’ input-DtdWYQEa.js} +1 -1
  198. package/static/app/assets/{network-C5a-E5iS.js โ†’ network-CpjBu0kI.js} +1 -1
  199. package/static/app/assets/{primitives-vNXYf58F.js โ†’ primitives-CwsudBwc.js} +1 -1
  200. package/static/app/assets/search-CwEJWBEA.js +1 -0
  201. package/static/app/assets/{shield-alert-Cc-WVXqN.js โ†’ shield-alert-CpjBc-gQ.js} +1 -1
  202. package/static/app/assets/{textarea-BkZ0EqVO.js โ†’ textarea-DUPyjHQs.js} +1 -1
  203. package/static/app/assets/{useFocusTrap-CTtKbAOU.js โ†’ useFocusTrap-BWcMtCWH.js} +1 -1
  204. package/static/app/assets/{useQuery-Dx1fi4Wu.js โ†’ useQuery-Dg5fPqTS.js} +1 -1
  205. package/static/app/assets/{users-BFpQXtEF.js โ†’ users-BgcdTQGM.js} +1 -1
  206. package/static/app/assets/{utils-BA_lmW3J.js โ†’ utils-a3YXFtEO.js} +2 -2
  207. package/static/app/assets/workspace-BMUEiXUm.js +1 -0
  208. package/static/app/index.html +4 -4
  209. package/static/sw.js +1 -1
  210. package/static/app/assets/Library-DhvoPvC7.js +0 -1
  211. package/static/app/assets/System-CSMdYLMy.js +0 -1
  212. package/static/app/assets/index-FxDusbr0.css +0 -2
  213. package/static/app/assets/search-DhbSgW6m.js +0 -1
  214. package/static/app/assets/workspace-DBPB0jkX.js +0 -1
@@ -1 +0,0 @@
1
- import{g as e}from"./utils-BA_lmW3J.js";var t=e(`search`,[[`path`,{d:`m21 21-4.34-4.34`,key:`14j7rj`}],[`circle`,{cx:`11`,cy:`11`,r:`8`,key:`4ej97u`}]]);export{t};
@@ -1 +0,0 @@
1
- import{S as e,b as t,h as n}from"./utils-BA_lmW3J.js";import{_ as r,c as i,m as a,r as o,u as s,v as c,x as l}from"./useQuery-Dx1fi4Wu.js";import{S as u}from"./index-C_IrlQMV.js";var d=class extends l{#e;#t=void 0;#n;#r;constructor(e,t){super(),this.#e=e,this.setOptions(t),this.bindMethods(),this.#i()}bindMethods(){this.mutate=this.mutate.bind(this),this.reset=this.reset.bind(this)}setOptions(e){let t=this.options;this.options=this.#e.defaultMutationOptions(e),r(this.options,t)||this.#e.getMutationCache().notify({type:`observerOptionsUpdated`,mutation:this.#n,observer:this}),t?.mutationKey&&this.options.mutationKey&&s(t.mutationKey)!==s(this.options.mutationKey)?this.reset():this.#n?.state.status===`pending`&&this.#n.setOptions(this.options)}onUnsubscribe(){this.hasListeners()||this.#n?.removeObserver(this)}onMutationUpdate(e){this.#i(),this.#a(e)}getCurrentResult(){return this.#t}reset(){this.#n?.removeObserver(this),this.#n=void 0,this.#i(),this.#a()}mutate(e,t){return this.#r=t,this.#n?.removeObserver(this),this.#n=this.#e.getMutationCache().build(this.#e,this.options),this.#n.addObserver(this),this.#n.execute(e)}#i(){let e=this.#n?.state??u();this.#t={...e,isPending:e.status===`pending`,isSuccess:e.status===`success`,isError:e.status===`error`,isIdle:e.status===`idle`,mutate:this.mutate,reset:this.reset}}#a(e){i.batch(()=>{if(this.#r&&this.hasListeners()){let t=this.#t.variables,n=this.#t.context,r={client:this.#e,meta:this.options.meta,mutationKey:this.options.mutationKey};if(e?.type===`success`){try{this.#r.onSuccess?.(e.data,t,n,r)}catch(e){Promise.reject(e)}try{this.#r.onSettled?.(e.data,null,t,n,r)}catch(e){Promise.reject(e)}}else if(e?.type===`error`){try{this.#r.onError?.(e.error,t,n,r)}catch(e){Promise.reject(e)}try{this.#r.onSettled?.(void 0,e.error,t,n,r)}catch(e){Promise.reject(e)}}}this.listeners.forEach(e=>{e(this.#t)})})}},f=e(t(),1);function p(e,t){let n=o(t),[r]=f.useState(()=>new d(n,e));f.useEffect(()=>{r.setOptions(e)},[r,e]);let s=f.useSyncExternalStore(f.useCallback(e=>r.subscribe(i.batchCalls(e)),[r]),()=>r.getCurrentResult(),()=>r.getCurrentResult()),l=f.useCallback((e,t)=>{r.mutate(e,t).catch(a)},[r]);if(s.error&&c(r.options.throwOnError,[s.error]))throw s.error;return{...s,mutate:l,mutateAsync:s.mutate}}n({ko:{"library.kicker":`AI ๋ชจ๋ธ`,"library.title":`Lattice๊ฐ€ ์‚ฌ์šฉํ•  AI๋ฅผ ์„ ํƒํ•˜์„ธ์š”.`,"library.body":`์ด ์ปดํ“จํ„ฐ์— ๋งž๋Š” ์ถ”์ฒœ ๋ชจ๋ธ๋ถ€ํ„ฐ ์‹œ์ž‘ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. ๋ชจ๋ธ์„ ๋ฐ”๊ฟ”๋„ ์ €์žฅ๋œ ๊ธฐ์–ต์€ ๊ทธ๋Œ€๋กœ ์œ ์ง€๋ฉ๋‹ˆ๋‹ค.`,"library.tab.models":`๋ชจ๋ธ`,"library.tab.skills":`์Šคํ‚ฌ`,"library.tab.mcp":`์—ฐ๊ฒฐ`,"library.tab.marketplace":`๋งˆ์ผ“`,"library.models.setup.title":`๋ชจ๋ธ ๊ณ ๋ฅด๊ธฐ`,"library.models.setup.desc":`๋จผ์ € ๊ฐ€๋ฒผ์šด ์ถ”์ฒœ ๋ชจ๋ธ์„ ์•ˆ๋‚ดํ•ด ๋“œ๋ ค์š”. ์ธํ„ฐ๋„ท์ด๋‚˜ ๋‹ค์šด๋กœ๋“œ๊ฐ€ ํ•„์š”ํ•œ์ง€ ์•Œ๋ ค์ฃผ๊ณ , ๋ชจ๋“  ๋‹ค์šด๋กœ๋“œ๋Š” ๋™์˜๋ฅผ ๋ฐ›์€ ๋’ค์—๋งŒ ์ง„ํ–‰ํ•ฉ๋‹ˆ๋‹ค.`,"library.models.embedding.basic":`์˜๋ฏธ๋กœ ์ฐพ๋Š” ๊ฒ€์ƒ‰`,"library.models.validation":`๋ชจ๋ธ ์ ๊ฒ€`,"library.models.runtime.available":`๋ชจ๋ธ์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ์–ด์š”`,"library.models.runtime.none":`์•„์ง ๋ถˆ๋Ÿฌ์˜จ ๋ชจ๋ธ์ด ์—†์–ด์š”`,"library.runtime.computer":`์ปดํ“จํ„ฐ`,"library.runtime.loaded":`๋ถˆ๋Ÿฌ์˜จ ๋ชจ๋ธ`,"library.runtime.noneShort":`์—†์Œ`,"library.runtime.reload":`๋‹ค์‹œ ๋ถˆ๋Ÿฌ์˜ค๊ธฐ`,"library.runtime.unload":`๋‚ด๋ฆฌ๊ธฐ`,"library.steps.aria":`๋ชจ๋ธ ์ค€๋น„ ์ง„ํ–‰ ์ƒํ™ฉ`,"library.step.environment":`ํ™˜๊ฒฝ ํ™•์ธ`,"library.step.recommend":`์ถ”์ฒœ ๋ชจ๋ธ`,"library.step.install":`์„ค์น˜`,"library.step.download":`๋‚ด๋ ค๋ฐ›๊ธฐ`,"library.step.validate":`์ ๊ฒ€`,"library.step.ready":`์‚ฌ์šฉ ์ค€๋น„`,"library.step.done":`์™„๋ฃŒ`,"library.step.pending":`๋Œ€๊ธฐ`,"library.consent":`์ด ์ž‘์—…์— ํ•„์š”ํ•œ ๋กœ์ปฌ ๋ชจ๋ธ ๊ตฌ์„ฑ์š”์†Œ ์„ค์น˜๋‚˜ ๋ชจ๋ธ ํŒŒ์ผ ๋‹ค์šด๋กœ๋“œ๋ฅผ ํ—ˆ์šฉํ•ฉ๋‹ˆ๋‹ค. ๋‹ค์šด๋กœ๋“œ์—๋งŒ ์ธํ„ฐ๋„ท์„ ์“ฐ๊ณ , ๋ชจ๋ธ ์‹คํ–‰์€ ์ด ์ปดํ“จํ„ฐ์—์„œ๋งŒ ์ด๋ค„์ง‘๋‹ˆ๋‹ค.`,"library.preparing":`๋ชจ๋ธ ์ค€๋น„ ์ค‘`,"library.panel.recommended.basic":`์ถ”์ฒœ ๋ชจ๋ธ`,"library.panel.recommended.other":`์ถ”์ฒœ ๋ฐ ๊ณ ๊ธ‰ ๋ชจ๋ธ`,"library.btn.preparing":`์ค€๋น„ ์ค‘`,"library.btn.installLoad":`์„ค์น˜ํ•˜๊ณ  ์‚ฌ์šฉ`,"library.btn.validateLoad":`์ ๊ฒ€ํ•˜๊ณ  ์‚ฌ์šฉ`,"system.kicker":`์„ค์ •`,"system.title":`Lattice๋ฅผ ๋‚ด ๋ฐฉ์‹์— ๋งž๊ฒŒ ์„ค์ •ํ•˜์„ธ์š”.`,"system.body":`๊ณ„์ •, ์ž‘์—…๊ณต๊ฐ„, ํ™”๋ฉด, ๊ฐœ์ธ์ •๋ณด์™€ ๋ฐฑ์—…์„ ๊ด€๋ฆฌํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.`,"system.tab.account":`๊ณ„์ •`,"system.tab.workspaces":`์ž‘์—…๊ณต๊ฐ„`,"system.tab.snapshots":`์Šค๋ƒ…์ƒท`,"system.tab.activity":`๊ธฐ๋ก`,"system.tab.network":`๊ธฐ๊ธฐ`,"system.tab.settings":`ํ™˜๊ฒฝ์„ค์ •`,"system.tab.admin":`๊ด€๋ฆฌ์ž`,"system.permission.title":`์—์ด์ „ํŠธ ์ž์œจ์„ฑ`,"system.permission.hint":`์—์ด์ „ํŠธ๊ฐ€ ์Šน์ธ ์—†์ด ์–ด๋””๊นŒ์ง€ ์‹คํ–‰ํ• ์ง€ ์ •ํ•ฉ๋‹ˆ๋‹ค. ์œ„ํ—˜ํ•œ ์ž‘์—…์€ ์–ด๋–ค ์„ค์ •์—์„œ๋„ ์ฐจ๋‹จ๋ฉ๋‹ˆ๋‹ค.`,"system.permission.current":`ํ˜„์žฌ ์„ค์ •`,"system.permission.apply":`์ด ์„ค์ •์œผ๋กœ ๋ณ€๊ฒฝ`,"system.permission.ack":`์œ„ํ—˜์„ ์ดํ•ดํ–ˆ๊ณ  ์ด ์„ค์ •์„ ์‚ฌ์šฉํ•˜๊ฒ ์Šต๋‹ˆ๋‹ค.`,"system.permission.guards":`์–ด๋–ค ์„ค์ •์—์„œ๋„ ์ฐจ๋‹จ๋˜๋Š” ๊ฒƒ`,"system.permission.guards.detail":`ํŒŒ๊ดด์  ์ž‘์—…, ๋ฃจํŠธยทํ™ˆ ๊ฒฝ๋กœ ์‚ญ์ œ, rm -rf / ๋ฅ˜ ๋ช…๋ น, ๊ฒ€ํ† ํ•  ์ˆ˜ ์—†๋Š” ๋ฐ”์ด๋„ˆ๋ฆฌ ๋ฎ์–ด์“ฐ๊ธฐ.`,"system.permission.risk.low":`๋‚ฎ์Œ`,"system.permission.risk.medium":`๋ณดํ†ต`,"system.permission.risk.high":`๋†’์Œ`,"system.panel.appearance":`ํ™”๋ฉด ๋ชจ์–‘`,"system.panel.appearance.hint":`์ด ๋ธŒ๋ผ์šฐ์ €์—์„œ๋งŒ ์ ์šฉ๋ฉ๋‹ˆ๋‹ค.`,"system.panel.detailLevel":`๋ณด์—ฌ์ค„ ๋‚ด์šฉ์˜ ์–‘`,"system.panel.detailLevel.hint":`ํ™”๋ฉด์— ์–ผ๋งˆ๋‚˜ ์ž์„ธํžˆ ๋ณด์—ฌ์ค„์ง€ ์ •ํ•ฉ๋‹ˆ๋‹ค. ํ™”๋ฉด ์ƒ‰๊ณผ๋Š” ๊ด€๊ณ„์—†์Šต๋‹ˆ๋‹ค.`,"system.theme.dark":`์–ด๋‘ก๊ฒŒ`,"system.theme.light":`๋ฐ๊ฒŒ`,"system.panel.brainStatus":`๋ธŒ๋ ˆ์ธ ์ƒํƒœ`,"system.panel.readiness":`์ปดํ“จํ„ฐ ์ค€๋น„ ์ƒํƒœ`,"system.stat.cpu":`CPU`,"system.stat.memory":`๋ฉ”๋ชจ๋ฆฌ`,"system.stat.gpu":`๊ทธ๋ž˜ํ”ฝ ๋ฉ”๋ชจ๋ฆฌ`,"system.stat.localStatus":`์ƒํƒœ`,"system.stat.ready":`์ค€๋น„๋จ`,"system.storage.title":`๊ธฐ์–ต์ด ์ €์žฅ๋˜๋Š” ๊ณณ`,"system.storage.local.title":`์ด ์ปดํ“จํ„ฐ์— ์ €์žฅ๋จ`,"system.storage.local.badge":`๋น„๊ณต๊ฐœ`,"system.storage.local.detail":`๋ธŒ๋ ˆ์ธ์ด ๊ธฐ์–ตํ•˜๋Š” ๋ชจ๋“  ๊ฒƒ์€ ์ด ๊ธฐ๊ธฐ์— ์ €์žฅ๋ฉ๋‹ˆ๋‹ค. ์ง์ ‘ ๊ณต์œ ํ•˜์ง€ ์•Š๋Š” ํ•œ ์•„๋ฌด๊ฒƒ๋„ ์ปดํ“จํ„ฐ๋ฅผ ๋ฒ—์–ด๋‚˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค.`,"system.storage.search.title":`์Šค๋งˆํŠธ ๊ฒ€์ƒ‰`,"system.storage.search.on":`์ผœ์ง`,"system.storage.search.pending":`์ค€๋น„ ์ค‘`,"system.storage.search.detailOn":`๋‹จ์–ด๊ฐ€ ์ •ํ™•ํžˆ ์ผ์น˜ํ•˜์ง€ ์•Š์•„๋„ ์˜๋ฏธ๋กœ ๊ธฐ์–ต์„ ์ฐพ์•„ ์ค๋‹ˆ๋‹ค.`,"system.storage.search.detailPending":`์ฒซ ๊ธฐ์–ต์ด ์ •๋ฆฌ๋˜๋ฉด ์Šค๋งˆํŠธ ๊ฒ€์ƒ‰์ด ์ž๋™์œผ๋กœ ์ผœ์ง‘๋‹ˆ๋‹ค.`,"system.health.title":`๋ธŒ๋ ˆ์ธ์ด ์ •์ƒ ์ž‘๋™ ์ค‘์ด์—์š”`,"system.health.ok":`์ •์ƒ`,"system.health.detail":`์ง€๊ธˆ ์ด ์ปดํ“จํ„ฐ์—์„œ ์•ˆ์ „ํ•˜๊ฒŒ ์‹คํ–‰๋˜๊ณ  ์žˆ์–ด์š”.`,"capture.tab.files":`ํŒŒ์ผ`,"capture.tab.local":`ํด๋”`,"capture.tab.browser":`์›น`,"capture.tab.pipeline":`ํ๋ฆ„`,"capture.kicker":`์ž๋ฃŒ`,"capture.title":`์–ด๋–ค ์ž๋ฃŒ๋ฅผ ๊ธฐ์–ตํ• ๊นŒ์š”?`,"capture.body":`ํŒŒ์ผ, ํด๋”, ์›นํŽ˜์ด์ง€๋ฅผ ์ถ”๊ฐ€ํ•˜๋ฉด Lattice๊ฐ€ ์ถœ์ฒ˜์™€ ํ•จ๊ป˜ ๊ธฐ์–ตํ•˜๊ณ  ๋Œ€ํ™”์—์„œ ์ฐพ์•„๋“œ๋ฆฝ๋‹ˆ๋‹ค.`,"capture.retry":`๋‹ค์‹œ ์‹œ๋„`,"capture.files.title":`๋ฌธ์„œ ์ถ”๊ฐ€`,"capture.files.description":`ํŒŒ์ผ์„ ์„ ํƒํ•˜๋ฉด Lattice๊ฐ€ ๊ฒ€์ƒ‰๊ณผ ๊ธฐ์–ต์— ๋“ค์–ด๊ฐˆ ์ˆ˜ ์žˆ๊ฒŒ ์ค€๋น„ํ•ฉ๋‹ˆ๋‹ค.`,"capture.files.drop":`ํŒŒ์ผ์„ ๋†“๊ฑฐ๋‚˜ ๋ฌธ์„œ๋ฅผ ์„ ํƒ`,"capture.files.dropDetail":`๋„ฃ์€ ํŒŒ์ผ์€ ๋‚ด์šฉ์„ ์ฝ์–ด ๊ธฐ์–ต์— ์ €์žฅ๋˜๊ณ , ์–ด๋””์„œ ์˜จ ์ž๋ฃŒ์ธ์ง€๋„ ํ•จ๊ป˜ ๋‚จ์Šต๋‹ˆ๋‹ค. ์ดํ›„ ๋Œ€ํ™”์—์„œ ๋ฐ”๋กœ ์ฐพ์•„ ์“ธ ์ˆ˜ ์žˆ์–ด์š”.`,"capture.files.uploaded":`์—…๋กœ๋“œ๋œ ๋ฌธ์„œ`,"capture.files.completed":`๊ธฐ์–ต์— ์ €์žฅ๋œ ์ž๋ฃŒ๊ฐ€ ์—ฌ๊ธฐ์— ํ‘œ์‹œ๋ฉ๋‹ˆ๋‹ค. ๊ด€๋ จ ์ฃผ์ œ๋กœ ์ด์–ด์ง€๋Š” ๋ฐ๋Š” ์ž ์‹œ ๋” ๊ฑธ๋ฆด ์ˆ˜ ์žˆ์–ด์š”.`,"capture.files.success":`๊ธฐ์–ต์— ์ €์žฅ๋จ`,"capture.files.queued":`์ €์žฅ ์ค€๋น„ ์ค‘`,"capture.files.uploading":`ํŒŒ์‹ฑ ํ›„ Memory๋กœ ์ „์†ก ์ค‘`,"capture.files.failed":`Brain์— ๋“ค์–ด๊ฐ€๊ธฐ ์ „์— ์ˆ˜์ง‘์— ์‹คํŒจํ–ˆ์Šต๋‹ˆ๋‹ค.`,"capture.files.captured":`์ถœ์ฒ˜ ์ •๋ณด์™€ ํ•จ๊ป˜ ์ €์žฅ๋จ`,"capture.files.capturedWithNode":`์ถœ์ฒ˜ ์ •๋ณด์™€ ํ•จ๊ป˜ ์ €์žฅ๋จ ยท {node}`,"capture.local.title":`ํด๋” ์—ฐ๊ฒฐ`,"capture.local.description":`ํด๋”๋ฅผ ์„ ํƒํ•˜๋ฉด Lattice๊ฐ€ ๋ฐ”๋กœ ์Šค์บ”ํ•ด Brain์— ์—ฐ๊ฒฐํ•ฉ๋‹ˆ๋‹ค.`,"capture.local.placeholder":`์ด Mac์˜ ํด๋” ๊ฒฝ๋กœ`,"capture.local.choose":`ํด๋” ์„ ํƒ`,"capture.local.choosing":`์„ ํƒ ์ค‘`,"capture.local.connect":`์Šค์บ”ํ•˜๊ณ  ์—ฐ๊ฒฐ`,"capture.local.success":`ํด๋” ์Šค์บ” ์š”์ฒญ๋จ`,"capture.local.pickUnavailable":`ํด๋” ์„ ํƒ ์ฐฝ์„ ์—ด ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ๋ฐ์Šคํฌํ†ฑ ์•ฑ ๊ถŒํ•œ์„ ํ™•์ธํ•˜๊ฑฐ๋‚˜ ๊ฒฝ๋กœ๋ฅผ ์ง์ ‘ ์ž…๋ ฅํ•ด ์ฃผ์„ธ์š”.`,"capture.local.emptyFolder":`์„ ํƒํ•œ ํด๋”์—์„œ ์—…๋กœ๋“œํ•  ํŒŒ์ผ์„ ์ฐพ์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค.`,"capture.folderHealth.title":`ํด๋”๋ณ„ ๊ธฐ์–ต ์ƒํƒœ`,"capture.folderHealth.coverage":`{percent}% ๊ธฐ์–ต๋จ ({indexed}/{total})`,"capture.folderHealth.unknown":`์•„์ง ์‚ดํŽด๋ณด์ง€ ์•Š์•˜์–ด์š”`,"capture.folderHealth.watching":`๋ณ€๊ฒฝ๋˜๋ฉด ์ž๋™์œผ๋กœ ๋”ฐ๋ผ๊ฐ‘๋‹ˆ๋‹ค`,"capture.folderHealth.failed":`๋“ค์–ด์˜ค์ง€ ๋ชปํ•œ ํŒŒ์ผ {count}๊ฐœ`,"capture.folderHealth.vectorGlobal":`์ „์ฒด ์ƒ‰์ธ ๊ธฐ์ค€์œผ๋กœ {count}๊ฑด์ด ์•„์ง ๊ฒ€์ƒ‰ ์ค€๋น„ ์ค‘์ž…๋‹ˆ๋‹ค (ํด๋”๋ณ„ ์•„๋‹˜)`,"capture.local.browserFolder":`์„ ํƒํ•œ ํด๋”`,"capture.local.browserImporting":`ํด๋” ํŒŒ์ผ ์—…๋กœ๋“œ ์ค‘`,"capture.local.browserImportSuccess":`{folder} ํŒŒ์ผ์„ Brain์— ๋„ฃ์—ˆ์Šต๋‹ˆ๋‹ค.`,"capture.local.browserImportFailed":`ํด๋” ํŒŒ์ผ์„ Brain์— ๋„ฃ์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค.`,"capture.local.sources":`์—ฐ๊ฒฐ๋œ ์ถœ์ฒ˜`,"capture.local.access":`ํด๋” ์ ‘๊ทผ`,"capture.local.stop":`{source} ๊ฐ์‹œ ์ค‘์ง€`,"capture.local.source":`์ถœ์ฒ˜`,"capture.browser.title":`์›นํŽ˜์ด์ง€ ์ €์žฅ`,"capture.browser.description":`์œ ์šฉํ•œ ๋‚ด์šฉ์„ ๊ธฐ์–ตํ•  ์ˆ˜ ์žˆ๊ฒŒ ํŽ˜์ด์ง€๋ฅผ ์ˆ˜์ง‘ํ•ฉ๋‹ˆ๋‹ค.`,"capture.browser.placeholder":`https://example.com/article`,"capture.browser.paste":`๋ถ™์—ฌ๋„ฃ๊ธฐ`,"capture.browser.capture":`์Šค์บ”ํ•˜๊ณ  ์ €์žฅ`,"capture.browser.success":`์›นํŽ˜์ด์ง€ ์ €์žฅ ์š”์ฒญ๋จ`,"capture.pipeline.status":`์ฒ˜๋ฆฌ ์ƒํƒœ`,"capture.pipeline.growth":`Brain ์„ฑ์žฅ`,"capture.pipeline.refresh":`๊ธฐ์–ต ์ƒˆ๋กœ๊ณ ์นจ`,"capture.pipeline.description":`์ˆ˜์ง‘ํ•œ ์ž๋ฃŒ๋ฅผ Lattice๊ฐ€ ๋‹ค์‹œ ํ™•์ธํ•ด์•ผ ํ•  ๋•Œ ๊ฒ€์ƒ‰์„ ์ƒˆ๋กœ๊ณ ์นจํ•ฉ๋‹ˆ๋‹ค.`,"capture.pipeline.rebuild":`๊ฒ€์ƒ‰ ์ธ๋ฑ์Šค ๋‹ค์‹œ ๋งŒ๋“ค๊ธฐ`,"review.inbox.title":`๊ฒ€ํ† ํ•จ`,"review.inbox.description":`๊ฒฐ์ • ๋Œ€๊ธฐ ์ค‘์ธ ์ž๋™ํ™” ์ œ์•ˆ์ž…๋‹ˆ๋‹ค. ์ง€๊ธˆ ์‹คํ–‰์€ ์Šน์ธ ์—†์ด ๋ฏธ๋ฆฌ๋ณด๊ธฐ๋งŒ ์ˆ˜ํ–‰ํ•ฉ๋‹ˆ๋‹ค.`,"review.status.connected":`์—ฐ๊ฒฐ๋จ`,"review.status.unavailable":`์‚ฌ์šฉ ๋ถˆ๊ฐ€`,"review.inbox.loadError":`๊ฒ€ํ† ํ•จ์„ ๋ถˆ๋Ÿฌ์˜ฌ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค.`,"review.inbox.unavailable":`์ง€๊ธˆ์€ ๊ฒ€ํ†  ๋Œ€๊ธฐ์—ด์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค.`,"review.inbox.empty":`๊ฒ€ํ† ํ•  ํ•ญ๋ชฉ ์—†์Œ`,"review.inbox.emptySnoozed":`์ผ์‹œ ์ค‘์ง€๋œ ํ•ญ๋ชฉ์€ ํ•ด์ œ๋˜๊ฑฐ๋‚˜ ๋‹ค์‹œ ๋Œ€๊ธฐ ์ƒํƒœ๊ฐ€ ๋  ๋•Œ๊นŒ์ง€ ์—ฌ๊ธฐ์— ํ‘œ์‹œ๋ฉ๋‹ˆ๋‹ค.`,"review.inbox.emptyPending":`์ž๋™ํ™”๊ฐ€ ๊ฒ€ํ†  ๋Œ€๊ธฐ์—ด์„ ์‚ฌ์šฉํ•˜๋ฉด ์ƒˆ ์ œ์•ˆ์ด ์—ฌ๊ธฐ์— ํ‘œ์‹œ๋ฉ๋‹ˆ๋‹ค.`,"review.snoozed.detail":`ํ•ด๋‹น ์‹œ์ ๊นŒ์ง€ ๋Œ€๊ธฐ์—ด์—์„œ ๋น ์ ธ ์žˆ์Šต๋‹ˆ๋‹ค. ์ผ์‹œ ์ค‘์ง€ ํ•ด์ œ ์‹œ ์ฆ‰์‹œ ๋Œ์•„์˜ต๋‹ˆ๋‹ค.`,"review.unsnooze":`์ผ์‹œ ์ค‘์ง€ ํ•ด์ œ`,"review.runNow.detail":`์ง€๊ธˆ ์‹คํ–‰์€ ์Šน์ธ ์—†์ด ์ž‘์—…์„ ๋ฏธ๋ฆฌ๋ด…๋‹ˆ๋‹ค. ๊ฒฐ๊ณผ๊ฐ€ ๋งž์œผ๋ฉด ์Šน์ธํ•˜๊ฑฐ๋‚˜ ๊ธฐ๊ฐํ•˜์„ธ์š”.`,"review.chat.detail":`Brain ๋Œ€ํ™”์—์„œ ์ €์žฅํ•œ ์ž‘์—… ์ดˆ์•ˆ์ž…๋‹ˆ๋‹ค. ์‹ค์ œ ํ›„์† ์ž‘์—…์œผ๋กœ ๋‚จ๊ธธ ํ•ญ๋ชฉ์€ ์Šน์ธํ•˜๊ณ , ํ•„์š” ์—†์œผ๋ฉด ๊ธฐ๊ฐํ•˜์„ธ์š”.`,"review.agent.detail":`Agent๊ฐ€ ์‹คํ–‰ ๊ฒฐ๊ณผ์—์„œ ๋ฝ‘์€ ํ›„์† ์ž‘์—… ํ›„๋ณด์ž…๋‹ˆ๋‹ค. ์‹ค์ œ ์ž‘์—…์œผ๋กœ ๋‚จ๊ธธ ํ•ญ๋ชฉ์€ ์Šน์ธํ•˜๊ณ , ํ•„์š” ์—†์œผ๋ฉด ๊ธฐ๊ฐํ•˜์„ธ์š”.`,"review.actions.aria":`๊ฒ€ํ†  ์ž‘์—…`,"review.runNow":`์ง€๊ธˆ ์‹คํ–‰`,"review.regenerated":`๋‹ค์‹œ ์ƒ์„ฑ๋จ`,"review.executed":`์‹คํ–‰๋จ`,"review.approve":`์Šน์ธ`,"review.snoozeDay":`ํ•˜๋ฃจ ์ผ์‹œ ์ค‘์ง€`,"review.dismiss":`๊ธฐ๊ฐ`,"review.feedback.open":`์Šน์ธ ๋˜๋Š” ๊ธฐ๊ฐ ์ „๊นŒ์ง€ ํ•ญ๋ชฉ์€ ์—ด๋ฆฐ ์ƒํƒœ๋กœ ์œ ์ง€๋ฉ๋‹ˆ๋‹ค.`,"review.action.failed":`{action} ์‹คํŒจ`,"review.filter.status.pending":`๋Œ€๊ธฐ`,"review.filter.status.snoozed":`์ผ์‹œ ์ค‘์ง€`,"review.filter.status.all":`์ „์ฒด`,"review.filter.status.approved":`์Šน์ธ๋จ`,"review.filter.status.dismissed":`๊ธฐ๊ฐ๋จ`,"review.filter.source.all":`์ „์ฒด ์ถœ์ฒ˜`,"review.filter.source.workflow_run":`์›Œํฌํ”Œ๋กœ`,"review.filter.source.trigger":`ํŠธ๋ฆฌ๊ฑฐ`,"review.filter.source.kg_change_digest":`์ง€์‹ ์š”์•ฝ`,"review.filter.source.chat_followup":`Brain ๋Œ€ํ™”`,"review.filter.source.agent_followup":`Agent ํ›„์† ์ž‘์—…`,"review.filter.source.change_proposal":`๋ณ€๊ฒฝ ์ œ์•ˆ`,"review.proposal.detail":`Agent๊ฐ€ ๊ธฐ์กด ํŒŒ์ผ์„ ๋ฐ”๊พธ๋ ค๋Š” ๋ณ€๊ฒฝ ์ œ์•ˆ์ž…๋‹ˆ๋‹ค. ์Šน์ธํ•˜๋ฉด ๊ฒ€ํ† ํ•œ ๋‚ด์šฉ ๊ทธ๋Œ€๋กœ ์ ์šฉ๋˜๊ณ , ๊ฑฐ์ ˆํ•˜๋ฉด ์•„๋ฌด๊ฒƒ๋„ ๋ฐ”๋€Œ์ง€ ์•Š์Šต๋‹ˆ๋‹ค.`,"review.proposal.badge":`๋ณ€๊ฒฝ ์ œ์•ˆ {count}๊ฑด ๋Œ€๊ธฐ`,"review.proposal.rejectReason":`๊ฑฐ์ ˆ ์‚ฌ์œ  (์„ ํƒ)`,"review.source.workflow_run":`์›Œํฌํ”Œ๋กœ ์‹คํ–‰`,"review.source.trigger":`ํŠธ๋ฆฌ๊ฑฐ`,"review.source.kg_change_digest":`์ง€์‹ ์š”์•ฝ`,"review.source.chat_followup":`Brain ๋Œ€ํ™”`,"review.source.agent_followup":`Agent ํ›„์† ์ž‘์—…`,"review.source.change_proposal":`๋ณ€๊ฒฝ ์ œ์•ˆ`,"review.source.automation":`์ž๋™ํ™”`,"review.itemStatus.pending":`๊ฒ€ํ†  ๋Œ€๊ธฐ`,"review.itemStatus.snoozed":`์ผ์‹œ ์ค‘์ง€`,"review.itemStatus.approved":`์Šน์ธ๋จ`,"review.itemStatus.dismissed":`๊ธฐ๊ฐ๋จ`,"review.snoozed.badge":`์ผ์‹œ ์ค‘์ง€๋จ`,"review.snoozed.until":`{value}๊นŒ์ง€ ์ผ์‹œ ์ค‘์ง€`,"review.summary.tool":`์‚ฌ์šฉ ๋„๊ตฌ`,"review.summary.proposedBy":`์ œ์•ˆํ•œ ์ฃผ์ฒด`,"review.risk.read":`์•ˆ์ „ํ•œ ์ฝ๊ธฐ`,"review.risk.write":`ํŒŒ์ผ์„ ์ˆ˜์ •ํ•จ`,"review.risk.write_scoped":`์ž‘์—… ํด๋” ์•ˆ์—์„œ๋งŒ ์ˆ˜์ •`,"review.risk.exec":`๋ช…๋ น์„ ์‹คํ–‰ํ•จ`,"review.risk.destructive":`๋‚ด์šฉ์„ ์ง€์šธ ์ˆ˜ ์žˆ์Œ`,"review.change.read":`์ฝ๊ธฐ๋งŒ ํ•จ`,"review.change.additive":`์ƒˆ ๋‚ด์šฉ ์ถ”๊ฐ€`,"review.change.mutation":`๊ธฐ์กด ๋‚ด์šฉ ์ˆ˜์ •`,"review.change.destructive":`๋‚ด์šฉ ์‚ญ์ œ`,"review.change.exec":`๋™์ž‘ ์‹คํ–‰`,"review.technical.title":`๊ธฐ์ˆ  ์ •๋ณด`,"review.feedback.error":`์š”์ฒญ์„ ์ฒ˜๋ฆฌํ•˜์ง€ ๋ชปํ–ˆ์–ด์š”. ์ž ์‹œ ํ›„ ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”.`,"proposals.diff.header":`์ œ์•ˆ๋œ ๋ณ€๊ฒฝ`,"proposals.diff.more":`{count}์ค„ ๋” ์žˆ์Œ`,"proposals.error":`๋ณ€๊ฒฝ ์ œ์•ˆ์„ ๋ถˆ๋Ÿฌ์˜ค์ง€ ๋ชปํ–ˆ์–ด์š”. ๋กœ์ปฌ Lattice ์„œ๋น„์Šค๊ฐ€ ์‹คํ–‰ ์ค‘์ธ์ง€ ํ™•์ธํ•ด ์ฃผ์„ธ์š”.`,"common.retry":`๋‹ค์‹œ ์‹œ๋„`,"common.error.unknown":`์•Œ ์ˆ˜ ์—†๋Š” ๋ฌธ์ œ๊ฐ€ ์ƒ๊ฒผ์–ด์š”. ์ž ์‹œ ํ›„ ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”.`,"api.error.timeout":`์‘๋‹ต์ด ๋„ˆ๋ฌด ์˜ค๋ž˜ ๊ฑธ๋ ค ์š”์ฒญ์„ ๋ฉˆ์ท„์–ด์š”. ๋กœ์ปฌ Lattice ์„œ๋น„์Šค๊ฐ€ ์‹คํ–‰ ์ค‘์ธ์ง€ ํ™•์ธํ•ด ์ฃผ์„ธ์š”.`,"api.error.unreachable":`๋กœ์ปฌ Lattice ์„œ๋น„์Šค์— ์—ฐ๊ฒฐํ•  ์ˆ˜ ์—†์–ด์š”. ์•ฑ์ด ์‹คํ–‰ ์ค‘์ธ์ง€ ํ™•์ธํ•ด ์ฃผ์„ธ์š”.`,"api.error.request":`์š”์ฒญ์„ ์ฒ˜๋ฆฌํ•˜์ง€ ๋ชปํ–ˆ์–ด์š”. (์˜ค๋ฅ˜ {status})`,"intelligence.loadError":`์ง€๊ธˆ์€ ๋ธŒ๋ ˆ์ธ ์ƒํƒœ๋ฅผ ๋ถˆ๋Ÿฌ์˜ฌ ์ˆ˜ ์—†์–ด์š”. ์ž ์‹œ ํ›„ ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”.`,"act.kicker":`์ž‘์—…`,"act.title":`Lattice์— ๋งก๊ธธ ์ผ์„ ์ ์–ด์ฃผ์„ธ์š”.`,"act.copy":`๋ชฉํ‘œ์™€ ์™„๋ฃŒ ์กฐ๊ฑด์„ ์•Œ๋ ค์ฃผ๋ฉด ์ง„ํ–‰ ๊ณผ์ •์„ ๋ณด์—ฌ๋“œ๋ฆฌ๊ณ , ์ค‘์š”ํ•œ ๋ณ€๊ฒฝ์€ ์‹คํ–‰ ์ „์— ํ™•์ธ๋ฐ›์Šต๋‹ˆ๋‹ค.`,"act.goal.title":`์ƒˆ ์ž‘์—…`,"act.goal.description":`์›ํ•˜๋Š” ๊ฒฐ๊ณผ์™€ ์™„๋ฃŒ ์กฐ๊ฑด์„ ์ž์—ฐ์Šค๋Ÿฝ๊ฒŒ ์ ์–ด์ฃผ์„ธ์š”.`,"act.goal.placeholder":`์˜ˆ: ์ด๋ฒˆ ์ฃผ ํšŒ์˜ ์ž๋ฃŒ๋ฅผ ์ฝ๊ณ  ๊ฒฐ์ • ์‚ฌํ•ญ๊ณผ ๋‹ด๋‹น์ž๋ณ„ ํ•  ์ผ์„ ์ •๋ฆฌํ•ด์ค˜`,"act.goal.start":`์ž‘์—… ์‹œ์ž‘`,"act.goal.needsModel":`AI ๋ชจ๋ธ ์ค€๋น„ํ•˜๊ธฐ`,"act.goal.modelRequired":`์ž‘์—…์„ ์‹œ์ž‘ํ•˜๋ ค๋ฉด ๋จผ์ € AI ๋ชจ๋ธ์„ ์ค€๋น„ํ•ด ์ฃผ์„ธ์š”.`,"act.goal.safety":`์ค‘์š”ํ•œ ๋ณ€๊ฒฝ์€ ์‹คํ–‰ํ•˜๊ธฐ ์ „์— ํ•ญ์ƒ ํ™•์ธ๋ฐ›์Šต๋‹ˆ๋‹ค.`,"act.goal.completed":`Agent run ์™„๋ฃŒ โ€” ๊ฒฐ๊ณผ๊ฐ€ Brain ๊ธฐ์–ต๊ณผ ๊ทธ๋ž˜ํ”„์— ํ•ฉ์„ฑ๋จ`,"act.goal.brainSaved":`Brain์— ํ•ฉ์„ฑ ๋ฉ”๋ชจ๋ฆฌ๊ฐ€ ์ถ”๊ฐ€๋˜์—ˆ์Šต๋‹ˆ๋‹ค.`,"act.tab.goals":`๋ชฉํ‘œ`,"act.tab.runs":`์‹คํ–‰`,"act.tab.review":`๊ฒ€ํ† ํ•จ`,"act.tab.recipes":`๋ ˆ์‹œํ”ผ`,"act.suggest.title":`๋‚˜๋ฅผ ์œ„ํ•œ ์ž๋™ํ™” ์ œ์•ˆ`,"act.suggest.subtitle":`์ž์ฃผ ํ•˜๋Š” ์งˆ๋ฌธ๊ณผ ์—ฐ๊ฒฐ๋œ ํด๋”๋ฅผ ๋ณด๊ณ  Brain์ด ์ž๋™ํ™”๋ฅผ ์ œ์•ˆํ•ฉ๋‹ˆ๋‹ค.`,"act.suggest.empty":`์•„์ง ์ œ์•ˆ์ด ์—†์Šต๋‹ˆ๋‹ค. ์งˆ๋ฌธ์„ ํ•˜๊ณ  ํด๋”๋ฅผ ์—ฐ๊ฒฐํ• ์ˆ˜๋ก ์ œ์•ˆ์ด ์ƒ๊น๋‹ˆ๋‹ค.`,"act.suggest.scanned":`์ตœ๊ทผ ์งˆ๋ฌธ {count}๊ฐœ ๋ถ„์„`,"act.suggest.question":`๋ฐ˜๋ณต ์งˆ๋ฌธ`,"act.suggest.folder":`์—ฐ๊ฒฐ๋œ ํด๋”`,"act.suggest.evidence.count":`{count}๋ฒˆ ๋ฐ˜๋ณตํ•ด์„œ ๋ฌผ์–ด๋ณด์…จ์–ด์š”`,"act.suggest.evidence.folder":`ํŒŒ์ผ {count}๊ฐœ๊ฐ€ Brain์— ๋‹ด๊ธด ํด๋”์˜ˆ์š”`,"act.suggest.cadence.daily":`๋งค์ผ ์ž๋™ ์ดˆ์•ˆ`,"act.suggest.cadence.newKnowledge":`์ƒˆ ์ง€์‹์ด ๋“ค์–ด์˜ฌ ๋•Œ`,"act.suggest.install":`์ž๋™ํ™” ๋งŒ๋“ค๊ธฐ`,"act.suggest.installing":`๋งŒ๋“œ๋Š” ์ค‘...`,"act.suggest.installed":`์ดˆ์•ˆ ์ƒ์„ฑ๋จ โ€” ๊ฒ€ํ†  ํ›„ ์ผœ์„ธ์š”`,"act.suggest.note":`์ œ์•ˆ์„ ์ˆ˜๋ฝํ•˜๋ฉด ๊บผ์ง„ ์ดˆ์•ˆ์œผ๋กœ ๋งŒ๋“ค์–ด์ง€๊ณ , ๊ฒ€ํ†  ํ›„ ์ง์ ‘ ์ผค ๋•Œ๋งŒ ์‹คํ–‰๋ฉ๋‹ˆ๋‹ค.`,"act.automation.title":`๊ธฐ์–ต ๊ธฐ๋ฐ˜ ์ž๋™ํ™”`,"act.automation.local":`๋กœ์ปฌ์—์„œ๋งŒ ์‹คํ–‰`,"act.automation.consent":`์ดˆ์•ˆ ํ™•์ธ ํ›„ ํ™œ์„ฑํ™”`,"act.automation.create":`๊ฒ€ํ†  ๊ฐ€๋Šฅํ•œ ์ž๋™ํ™” ์ดˆ์•ˆ ๋งŒ๋“ค๊ธฐ`,"act.automation.creating":`์ดˆ์•ˆ ๋งŒ๋“œ๋Š” ์ค‘...`,"act.automation.created":`โœ“ ์ž๋™ํ™” ์ดˆ์•ˆ ์ƒ์„ฑ๋จ`,"act.automation.enable":`์ด ๊ธฐ์–ต ์ž๋™ํ™” ํ™œ์„ฑํ™”`,"act.automation.enabling":`์ž๋™ํ™” ์—ฐ๊ฒฐ ์ค‘...`,"act.automation.active":`โœ“ ๊ธฐ์–ต ์ž๋™ํ™” ์ž‘๋™ ์ค‘`,"act.automation.draftReady":`์ดˆ์•ˆ์ด ์ค€๋น„๋์Šต๋‹ˆ๋‹ค. ๋‚ด์šฉ์„ ํ™•์ธํ•œ ๋’ค ํ™œ์„ฑํ™”ํ•˜์„ธ์š”.`,"act.automation.enableHint":`์ดˆ์•ˆ์ด ์•ˆ์ „ํ•˜๊ฒŒ ๊บผ์ง„ ์ƒํƒœ์ž…๋‹ˆ๋‹ค. ์„ ํƒํ•˜๋ฉด Brain ์ด๋ฒคํŠธ์— ์—ฐ๊ฒฐ๋ฉ๋‹ˆ๋‹ค.`,"act.automation.activeHint":`์ƒˆ ๊ธฐ์–ต์ด ๋“ค์–ด์˜ค๋ฉด ๊ฒฐ๊ณผ๋ฅผ ๊ฒ€ํ† ํ•จ์— ์ดˆ์•ˆ์œผ๋กœ ๋งŒ๋“ญ๋‹ˆ๋‹ค.`,"act.installed.title":`์„ค์น˜๋œ ์ž๋™ํ™”`,"act.installed.subtitle":`์„ค์น˜ํ•œ ์ž๋™ํ™”๋ฅผ ๋ฐ”๋กœ ์‹œํ—˜ํ•ด ๋ณด๊ณ , ๋งˆ์ง€๋ง‰ ์‹คํ–‰ ๊ฒฐ๊ณผ๋ฅผ ํ™•์ธํ•˜์„ธ์š”.`,"act.installed.empty":`์•„์ง ์„ค์น˜๋œ ์ž๋™ํ™”๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค. ์œ„์˜ ์ œ์•ˆ์ด๋‚˜ ๋ ˆ์‹œํ”ผ๋กœ ๋งŒ๋“ค์–ด ๋ณด์„ธ์š”.`,"act.installed.runNow":`์ง€๊ธˆ ํ•œ ๋ฒˆ ์‹คํ–‰`,"act.installed.dryRunning":`๋ชจ์˜ ์‹คํ–‰ ์ค‘...`,"act.installed.runLive":`์‹ค์ œ๋กœ ํ•œ ๋ฒˆ ์‹คํ–‰`,"act.installed.liveRunning":`์‹คํ–‰ ์ค‘...`,"act.installed.dryRunHint":`๋จผ์ € ๋ถ€์ž‘์šฉ ์—†๋Š” ๋ชจ์˜ ์‹คํ–‰์œผ๋กœ ๋ฌด์—‡์ด ์‹คํ–‰๋ ์ง€ ๋ณด์—ฌ๋“œ๋ฆฌ๊ณ , ๊ทธ๋‹ค์Œ์— ์‹ค์ œ ์‹คํ–‰์„ ์—ด์–ด๋“œ๋ฆฝ๋‹ˆ๋‹ค.`,"act.installed.lastRun":`๋งˆ์ง€๋ง‰ ์‹คํ–‰`,"act.installed.noRuns":`์•„์ง ์‹คํ–‰ ๊ธฐ๋ก์ด ์—†์Šต๋‹ˆ๋‹ค`,"act.installed.mode.dry":`๋ชจ์˜`,"act.installed.mode.live":`์‹ค์ œ`,"act.installed.failedReview":`์‹คํ–‰์ด ์‹คํŒจํ•ด ๊ฒ€ํ† ํ•จ์— ์ถ”๊ฐ€ํ–ˆ์Šต๋‹ˆ๋‹ค.`,"act.installed.onBadge":`์ผœ์ง`,"act.installed.draftBadge":`์ดˆ์•ˆ(๊บผ์ง)`,"act.tab.safeguards":`๋ณดํ˜ธ ์žฅ์น˜`,"act.tab.permissions":`๊ถŒํ•œ`,"act.tab.hooks":`ํ›…`,"act.tab.tools":`๋„๊ตฌ`,"admin.back":`Brain`,"admin.aria.console":`Lattice ๊ด€๋ฆฌ์ž`,"admin.kicker":`๋ถ„๋ฆฌ๋œ ๊ด€๋ฆฌ์ž ์ž‘์—…๊ณต๊ฐ„`,"admin.title":`Admin Console`,"admin.body":`์‚ฌ์šฉ์ž, ๋กœ๊ทธ, ๋ณด์•ˆ, Brain ์ƒํƒœ๋Š” ์ผ๋ฐ˜ ์‚ฌ์šฉ์ž ํ™”๋ฉด๊ณผ ๋ถ„๋ฆฌ๋ฉ๋‹ˆ๋‹ค.`,"admin.overview":`๊ด€๋ฆฌ ๊ฐœ์š”`,"admin.metric.users":`์‚ฌ์šฉ์ž`,"admin.metric.logs":`์ตœ๊ทผ ๋กœ๊ทธ`,"admin.metric.security":`๋ณด์•ˆ`,"admin.metric.index":`Brain ์ธ๋ฑ์Šค`,"admin.status.ready":`์ค€๋น„๋จ`,"admin.status.unavailable":`์‚ฌ์šฉ ๋ถˆ๊ฐ€`,"admin.status.indexed":`์ธ๋ฑ์‹ฑ๋จ`,"admin.status.unknown":`์•Œ ์ˆ˜ ์—†์Œ`,"admin.panel.users":`์‚ฌ์šฉ์ž ๋””๋ ‰ํ„ฐ๋ฆฌ`,"admin.panel.people":`์‚ฌ๋žŒ`,"admin.panel.roles":`์—ญํ•  ๊ถŒํ•œ`,"admin.panel.access":`์ ‘๊ทผ`,"admin.panel.logs":`ํ™œ๋™ ๋กœ๊ทธ`,"admin.panel.audit":`๊ฐ์‚ฌ`,"admin.panel.securityEvents":`๋ณด์•ˆ ์ด๋ฒคํŠธ`,"admin.panel.protection":`๋ณดํ˜ธ`,"admin.panel.brainOps":`Brain ์šด์˜`,"admin.panel.maintenance":`์œ ์ง€๋ณด์ˆ˜`,"admin.panel.runtimeTrust":`๋Ÿฐํƒ€์ž„ ์‹ ๋ขฐ๋„`,"admin.panel.contracts":`๊ณ„์•ฝ`,"admin.empty.users":`๊ด€๋ฆฌ API๊ฐ€ ๋ณด๊ณ ํ•œ ์‚ฌ์šฉ์ž๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค.`,"admin.empty.roles":`๋ณด๊ณ ๋œ ์—ญํ•  ๋งคํŠธ๋ฆญ์Šค๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค.`,"admin.empty.audit":`์ตœ๊ทผ ๊ฐ์‚ฌ ์ด๋ฒคํŠธ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค.`,"admin.empty.security":`๋ณด๊ณ ๋œ ๋ณด์•ˆ ์ด๋ฒคํŠธ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค.`,"admin.fallback.localUser":`๋กœ์ปฌ ์‚ฌ์šฉ์ž`,"admin.fallback.member":`๋ฉค๋ฒ„`,"admin.fallback.role":`์—ญํ• `,"admin.fallback.noCaps":`๊ถŒํ•œ ์—†์Œ`,"admin.filters.label":`๊ฐ์‚ฌ ๋กœ๊ทธ ํ•„ํ„ฐ`,"admin.filters.search":`๋กœ๊ทธ ๊ฒ€์ƒ‰`,"admin.filters.searchAria":`๊ฐ์‚ฌ ๋กœ๊ทธ ๊ฒ€์ƒ‰`,"admin.filters.severityAria":`์‹ฌ๊ฐ๋„๋ณ„ ํ•„ํ„ฐ`,"admin.filters.all":`๋ชจ๋“  ์‹ฌ๊ฐ๋„`,"admin.filters.informational":`์ •๋ณด`,"admin.filters.notice":`์•Œ๋ฆผ`,"admin.filters.warning":`๊ฒฝ๊ณ `,"admin.filters.high":`๋†’์Œ`,"admin.filters.matched":`{count}๊ฐœ ์ผ์น˜`,"admin.brain.summaryFallback":`๋กœ์ปฌ Brain ์„œ๋น„์Šค๋Š” ์‚ฌ์šฉ์ž ๋Œ€ํ™”์™€ ๋ถ„๋ฆฌ๋˜์–ด ์žˆ์Šต๋‹ˆ๋‹ค.`,"admin.brain.rebuilding":`์žฌ๊ตฌ์„ฑ ์ค‘`,"admin.brain.rebuild":`์ธ๋ฑ์Šค ์žฌ๊ตฌ์„ฑ`,"admin.runtime.agent":`AgentRuntime`,"admin.runtime.tools":`ToolRegistry`,"admin.runtime.readyDetail":`์‹คํ–‰ preview์™€ ์‹ค์ œ ์‹คํ–‰์ด ์ค€๋น„๋˜์—ˆ์Šต๋‹ˆ๋‹ค.`,"admin.runtime.blockedFallback":`์‹คํ–‰ ์ „ preview๊ฐ€ ์ฐจ๋‹จ ์‚ฌ์œ ๋ฅผ ๋ฐ˜ํ™˜ํ•ฉ๋‹ˆ๋‹ค.`,"admin.runtime.aligned":`์ •๋ ฌ๋จ`,"admin.runtime.drift":`์ ๊ฒ€ ํ•„์š”`,"admin.runtime.toolCounts":`๋“ฑ๋ก {registered} ยท ์ •์ฑ… {governed} ยท ์„ค๋ช… {described}`,"admin.runtime.mode":`mode {mode}`,"admin.runtime.execution":`exec {mode}`,"admin.runtime.health":`health {status}`,"admin.policy.fallback":`์ •์ฑ…`,"admin.policy.quiet":`์ •์ฑ… API ๋Œ€๊ธฐ ์ค‘`,"admin.retention.days":`{days}์ผ ๋ณด๊ด€`,"admin.retention.detail":`{events}๊ฐœ ๋ณด๊ด€ ยท {candidates}๊ฐœ ๋‚ด๋ณด๋‚ด๊ธฐ/์ •๋ฆฌ ๊ฒ€ํ†  ๊ฐ€๋Šฅ`,"admin.log.event":`์ด๋ฒคํŠธ`,"admin.log.system":`์‹œ์Šคํ…œ`,"admin.log.recently":`์ตœ๊ทผ`,"admin.source.loading":`๋ถˆ๋Ÿฌ์˜ค๋Š” ์ค‘`,"admin.source.live":`๋ผ์ด๋ธŒ`,"admin.index.ready":`์ธ๋ฑ์Šค ์ƒํƒœ ์ค€๋น„๋จ`,"act.panel.readiness":`์ค€๋น„ ์ƒํƒœ`,"act.panel.agentTeam":`Agent ํŒ€`,"act.agentRole.researcher":`์กฐ์‚ฌ ๋‹ด๋‹น`,"act.agentRole.researcher.detail":`๋ชฉํ‘œ์— ํ•„์š”ํ•œ ์ž๋ฃŒ์™€ ๊ธฐ์–ต, ์—ฐ๊ฒฐ์„ ๋จผ์ € ๋ชจ์๋‹ˆ๋‹ค.`,"act.agentRole.planner":`๊ณ„ํš ๋‹ด๋‹น`,"act.agentRole.planner.detail":`๋ชฉํ‘œ๋ฅผ ์ˆœ์„œ๊ฐ€ ์žˆ๋Š”, ๊ฒ€ํ†  ๊ฐ€๋Šฅํ•œ ๋‹จ๊ณ„๋กœ ๋‚˜๋ˆ•๋‹ˆ๋‹ค.`,"act.agentRole.executor":`์‹คํ–‰ ๋‹ด๋‹น`,"act.agentRole.executor.detail":`๊ณ„ํš๋œ ๊ฐ ๋‹จ๊ณ„๋ฅผ ๋„๊ตฌ์™€ ์›Œํฌํ”Œ๋กœ๋กœ ์‹คํ–‰ํ•ฉ๋‹ˆ๋‹ค.`,"act.agentRole.reviewer":`๊ฒ€ํ†  ๋‹ด๋‹น`,"act.agentRole.reviewer.detail":`์‹คํ–‰ ๊ฒฐ๊ณผ๋ฅผ ๊ฒ€ํ† ํ•ด ์Šน์ธยท๋ฐ˜๋ คยท์žฌ์‹œ๋„๋ฅผ ์ •ํ•ฉ๋‹ˆ๋‹ค.`,"act.agentRole.release":`๋งˆ๋ฌด๋ฆฌ ๋‹ด๋‹น`,"act.agentRole.release.detail":`๊ฒฐ๊ณผ๋ฅผ ์ •๋ฆฌํ•˜๊ณ  ์ตœ์ข… ์š”์•ฝ์„ ๋‚จ๊น๋‹ˆ๋‹ค.`,"act.agent.namePlaceholder":`์ƒˆ ์‚ฌ์šฉ์ž Agent ์ด๋ฆ„`,"act.panel.capabilities":`Agent๊ฐ€ ํ•  ์ˆ˜ ์žˆ๋Š” ์ผ`,"act.recipe.daily-memory-digest":`์˜ค๋Š˜์˜ ๊ธฐ์–ต ์ •๋ฆฌ`,"act.recipe.daily-memory-digest.summary":`์˜ค๋Š˜ ์ƒˆ๋กœ ์Œ“์ธ ๊ธฐ์–ต์„ ์งง์€ ๊ฒ€ํ†  ์ดˆ์•ˆ์œผ๋กœ ๋ชจ์๋‹ˆ๋‹ค.`,"act.recipe.daily-memory-digest.value":`๋Œ€ํ™”๋ฅผ ๋’ค์ง€์ง€ ์•Š์•„๋„ Brain์ด ์˜ค๋Š˜ ๋ฌด์—‡์„ ๊ธฐ์–ตํ–ˆ๋Š”์ง€ ์•Œ ์ˆ˜ ์žˆ์–ด์š”.`,"act.recipe.weekly-project-review":`์ฃผ๊ฐ„ ํ”„๋กœ์ ํŠธ ์ ๊ฒ€`,"act.recipe.weekly-project-review.summary":`ํ”„๋กœ์ ํŠธ ๋งฅ๋ฝ์„ ์ฃผ๊ฐ„ ์ ๊ฒ€ ์ดˆ์•ˆ์œผ๋กœ ์ •๋ฆฌํ•ฉ๋‹ˆ๋‹ค.`,"act.recipe.weekly-project-review.value":`ํ•œ ์ฃผ๋ฅผ ๋‹ค์‹œ ์„ค๋ช…ํ•˜์ง€ ์•Š๊ณ ๋„ ํ”„๋กœ์ ํŠธ๋ฅผ ์ด์–ด๊ฐˆ ์ˆ˜ ์žˆ์–ด์š”.`,"act.recipe.follow-up-radar":`ํ›„์† ์ž‘์—… ์‚ดํ”ผ๊ธฐ`,"act.recipe.follow-up-radar.summary":`์ƒˆ ๊ธฐ์–ต์ด ์ €์žฅ๋  ๋•Œ ์ด์–ด์„œ ํ•  ์ผ์ด ์žˆ๋Š”์ง€ ์ฐพ์Šต๋‹ˆ๋‹ค.`,"act.recipe.follow-up-radar.value":`์•ฝ์†ํ•œ ์ผ์„ ์žŠ์ง€ ์•Š๋„๋ก Brain์ด ๋จผ์ € ์งš์–ด ์ค๋‹ˆ๋‹ค.`,"act.cadence.daily":`๋งค์ผ`,"act.cadence.weekly":`๋งค์ฃผ`,"act.cadence.when new memory is saved":`์ƒˆ ๊ธฐ์–ต์ด ์ €์žฅ๋  ๋•Œ`,"act.creates.memory digest":`๊ธฐ์–ต ์š”์•ฝ`,"act.creates.decision summary":`๊ฒฐ์ • ์š”์•ฝ`,"act.creates.next-action suggestions":`๋‹ค์Œ ํ–‰๋™ ์ œ์•ˆ`,"act.creates.project checkpoint":`ํ”„๋กœ์ ํŠธ ์ ๊ฒ€`,"act.creates.risk list":`์œ„ํ—˜ ๋ชฉ๋ก`,"act.creates.open-question list":`๋ฏธํ•ด๊ฒฐ ์งˆ๋ฌธ ๋ชฉ๋ก`,"act.creates.follow-up suggestions":`ํ›„์† ์ž‘์—… ์ œ์•ˆ`,"act.panel.agentRuns":`Agent ์‹คํ–‰`,"act.panel.workflowRuns":`์›Œํฌํ”Œ๋กœ ์‹คํ–‰`,"act.panel.approvalInbox":`์Šน์ธํ•จ`,"act.workflow.graph":`์›Œํฌํ”Œ๋กœ ๊ทธ๋ž˜ํ”„`,"act.workflow.graphDetail":`์ €์žฅ๋œ ์›Œํฌํ”Œ๋กœ๋ฅผ ๊ฐ„๋‹จํ•œ ์ง€๋„๋กœ ํ™•์ธํ•ฉ๋‹ˆ๋‹ค.`,"act.panel.definitions":`์ •์˜`,"act.workflow.namePlaceholder":`์›Œํฌํ”Œ๋กœ ์ด๋ฆ„`,"act.workflow.importPlaceholder":`์›Œํฌํ”Œ๋กœ ๋‚ด๋ณด๋‚ด๊ธฐ ๋‚ด์šฉ์„ ๋ถ™์—ฌ๋„ฃ์œผ์„ธ์š”`,"act.workflow.created":`์›Œํฌํ”Œ๋กœ๋ฅผ ๋งŒ๋“ค์—ˆ์Šต๋‹ˆ๋‹ค`,"act.workflow.imported":`์›Œํฌํ”Œ๋กœ๋ฅผ ๊ฐ€์ ธ์™”์Šต๋‹ˆ๋‹ค`,"act.panel.triggers":`์ž๋™ํ™” ํŠธ๋ฆฌ๊ฑฐ`,"act.panel.safeguards":`๋ณดํ˜ธ ์žฅ์น˜`,"act.hooks.detailed":`์ƒ์„ธ ํ›… ๋กœ๊ทธ`,"act.hooks.detailedHint":`ํ›… ์‹คํ–‰ ๋กœ๊ทธ์™€ ์ˆ˜๋™ ์ง„๋‹จ ์ œ์–ด๊ฐ€ ํ•„์š”ํ•˜๋ฉด ๊ณ ๊ธ‰ ๋ชจ๋“œ๋กœ ์ „ํ™˜ํ•˜์„ธ์š”.`,"act.panel.hooks":`ํ›…`,"act.panel.hookRuns":`ํ›… ์‹คํ–‰ ๋กœ๊ทธ`,"act.hooks.runManual":`์ˆ˜๋™ ํ›… ์‹คํ–‰`,"act.hooks.runManualHint":`ํ›…์„ ๋ช…์‹œ์ ์œผ๋กœ ์‹คํ–‰ํ•˜๊ณ  ๊ธฐ๋ก๋œ ๊ฒฐ๊ณผ๋ฅผ ๊ฒ€ํ† ํ•ฉ๋‹ˆ๋‹ค.`,"act.panel.permissions":`์ž‘์—… ๊ถŒํ•œ`,"library.model.hfVerified":`Hugging Face ๊ฒ€์ฆ ์™„๋ฃŒ(์„ค์ •๊ณผ ํ† ํฌ๋‚˜์ด์ € ํ™•์ธ)`,"library.model.shortListHint":`๊ฐ€์žฅ ์•ˆ์ „ํ•œ ํ›„๋ณด๋งŒ ํ‘œ์‹œํ•ฉ๋‹ˆ๋‹ค. ์ „์ฒด ๋ ˆ์ง€์ŠคํŠธ๋ฆฌ, ๋Ÿฐํƒ€์ž„ ์„ธ๋ถ€ ์ •๋ณด, ๋ผ์ด์„ ์Šค์™€ ์•ˆ์ „ ์ฐธ๊ณ  ์‚ฌํ•ญ์€ ๊ณ ๊ธ‰ ๋ชจ๋“œ์—์„œ ํ™•์ธํ•˜์„ธ์š”.`,"library.model.noneChecked":`์•„์ง ์ ๊ฒ€ํ•œ ๋ชจ๋ธ์ด ์—†์Šต๋‹ˆ๋‹ค`,"library.model.noneCheckedHint":`์‚ฌ์šฉํ•˜๊ธฐ ์ „์— ๋ชจ๋ธ์„ ๋ถˆ๋Ÿฌ์™€ ์‘๋‹ต ๊ฐ€๋Šฅ ์—ฌ๋ถ€๋ฅผ ํ™•์ธํ•˜์„ธ์š”.`,"library.skills.installed":`์„ค์น˜๋œ ์Šคํ‚ฌ`,"library.skills.marketplace":`์Šคํ‚ฌ ๋งˆ์ผ“`,"library.connector.recommend":`์—ฐ๊ฒฐ ์ถ”์ฒœ`,"library.connector.recommendHint":`์—ฐ๊ฒฐํ•˜๋ ค๋Š” ๋Œ€์ƒ์„ ์„ค๋ช…ํ•˜๋ฉด Lattice๊ฐ€ ์ ํ•ฉํ•œ ์—ฐ๊ฒฐ์„ ์ถ”์ฒœํ•ฉ๋‹ˆ๋‹ค.`,"library.connector.recommendDone":`์—ฐ๊ฒฐ ์ถ”์ฒœ์„ ์™„๋ฃŒํ–ˆ์Šต๋‹ˆ๋‹ค`,"library.market.templates":`ํ…œํ”Œ๋ฆฟ`,"library.market.installedPlugins":`์„ค์น˜๋œ ํ”Œ๋Ÿฌ๊ทธ์ธ`,"library.market.pluginDirectory":`ํ”Œ๋Ÿฌ๊ทธ์ธ ๋””๋ ‰ํ„ฐ๋ฆฌ`,"library.market.templateInstall":`ํ…œํ”Œ๋ฆฟ ์„ค์น˜`,"library.market.templateInstallHint":`์žฌ์‚ฌ์šฉ ๊ฐ€๋Šฅํ•œ ์ž‘์—…๊ณต๊ฐ„ ํŒจํ„ด์—์„œ ์‹œ์ž‘ํ•˜์„ธ์š”.`,"system.account.profile":`ํ”„๋กœํ•„`,"system.account.title":`๊ณ„์ •`,"system.account.detail":`๋กœ๊ทธ์ธํ•˜๊ฑฐ๋‚˜ ๋กœ์ปฌ ๊ณ„์ •์„ ๋งŒ๋“ค๊ณ  ํ”„๋กœํ•„์„ ์ตœ์‹  ์ƒํƒœ๋กœ ์œ ์ง€ํ•ฉ๋‹ˆ๋‹ค.`,"system.account.email":`์ด๋ฉ”์ผ`,"system.account.password":`ํ˜„์žฌ ๋น„๋ฐ€๋ฒˆํ˜ธ`,"system.account.name":`์ด๋ฆ„`,"system.account.nickname":`๋‹‰๋„ค์ž„`,"system.account.newPassword":`์ƒˆ ๋น„๋ฐ€๋ฒˆํ˜ธ`,"system.account.save":`ํ”„๋กœํ•„ ์ €์žฅ`,"system.account.changePassword":`๋น„๋ฐ€๋ฒˆํ˜ธ ๋ณ€๊ฒฝ`,"system.account.requestDone":`๊ณ„์ • ์š”์ฒญ์„ ์™„๋ฃŒํ–ˆ์Šต๋‹ˆ๋‹ค`,"system.account.signInOptions":`๋กœ๊ทธ์ธ ์˜ต์…˜`,"system.workspace.yours":`๋‚ด ์ž‘์—…๊ณต๊ฐ„`,"system.workspace.organizations":`์กฐ์ง๊ณผ ์ดˆ๋Œ€`,"system.workspace.organizationsHint":`์ง€์‹์„ ์ถ”๊ฐ€ํ•˜๊ธฐ ์ „์— ์ž‘์—…๊ณต๊ฐ„์„ ๋งŒ๋“ค๊ฑฐ๋‚˜ ์ฐธ์—ฌํ•˜์„ธ์š”.`,"system.workspace.orgPlaceholder":`์ƒˆ ์กฐ์ง ์ด๋ฆ„`,"system.workspace.createOrg":`์กฐ์ง ๋งŒ๋“ค๊ธฐ`,"system.workspace.inviteeEmail":`์ดˆ๋Œ€ํ•  ์ด๋ฉ”์ผ`,"system.workspace.createInvite":`์ดˆ๋Œ€ ๋งŒ๋“ค๊ธฐ`,"system.workspace.inviteToken":`์ดˆ๋Œ€ ํ† ํฐ`,"system.workspace.acceptInvite":`์ดˆ๋Œ€ ์ˆ˜๋ฝ`,"system.workspace.invitations":`์ดˆ๋Œ€`,"system.snapshots.title":`์Šค๋ƒ…์ƒท`,"system.snapshots.actions":`์Šค๋ƒ…์ƒท ์ž‘์—…`,"system.snapshots.actionsHint":`์ฒดํฌํฌ์ธํŠธ๋ฅผ ๋งŒ๋“ค๊ณ  ์‹œ๊ฐ„์— ๋”ฐ๋ฅธ ๋ณ€๊ฒฝ์„ ๋น„๊ตํ•ฉ๋‹ˆ๋‹ค.`,"system.snapshots.namePlaceholder":`์Šค๋ƒ…์ƒท ์ด๋ฆ„`,"system.snapshots.create":`์Šค๋ƒ…์ƒท ๋งŒ๋“ค๊ธฐ`,"system.snapshots.beforeId":`์ด์ „ ID`,"system.snapshots.afterId":`์ดํ›„ ID`,"system.snapshots.compareDone":`์Šค๋ƒ…์ƒท ๋น„๊ต๋ฅผ ์™„๋ฃŒํ–ˆ์Šต๋‹ˆ๋‹ค`,"system.snapshots.timeline":`ํƒ€์ž„๋จธ์‹ `,"system.activity.feed":`์‹ค์‹œ๊ฐ„ ํ”ผ๋“œ`,"system.activity.presence":`์ ‘์† ํ˜„ํ™ฉ`,"system.network.identity":`๊ธฐ๊ธฐ ์‹ ์›`,"system.network.pair":`๊ธฐ๊ธฐ ์—ฐ๊ฒฐ`,"system.network.pairHint":`์‹ ๋ขฐํ•˜๋Š” ๊ธฐ๊ธฐ๋ฅผ ์—ฐ๊ฒฐํ•ด ์ž‘์—…๊ณต๊ฐ„์„ ๊ตํ™˜ํ•ฉ๋‹ˆ๋‹ค.`,"system.network.deviceName":`๊ธฐ๊ธฐ ์ด๋ฆ„`,"system.network.address":`์‹ ๋ขฐํ•˜๋Š” ๊ธฐ๊ธฐ ์ฃผ์†Œ`,"system.network.publicKey":`์‹ ๋ขฐํ•˜๋Š” ๊ณต๊ฐœ ํ‚ค`,"system.network.pairDone":`๊ธฐ๊ธฐ ์—ฐ๊ฒฐ ์š”์ฒญ์„ ์™„๋ฃŒํ–ˆ์Šต๋‹ˆ๋‹ค`,"system.network.peers":`์—ฐ๊ฒฐ๋œ ๊ธฐ๊ธฐ`,"system.backup.health":`๋ฐฑ์—… ์ƒํƒœ`,"system.archive.detail":`์•”ํ˜ธํ™”๋œ ํœด๋Œ€์šฉ Brain ํŒŒ์ผ์„ ๋งŒ๋“ค๊ณ  ๊ฒ€์ฆํ•˜๊ฑฐ๋‚˜ ๋ณต์› ์ „์— ๋ฏธ๋ฆฌ ํ™•์ธํ•ฉ๋‹ˆ๋‹ค.`,"system.archive.exportPath":`๋‚ด๋ณด๋‚ด๊ธฐ ๊ฒฝ๋กœ(์„ ํƒ)`,"system.archive.restorePath":`๊ฒ€์‚ฌ ๋˜๋Š” ๋ณต์›ํ•  ์•„์นด์ด๋ธŒ ๊ฒฝ๋กœ`,"system.archive.passphrase":`์•„์นด์ด๋ธŒ ์•”ํ˜ธ๋ฌธ`,"system.archive.export":`์•„์นด์ด๋ธŒ ๋‚ด๋ณด๋‚ด๊ธฐ`,"system.archive.restoreDryRun":`๋ณต์› ๋ฏธ๋ฆฌ ์‹คํ–‰`,"system.archive.importDryRun":`๊ฐ€์ ธ์˜ค๊ธฐ ๋ฏธ๋ฆฌ ์‹คํ–‰`,"system.archive.confirmRestore":`๋ณต์› ํ™•์ธ`,"system.archive.confirmImport":`๊ฐ€์ ธ์˜ค๊ธฐ ํ™•์ธ`,"system.archive.requestDone":`์•„์นด์ด๋ธŒ ์š”์ฒญ์„ ์™„๋ฃŒํ–ˆ์Šต๋‹ˆ๋‹ค`,"system.scale.title":`ํ™•์žฅ ๋ชจ๋“œ`,"system.scale.detail":`์„ ํƒํ˜• ๊ณ ๊ธ‰ ์ €์žฅ์†Œ์ž…๋‹ˆ๋‹ค. ๋กœ์ปฌ SQLite๊ฐ€ ๊ณ„์† ๊ธฐ๋ณธ๊ฐ’์ž…๋‹ˆ๋‹ค.`,"system.scale.dsn":`Postgres ์—ฐ๊ฒฐ ๋ฌธ์ž์—ด`,"system.scale.schema":`๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์Šคํ‚ค๋งˆ`,"system.scale.dockerPlan":`Docker ๊ณ„ํš`,"system.scale.dockerConsent":`Docker ์‹œ์ž‘ ๋™์˜`,"system.scale.dockerStart":`Docker ์‹œ์ž‘`,"system.scale.migrationPlan":`๋งˆ์ด๊ทธ๋ ˆ์ด์…˜ ๊ณ„ํš`,"system.scale.dockerDone":`Docker ์„ค์ • ์š”์ฒญ์„ ์™„๋ฃŒํ–ˆ์Šต๋‹ˆ๋‹ค`,"system.scale.migrationDone":`๋งˆ์ด๊ทธ๋ ˆ์ด์…˜ ๊ณ„ํš์„ ์™„๋ฃŒํ–ˆ์Šต๋‹ˆ๋‹ค`,"system.computerMemory.title":`์ปดํ“จํ„ฐ ๋ฉ”๋ชจ๋ฆฌ`,"system.presence.empty":`ํ™œ์„ฑ ์ ‘์† ์—†์Œ`,"system.presence.emptyDetail":`ํ˜„์žฌ ๋ณด๊ณ ๋œ ์‹ค์‹œ๊ฐ„ ์‚ฌ์šฉ์ž๋‚˜ ํด๋ผ์ด์–ธํŠธ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค.`,"system.device.thisMac":`์ด Mac`,"system.device.thisMacDetail":`์‹ ๋ขฐํ•˜๋Š” ๋‹ค๋ฅธ ๊ธฐ๊ธฐ๋ฅผ ์—ฐ๊ฒฐํ•˜๋ฉด ์ด ๊ธฐ๊ธฐ๊ฐ€ ๋กœ์ปฌ ์ž‘์—…๊ณต๊ฐ„ ๊ตํ™˜์— ์ฐธ์—ฌํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.`,"system.storage.sqlite":`SQLite`,"system.storage.vector":`๋ฒกํ„ฐ ๊ฒ€์ƒ‰`,"system.storage.postgres":`Postgres`,"system.hardening.startup":`์‹œ์ž‘`,"system.hardening.startupDetail":`Lattice๋Š” ๊ธฐ๋ณธ์ ์œผ๋กœ ๋กœ์ปฌ์—์„œ ์‹œ์ž‘ํ•˜๋ฉฐ ๋„คํŠธ์›Œํฌ ์ ‘๊ทผ์ด ํ™œ์„ฑํ™”๋˜๋ฉด ์•Œ๋ฆฝ๋‹ˆ๋‹ค.`,"system.hardening.integrations":`ํ†ตํ•ฉ`,"system.hardening.integrationsDetail":`์™ธ๋ถ€ ํ†ตํ•ฉ์€ ์‚ฌ์šฉ์ž๊ฐ€ ๋ช…์‹œ์ ์œผ๋กœ ํ™œ์„ฑํ™”ํ•  ๋•Œ๊นŒ์ง€ ๊บผ์ ธ ์žˆ์Šต๋‹ˆ๋‹ค.`,"system.hardening.identity":`๊ธฐ๊ธฐ ์‹ ์›`,"system.hardening.permissions":`๊ถŒํ•œ`,"system.hardening.permissionsDetail":`๋‚ด๋ณด๋‚ด๊ธฐ, ๊ฐ€์ ธ์˜ค๊ธฐ์™€ ํŒŒ๊ดด์  ๋ณต์› ๊ถŒํ•œ์„ ๊ด€๋ฆฌ์ž ์ƒํƒœ์—์„œ ํ™•์ธํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.`,"system.admin.controls":`๊ด€๋ฆฌ์ž ์ œ์–ด`,"system.admin.controlsDetail":`์‚ฌ์šฉ์ž, ๊ฐ์‚ฌ ์ด๋ฒคํŠธ, ์ •์ฑ…, ๋ณด์•ˆ ์ƒํƒœ์™€ ๋น„๊ณต๊ฐœ ๋„คํŠธ์›Œํฌ ์ง„๋‹จ์„ ๊ฒ€ํ† ํ•˜๋ ค๋ฉด ๊ด€๋ฆฌ์ž ๋ชจ๋“œ๋กœ ์ „ํ™˜ํ•˜์„ธ์š”.`,"system.admin.summary":`๊ด€๋ฆฌ์ž ์š”์•ฝ`,"system.admin.users":`์‚ฌ์šฉ์ž`,"system.admin.audit":`๊ฐ์‚ฌ`,"system.admin.roles":`์—ญํ• `,"system.admin.policies":`์ •์ฑ…`,"system.admin.hardening":`์ œํ’ˆ ๊ฐ•ํ™”`,"system.admin.security":`๋ณด์•ˆ ๊ฐœ์š”`,"system.admin.vpc":`๋น„๊ณต๊ฐœ VPC`,"system.admin.communityUnavailable":`Community์—์„œ ๋น„ํ™œ์„ฑํ™”๋œ ๊ธฐ๋Šฅ์€ ์‚ฌ์šฉ ๋ถˆ๊ฐ€ ์ƒํƒœ๋กœ ์ •ํ™•ํžˆ ํ‘œ์‹œ๋ฉ๋‹ˆ๋‹ค.`,"act.runtime.modelUnavailable":`Agent๋ฅผ ์‹คํ–‰ํ•˜๋ ค๋ฉด LLM ๊ธฐ๋ฐ˜ ๋ชจ๋ธ์„ ๋จผ์ € ๋ถˆ๋Ÿฌ์˜ค์„ธ์š”.`,"act.agent.register":`๋“ฑ๋ก`,"act.approval.request":`์Šน์ธ ์š”์ฒญ {index}`,"act.action.approve":`์Šน์ธ`,"act.action.deny":`๊ฑฐ๋ถ€`,"act.action.stop":`์ค‘์ง€`,"act.action.resumeApproved":`์Šน์ธ ํ›„ ์žฌ๊ฐœ`,"act.action.resumeDenied":`๊ฑฐ๋ถ€ ํ›„ ์žฌ๊ฐœ`,"act.status.unknown":`์•Œ ์ˆ˜ ์—†์Œ`,"act.status.draft":`์ดˆ์•ˆ`,"act.workflow.defaultName":`์ˆ˜๋™ ์›Œํฌํ”Œ๋กœ`,"act.workflow.fallbackName":`์›Œํฌํ”Œ๋กœ {index}`,"act.workflow.create":`๋งŒ๋“ค๊ธฐ`,"act.workflow.import":`๊ฐ€์ ธ์˜ค๊ธฐ`,"act.workflow.run":`์‹คํ–‰`,"act.workflow.export":`๋‚ด๋ณด๋‚ด๊ธฐ`,"act.workflow.manualStart":`์ˆ˜๋™ ์‹œ์ž‘`,"act.workflow.output":`๊ฒฐ๊ณผ`,"act.workflow.completed":`์›Œํฌํ”Œ๋กœ ์™„๋ฃŒ`,"act.hooks.runAll":`๋ชจ๋“  ์ˆ˜๋™ ํ›… ์‹คํ–‰`,"library.model.needsDownloadFirst":`์•„์ง ์ด ์ปดํ“จํ„ฐ์— ๋ชจ๋ธ ํŒŒ์ผ์ด ์—†์Šต๋‹ˆ๋‹ค. ๋ฐ›์œผ๋ฉด ๋ฐ”๋กœ ์“ธ ์ˆ˜ ์žˆ์–ด์š”.`,"library.model.sourceVerified":`์ถœ์ฒ˜ ํ™•์ธ๋จ`,"library.runtime.appleSilicon":`Apple Silicon Mac`,"library.runtime.thisComputer":`์ด ์ปดํ“จํ„ฐ`,"library.embedding.state.production":`์˜๋ฏธ ๊ฒ€์ƒ‰ ์‚ฌ์šฉ ์ค‘`,"library.embedding.state.fallback":`๊ธฐ๋ณธ ๊ฒ€์ƒ‰ ์‚ฌ์šฉ ์ค‘ (์˜๋ฏธ ๋ชจ๋ธ ์—†์Œ)`,"library.embedding.state.unknown":`ํ™•์ธ ํ•„์š”`,"library.model.notReady":`์ด ๋ชจ๋ธ์€ ์•„์ง ๋ถˆ๋Ÿฌ์˜ฌ ์ค€๋น„๊ฐ€ ๋˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค.`,"library.model.localFormat":`์ด ๋กœ์ปฌ ๋ชจ๋ธ ํ˜•์‹`,"library.model.localSupport":`๋กœ์ปฌ ๋ชจ๋ธ ์ง€์›`,"library.model.support":`๋ชจ๋ธ ์ง€์›`,"library.model.format":`๋ชจ๋ธ ํ˜•์‹`,"library.model.ramRecommended":`์•ฝ {ram}GB RAM ๊ถŒ์žฅ`,"library.model.needsAttention":`ํ™•์ธ ํ•„์š”`,"library.btn.needsConsent":`์œ„์˜ ๋‹ค์šด๋กœ๋“œ ํ—ˆ์šฉ์— ๋จผ์ € ์ฒดํฌํ•ด ์ฃผ์„ธ์š”.`,"library.model.status.loaded":`์‚ฌ์šฉ ์ค‘`,"library.model.status.ready":`๋ฐ”๋กœ ์‚ฌ์šฉ ๊ฐ€๋Šฅ`,"library.model.status.download_required":`๋‹ค์šด๋กœ๋“œ ํ•„์š”`,"library.model.status.unavailable":`์ง€๊ธˆ์€ ์‚ฌ์šฉ ๋ถˆ๊ฐ€`,"library.model.status.unsupported":`์ด ์ปดํ“จํ„ฐ์—์„œ ๋ฏธ์ง€์›`,"library.model.status.unknown":`ํ™•์ธ ํ•„์š”`,"library.model.recommended":`์ถ”์ฒœ`,"library.model.multimodal":`๋ฉ€ํ‹ฐ๋ชจ๋‹ฌ`,"library.model.local":`๋กœ์ปฌ ๋ชจ๋ธ`,"library.model.downloadSize":`๋‹ค์šด๋กœ๋“œ: {size}`,"library.model.downloadRequired":`ํ•„์š”`,"library.model.noDownload":`์ง€๊ธˆ์€ ๋‹ค์šด๋กœ๋“œ ๋ถˆํ•„์š”`,"library.model.internetDuringDownload":`๋‹ค์šด๋กœ๋“œ ์ค‘์—๋งŒ ์ธํ„ฐ๋„ท ์‚ฌ์šฉ`,"library.model.runsLocally":`๋ถˆ๋Ÿฌ์˜จ ๋’ค ๋กœ์ปฌ์—์„œ ์‹คํ–‰`,"library.model.attentionBeforeLoad":`๋ถˆ๋Ÿฌ์˜ค๊ธฐ ์ „์— ํ™•์ธ์ด ํ•„์š”ํ•ฉ๋‹ˆ๋‹ค`,"library.model.compatiblePath":`ํ˜ธํ™˜๋˜๋Š” ์‹คํ–‰ ๊ฒฝ๋กœ๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค`,"library.model.runtimeFallback":`๋Œ€์ฒด ๋Ÿฐํƒ€์ž„์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค`,"library.model.compatibilityFallback":`์ง€์›๋˜์ง€ ์•Š๋Š” ๋ชจ๋ธ๋กœ ํ‘œ์‹œํ•˜๊ธฐ ์ „์— Lattice๊ฐ€ ํ˜ธํ™˜๋˜๋Š” ๋กœ์ปฌ ์‹คํ–‰ ๊ฒฝ๋กœ๋ฅผ ์‹œ๋„ํ•ฉ๋‹ˆ๋‹ค.`,"library.model.license":`๋ผ์ด์„ ์Šค: {license}`,"library.model.loaded":`๋ถˆ๋Ÿฌ์˜ด`,"library.models.embedding.advanced":`์ž„๋ฒ ๋”ฉ ์ œ๊ณต์ž`,"library.models.validationAdvanced":`๋ชจ๋ธ ๊ฒ€์ฆ`,"library.model.loadedName":`๋ถˆ๋Ÿฌ์˜จ ๋ชจ๋ธ`,"library.model.checked":`์ ๊ฒ€๋จ`,"library.model.compatibleAlternative":`ํ˜ธํ™˜ ๋Œ€์•ˆ`,"library.runtime.engine":`์—”์ง„`,"library.runtime.noLoaded":`๋ถˆ๋Ÿฌ์˜จ ๋กœ์ปฌ ๋ชจ๋ธ ์—†์Œ`,"library.runtime.state":`๋Ÿฐํƒ€์ž„ ์ƒํƒœ`,"library.runtime.cacheStorage":`์บ์‹œ/์ €์žฅ์†Œ: {path}`,"library.model.setupAttention":`๋ชจ๋ธ ์„ค์ •์„ ํ™•์ธํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค.`,"library.skills.disable":`๋น„ํ™œ์„ฑํ™”`,"library.skills.enable":`ํ™œ์„ฑํ™”`,"library.skills.install":`์„ค์น˜`,"library.connector.connections":`๋„๊ตฌ ์—ฐ๊ฒฐ`,"library.connector.mcpTools":`MCP ๋„๊ตฌ`,"library.connector.recommendAction":`์ถ”์ฒœ`,"library.market.installTemplate":`{name} ์„ค์น˜`,"library.value.local":`๋กœ์ปฌ`,"library.value.ready":`์ค€๋น„๋จ`,"library.value.idle":`๋Œ€๊ธฐ`,"library.value.detected":`๊ฐ์ง€๋จ`,"system.account.login":`๋กœ๊ทธ์ธ`,"system.account.register":`๊ฐ€์ž…`,"system.account.logout":`๋กœ๊ทธ์•„์›ƒ`,"system.workspace.use":`์‚ฌ์šฉ`,"system.workspace.activate":`ํ™œ์„ฑํ™”`,"system.workspace.archive":`๋ณด๊ด€`,"system.snapshots.defaultName":`๋ฐ์Šคํฌํ†ฑ ์ฒดํฌํฌ์ธํŠธ`,"system.snapshots.export":`๋‚ด๋ณด๋‚ด๊ธฐ`,"system.snapshots.mergeRestore":`๋ณ‘ํ•ฉ ๋ณต์›`,"system.snapshots.compare":`๋น„๊ต`,"system.network.pushWorkspace":`์ž‘์—…๊ณต๊ฐ„ ๋ณด๋‚ด๊ธฐ`,"system.network.unpair":`์—ฐ๊ฒฐ ํ•ด์ œ`,"system.panel.serverHealth":`์„œ๋ฒ„ ์ƒํƒœ`,"system.panel.hostTelemetry":`ํ˜ธ์ŠคํŠธ ์ธก์ •๊ฐ’`,"system.panel.brainStorage":`Brain ์ €์žฅ์†Œ`,"system.archive.title":`.latticebrain ์ด๋™ ๋ฐ ๋ณต์›`,"system.archive.inspect":`๊ฒ€์‚ฌ`,"system.archive.verify":`๊ฒ€์ฆ`,"system.archive.restore":`๋ณต์›`,"system.archive.import":`๊ฐ€์ ธ์˜ค๊ธฐ`,"system.computerMemory.enable":`๋ฉ”๋ชจ๋ฆฌ ํ™œ์„ฑํ™”`,"system.computerMemory.disable":`๋ฉ”๋ชจ๋ฆฌ ๋น„ํ™œ์„ฑํ™”`,"system.value.notReported":`๋ณด๊ณ ๋˜์ง€ ์•Š์Œ`,"system.value.noneReported":`๋ณด๊ณ ๋œ ํ•ญ๋ชฉ ์—†์Œ`,"system.value.enabled":`ํ™œ์„ฑํ™”๋จ`,"system.value.disabled":`๋น„ํ™œ์„ฑํ™”๋จ`,"system.value.reported":`๋ณด๊ณ ๋จ`,"system.value.local":`๋กœ์ปฌ`,"system.value.configured":`๊ตฌ์„ฑ๋จ`,"system.value.trusted":`์‹ ๋ขฐ๋จ`,"system.value.localIdentity":`๋กœ์ปฌ ์‹ ์›`,"system.value.localDevice":`๋กœ์ปฌ ๊ธฐ๊ธฐ`,"system.value.identityKey":`์‹ ์› ํ‚ค`,"system.value.scaleMode":`ํ™•์žฅ ๋ชจ๋“œ`,"system.value.available":`์‚ฌ์šฉ ๊ฐ€๋Šฅ`,"system.value.optional":`์„ ํƒ ์‚ฌํ•ญ`,"system.value.unavailable":`์‚ฌ์šฉ ๋ถˆ๊ฐ€`,"system.value.default":`๊ธฐ๋ณธ๊ฐ’`,"system.value.notEnabled":`ํ™œ์„ฑํ™”๋˜์ง€ ์•Š์Œ`,"system.value.no":`์•„๋‹ˆ์š”`,"system.value.yes":`์˜ˆ`,"system.value.networkExposed":`๋„คํŠธ์›Œํฌ ๋…ธ์ถœ`,"system.value.localOnly":`๋กœ์ปฌ ์ „์šฉ`,"system.value.reviewRequired":`๊ฒ€ํ†  ํ•„์š”`,"system.value.optIn":`์‚ฌ์šฉ์ž ์„ ํƒ`,"system.value.guarded":`๋ณดํ˜ธ๋จ`,"system.health.status":`์ƒํƒœ`,"system.health.version":`๋ฒ„์ „`,"system.health.mode":`๋ชจ๋“œ`,"system.health.port":`ํฌํŠธ`,"system.storage.activeEngine":`ํ™œ์„ฑ ์—”์ง„`,"system.storage.sqliteDefault":`SQLite ๊ธฐ๋ณธ๊ฐ’`,"system.storage.sqliteDetail":`๋กœ์ปฌ Brain ์ €์žฅ์†Œ๊ฐ€ ๊ธฐ๋ณธ์œผ๋กœ ํ™œ์„ฑํ™”๋˜์–ด ์žˆ์Šต๋‹ˆ๋‹ค.`,"system.storage.vectorDetail":`๊ตฌ์„ฑ๋œ ๋กœ์ปฌ ๋ฒกํ„ฐ ๊ธฐ๋Šฅ์„ ์‚ฌ์šฉํ•˜๊ฑฐ๋‚˜ ์‚ฌ์šฉํ•  ์ˆ˜ ์—†๋Š” ์ด์œ ๋ฅผ ํ‘œ์‹œํ•ฉ๋‹ˆ๋‹ค.`,"system.storage.postgresDetail":`Postgres ํ™•์žฅ ๋ชจ๋“œ๋Š” ์„ ํƒ ์‚ฌํ•ญ์ด๋ฉฐ ๋กœ์ปฌ ์‚ฌ์šฉ์— ํ•„์š”ํ•˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค.`,"system.backup.available":`์‚ฌ์šฉ ๊ฐ€๋Šฅ`,"system.backup.backups":`๋ฐฑ์—…`,"system.backup.encrypted":`์•”ํ˜ธํ™”๋จ`,"system.backup.zip":`ZIP ๋ฐฑ์—…`,"system.hardening.version":`๋ฒ„์ „`,"system.hardening.localOnly":`๋กœ์ปฌ ์ „์šฉ`,"system.hardening.storage":`์ €์žฅ์†Œ`,"system.hardening.backups":`๋ฐฑ์—…`,"system.hardening.identityStorage":`๋กœ์ปฌ์— ์ €์žฅ๋˜๋ฉฐ ์„œ๋ช…๋œ ๋ฒˆ๋“ค ๊ตํ™˜์— ์‚ฌ์šฉ๋ฉ๋‹ˆ๋‹ค.`,"system.security.eventsToday":`์˜ค๋Š˜ ์ด๋ฒคํŠธ`,"system.security.highRisk":`๊ณ ์œ„ํ—˜`,"system.security.review":`๊ฒ€ํ† `,"system.security.riskRate":`์œ„ํ—˜ ๋น„์œจ`},en:{"library.kicker":`AI model`,"library.title":`Choose the AI Lattice will use.`,"library.body":`Start with a model recommended for this computer. You can switch later without losing saved memories.`,"library.tab.models":`Models`,"library.tab.skills":`Skills`,"library.tab.mcp":`Connections`,"library.tab.marketplace":`Marketplace`,"library.models.setup.title":`Choose a model`,"library.models.setup.desc":`We suggest a few light models first, tell you when internet or a download is needed, and never download anything without your consent.`,"library.models.embedding.basic":`Search by meaning`,"library.models.validation":`Model check`,"library.models.runtime.available":`A local model is ready`,"library.models.runtime.none":`No model loaded yet`,"library.runtime.computer":`Computer`,"library.runtime.loaded":`Loaded model`,"library.runtime.noneShort":`None`,"library.runtime.reload":`Reload`,"library.runtime.unload":`Unload`,"library.steps.aria":`Model setup progress`,"library.step.environment":`Environment check`,"library.step.recommend":`Recommended models`,"library.step.install":`Install`,"library.step.download":`Download`,"library.step.validate":`Check`,"library.step.ready":`Ready to use`,"library.step.done":`ready`,"library.step.pending":`pending`,"library.consent":`Allow Lattice to install a missing local model component or download model files for this action. Downloading uses the internet; running the model stays on this computer.`,"library.preparing":`Preparing model`,"library.panel.recommended.basic":`Recommended models`,"library.panel.recommended.other":`Recommended and advanced models`,"library.btn.preparing":`Preparing`,"library.btn.installLoad":`Install & use`,"library.btn.validateLoad":`Check & use`,"system.kicker":`Settings`,"system.title":`Make Lattice work your way.`,"system.body":`Manage your account, workspaces, appearance, privacy, and backups.`,"system.tab.account":`Account`,"system.tab.workspaces":`Spaces`,"system.tab.snapshots":`Backups`,"system.tab.activity":`History`,"system.tab.network":`Devices`,"system.tab.settings":`Settings`,"system.tab.admin":`Admin`,"system.permission.title":`Agent autonomy`,"system.permission.hint":`How far the agent may go without asking. Dangerous actions stay blocked in every setting.`,"system.permission.current":`Current setting`,"system.permission.apply":`Switch to this`,"system.permission.ack":`I understand the risk and want this setting.`,"system.permission.guards":`Blocked in every setting`,"system.permission.guards.detail":`Destructive actions, root/home path deletions, rm -rf / style commands, and binary overwrites that cannot be reviewed.`,"system.permission.risk.low":`Low`,"system.permission.risk.medium":`Medium`,"system.permission.risk.high":`High`,"system.panel.appearance":`Appearance`,"system.panel.appearance.hint":`Applies to this browser only.`,"system.panel.detailLevel":`How much to show`,"system.panel.detailLevel.hint":`Choose how much detail each screen shows. Unrelated to light or dark.`,"system.theme.dark":`Dark`,"system.theme.light":`Light`,"system.panel.brainStatus":`Brain status`,"system.panel.readiness":`Computer readiness`,"system.stat.cpu":`CPU`,"system.stat.memory":`Memory`,"system.stat.gpu":`GPU memory`,"system.stat.localStatus":`Status`,"system.stat.ready":`ready`,"system.storage.title":`Where your memories live`,"system.storage.local.title":`Saved on this computer`,"system.storage.local.badge":`private`,"system.storage.local.detail":`Everything your Brain remembers is stored right here on your device โ€” nothing leaves your computer unless you choose to share it.`,"system.storage.search.title":`Smart search`,"system.storage.search.on":`on`,"system.storage.search.pending":`getting ready`,"system.storage.search.detailOn":`Your Brain can find memories by meaning, not just exact words.`,"system.storage.search.detailPending":`Smart search turns on automatically once your first memories are indexed.`,"system.health.title":`Your Brain is running normally`,"system.health.ok":`all good`,"system.health.detail":`Running safely on this computer right now.`,"capture.tab.files":`Files`,"capture.tab.local":`Folders`,"capture.tab.browser":`Web`,"capture.tab.pipeline":`Flow`,"capture.kicker":`Sources`,"capture.title":`What should Lattice remember?`,"capture.body":`Add a file, folder, or webpage. Lattice keeps the source and can find it again in conversation.`,"capture.retry":`Retry`,"capture.files.title":`Add documents`,"capture.files.description":`Choose files and Lattice will prepare them for search and memory.`,"capture.files.drop":`Drop files or choose documents`,"capture.files.dropDetail":`Files you add are read into memory along with where they came from, so you can find them in conversation.`,"capture.files.uploaded":`Uploaded documents`,"capture.files.completed":`Saved files appear here. Linking them to related topics can take a moment longer.`,"capture.files.success":`Saved to memory`,"capture.files.queued":`Getting ready to save`,"capture.files.uploading":`Parsing and sending to Memory`,"capture.files.failed":`Ingest failed before it entered the Brain`,"capture.files.captured":`Captured with source metadata`,"capture.files.capturedWithNode":`Captured with source metadata ยท {node}`,"capture.local.title":`Connect a folder`,"capture.local.description":`Choose a folder and Lattice will scan it into the Brain.`,"capture.local.placeholder":`Folder path on this Mac`,"capture.local.choose":`Choose Folder`,"capture.local.choosing":`Choosing`,"capture.local.connect":`Scan and Connect`,"capture.local.success":`Folder scan requested`,"capture.local.pickUnavailable":`The folder picker could not open. Check desktop app permissions or type the path manually.`,"capture.local.emptyFolder":`No uploadable files were found in the selected folder.`,"capture.folderHealth.title":`Folder memory state`,"capture.folderHealth.coverage":`{percent}% remembered ({indexed}/{total})`,"capture.folderHealth.unknown":`Not scanned yet`,"capture.folderHealth.watching":`Changes are followed automatically`,"capture.folderHealth.failed":`{count} file(s) did not make it in`,"capture.folderHealth.vectorGlobal":`{count} item(s) are still being prepared for search across the whole index (not per folder)`,"capture.local.browserFolder":`Selected folder`,"capture.local.browserImporting":`Uploading folder files`,"capture.local.browserImportSuccess":`{folder} files entered the Brain.`,"capture.local.browserImportFailed":`Folder files could not enter the Brain.`,"capture.local.sources":`Connected sources`,"capture.local.access":`Folder access`,"capture.local.stop":`Stop {source}`,"capture.local.source":`source`,"capture.browser.title":`Save a web page`,"capture.browser.description":`Capture a page so Lattice can remember the useful parts.`,"capture.browser.placeholder":`https://example.com/article`,"capture.browser.paste":`Paste`,"capture.browser.capture":`Scan and Save`,"capture.browser.success":`Web page save requested`,"capture.pipeline.status":`Processing status`,"capture.pipeline.growth":`Brain growth`,"capture.pipeline.refresh":`Refresh memory`,"capture.pipeline.description":`Refresh search when you want Lattice to re-check captured material.`,"capture.pipeline.rebuild":`Rebuild retrieval index`,"review.inbox.title":`Review inbox`,"review.inbox.description":`Automation suggestions waiting for your decision. Run now previews without approving.`,"review.status.connected":`connected`,"review.status.unavailable":`unavailable`,"review.inbox.loadError":`Could not load review inbox`,"review.inbox.unavailable":`The review queue is not available right now.`,"review.inbox.empty":`Nothing to review`,"review.inbox.emptySnoozed":`Snoozed items will appear here until they are unsnoozed or become pending again.`,"review.inbox.emptyPending":`When automations opt into the review queue, new suggestions will appear here.`,"review.snoozed.detail":`This stays out of the pending queue until then. Unsnooze brings it back immediately.`,"review.unsnooze":`Unsnooze`,"review.runNow.detail":`Run now previews the action without approving it. Approve or dismiss when the result looks right.`,"review.chat.detail":`Saved from Brain chat. Approve it when it should become a real follow-up, or dismiss it when it is no longer useful.`,"review.agent.detail":`A follow-up candidate extracted from an Agent result. Approve it when it should become real work, or dismiss it when it is no longer useful.`,"review.actions.aria":`Review actions`,"review.runNow":`Run now`,"review.regenerated":`Regenerated`,"review.executed":`Executed`,"review.approve":`Approve`,"review.snoozeDay":`Snooze 1 day`,"review.dismiss":`Dismiss`,"review.feedback.open":`item stays open until you approve or dismiss.`,"review.action.failed":`{action} failed`,"review.filter.status.pending":`Pending`,"review.filter.status.snoozed":`Snoozed`,"review.filter.status.all":`All`,"review.filter.status.approved":`Approved`,"review.filter.status.dismissed":`Dismissed`,"review.filter.source.all":`All sources`,"review.filter.source.workflow_run":`Workflow`,"review.filter.source.trigger":`Trigger`,"review.filter.source.kg_change_digest":`Knowledge digest`,"review.filter.source.chat_followup":`Brain chat`,"review.filter.source.agent_followup":`Agent follow-up`,"review.filter.source.change_proposal":`Change proposals`,"review.proposal.detail":`The agent proposed changing an existing file. Approving applies exactly what you reviewed; rejecting changes nothing.`,"review.proposal.badge":`{count} change proposals pending`,"review.proposal.rejectReason":`Reason for rejecting (optional)`,"review.source.workflow_run":`Workflow run`,"review.source.trigger":`Trigger`,"review.source.kg_change_digest":`Knowledge digest`,"review.source.chat_followup":`Brain chat`,"review.source.agent_followup":`Agent follow-up`,"review.source.change_proposal":`Change proposal`,"review.source.automation":`Automation`,"review.itemStatus.pending":`Waiting for review`,"review.itemStatus.snoozed":`Snoozed`,"review.itemStatus.approved":`Approved`,"review.itemStatus.dismissed":`Dismissed`,"review.snoozed.badge":`Snoozed`,"review.snoozed.until":`Snoozed until {value}`,"review.summary.tool":`Tool`,"review.summary.proposedBy":`Proposed by`,"review.risk.read":`Safe read`,"review.risk.write":`Edits files`,"review.risk.write_scoped":`Edits inside the workspace only`,"review.risk.exec":`Runs a command`,"review.risk.destructive":`May remove content`,"review.change.read":`Read-only`,"review.change.additive":`Adds new content`,"review.change.mutation":`Edits existing content`,"review.change.destructive":`Removes content`,"review.change.exec":`Runs an action`,"review.technical.title":`Technical details`,"review.feedback.error":`We couldn't complete that action. Please try again in a moment.`,"proposals.diff.header":`Proposed change`,"proposals.diff.more":`{count} more lines`,"proposals.error":`We couldn't load your change proposals. Check that the local Lattice service is running.`,"common.retry":`Try again`,"common.error.unknown":`Something went wrong. Please try again in a moment.`,"api.error.timeout":`The request took too long, so we stopped waiting. Check that the local Lattice service is running.`,"api.error.unreachable":`We couldn't reach the local Lattice service. Make sure the app is running.`,"api.error.request":`The request couldn't be completed. (error {status})`,"intelligence.loadError":`We can't load your brain status right now. Please try again in a moment.`,"act.kicker":`Work`,"act.title":`Tell Lattice what you want done.`,"act.copy":`Share the goal and what done looks like. Lattice shows its progress and asks before any important change.`,"act.goal.title":`New task`,"act.goal.description":`Describe the result you want and what done should look like.`,"act.goal.placeholder":`Example: Read this week's meeting notes and organize decisions and action items by owner`,"act.goal.start":`Start task`,"act.goal.needsModel":`Set up an AI model`,"act.goal.modelRequired":`Set up an AI model before starting a task.`,"act.goal.safety":`Lattice always asks before making an important change.`,"act.goal.completed":`Agent run completed โ€” result synthesized into Brain memory and graph`,"act.goal.brainSaved":`Synthetic Brain memory was added.`,"act.tab.goals":`Goals`,"act.tab.runs":`Runs`,"act.tab.review":`Review Center`,"act.tab.recipes":`Recipes`,"act.suggest.title":`Automation suggestions for you`,"act.suggest.subtitle":`Your Brain proposes automations from your recurring questions and connected folders.`,"act.suggest.empty":`No suggestions yet. Ask questions and connect folders to grow suggestions.`,"act.suggest.scanned":`analyzed {count} recent questions`,"act.suggest.question":`Recurring question`,"act.suggest.folder":`Connected folder`,"act.suggest.evidence.count":`you asked this {count} times`,"act.suggest.evidence.folder":`a folder with {count} files in your Brain`,"act.suggest.cadence.daily":`daily draft`,"act.suggest.cadence.newKnowledge":`when new knowledge arrives`,"act.suggest.install":`Create automation`,"act.suggest.installing":`Creating...`,"act.suggest.installed":`Draft created โ€” review, then enable`,"act.suggest.note":`Accepting a suggestion creates a disabled draft; it only runs after you review and enable it.`,"act.automation.title":`Memory-based automation`,"act.automation.local":`local only`,"act.automation.consent":`review draft, then enable`,"act.automation.create":`Create reviewable automation draft`,"act.automation.creating":`Creating draft...`,"act.automation.created":`โœ“ Automation draft created`,"act.automation.enable":`Enable this memory automation`,"act.automation.enabling":`Connecting automation...`,"act.automation.active":`โœ“ Memory automation active`,"act.automation.draftReady":`The draft is ready. Review it, then enable it.`,"act.automation.enableHint":`This draft is safely disabled. Enable it to connect Brain events.`,"act.automation.activeHint":`New memory events now create a reviewable result in your inbox.`,"act.installed.title":`Installed automations`,"act.installed.subtitle":`Try an installed automation right away and see its last run result.`,"act.installed.empty":`No automations installed yet. Create one from the suggestions or recipes above.`,"act.installed.runNow":`Run now`,"act.installed.dryRunning":`Dry-running...`,"act.installed.runLive":`Run once for real`,"act.installed.liveRunning":`Running...`,"act.installed.dryRunHint":`A side-effect-free dry run shows what would happen first, then the real run unlocks.`,"act.installed.lastRun":`Last run`,"act.installed.noRuns":`No runs yet`,"act.installed.mode.dry":`dry run`,"act.installed.mode.live":`live`,"act.installed.failedReview":`The run failed and was added to your review inbox.`,"act.installed.onBadge":`On`,"act.installed.draftBadge":`Draft (off)`,"act.tab.safeguards":`Safeguards`,"act.tab.permissions":`Permissions`,"act.tab.hooks":`Hooks`,"act.tab.tools":`Tools`,"admin.back":`Brain`,"admin.aria.console":`Lattice Admin`,"admin.kicker":`Separate admin workspace`,"admin.title":`Admin Console`,"admin.body":`Users, logs, security, and Brain health stay out of the normal user experience.`,"admin.overview":`Admin overview`,"admin.metric.users":`Users`,"admin.metric.logs":`Recent logs`,"admin.metric.security":`Security`,"admin.metric.index":`Brain index`,"admin.status.ready":`Ready`,"admin.status.unavailable":`Unavailable`,"admin.status.indexed":`Indexed`,"admin.status.unknown":`Unknown`,"admin.panel.users":`User Directory`,"admin.panel.people":`People`,"admin.panel.roles":`Role Permissions`,"admin.panel.access":`Access`,"admin.panel.logs":`Activity Logs`,"admin.panel.audit":`Audit`,"admin.panel.securityEvents":`Security Events`,"admin.panel.protection":`Protection`,"admin.panel.brainOps":`Brain Operations`,"admin.panel.maintenance":`Maintenance`,"admin.panel.runtimeTrust":`Runtime Trust`,"admin.panel.contracts":`Contracts`,"admin.empty.users":`No users reported by the admin API.`,"admin.empty.roles":`No role matrix reported.`,"admin.empty.audit":`No recent audit events.`,"admin.empty.security":`No security events reported.`,"admin.fallback.localUser":`Local user`,"admin.fallback.member":`member`,"admin.fallback.role":`role`,"admin.fallback.noCaps":`No caps`,"admin.filters.label":`Audit log filters`,"admin.filters.search":`Search logs`,"admin.filters.searchAria":`Search audit logs`,"admin.filters.severityAria":`Filter by severity`,"admin.filters.all":`All severities`,"admin.filters.informational":`Informational`,"admin.filters.notice":`Notice`,"admin.filters.warning":`Warning`,"admin.filters.high":`High`,"admin.filters.matched":`{count} matched`,"admin.brain.summaryFallback":`Local Brain services are separated from user chat.`,"admin.brain.rebuilding":`Rebuilding`,"admin.brain.rebuild":`Rebuild index`,"admin.runtime.agent":`AgentRuntime`,"admin.runtime.tools":`ToolRegistry`,"admin.runtime.readyDetail":`Run preview and execution are ready.`,"admin.runtime.blockedFallback":`Run preview returns the blocking reason before execution.`,"admin.runtime.aligned":`Aligned`,"admin.runtime.drift":`Needs review`,"admin.runtime.toolCounts":`Registered {registered} ยท governed {governed} ยท described {described}`,"admin.runtime.mode":`mode {mode}`,"admin.runtime.execution":`exec {mode}`,"admin.runtime.health":`health {status}`,"admin.policy.fallback":`Policy`,"admin.policy.quiet":`Policy API quiet`,"admin.retention.days":`{days} day retention`,"admin.retention.detail":`{events} retained ยท {candidates} ready for export/prune review`,"admin.log.event":`Event`,"admin.log.system":`system`,"admin.log.recently":`recently`,"admin.source.loading":`Loading`,"admin.source.live":`Live`,"admin.index.ready":`Index status ready`,"act.panel.readiness":`Readiness`,"act.panel.agentTeam":`Agent team`,"act.agentRole.researcher":`Researcher`,"act.agentRole.researcher.detail":`Gathers the material, memory, and connections the goal needs.`,"act.agentRole.planner":`Planner`,"act.agentRole.planner.detail":`Breaks the goal into ordered, reviewable steps.`,"act.agentRole.executor":`Executor`,"act.agentRole.executor.detail":`Runs each planned step with tools and workflows.`,"act.agentRole.reviewer":`Reviewer`,"act.agentRole.reviewer.detail":`Reviews the work and approves, rejects, or retries it.`,"act.agentRole.release":`Finisher`,"act.agentRole.release.detail":`Wraps up and writes the final summary.`,"act.agent.namePlaceholder":`New custom agent name`,"act.panel.capabilities":`What agents can do`,"act.recipe.daily-memory-digest":`Daily memory digest`,"act.recipe.daily-memory-digest.summary":`Collects the day's new memories into a short review draft.`,"act.recipe.daily-memory-digest.value":`See what your Brain kept today without searching through chats.`,"act.recipe.weekly-project-review":`Weekly project review`,"act.recipe.weekly-project-review.summary":`Turns project context into a weekly checkpoint draft.`,"act.recipe.weekly-project-review.value":`Pick a project back up without explaining the week again.`,"act.recipe.follow-up-radar":`Follow-up radar`,"act.recipe.follow-up-radar.summary":`Looks for follow-up work whenever a new memory is saved.`,"act.recipe.follow-up-radar.value":`Your Brain raises what you promised before you forget it.`,"act.cadence.daily":`Daily`,"act.cadence.weekly":`Weekly`,"act.cadence.when new memory is saved":`When a new memory is saved`,"act.creates.memory digest":`Memory digest`,"act.creates.decision summary":`Decision summary`,"act.creates.next-action suggestions":`Next-action suggestions`,"act.creates.project checkpoint":`Project checkpoint`,"act.creates.risk list":`Risk list`,"act.creates.open-question list":`Open-question list`,"act.creates.follow-up suggestions":`Follow-up suggestions`,"act.panel.agentRuns":`Agent runs`,"act.panel.workflowRuns":`Workflow runs`,"act.panel.approvalInbox":`Approval inbox`,"act.workflow.graph":`Workflow graph`,"act.workflow.graphDetail":`See your saved workflows as a simple map.`,"act.panel.definitions":`Definitions`,"act.workflow.namePlaceholder":`Workflow name`,"act.workflow.importPlaceholder":`Paste a workflow export`,"act.workflow.created":`Workflow created`,"act.workflow.imported":`Workflow imported`,"act.panel.triggers":`Automation triggers`,"act.panel.safeguards":`Safeguards`,"act.hooks.detailed":`Detailed hook logs`,"act.hooks.detailedHint":`Switch to Advanced when you need hook run logs and manual diagnostic controls.`,"act.panel.hooks":`Hooks`,"act.panel.hookRuns":`Hook run log`,"act.hooks.runManual":`Run manual hooks`,"act.hooks.runManualHint":`Trigger hooks deliberately and review the recorded result.`,"act.panel.permissions":`Action permissions`,"library.model.hfVerified":`HF verified (config and tokenizer present)`,"library.model.shortListHint":`Showing the safest short list. Switch to Advanced for the full registry, runtime details, licenses, and safety notes.`,"library.model.noneChecked":`No model checked yet`,"library.model.noneCheckedHint":`Load a model to confirm it can answer before you start using it.`,"library.skills.installed":`Installed skills`,"library.skills.marketplace":`Skill marketplace`,"library.connector.recommend":`Recommend connector`,"library.connector.recommendHint":`Describe what you want to connect and Lattice will suggest a connector.`,"library.connector.recommendDone":`Recommendation completed`,"library.market.templates":`Templates`,"library.market.installedPlugins":`Installed plugins`,"library.market.pluginDirectory":`Plugin directory`,"library.market.templateInstall":`Template install`,"library.market.templateInstallHint":`Start from a reusable workspace pattern.`,"system.account.profile":`Profile`,"system.account.title":`Account`,"system.account.detail":`Sign in, create a local account, and keep your profile current.`,"system.account.email":`email`,"system.account.password":`current password`,"system.account.name":`name`,"system.account.nickname":`nickname`,"system.account.newPassword":`new password`,"system.account.save":`Save profile`,"system.account.changePassword":`Change password`,"system.account.requestDone":`Account request completed`,"system.account.signInOptions":`Sign-in options`,"system.workspace.yours":`Your workspaces`,"system.workspace.organizations":`Organizations and invitations`,"system.workspace.organizationsHint":`Create or join a workspace before adding knowledge.`,"system.workspace.orgPlaceholder":`New organization name`,"system.workspace.createOrg":`Create organization`,"system.workspace.inviteeEmail":`invitee email`,"system.workspace.createInvite":`Create invitation`,"system.workspace.inviteToken":`invitation token`,"system.workspace.acceptInvite":`Accept invitation`,"system.workspace.invitations":`Invitations`,"system.snapshots.title":`Snapshots`,"system.snapshots.actions":`Snapshot actions`,"system.snapshots.actionsHint":`Create checkpoints and compare changes over time.`,"system.snapshots.namePlaceholder":`snapshot name`,"system.snapshots.create":`Create snapshot`,"system.snapshots.beforeId":`before id`,"system.snapshots.afterId":`after id`,"system.snapshots.compareDone":`Snapshot comparison completed`,"system.snapshots.timeline":`Time machine`,"system.activity.feed":`Realtime feed`,"system.activity.presence":`Presence`,"system.network.identity":`Device identity`,"system.network.pair":`Pair device`,"system.network.pairHint":`Pair a trusted device for workspace exchange.`,"system.network.deviceName":`device name`,"system.network.address":`trusted device address`,"system.network.publicKey":`trusted public key`,"system.network.pairDone":`Peer pairing request completed`,"system.network.peers":`Peers`,"system.backup.health":`Backup health`,"system.archive.detail":`Create an encrypted portable brain file, verify one, or preview a restore before applying it.`,"system.archive.exportPath":`export path (optional)`,"system.archive.restorePath":`archive path for inspect/restore`,"system.archive.passphrase":`archive passphrase`,"system.archive.export":`Export archive`,"system.archive.restoreDryRun":`Restore dry run`,"system.archive.importDryRun":`Import dry run`,"system.archive.confirmRestore":`Confirm restore`,"system.archive.confirmImport":`Confirm import`,"system.archive.requestDone":`Archive request completed`,"system.scale.title":`Scale mode`,"system.scale.detail":`Optional advanced storage. Local SQLite remains the default.`,"system.scale.dsn":`Postgres connection string`,"system.scale.schema":`database schema`,"system.scale.dockerPlan":`Docker plan`,"system.scale.dockerConsent":`Consent to start Docker`,"system.scale.dockerStart":`Start Docker`,"system.scale.migrationPlan":`Plan migration`,"system.scale.dockerDone":`Docker setup request completed`,"system.scale.migrationDone":`Migration plan completed`,"system.computerMemory.title":`Computer memory`,"system.presence.empty":`No active presence`,"system.presence.emptyDetail":`No live collaborators or realtime clients are currently reported.`,"system.device.thisMac":`This Mac`,"system.device.thisMacDetail":`This device can participate in local workspace exchange when you pair another trusted device.`,"system.storage.sqlite":`SQLite`,"system.storage.vector":`Vector search`,"system.storage.postgres":`Postgres`,"system.hardening.startup":`Startup`,"system.hardening.startupDetail":`Lattice starts locally by default and reports when network access is enabled.`,"system.hardening.integrations":`Integrations`,"system.hardening.integrationsDetail":`External integrations remain disabled until the user explicitly enables them.`,"system.hardening.identity":`Device identity`,"system.hardening.permissions":`Permissions`,"system.hardening.permissionsDetail":`Export, import, and destructive restore permissions are surfaced through admin status.`,"system.admin.controls":`Admin controls`,"system.admin.controlsDetail":`Switch to Admin mode to review users, audit events, policies, security posture, and private networking diagnostics.`,"system.admin.summary":`Admin summary`,"system.admin.users":`Users`,"system.admin.audit":`Audit`,"system.admin.roles":`Roles`,"system.admin.policies":`Policies`,"system.admin.hardening":`Product hardening`,"system.admin.security":`Security overview`,"system.admin.vpc":`Private VPC`,"system.admin.communityUnavailable":`Community-disabled features remain honest unavailable states.`,"act.runtime.modelUnavailable":`Load an LLM-backed model before running agents.`,"act.agent.register":`Register`,"act.approval.request":`Approval request {index}`,"act.action.approve":`Approve`,"act.action.deny":`Deny`,"act.action.stop":`Stop`,"act.action.resumeApproved":`Resume approved`,"act.action.resumeDenied":`Resume denied`,"act.status.unknown":`unknown`,"act.status.draft":`draft`,"act.workflow.defaultName":`Manual workflow`,"act.workflow.fallbackName":`Workflow {index}`,"act.workflow.create":`Create`,"act.workflow.import":`Import`,"act.workflow.run":`Run`,"act.workflow.export":`Export`,"act.workflow.manualStart":`Manual start`,"act.workflow.output":`Output`,"act.workflow.completed":`Workflow completed`,"act.hooks.runAll":`Run all manual hooks`,"library.model.needsDownloadFirst":`Model files are not on this computer yet. Download to use it.`,"library.model.sourceVerified":`Source verified`,"library.runtime.appleSilicon":`Apple Silicon Mac`,"library.runtime.thisComputer":`This computer`,"library.embedding.state.production":`Meaning-based search on`,"library.embedding.state.fallback":`Basic search (no meaning model yet)`,"library.embedding.state.unknown":`Needs a check`,"library.model.notReady":`This model is not ready to load yet.`,"library.model.localFormat":`this local model format`,"library.model.localSupport":`local model support`,"library.model.support":`model support`,"library.model.format":`model format`,"library.model.ramRecommended":`About {ram}GB RAM recommended`,"library.model.needsAttention":`needs attention`,"library.btn.needsConsent":`Tick the download permission box above first.`,"library.model.status.loaded":`In use`,"library.model.status.ready":`Ready to use`,"library.model.status.download_required":`Download needed`,"library.model.status.unavailable":`Not available now`,"library.model.status.unsupported":`Not supported on this computer`,"library.model.status.unknown":`Needs a check`,"library.model.recommended":`recommended`,"library.model.multimodal":`multimodal`,"library.model.local":`Local model`,"library.model.downloadSize":`Download: {size}`,"library.model.downloadRequired":`required`,"library.model.noDownload":`No download needed now`,"library.model.internetDuringDownload":`Internet only during download`,"library.model.runsLocally":`Runs locally when loaded`,"library.model.attentionBeforeLoad":`Needs attention before loading`,"library.model.compatiblePath":`Compatible loading path available`,"library.model.runtimeFallback":`Runtime fallback available`,"library.model.compatibilityFallback":`Lattice will try the compatible local runtime path before showing this model as unsupported.`,"library.model.license":`License: {license}`,"library.model.loaded":`loaded`,"library.models.embedding.advanced":`Embedding provider`,"library.models.validationAdvanced":`Model validation`,"library.model.loadedName":`Loaded model`,"library.model.checked":`checked`,"library.model.compatibleAlternative":`Compatible alternative`,"library.runtime.engine":`Engine`,"library.runtime.noLoaded":`No local model loaded`,"library.runtime.state":`Runtime state`,"library.runtime.cacheStorage":`Cache/storage: {path}`,"library.model.setupAttention":`Model setup needs attention.`,"library.skills.disable":`Disable`,"library.skills.enable":`Enable`,"library.skills.install":`Install`,"library.connector.connections":`Tool connections`,"library.connector.mcpTools":`MCP tools`,"library.connector.recommendAction":`Recommend`,"library.market.installTemplate":`Install {name}`,"library.value.local":`local`,"library.value.ready":`ready`,"library.value.idle":`idle`,"library.value.detected":`detected`,"system.account.login":`Login`,"system.account.register":`Register`,"system.account.logout":`Logout`,"system.workspace.use":`Use`,"system.workspace.activate":`Activate`,"system.workspace.archive":`Archive`,"system.snapshots.defaultName":`desktop checkpoint`,"system.snapshots.export":`Export`,"system.snapshots.mergeRestore":`Merge restore`,"system.snapshots.compare":`Compare`,"system.network.pushWorkspace":`Push workspace`,"system.network.unpair":`Unpair`,"system.panel.serverHealth":`Server health`,"system.panel.hostTelemetry":`Host telemetry`,"system.panel.brainStorage":`Brain storage`,"system.archive.title":`.latticebrain portability`,"system.archive.inspect":`Inspect`,"system.archive.verify":`Verify`,"system.archive.restore":`Restore`,"system.archive.import":`Import`,"system.computerMemory.enable":`Enable memory`,"system.computerMemory.disable":`Disable memory`,"system.value.notReported":`not reported`,"system.value.noneReported":`none reported`,"system.value.enabled":`enabled`,"system.value.disabled":`disabled`,"system.value.reported":`reported`,"system.value.local":`local`,"system.value.configured":`configured`,"system.value.trusted":`trusted`,"system.value.localIdentity":`local identity`,"system.value.localDevice":`local device`,"system.value.identityKey":`identity key`,"system.value.scaleMode":`scale mode`,"system.value.available":`available`,"system.value.optional":`optional`,"system.value.unavailable":`unavailable`,"system.value.default":`default`,"system.value.notEnabled":`not enabled`,"system.value.no":`no`,"system.value.yes":`yes`,"system.value.networkExposed":`network exposed`,"system.value.localOnly":`local-only`,"system.value.reviewRequired":`review required`,"system.value.optIn":`opt-in`,"system.value.guarded":`guarded`,"system.health.status":`Status`,"system.health.version":`Version`,"system.health.mode":`Mode`,"system.health.port":`Port`,"system.storage.activeEngine":`Active engine`,"system.storage.sqliteDefault":`SQLite default`,"system.storage.sqliteDetail":`Local brain storage is active by default.`,"system.storage.vectorDetail":`Uses the configured local vector capability or reports why it is unavailable.`,"system.storage.postgresDetail":`Postgres scale mode is opt-in and never required for local use.`,"system.backup.available":`Available`,"system.backup.backups":`Backups`,"system.backup.encrypted":`Encrypted`,"system.backup.zip":`ZIP backups`,"system.hardening.version":`Version`,"system.hardening.localOnly":`Local only`,"system.hardening.storage":`Storage`,"system.hardening.backups":`Backups`,"system.hardening.identityStorage":`Stored locally and used for signed bundle exchange.`,"system.security.eventsToday":`Events today`,"system.security.highRisk":`High risk`,"system.security.review":`Review`,"system.security.riskRate":`Risk rate`}});export{p as t};